Algodex SDK v2
Updated July 28th, 2022
The Algodex Software Development Kit (SDK) 2.0 is for developers who wish to programmatically interact with Algodex. The SDK enables developers to integrate Algodex's exchange logic into their own DApps. A robust description of the SDK can be found here, and the Github and setup instructions can be found here.
- 2.
- 3.
npm install @algodex/algodex-sdk
yarn add @algodex/algodex-sdk
{
"config": {
"algod": {
"uri": "https://testnet-algorand.api.purestake.io/ps2",
"token": "<TOKEN>"
},
"indexer": {
"uri": "https://algoindexer.testnet.algoexplorerapi.io",
"token": ""
},
"explorer": {
"uri": "https://indexer.testnet.algoexplorerapi.io",
"port": ""
},
"dexd": {
"uri": "https://api-testnet-public.algodex.com/algodex-backend",
"token": ""
}
}
}
{
"config": {
"algod": {
"uri": "https://mainnet-algorand.api.purestake.io/ps2",
"token": "<TOKEN>"
},
"indexer": {
"uri": "https://algoindexer.algoexplorerapi.io",
"token": ""
},
"explorer": {
"uri": "https://indexer.algoexplorerapi.io",
"port": ""
},
"dexd": {
"uri": "https://app.algodex.com/algodex-backend",
"token": ""
}
}
}
Last modified 8mo ago