kasadeghTop 20 holders in January 2022
    Updated 2022-06-23

    select USER_ADDRESS, sum(BALANCE) as BALANCE
    from flipside_prod_db.ethereum.erc20_balances
    where CONTRACT_ADDRESS=lower('0x2e9d63788249371f1dfc918a52f8d799f4a38c94')
    and year(BALANCE_DATE)=2022 and MONTH(BALANCE_DATE)=1
    group by USER_ADDRESS
    order by BALANCE desc
    limit 20


    Run a query to Download Data