Updated 2022-11-13
9
1
2
3
4
5
›
⌄
select sum(AMOUNT) , SENDER from osmosis.core.fact_transfers
where TX_STATUS='SUCCEEDED' and to_date(block_timestamp) > '2022-11-01' and to_date(block_timestamp)!=CURRENT_DATE and AMOUNT>0 and CURRENCY='uosmo'
group by SENDER
order by 1 DESC
limit 10
Run a query to Download Data