Deebs-DeFi-j9fRbzARB popular tokens
    Updated 2023-05-13
    SELECT
    SYMBOL as TOKEN,
    count(DISTINCT TX_HASH) AS number_of_transfers
    FROM arbitrum.core.ez_token_transfers
    WHERE BLOCK_TIMESTAMP>Current_Date-7
    Group by 1
    HAVING number_of_transfers>0
    ORDER BY 2 DESC
    LIMIT 100;