Eman-Razwithdraw over time
    Updated 2024-01-15
    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", token_symbol as "Token",
    count(distinct tx_hash) as "Withdrawal Count",
    count(distinct DEPOSITOR) as "Withdrawer Count", sum(amount_usd) as "Volume (USD)"
    from arbitrum.defi.ez_lending_withdraws
    where platform='Silo' and event_name='Withdraw'
    group by 1, 2
    order by 1







    QueryRunArchived: QueryRun has been archived