eferGas consumption
Updated 2023-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
WITH vote_data AS(
SELECT
TX_HASH
from ethereum.core.fact_event_logs
where contract_address='0x5d2c31ce16924c2a71d317e5bbfd5ce387854039'
and EVENT_INPUTS IS NOT NULL
and EVENT_NAME='VoteCast'
and tx_status='SUCCESS'
ORDER BY
BLOCK_TIMESTAMP DESC
)
SELECT AVG(TX_FEE)
FROM vote_data, ethereum.core.fact_transactions AS gas_data
WHERE vote_data.TX_HASH = gas_data.TX_HASH
Run a query to Download Data