get_transaction_status
Check the status and details of an Aptos Blockchain transaction using its hash. Verify transaction success and retrieve comprehensive information for analysis.
Instructions
Get the status and details of a transaction by its hash. This is used for checking if a transaction was successful and getting detailed information about it. Returns comprehensive transaction information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transaction_hash | Yes | Transaction hash to check, e.g., 0x1234567890abcdef... |
Input Schema (JSON Schema)
{
"properties": {
"transaction_hash": {
"description": "Transaction hash to check, e.g., 0x1234567890abcdef...",
"type": "string"
}
},
"required": [
"transaction_hash"
],
"type": "object"
}