vendettaExisting User vs New User, on New Tokens
    Updated 2023-02-23
    -- forked from 99e64e74-45f9-4e8a-a444-f5ab2365f849

    with
    minuary as (
    select
    currency,
    project_name as symbol,
    min(block_timestamp) as t
    from
    osmosis.core.fact_transfers ft
    inner join osmosis.core.dim_tokens dt on dt.address = ft.currency
    where
    currency not like '%pool%'
    and block_timestamp >= '2022-12-01'
    and transfer_type = 'OSMOSIS'
    group by
    1,
    2
    order by
    3 desc
    ),
    olde as (
    select
    currency,
    project_name as symbol,
    min(block_timestamp) as t
    from
    osmosis.core.fact_transfers ft
    inner join osmosis.core.dim_tokens dt on dt.address = ft.currency
    where
    currency not like '%pool%'
    and block_timestamp < '2022-12-01'
    and transfer_type = 'OSMOSIS'
    group by
    1,
    2
    Run a query to Download Data