zakkisyedTop 10 addresses holding DAI
    Updated 2022-03-27
    select distinct user_address, balance, symbol
    from ethereum.erc20_balances
    where symbol = 'DAI'
    and balance != 0
    and balance_date = CURRENT_DATE - 1

    order by balance desc
    limit 10
    Run a query to Download Data