select
date_trunc(month, LAST_ACTIVITY_BLOCK_TIMESTAMP::date) as month_date,
sum (current_bal) as total_balance
from ethereum.core.ez_current_balances
where SYMBOL = 'DYDX'
and month_date >= '2022-01-01'
group by 1
-- contract_address = '0x92d6c1e31e14520e676a687f0a93788b716beff5'