PPoS Dex CLI
PPoS Dex CLI provides the following utilities:
- Publishing PPoS Dex data point;
- Monitoring PPoS Dex trend (timeseries);
- Monitoring PPoS Dex latest state (snapshot);
- Exporting PPoS Dex data to
.csv
for external analysis.
Install
PPoS Dex uses Poetry for dependencies management.
Clone PPoS Dex repository, cd
into it,
and:
poetry install
You are all set!
Node setup
PPoS Dex interacts both with Algorand Node and an Indexer. You may choose:
- Your local hosted Node and Indexer (e.g. AlgoKit);
- A third party Node and Indexer APIs.
PPoS Dex uses AlgoNode APIs by default.
If you prefer using your local hosted Node and Indexer (or other API providers), the following environment variables must be set:
export ALGOD_SERVER=...
export ALGOD_TOKEN=...
export INDEXER_SERVER=...
export INDEXER_TOKEN=...