getTransactionReceipt
Retrieve transaction details via hash and chain ID for Ethereum-based operations. Use this tool to access essential data for research or automation workflows.
Instructions
Get the receipt of a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
hash | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"hash": {
"type": "string"
}
},
"required": [
"hash",
"chainId"
],
"type": "object"
}