BRIDGES | BRIDGERS | |
---|---|---|
1 | 103 | 1 |
2 | 86 | 1 |
3 | 95 | 3 |
4 | 46 | 8 |
5 | 41 | 7 |
6 | 9 | 601 |
7 | 11 | 326 |
8 | 54 | 5 |
9 | 20 | 63 |
10 | 64 | 3 |
11 | 49 | 2 |
12 | 22 | 47 |
13 | 45 | 7 |
14 | 69 | 4 |
15 | 130 | 1 |
16 | 72 | 3 |
17 | 131 | 1 |
18 | 6 | 1328 |
19 | 30 | 28 |
20 | 33 | 11 |
0-MIDuser dis base
Updated 2024-04-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with tab1 as (
select
ORIGIN_FROM_ADDRESS
,count(distinct TX_HASH) as bridges
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>=current_date-30
group by 1
)
select bridges
,count(distinct ORIGIN_FROM_ADDRESS) as bridgers
from tab1
group by 1
Last run: about 1 month ago
96
744B
63s