sarathnot_ur_keys8
Updated 2022-11-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with results as ( select
case
when block_timestamp::date >= '2022-11-07' then 'After Collapsing'
else 'Before Collapsing'
end as types,
sum(amount/pow(10, decimal)) as total_usd_amount,
count(distinct(sender)) as total_wallet,
count(distinct(tx_id)) as total_transaction
from axelar.core.fact_transfers
where block_timestamp::date >= '2022-11-01'
and amount/pow(10, decimal) < 999999
and tx_succeeded = 'TRUE'
GROUP by types)
select *
from results
order by 1 desc
Run a query to Download Data