4byte-decode
Decode ABI-encoded calldata into readable formats using 4byte.directory for Ethereum blockchain transactions. Simplify contract interaction analysis.
Instructions
Decode ABI-encoded calldata using 4byte.directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calldata | Yes | ABI-encoded calldata (hexadecimal string) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"calldata": {
"description": "ABI-encoded calldata (hexadecimal string)",
"type": "string"
}
},
"required": [
"calldata"
],
"type": "object"
}