get-transaction
Retrieve blockchain transaction details using hash and chain ID with a MetaMask-integrated tool, enabling secure and direct interaction with blockchain data.
Instructions
Fetch transaction given hash or block identifiers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | No | ID of chain to use when fetching data. | |
hash | Yes | Hash to get transaction. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "ID of chain to use when fetching data.",
"type": "number"
},
"hash": {
"description": "Hash to get transaction.",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}