vendettaComparison of the number of unique users who have deposited by platform
    Updated 2024-08-02
    select
    SUM(AMOUNT_USD) AS Deposit_Amount_USD,
    PLATFORM,
    COUNT(DISTINCT ORIGIN_FROM_ADDRESS) AS Unique_Accounts
    from base.defi.ez_lending_deposits



    GROUP BY PLATFORM

    ORDER BY Deposit_Amount_USD DESC

    QueryRunArchived: QueryRun has been archived