SDK Installation
This guide shows how to install the Orion SDK locally. The source code is publicly available on GitHub.
1) Install from PyPI
Install the latest stable version from PyPI:
pip install orion-finance-sdk
Check available CLI commands any time:
orion --help
2) Configure Environment
RPC_URL
– Chain RPC endpoint;VAULT_DEPLOYER_PRIVATE_KEY
– Deployer private key for signing vault deployment transactions;CURATOR_ADDRESS
– Curator address for fees/ownership;CURATOR_PRIVATE_KEY
– Curator private key for signing intent submission transactions;ORION_VAULT_ADDRESS
– Address of the Orion vault to interact with.
Note: Keep your
.env
file private.
Dependencies
orion-sdk
requires:
"python-dotenv>=1.1.0,<2.0.0",
"numpy>=2.2.0,<3.0.0",
"typer>=0.16.0,<1.0.0",
"web3>=7.12.0,<8.0.0",