get_transaction
Retrieve detailed information about a specific transaction on the Penumbra blockchain using its unique hash. Facilitates privacy-preserving transaction queries on the Penumbra MCP Server.
Instructions
Get details of a specific transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"hash": {
"description": "Transaction hash",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}