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

36 lines
404 B
Markdown

# Checks (Python)
Demonstrates how to create, cash, and cancel checks on the XRP Ledger.
## Setup
```sh
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
## Create a Check
```sh
python create_check.py
```
## Cash a Check
```sh
python cash_check.py
```
## Cancel a Check
```sh
python cancel_check.py
```
## Get Account Checks
```sh
python account_checks.py
```