SELECT date_trunc('day',block_timestamp) as date,
action,
count(distinct(locker_account)) as count_wallet,
count(distinct(tx_id)) as total_tx_id,
sum(amount) as total_sbr
FROM solana.fact_gov_actions
where mint='Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1'
and succeeded ='true'
and block_timestamp >= '2022-01-01'
and block_timestamp <= '2022-03-26'
group by 1,2