Yousefi_1994MATIC circulating supply
    Updated 2022-06-08
    with wallet_balance_list as (
    select
    distinct user_address,
    sum(balance) as wallet_balance
    from ethereum.erc20_balances
    where symbol = 'MATIC'
    and contract_address = '0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0'
    and contract_label = 'matic token'
    and decimals = 18
    and balance_date = current_date - 1
    and label is null
    group by user_address
    )
    select sum(wallet_balance) as circulating_supply
    from wallet_balance_list

    Run a query to Download Data