get-transaction
Retrieve detailed information about a specific Osmosis blockchain transaction using its unique hash for accurate tracking and analysis.
Instructions
Returns detailed information about a specific transaction by hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | The transaction hash to query |
Input Schema (JSON Schema)
{
"properties": {
"hash": {
"description": "The transaction hash to query",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}