mz0111Identify the top holders of the TOKE token in January 2022
    Updated 2022-06-22
    SELECT
    DISTINCT USER_ADDRESS AS TOP_USER,
    AVG(BALANCE )
    FROM ethereum.erc20_balances
    WHERE CONTRACT_ADDRESS = '0x2e9d63788249371f1dfc918a52f8d799f4a38c94'
    AND
    BALANCE_DATE BETWEEN '2022-01-01' and '2022-02-01'
    GROUP BY 1
    ORDER BY 2 DESC
    LIMIT 100
    Run a query to Download Data