mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-07-28 09:30:16 +00:00
26 lines
479 B
Markdown
26 lines
479 B
Markdown
# Use Tickets (Python)
|
|
|
|
Demonstrates how to use Tickets for out-of-order transaction submission on the XRP Ledger.
|
|
|
|
For more context, see the [Use Tickets tutorial](https://xrpl.org/docs/tutorials/best-practices/transaction-sending/use-tickets).
|
|
|
|
## 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
|
|
```
|