PapasotDAI top 10 wallets (foundations)
    Updated 2022-03-29
    select
    balance_date,
    user_address,
    label,
    label_type,
    contract_address,
    symbol,
    balance,
    amount_usd
    from ethereum.erc20_balances
    where
    symbol = 'DAI' AND
    amount_usd > 0 AND
    contract_address = '0x6b175474e89094c44da98b954eedeac495271d0f' AND
    balance_date = CURRENT_DATE AND
    label is not null
    order by amount_usd desc
    limit 10


    Run a query to Download Data