arbitrum_internArbitrum Borrowing Token Breakdown
    Updated 2024-12-24
    select
    token_symbol,
    sum(amount_usd) as vol_usd,
    count(*) as borrows
    from arbitrum.defi.ez_lending_borrows
    where block_timestamp >= '2024-01-01'
    and amount_usd is not null
    group by 1
    order by 2 desc
    QueryRunArchived: QueryRun has been archived