Decode Input
Decode raw EVM transaction calldata into human-readable function name and parameters using Tenderly Gateway RPC.
Tool Name: tenderly_decode_input
Category Endpoint: POST /hive_security_risk/mcp
Data Source: Tenderly
Overview
This tool is documented under the Security & Risk category.
For schemas and the complete live catalog, also use:
GET /api/v1/toolshive://toolsget_api_endpoint_schemafrom the root MCP endpoint
Quick Example
bash
curl -X POST https://mcp.hiveintelligence.xyz/api/v1/execute \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_HIVE_API_KEY" \
-d '{
"tool": "tenderly_decode_input",
"args": {
"calldata": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000000000000000f4240"
}
}'Required fields in the current live schema: calldata. The example decodes ERC-20 transfer calldata; replace it with the calldata you want to inspect.