RayyykAxelar Bridge 4
Updated 2022-10-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with table_1 as (select currency,
count(distinct(tx_id)) as tx_count,
row_number () over (order by tx_count desc) as count
from axelar.core.fact_transfers
where tx_succeeded = 'TRUE'
and sender like '%axelar%'
group by 1
order by 2 desc
limit 5)
select currency,
case
when currency = 'uaxl' then 'AXL'
when currency = 'uusdc' then 'USDC'
when currency = 'uxki' then 'XKI'
when currency = 'weth-wei' then 'WETH'
when currency = 'wbtc-satoshi' then 'WBTC'
end as symbol,
tx_count,
count
from table_1
order by 3 desc
Run a query to Download Data