### Install DerivaDEX Python SDK Source: https://gitlab.com/derivadex/ddx-python/-/blob/main/README.md Install the ddx-python package using pip. Ensure you have Python 3.10 and a Linux environment. ```bash pip install ddx-python ``` -------------------------------- ### Running the DerivaDEX Auditor Driver Source: https://gitlab.com/derivadex/ddx-python/-/blob/main/ddx/auditor/README.md Command-line usage for running the auditor_driver.py script with various configuration parameters. ```bash python auditor_driver.py \ --webserver-url $WEB_SERVER_URL \ --contract-deployment $CONTRACT_DEPLOYMENT \ --genesis-params $GENESIS_PARAMS \ --epoch-params $EPOCH_PARAMS \ --trade-mining-params $TRADE_MINING_PARAMS \ --collateral-tranches $COLLATERAL_TRANCHES ``` -------------------------------- ### Auditor Configuration Environment Variables Source: https://gitlab.com/derivadex/ddx-python/-/blob/main/ddx/auditor/README.md Environment variables used to configure the DerivaDEX Auditor. These can be set directly or via CLI flags. ```text WEB_SERVER_URL # base HTTP(S) URL of operator node CONTRACT_DEPLOYMENT # deployment name, e.g. “geth” GENESIS_PARAMS # path or JSON blob of genesis parameters EPOCH_PARAMS # path or JSON of epoch timing & periods TRADE_MINING_PARAMS # path or JSON of trade‐mining settings COLLATERAL_TRANCHES # JSON array of [threshold,ratio] pairs ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.