mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
36 lines
404 B
Markdown
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
|
|
```
|