shahdadi-9ptm8YUntitled Query
    select sum(event_inputs:value)/pow(10,18) as staked,
    date_trunc('day',block_timestamp) as date
    from flipside_prod_db.ethereum_core.fact_event_logs
    where contract_address = '0x815c23eca83261b6ec689b60cc4a58b54bc24d8d' and TX_STATUS = 'SUCCESS' and event_name='Deposit'
    group by date
    order by date desc
    Run a query to Download Data