nimasadjadiUntitled Query
9
1
2
3
4
5
6
7
8
9
›
⌄
select
distinct tx_from,
date_trunc(DAY,BLOCK_TIMESTAMP)::date as day,
sum(amount) as inflow_amount
from solana.core.fact_transfers
where mint='EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
group by 1
order by 3 DESC
limit 5
Run a query to Download Data