freemartianMetaMask Fee
Updated 2022-06-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with platforms as (
select distinct tx_hash, platform
from ethereum.core.ez_dex_swaps
where origin_from_address in (
select distinct origin_from_address as MetaMask_Swappers
from ethereum.core.fact_event_logs
where origin_to_address = '0x881d40237659c251811cec9c364ef91dc08d300c')
)
select sum(fee_usd) as fee_usd
from ethereum.transactions t
inner join platforms p on p.tx_hash = t.tx_id
Run a query to Download Data