Flipside TeamSuper Users Added YoY copy
    Updated 2024-12-11
    -- forked from Super Users Added YoY @ https://flipsidecrypto.xyz/studio/queries/24c51761-16f1-4d79-9d23-f53312662977

    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
    QueryRunArchived: QueryRun has been archived