Eman-Razwithdraw over time
Updated 2024-01-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
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