Flipside TeamTransactions by Super Users
    Updated 2024-12-11
    with t1 as (
    SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Arbitrum' as chain
    FROM arbitrum.core.fact_transactions ar
    WHERE nonce >= 99

    union all

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

    union all

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

    union all

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

    union all

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

    union all

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

    union all
    QueryRunArchived: QueryRun has been archived