abi-decode
Decode ABI-encoded data by specifying parameter types and input hexadecimal data, simplifying Ethereum blockchain interactions for developers and users.
Instructions
decode abi encoded data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | hexadecimal data to decode | |
types | Yes | parameter types array, e.g. ['uint256', 'address', 'bool'] |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"description": "hexadecimal data to decode",
"type": "string"
},
"types": {
"description": "parameter types array, e.g. ['uint256', 'address', 'bool']",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"types",
"data"
],
"type": "object"
}