Rest API Endpoints

Reading Transaction

HTTP MethodEndpointDescription
GET/request/nonceGet nonce information for a specific wallet address as an identification value.
GET/request/balanceGet amount information of coins held by a specific wallet address.
GET/request/transaction/:transactionHashGet the transaction information that occurred in the blockchain environment with the transaction hash value as an identification value.
GET/request/transaction/:transactionHash/receiptGet 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/pollingThe 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 MethodEndpointDescription
POST/request/callQuery data in the blockchain environment.
POST /request/transactionGenerates a transaction in the blockchain environment.

Gas Estimation

HTTP MethodEndpointDescription
POST/request/estimate-gasGet gas information required for transactions in the blockchain environment.
GET/request/micro-chains/:microChainId/feeGet the fixed fee information of the blockchain environment.
GET/request/micro-chains/:microChainId/gas-priceGet gas price information in the blockchain environment.

Contract ABI Code

HTTP MethodEndpointDescription
GET/request/contract/address/:contractAddress/abi-codeGet the Contract ABI Code of the blockchain environment as the Contract Address.

Block

HTTP MethodEndpointDescription
GET/request/blocks/latestGets the height value of the latest block in the blockchain environment.
GET/request/blocks/:heightGet the block information of the blockchain environment with the block height as the identification value.