nitsDaily UnStakes
    Updated 2022-05-02
    SELECT date(block_timestamp) as day, sum(amount) as total_amt,
    sum(total_amt) over (order by day) as cumulative_total_amt
    from
    (SELECT * from ethereum.udm_events
    where contract_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
    and symbol ='xSUSHI'
    and _address = '0x0000000000000000000000000000000000000000' )
    where day >= '2022-01-01'
    GROUP by 1
    -- limit 100
    Run a query to Download Data