decode_tx
Decode Bitcoin transaction hex data into readable details using the Cross-LLM MCP Server, enabling accurate interpretation of blockchain inputs, outputs, and metadata.
Instructions
Decode a Bitcoin transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rawHex | Yes | Transaction hex |
Input Schema (JSON Schema)
{
"properties": {
"rawHex": {
"description": "Transaction hex",
"type": "string"
}
},
"required": [
"rawHex"
],
"type": "object"
}