freemartianLenders Count By Asset
    Updated 2022-07-17
    select
    count(distinct depositor) as lenders_count,
    symbol
    from ethereum.sushi.ez_lending
    where action = 'Deposit'
    group by symbol
    order by lenders_count DESC
    Run a query to Download Data