SYMBOL | VOLUME | |
---|---|---|
1 | USDC | 5862281.44129386 |
2 | WETH | 398654.871739477 |
3 | cbBTC | 44626.54203096 |
4 | USDbC | 44016.895923928 |
5 | wstETH | 36308.545107962 |
6 | cbETH | 25511.056767632 |
7 | wsuperOETHb | 22290.707797 |
8 | EURC | 8840.926624636 |
9 | USDT | 5456.966474058 |
10 | superOETHb | 2214.538343121 |
11 | ODOS | 1880.971517311 |
12 | USDz | 1713.855216802 |
13 | ZRO | 1361.72170333 |
14 | DAI | 1220.421232969 |
15 | BITCOIN | 1183.245801869 |
16 | aBascbETH | 828.629749905 |
17 | VIRTUAL | 803.391228725 |
18 | wrsETH | 771.822231278 |
19 | AIXBT | 709.355660381 |
20 | ANZ | 616.91310544 |
0-MIDtoken % share zk base
Updated 2025-01-22
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
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with tab1 as (
select
TX_HASH
from base.core.ez_decoded_event_logs
where EVENT_NAME='LiFiTransferStarted'
and DECODED_LOG:bridgeData:integrator='jumper.exchange'
and ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP::date>='2025-01-06' and BLOCK_TIMESTAMP::date<='2025-01-19'
and DECODED_LOG:bridgeData:destinationChainId=324
)
select SYMBOL
,sum(AMOUNT_USD) as volume
from base.core.ez_token_transfers
where ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP::date>='2025-01-06' and BLOCK_TIMESTAMP::date<='2025-01-19'
and ORIGIN_FROM_ADDRESS=FROM_ADDRESS
and TX_HASH in (select TX_HASH from tab1)
and AMOUNT_USD is not null
group by 1
order by 2 desc
Last run: 3 months ago
54
1KB
20s