select block_timestamp::date as date, count(distinct tx_from_address) as unique_wallets
from solana.transactions
where block_timestamp::date >= '2022-01-01'
and (post_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB' or pre_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB')
group by date
order by date