CHAIN | TXS | USER_COUNT | AMOUNT_USD | |
---|---|---|---|---|
1 | Solana | 164040 | 55024 | 1251192228.27204 |
2 | Base | 114877 | 40972 | 496351995.532907 |
3 | Ethereum | 109334 | 45370 | 1018178121.70636 |
4 | Arbitrum | 77978 | 27078 | 603655540.340925 |
5 | BSC | 56965 | 30117 | 238609971.773433 |
6 | polygon | 28156 | 11507 | 25093608.0120587 |
7 | Avalanche | 11330 | 4978 | 24736414.5174526 |
8 | Optimism | 16049 | 6601 | 27863655.1929957 |
h4wkall 2
Updated 2024-07-27
9999
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
›
⌄
with ethereum_price as (
select hour::date as price_date,
token_address,
symbol,
decimals,
avg(price) as price
from Ethereum.price.ez_prices_hourly
group by 1,2,3,4
)
, ETH_price as (
select hour::date as price_date,
token_address,
symbol,
decimals,
avg(price) as ETH_price
from ethereum.price.ez_prices_hourly
where symbol = 'WETH'
group by 1,2,3,4
)
, base_from_Ethereum as (
select distinct tx_hash
from Ethereum.core.fact_token_transfers t
where 1 = 1
and block_timestamp >= CURRENT_DATE - 90 and block_timestamp < CURRENT_DATE
and to_address = '0xef4fb24ad0916217251f553c0596f8edc630eb66'
)
, ethereum_cancelled_tx as (
select tx_hash
FROM ethereum.core.fact_event_logs
where 1 = 1
and block_timestamp >= CURRENT_DATE - 90 and block_timestamp < CURRENT_DATE
and topics[0] = '0x7d7d1c5b3eadbe275ceb358e65cd57410b35997187258dbaaae42ab6e1405fd8'
)
, from_Ethereum as (
select block_timestamp::date as date,
'From' as route_type,
Last run: about 2 months ago
8
327B
1014s