provider_get_transaction
Retrieve Ethereum or EVM-compatible blockchain transaction details by inputting the transaction hash, enabling efficient blockchain query and analysis.
Instructions
Get a transaction by hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transactionHash | Yes | The transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"transactionHash": {
"description": "The transaction hash",
"type": "string"
}
},
"required": [
"transactionHash"
],
"type": "object"
}