EVM Decoding Functions
Functions to decode raw EVM events and function calls in DuneSQL.
The EVM decoding functions enable users to decode raw EVM data (using the ABI) into human-readable tables within SQL queries, simplifying subsequent analysis. 🧑‍🏫 See the bebow example dashboard for an illustration.
Functions
decode_evm_event()
decode_evm_event(abi: varchar, input: table [, topics: descriptor [, data: descriptor [, null_on_error: boolean]]])
→ table
Decodes EVM events according to the provided ABI; returns each decoded parameter as a separate column as defined in the inputs’ name and type.
Arguments
abi
(required, type: varchar): This is the event specification in JSON format. The passed value must be constant at analysis time. Each input specified in the ABI results in one output column.input
(required, type: table): This is the table or query providing the topics and data for event decoding. The passed table or query must be preceded with theTABLE
keyword.topics
(optional, type: descriptor, default: DESCRIPTOR(topic0, topic1, topic2, topic3)): Specifies which columns of the input contain the topics. Null topics are ignored by the function.data
(optional, type: descriptor, default: DESCRIPTOR(data)): Specifies which column of the input contains the data.null_on_error
(optional, type: boolean, default: true): Specifies the function behavior if a decoding error occurs. By default, the error is suppressed, and null values are produced.
Function Output
The function produces one output column for each parameter defined in the ABI inputs. Column names are based on the parameter names in the ABI, or default to _arg0
, _arg1
, etc., if not named in the ABI. Columns are ordered by the indexed
property in the ABI, with indexed
inputs first.
Pass-through columns: In addition to decoded columns, the decode_evm_event
function outputs all columns from the input table, i.e. the returned table will have one column for each ABI argument, followed by all columns of the INPUT table.
Examples
decode_evm_function_call()
decode_evm_function_call(abi: varchar, data: table [, input: descriptor [, output: descriptor [, null_on_error: boolean]]])
→ table
Decodes EVM function calls according to the provided ABI; returns each decoded input and output parameter as separate columns as defined in the ABI.
Arguments
abi
(required, type: varchar): This is the function call specification in JSON format. The passed value must be constant at analysis time. The query engine uses this argument to determine the names and types of the result columns. Each input and output specified in the ABI results in one output column.data
(required, type: table): This is the table or query providing the input and output columns for function call decoding. The passed table or query must be preceded with theTABLE
keyword.input
(optional, type: descriptor, default: DESCRIPTOR(input)): Specifies which columns of the data table contain the input varbinary for the function call. By default, the function will use the column namedinput
.output
(optional, type: descriptor, default: DESCRIPTOR(output)): Specifies which columns of the data table contain the output varbinary for the function call. By default, the function will use the column namedoutput
.null_on_error
(optional, type: boolean, default: true): Specifies the function behavior if a decoding error occurs. By default, the error is suppressed, and null values are produced.
Function Output
The function produces one output column for each input and output of the function call as specified in the ABI. Column names are based on the input and output names in the ABI, or default to _input0
, _input1
, etc., and _output0
, _output1
, etc., if not named in the ABI. If two arguments (either input or output) have the same name in the ABI, the last declared argument will take precedence.
Pass-through columns: In addition to decoded columns, the decode_evm_function_call
function outputs all columns from the input table, i.e. the returned table will have one column for each ABI argument, followed by all columns of the DATA table.
Examples
Tips
How to find the ABI
-
⚠️ ABI inputted should be for only that event or function call, not for the entire contract.
-
For more info on what is an ABI, we recommend visiting this resource.
-
Generally the best way to find the ABI is by visiting a block explorer like Etherscan, input the contract address, and go to Contract —> Code —> Contract ABI and find the ABI for that specific event.
How to find the topic0
and filter for the event emitted
- Generally, you can find the
topic0
by going to a block explorer. We recommend finding an example transaction. Then, go to the “Logs” tab, identify the event you want, and grab thetopic0
from there. topic0
is a keccak256 hash of the event’s name concatenated with the types of its indexed parameters, without any spaces.
How to find the input
and filter for the function called
- Generally, you can find the
input
by going to a block explorer. We recommend finding an example transaction. In the “Overview” tab, scroll down and click on “click to show more”. Then grab the MethodId in the Input Data filed. - The MethodId you identified is the first 4 bytes of the keccak256 hash of the function signature. So we can use the function
starts_with(input, <MethodID>)
to filter for the function call now.
Was this page helpful?