amirkhannoriitest
Updated 2022-03-09
9
1
2
3
4
5
6
›
⌄
select top 100 tx_from[0] as "wallet Address", count (tx_id) as "Number of Transactions"
--,min(block_timestamp)::date as min_date
from terra.transactions
group by 1
having min(block_timestamp)::date >=CURRENT_DATE-90
order by 2 DESC;
Run a query to Download Data