Delamir-601410- Growth of balance over time monthly
    Updated 2023-01-25
    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'

    Run a query to Download Data