Eman-RazDeposit Over Time
Updated 2023-12-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", token_symbol as "Token", count(distinct tx_hash) as "Deposit Count",
count(distinct depositor) as "Depositor Count", sum(amount_usd) as "Volume (USD)"
from arbitrum.defi.ez_lending_deposits
where platform='Silo' and event_name='Deposit'
group by 1, 2
order by 1
-- Deposit
-- SupplyCollateral
-- Mint
-- Supply
QueryRunArchived: QueryRun has been archived