get_transaction_receipt
Retrieve transaction receipt details using a transaction hash on the Arbitrum network. Input the transaction hash to access status, logs, and gas usage.
Instructions
Get transaction receipt by hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rpcUrl | No | The RPC URL of the chain (optional if default is set) | |
txHash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"rpcUrl": {
"description": "The RPC URL of the chain (optional if default is set)",
"type": "string"
},
"txHash": {
"description": "Transaction hash",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}