0xHaM-dNew Listed Assets
    Updated 2023-02-25
    with newAssets as (
    select
    project_name as symbol,
    label as token,
    min(block_timestamp::date) as listing_date
    from osmosis.core.fact_swaps t1 join osmosis.core.dim_tokens t2 on t1.from_currency = t2.address
    group by 1,2
    UNION
    select
    project_name as symbol,
    label as token,
    min(block_timestamp::date) as listing_date
    from osmosis.core.fact_swaps t1 join osmosis.core.dim_tokens t2 on t1.to_currency = t2.address
    group by 1,2
    UNION
    SELECT
    project_name as symbol,
    label as token,
    min(block_timestamp::date) as listing_date
    FROM osmosis.core.fact_transfers LEFT outer JOIN osmosis.core.dim_labels ON address = currency
    WHERE sender LIKE 'axelar%'
    AND receiver LIKE 'osmo%'
    GROUP BY 1,2
    )
    SELECT*
    FROM newAssets
    WHERE listing_date >= CURRENT_DATE - INTERVAL '{{Past_Months}} MONTH'

    Run a query to Download Data