decode_tx
Decode Bitcoin transaction data by inputting raw hexadecimal data to extract transaction details using the Bitcoin MCP Server. Simplify analysis of Bitcoin network activities.
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"
}