Node9X Service
  • 🍄MAINNET
    • đŸŸĸKopi Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade (V11)
      • đŸĒĸCosmovisor
      • đŸ›°ī¸Command
  • 🚀Testnet
    • đŸ§ŦExplorer
    • đŸŸĸNative
      • âš™ī¸Installation
    • đŸŸĸXRPL EVM
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • đŸ•šī¸Command
    • đŸŸĸPipe Network
      • Installation
      • Upgrade
    • đŸŸĸPell
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade (v1.1.1)
      • đŸ•šī¸Command
    • đŸŸĸStructs
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • đŸ•šī¸Command
    • đŸŸĸPrysm
      • đŸ›°ī¸Service & Snapshot
      • âš™ī¸Installation
      • 💾Command
    • đŸŸĸZenrock
      • 💾Service & Snapshot
      • âš™ī¸Installation
      • â›“ī¸Upgrade ( v6.3.3)
      • đŸ•šī¸Cosmovisor
      • đŸ›°ī¸Command
      • âš™ī¸Sidecar (âœ”ī¸Oracle)
        • 🔗Upgrade
    • đŸŸĸStory Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation (Odyssey)
      • â›“ī¸Upgrade (v0.13.1)
        • đŸĒĸUpgrade (v0.13.0)
      • â›“ī¸Cosmovisor
      • đŸ›°ī¸Command
    • đŸŸĸ0G Chain
      • Service & Snapshot
      • Installation
        • Cosmovisor
      • Commands
      • â˜‘ī¸0G Storage Node
        • Upgrade (v0.7.3)
      • â˜‘ī¸0G Storage KV
      • â˜‘ī¸0G DA Node
        • Update
      • â˜‘ī¸0G DA Client
    • đŸŸĸAirchains
      • 💾Service & Snapshot
      • âš™ī¸Installation
        • đŸĒĸCosmovisor
        • đŸ”ēEVM ZK Rollup
      • đŸ•šī¸Commands
      • â›“ī¸Upgrade
    • đŸŸĸAllora
      • đŸ”ēWorkers
        • Create tool and worker wallet
        • Install Worker 1
        • Install Worker 2
        • Troubleshooting
        • Script for checking worker
      • Another method
      • Service
      • Installation By Dock (Recommend)
      • Installation
      • Snapshot & State sync
      • Useful commands
    • đŸŸĸHedge Block
      • Service
      • Installation
      • Commands
    • đŸŸĸDill Chain
      • Usage Commands
    • đŸŸĸFiamma Chain
      • đŸĨĻServices & Snapshot
      • âš™ī¸Installation
      • đŸ›°ī¸Usage Command
    • đŸŸĸElixir Testnet
      • âš™ī¸Installation
    • đŸŸĸChainbase
      • â›“ī¸Installation
    • 🔘AXONE Protocol
      • 💾Service & Snapshot
      • âš™ī¸Installation
    • 🔘Symphony
      • 🔌Installation
      • đŸĨĻFresh Peer
    • 🔘Empeiria
      • Installation
      • Usage Command
Powered by GitBook
On this page

Was this helpful?

  1. Testnet
  2. Allora
  3. Workers

Script for checking worker

`Worker 1-1 ETH

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "1", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "ETH" } ], "number_of_nodes": -1, "timeout": 2 } }'

Worker 1-3 BTC

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "3", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "BTC" } ], "number_of_nodes": -1, "timeout": 2 } }'

Worker 1 - 5 SOL

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "5", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "SOL" } ], "number_of_nodes": -1, "timeout": 2 } }'```

Worker 2-2 ETH

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "2", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "ETH" } ], "number_of_nodes": -1, "timeout": 2 } }'

Worker 2-4 BTC

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "4", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "BTC" } ], "number_of_nodes": -1, "timeout": 2 } }'

Worker 2 - 6 SOL

curl --location 'https://heads.testnet-1.testnet.allora.network/api/v1/functions/execute'
--header 'Content-Type: application/json'
--data '{ "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm", "method": "allora-inference-function.wasm", "parameters": null, "topic": "6", "config": { "env_vars": [ { "name": "BLS_REQUEST_PATH", "value": "/api" }, { "name": "ALLORA_ARG_PARAMS", "value": "SOL" } ], "number_of_nodes": -1, "timeout": 2 } }'
PreviousTroubleshootingNextAnother method

Last updated 8 months ago

Was this helpful?

🚀
đŸŸĸ
đŸ”ē