Yousefi_1994Which assets have been bridged the most over time?
Updated 2022-06-20
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 matic_bridge as (
select
symbol,
sum(amount_usd) as volume_of_bridge,
count(distinct tx_hash) as number_of_brigde
from ethereum.core.ez_token_transfers
where origin_to_address = '0x22b1cbb8d98a01a3b71d034bb899775a76eb1cc2'
and origin_function_signature = '0xdeace8f5'
and has_price = true
group by symbol
order by volume_of_bridge
),
dai_bridge as (
select
symbol,
sum(amount_usd) as volume_of_bridge,
count(distinct tx_hash) as number_of_brigde
from ethereum.core.ez_token_transfers
where origin_to_address = '0x3d4cc8a61c7528fd86c55cfe061a78dcba48edd1'
and origin_function_signature = '0xdeace8f5'
and has_price = true
group by symbol
order by volume_of_bridge
),
usdc_bridge as (
select
symbol,
sum(amount_usd) as volume_of_bridge,
count(distinct tx_hash) as number_of_brigde
from ethereum.core.ez_token_transfers
where origin_to_address = '0x3666f603cc164936c1b87e207f36beba4ac5f18a'
and origin_function_signature = '0xdeace8f5'
and has_price = true
group by symbol
order by volume_of_bridge
),
Run a query to Download Data