Files
xrpl-dev-portal/_code-samples/escrow/py

Escrow (Python)

Demonstrates how to create, finish, and cancel escrows on the XRP Ledger.

Setup

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Send Timed Escrow

python send_timed_escrow.py

Send Conditional Escrow

python send_conditional_escrow.py

List Escrows

python list_escrows.py

Get Account Escrows

python account_escrows.py

Cancel Escrow

python cancel_escrow.py