SELECT sum(amount) as amount,
date(block_timestamp) as date
FROM solana.fact_gov_actions
where program_name = 'saber'
AND mint = 'Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1'
and block_timestamp::date >= '2022-01-01'
and succeeded = TRUE
and action = 'LOCK'
group by date
order by date