Flipside TeamSuper Users Added YoY
    Updated 2024-12-11
    with t1 as (
    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Arbitrum' as chain
    FROM arbitrum.core.fact_transactions
    WHERE nonce = 99

    union all

    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Avalanche' as chain
    FROM avalanche.core.fact_transactions
    WHERE nonce = 99

    union all

    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Blast' as chain
    FROM blast.core.fact_transactions
    WHERE nonce = 99

    union all

    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Ethereum' as chain
    FROM ethereum.core.fact_transactions
    WHERE nonce = 99

    union all

    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Optimism' as chain
    FROM optimism.core.fact_transactions
    WHERE nonce = 99

    union all

    SELECT from_address, date_trunc('year',block_timestamp) as year, 'Polygon' as chain
    FROM polygon.core.fact_transactions
    WHERE nonce = 99

    union all
    QueryRunArchived: QueryRun has been archived