0-MIDBridge Path by volume
Updated 2024-08-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select concat(SOURCE_CHAIN,'➡',DESTINATION_CHAIN) as path
,sum(AMOUNT_USD) as volume
,count(distinct TX_HASH) as bridges
from near.defi.ez_bridge_activity
where BLOCK_TIMESTAMP::date>=current_date-30
and PLATFORM='rainbow'
and TX_HASH not in ('HaK2Rft7UzAqHk3CHscWnEeWW8Hisupqtfe7zf82GRLD') --wrong BRRR price
group by 1
order by 2 desc
QueryRunArchived: QueryRun has been archived