KARTODCurrent Circulation Supply of Luna
    Updated 2022-05-07
    select date::date as day,
    count(address) as wallets_num,
    sum(balance) as luna_balance
    from terra.daily_balances
    where date >= current_date
    and address_label is null
    and currency = 'LUNA'
    group by 1
    order by 1 desc
    Run a query to Download Data