TRANSACTIONS | USERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|
1 | 541 | 441 | 52906.892885552 | 87.739457522 |
Afonso_DiazTotal
Updated 3 days ago
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: 3 days ago
1
40B
828s