0-MIDdis volume
Updated 2024-08-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select case
when AMOUNT_USD>0 and AMOUNT_USD<=10 then 'Below 10 $'
when AMOUNT_USD>10 and AMOUNT_USD<=100 then '10~100 $'
when AMOUNT_USD>100 and AMOUNT_USD<=1000 then '100~1K $'
when AMOUNT_USD>1000 and AMOUNT_USD<=10000 then '1K~10K $'
when AMOUNT_USD>10000 then 'Up to 10K $' end as dis_volume
,count(distinct ORIGIN_FROM_ADDRESS) as bridgers
,count(distinct TX_HASH) as bridges
from blast.core.ez_token_transfers
where ORIGIN_FUNCTION_SIGNATURE='0x6e067161'
and TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and dis_volume is not null
group by 1
QueryRunArchived: QueryRun has been archived