scutum_queryTxProcessStatus
Introduce how to integrate BlockRazor BSC RPC’s `scutum_queryTxProcessStatus` method.
Request Example
curl -X POST -H "Content-Type: application/json" --data'{
"id": 1,
"jsonrpc": "2.0",
"method": "scutum_queryTxProcessStatus",
"params": ["0xf84a……e54284"]
}'<ETH_NODE_URL>Response Example
{
"jsonrpc": "2.0",
"result": "{"msg\":\"tx is included on chain\",\"status\":\"included\"}",
"id": "1"
} // the tx is executed on chain, success or reverted{
"jsonrpc": "2.0",
"result": "{"msg\":\"tx is expired and discarded\",\"status\":\"expired\"}",
"id": "1"
} // 100 blocks has passed since submission of the txLast updated
Was this helpful?