MCP Ethers Wallet

getTransactionDetails

Get details about a transaction

Input Schema

NameRequiredDescriptionDefault
chainIdNoOptional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used.
providerNoOptional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.
txHashYesThe transaction hash to lookup

Input Schema (JSON Schema)

{ "properties": { "chainId": { "description": "Optional. The chain ID to use. If provided with a named network and they don't match, the RPC's chain ID will be used.", "type": "number" }, "provider": { "description": "Optional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.", "type": "string" }, "txHash": { "description": "The transaction hash to lookup", "type": "string" } }, "required": [ "txHash" ], "type": "object" }