Files
xrpl-dev-portal/_code-samples/escrow/py/README.md
2026-02-23 12:47:15 +00:00

42 lines
492 B
Markdown

# Escrow (Python)
Demonstrates how to create, finish, and cancel escrows on the XRP Ledger.
## Setup
```sh
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
## Send Timed Escrow
```sh
python send_timed_escrow.py
```
## Send Conditional Escrow
```sh
python send_conditional_escrow.py
```
## List Escrows
```sh
python list_escrows.py
```
## Get Account Escrows
```sh
python account_escrows.py
```
## Cancel Escrow
```sh
python cancel_escrow.py
```