CHAIN | TRANSACTIONS | USERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | Polygon | 42 | 36 | 1388.13038392 | 26.694815075 |
2 | Avalanche | 19 | 18 | 20395.45664556 | 971.212221217 |
3 | Arbitrum | 232 | 179 | 14281.240959453 | 57.58564903 |
4 | Optimism | 81 | 76 | 7870.936553632 | 85.553658192 |
5 | Base | 147 | 142 | 7239.153999587 | 42.583258821 |
6 | Ethereum | 20 | 20 | 1731.974343401 | 86.59871717 |
Afonso_DiazBy Chain
Updated 2025-04-03
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
›
⌄
with
p as (
select * from boba.core.ez_decoded_event_logs limit 1
),
main as (
select
tx_hash,
origin_from_address as user,
block_timestamp,
amount_usd,
decoded_log:bridgeData:bridge as platform,
'Base' as chain
from
base.core.ez_decoded_event_logs
join
base.core.ez_token_transfers
using (tx_hash, block_timestamp, origin_to_address)
where
tx_status = 'SUCCESS'
and event_name = 'LiFiTransferStarted'
and origin_to_address = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and decoded_log:bridgeData:integrator = 'jumper.exchange'
and from_address = origin_to_address
and decoded_log:bridgeData:destinationChainId = 288
union all
select
tx_hash,
origin_from_address as user,
block_timestamp,
amount_usd,
decoded_log:bridgeData:bridge as platform,
'Optimism' as chain
Last run: 30 days ago
6
282B
559s