The transaction API provide users the entries to interact with the transactions.
Last updated 1 year ago
The Query Transaction Information API provides users to get the transaction information according to id.
Query Transaction Information
Authorization
Bearer Token
Header
string
id
The id of the transaction
Path
hash
The hash of the transaction
state_code
The code of the transaction state
integer
state_msg
The msg of the state
is_finalized
Whether the transaction is finalized
boolean
is_success
Whether the transaction is successful
error_msg
The msg of the error during executing
{ "hash": "0xd7b1403ff021df36b98bece9eacdb3cab7cc10c5ff76dfb0f885bc08b362658f", "state_code": 3, "state_msg": "Excuted and success", "is_finalized": true, "is_success": true, "error_msg": "" }
curl --request GET \ --url https://api.nftrainbow.cn/v1/tx/{id} \ --header 'Authorization: Bearer {JWT}' \ --header 'Content-Type: application/json'
Get transaction informantion by ID
Transaction ID
Bearer Open_JWT
curl -L \ --url 'http://api.nftrainbow.cn/v1/tx/{id}'
{ "error_msg": "text", "hash": "text", "is_finalized": true, "is_success": true, "state_code": -10, "state_msg": "text" }