Decode a function call data, error, or event log from a deployed contract by blockchain native asset id and contract address.
Documentation Index
Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt
Use this file to discover all available pages before exploring further.
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
The contract's onchain address
The blockchain native asset identifier
The data to decode, which can be a string or an object containing the data and its type.
"0x1234567890abcdef"
The type of the data to decode.
ERROR, LOG, FUNCTION "FUNCTION"
The abi of the function/error/log to decode.
[
{
"inputs": [
{ "name": "to", "type": "address" },
{ "name": "amount", "type": "uint256" }
],
"stateMutability": "nonpayable",
"type": "function",
"name": "transfer"
}
]