mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
24 lines
348 B
Markdown
24 lines
348 B
Markdown
# Use Tickets (Python)
|
|
|
|
Demonstrates how to use Tickets for out-of-order transaction submission on the XRP Ledger.
|
|
|
|
## Setup
|
|
|
|
```sh
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
## Basic Ticket Usage
|
|
|
|
```sh
|
|
python use-tickets.py
|
|
```
|
|
|
|
## Tickets with Multi-Signing
|
|
|
|
```sh
|
|
python use-tickets-to-multisign.py
|
|
```
|