vendettab AAVE V2 on Etherue
    Updated 2023-02-12
    SELECT date_trunc('day', BLOCK_TIMESTAMP) AS date , COUNT (TX_HASH) AS TX_HASH_COUNT, COUNT (DISTINCT DEPOSITOR_ADDRESS) AS SUPPLIER_ADDRESS_COUNT
    FROM ethereum.aave.ez_deposits
    WHERE AAVE_VERSION ILIKE'Aave V2'
    GROUP BY 1
    ORDER BY 3 DESC

    Run a query to Download Data