SELECT BLOCK_TIMESTAMP::date as date,
COUNT(DISTINCT tx_id) as num_tranfers,
COUNT(DISTINCT TX_FROM) as unique_wallets
from solana.core.fact_transfers
where BLOCK_TIMESTAMP::date >= '2022-01-01'
and mint = 'So11111111111111111111111111111111111111112'
GROUP by 1
order by 1