TOTAL_TX_FEE | AVG_TX_FEE | |
---|---|---|
1 | 126.621986929 | 0.002463942147 |
datavortextotal fees in eth
Updated 2025-04-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
WITH base AS (
SELECT
DISTINCT tx_hash
FROM
ethereum.core.ez_decoded_event_logs
WHERE
contract_address = LOWER('0xfae103dc9cf190ed75350761e95403b7b8afa6c0')
AND event_name = 'Transfer'
AND decoded_log:from = '0x0000000000000000000000000000000000000000'
),
transaction_fees AS (
SELECT
DISTINCT tx_hash,
tx_fee
FROM
ethereum.core.fact_transactions
)
SELECT
SUM(transaction_fees.tx_fee) AS total_tx_fee,
AVG(transaction_fees.tx_fee) AS avg_tx_fee
FROM
base
JOIN transaction_fees ON base.tx_hash = transaction_fees.tx_hash;
Last run: about 1 month ago
1
32B
119s