Select
DATE(block_timestamp) as block_date,
COUNT(instruction:accounts[6]) as Number_of_Unique_SOL_Wallets
from solana.fact_events
where block_timestamp::date BETWEEN '2022-03-01' AND '2022-03-31'
and inner_instruction:instructions[1]:parsed:info:source = '7GgPYjS5Dza89wV6FpZ23kUJRG5vbQ1GM25ezspYFSoE'
GROUP by block_date
order by block_date