For the complete documentation index, see llms.txt. This page is also available as Markdown.

scutum_queryTxProcessStatus

Introduce how to integrate BlockRazor BSC RPC’s `scutum_queryTxProcessStatus` method.

scutum_queryTxProcessStatus is used to query the real-time process status of transactions sent to BlockRazor RPC. It is currently available on BSC.

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

Normal

{
  "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 tx

Abnomal

Last updated

Was this helpful?