SyndicaArbitrum Top Fees
Updated 2024-12-04
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from Avalanche Top Fees @ https://flipsidecrypto.xyz/studio/queries/ea39e418-c7d0-4d84-b76e-710eb61b7245
-- forked from WillF-bduZ1b / SOL, MATIC, AVAX, BNB, ARB NFT Mints Gas Prices @ https://flipsidecrypto.xyz/WillF-bduZ1b/q/AcHTkiLNTSqg/sol-matic-avax-bnb-arb-nft-mints-gas-prices
with
contracts as (
select
b.address
, c.label_type
from arbitrum.core.dim_contracts b inner join arbitrum.core.dim_labels c
on b.address = c.address
where
label_type in (
'dapp'
, 'games'
, 'dex'
, 'bridge'
, 'defi'
, 'nft'
, 'token'
)
group by 1,2
)
, top_fees as (
select
tx_hash
, tx_fee * price / 100 as fee
from arbitrum.core.fact_transactions tx
left join ethereum.price.ez_prices_hourly p
on date_trunc('hour', tx.block_timestamp) = p.hour and p.symbol = 'WETH'
where status = 'SUCCESS'
and block_timestamp >= '2024-11-01' and block_timestamp < '2024-12-01'
order by fee DESC
limit 100
QueryRunArchived: QueryRun has been archived