aldo-camposTotal Active Wallets on Polygon
    Updated 2022-06-08
    with active_wallet as (
    select distinct wallet
    from
    (
    select distinct from_address wallet
    from flipside_prod_db.polygon.transactions
    where date(block_timestamp)>='2022-04-08'
    ) A
    )


    select count(distinct wallet)total
    from active_wallet