PPoS Dex CLI


PPoS Dex CLI provides the following utilities:

  1. Publishing PPoS Dex data point;
  2. Monitoring PPoS Dex trend (timeseries);
  3. Monitoring PPoS Dex latest state (snapshot);
  4. 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:

  1. Your local hosted Node and Indexer (e.g. AlgoKit);
  2. 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=...