Reading Transaction
HTTP Method | Endpoint | Description |
---|---|---|
GET | /request/nonce | Get nonce information for a specific wallet address as an identification value. |
GET | /request/balance | Get amount information of coins held by a specific wallet address. |
GET | /request/transaction/:transactionHash | Get the transaction information that occurred in the blockchain environment with the transaction hash value as an identification value. |
GET | /request/transaction/:transactionHash/receipt | Get the receipt result of the transaction that occurred in the blockchain environment with the transaction hash value as an identification value. |
GET | /request/transaction/:transactionHash/polling | The transaction hash value is used as an identification value to bring the receipt result for the transaction that occurred in the blockchain environment in real time. |
Writing Transaction
HTTP Method | Endpoint | Description |
---|---|---|
POST | /request/call | Query data in the blockchain environment. |
POST | /request/transaction | Generates a transaction in the blockchain environment. |
Gas Estimation
HTTP Method | Endpoint | Description |
---|---|---|
POST | /request/estimate-gas | Get gas information required for transactions in the blockchain environment. |
GET | /request/micro-chains/:microChainId/fee | Get the fixed fee information of the blockchain environment. |
GET | /request/micro-chains/:microChainId/gas-price | Get gas price information in the blockchain environment. |
Contract ABI Code
HTTP Method | Endpoint | Description |
---|---|---|
GET | /request/contract/address/:contractAddress/abi-code | Get the Contract ABI Code of the blockchain environment as the Contract Address. |
Block
HTTP Method | Endpoint | Description |
---|---|---|
GET | /request/blocks/latest | Gets the height value of the latest block in the blockchain environment. |
GET | /request/blocks/:height | Get the block information of the blockchain environment with the block height as the identification value. |