FatemeTheLadyblushing-beige
Updated 2025-02-10
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date(b.block_timestamp) as "Date",
b.platform as "Platform",
b.token_symbol as "Token",
sum(b.amount_usd) as "BorrowedVolume",
count(b.tx_hash) as "Borrows",
count(b.borrower) as "Borrowers"
from
avalanche.defi.ez_lending_borrows b
where
date(b.block_timestamp) >= '2024-11-01'
group by 1,2,3
QueryRunArchived: QueryRun has been archived