petertherockpolygon lending
    Updated 2024-12-22
    select
    platform,
    protocol_market,
    sum(amount_usd) as borrow_volume_usd
    from polygon.defi.ez_lending_borrows
    where block_timestamp >= '2024-01-01'
    group by 1,2
    order by 3 desc
    -- group by 1
    -- order by 1 desc
    QueryRunArchived: QueryRun has been archived