adriaparcerisasterra old bounty ax3
Updated 2022-11-22
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select date_trunc('day', block_timestamp) as date,
sum(amount/pow(10,decimal)) as total_amount,
count(distinct tx_id) as transactions,
count(distinct sender) as wallets,
total_amount/transactions as average_amount_per_transfer,
total_amount/wallets as average_amount_per_wallet
from axelar.core.fact_transfers
where currency = 'uusdc' and TX_SUCCEEDED = 'TRUE'
and block_timestamp::date >= current_date - 30
group by 1
Run a query to Download Data