Input Schema
{
"type": "object",
"required": ["hash"],
"properties": {
"hash": {
"type": "string",
"description": "Transaction hash as a hex string (64 hex chars). This is the hash returned from transact, signAndSubmit, or submit tools."
}
}
}
Output Schema
{
"type": "object",
"properties": {
"position": {
"description": "Position of the transaction in the consensus ordering [block-index, tx-index]"
},
"tx": {
"description": "The signed transaction data including origin address, sequence number, and code"
},
"found": {
"type": "boolean",
"description": "True if the transaction was found, false otherwise"
},
"result": {
"description": "Execution result of the transaction including value, error code (if failed), and metadata"
}
}
}