moon_isTxFinalized
Check for the finality of the transaction given by its EVM tx hash
Check for the finality of the transaction given by its EVM tx hash
Parameters
tx_hash
: STRING The EVM tx hash of the transaction
Returns
BOOLEAN Returns true
if the tx is finalized; false
if the tx is not finalized or not found
Example
Request
curl -H "Content-Type: application/json" \
-d '{"id": 1, "jsonrpc":"2.0", "method": "moon_isTxFinalized", "params": ["0x07e60182b412ef37ac0c00af7df7acdec147454fdb18f6203377846c057c4ca3"]}' \
https://moonbeam.blastapi.io/<project-id>
Result
{
"jsonrpc": "2.0",
"result": true,
"id": 1
}