Orbital Core API Library
Use these functions to interact programmatically with the Orbital Blockchain network (https://orbitalcore.io/). You can see the full list of Tendermint API functions here:
https://docs.tendermint.com/v0.33/rpc/
The functions are set up to work with the testnet. The live network hosts will be published when the production build is released.
Note: operating on the live network will incur transaction fees (rho) which are payable in EPIC tokens.
Where a signature is required, any Ethereum signer will work, e.g. https://app.mycrypto.com/sign-message. However, the prefaced "0x" should be removed and the last two characters replaced - 1b with 00 and 1c with 01.
We are working on a JS library to make things even easier for front end devs.
Explorer
GETGet Documents
Returns all documents in the state database.
Use `selector` to filter results, e.g. `\"selector\":{\"address\": \"553c89ae42e700c5f66AfCcfDe84546349C6caE8\" will return all documents with address
field = "553c89ae42e700c5f66AfCcfDe84546349C6caE8"
Separate multiple selectors with a comma.
Example response:
[{"_id":"balance-EPIC-cD0B7D95DdeEe386A8de74A2515392e250aB4fFE","_rev":"1-39652d62b12aabd39c610c73ae290afa","address":"cD0B7D95DdeEe386A8de74A2515392e250aB4fFE","amount":"5000000000000000000000000000","documentType":"balance","token":"EPIC"},{"_id":"token-EPIC","_rev":"1-5c03f36bb52ed6a07519d5a67bb13268","decimals":18,"documentType":"token","name":"EPIC","owner":"cD0B7D95DdeEe386A8de74A2515392e250aB4fFE","supply":"5000000000000000000000000000"},{"_id":"validator-Klkeg5D6JaluqJjpm3zlCfzsFDRCLiRkVyIxOQh+ciM=","_rev":"1-4212aecf8d60eb9db033da83d746dd86","address":"0x0000000000000000000000000000000000000000","documentType":"validator","genesis":true,"publicKey":"Klkeg5D6JaluqJjpm3zlCfzsFDRCLiRkVyIxOQh+ciM="}]
The result value is Base64 so needs to be converted for human comprehension, e.g. https://www.base64decode.org/ which will then return a JSON object. Or look in the Console.