Afonso_Diaz2023-04-27 01:00 PM
    Updated 2023-04-27
    with
    t as (
    select t.chain
    from ((values
    ('assetmantle'),
    ('juno'),
    ('kujira'),
    ('comdex'),
    ('umee'),
    ('axelarnet'),
    ('stargaze'),
    ('agoric'),
    ('terra2'),
    ('osmosis'),
    ('crescent'),
    ('evmos'),
    ('secret')
    ) as t(chain)
    )),

    t2 as (
    select
    sender,
    min(block_timestamp::date) as min_date
    from axelar.core.ez_squid
    where destination_chain in (select chain from t)
    and block_timestamp >= '2023-02-23'
    group by 1
    ),

    t3 as (
    select
    min_date as date,
    count(distinct sender) as new_users
    from t2
    group by 1
    Run a query to Download Data