freeman_7Total bridged volume 30-DAYS
Updated 2024-09-03
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 bridge_transactions as (
select
distinct tx_hash as hash
From
arbitrum.core.ez_decoded_event_logs
Where
event_name = 'LiFiTransferStarted'
and block_timestamp::date >= current_timestamp - interval '30 days'
And ORIGIN_TO_ADDRESS = lower('0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae')
And decoded_log:bridgeData:integrator = 'jumper.exchange'
),
token_bridge_volume as (
select
'jumper' as protocol,
sum(token.amount_usd) as token_volume
from (
select
distinct tx_hash,
amount_usd
from arbitrum.core.ez_token_transfers
where block_timestamp::date >= current_timestamp - interval '30 days'
) token
join bridge_transactions br ON br.hash = token.tx_hash
),
native_bridge_volume as (
select
'jumper' as protocol,
sum(token.amount_usd) as native_volume
from (
select
distinct tx_hash as hash,
amount_usd
from arbitrum.core.ez_native_transfers
where block_timestamp::date >= current_timestamp - interval '30 days'
QueryRunArchived: QueryRun has been archived