Eman-RazBorrow Over Time
Updated 2024-01-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", token_symbol as "Token",
count(distinct tx_hash) as "Borrow Count",
count(distinct borrower) as "Borrower Count", sum(amount_usd) as "Volume (USD)"
from arbitrum.defi.ez_lending_borrows
where platform='Silo' and event_name='Borrow'
group by 1, 2
order by 1
QueryRunArchived: QueryRun has been archived