getTransaction
Retrieve detailed information about a specific Ethereum transaction by providing its hash and chain ID using this tool.
Instructions
Get details about 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"
}