Decode Calldata
Decode and analyze EVM transaction calldata by running a simulation with ABI decoding.
Tool Name: tenderly_decode_calldata
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_calldata",
"args": {
"network_id": "1",
"to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"input": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000000000000000f4240"
}
}'Required fields in the current live schema: network_id, to, input. The example decodes ERC-20 transfer calldata against the Ethereum USDC contract; replace to and input with the contract and calldata you need to decode.