mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-06-08 19:26:38 +00:00
42 lines
492 B
Markdown
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
|
|
```
|