Moetop 50 holders - Feb.15
    Updated 2023-02-22
    select
    user_address,
    max(balance)/1e18 as balancee
    from

    ethereum.core.fact_token_balances
    where
    CONTRACT_ADDRESS ilike '0x5283D291DBCF85356A21bA090E6db59121208b44'
    and
    block_timestamp::date = '2023-02-15'
    and balance > 0
    group by 1
    order by 2 desc limit 50

    Run a query to Download Data