交易
查询交易状态
返回合约执行的状态码。
https://gatescan.org/api
?module=transaction
&action=getstatus
&txhash=0xa6739d250695197e24c16763cca96d05b83fd30182a50dab8afc8b4c3f66b141
&apikey=YourApiKeyToken
在 浏览器 中尝试此端点。
- 请求
- 响应
| 参数 | 描述 |
|---|---|
| txhash | 要检查执行状态的交易哈希的 字符串 |
{
"status":"1",
"message":"success",
"data":{ isError: 0, errDescription: '' }
}
📖 Tip: The
isErrorfield returns0for successful transactions and1for failed transactions.
查询交易 Receipt 状态
返回交易执行的状态码
https://gatescan.org/api
?module=transaction
&action=gettxreceiptstatus
&txhash=0xa6739d250695197e24c16763cca96d05b83fd30182a50dab8afc8b4c3f66b141
&apikey=YourApiKeyToken
在 浏览器 中尝试此端点。
- 请求
- 响应
| 参数 | 描述 |
|---|---|
| txhash | 要检查执行状态的交易哈希的 字符串 |
{
"status":"1",
"message":"success",
"data":{ isError: 0, errDescription: '' }
}
📖 Tip: The
statusfield returns0for failed transactions and1for successful transactions.