TYPE | USERS | TXS | |
---|---|---|---|
1 | Swap | 200494 | 1222575 |
2 | Bridge | 103634 | 327954 |
0-MIDcountable Metrics
Updated 2025-01-21
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 act1 as (
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'
)
select 'Bridge' as type
,count(distinct ORIGIN_FROM_ADDRESS) as users
,count(distinct TX_HASH) as txs
from base.core.ez_token_transfers
where ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and ORIGIN_FROM_ADDRESS=FROM_ADDRESS
and TX_HASH in (select TX_HASH from tab1)
group by 1
),
act2 as (
with tab1 as (
select --BLOCK_TIMESTAMP::date as day
TX_HASH
,ORIGIN_FROM_ADDRESS
from base.core.ez_decoded_event_logs
where ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and EVENT_NAME='LiFiGenericSwapCompleted'
and DECODED_LOG:integrator='jumper.exchange'
and TX_STATUS='SUCCESS'
),
tab2 as (
select --BLOCK_TIMESTAMP::date as day
AMOUNT_USD
,TX_HASH
,ORIGIN_FROM_ADDRESS
,TO_ADDRESS
Last run: 3 months ago
2
50B
316s