FatemeTheLadyblushing-beige
    Updated 2025-02-10
    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