Flipside TeamTransactions by Super Users copy
    Updated 2024-12-11
    -- forked from Transactions by Super Users @ https://flipsidecrypto.xyz/studio/queries/e4b8c094-3081-4dcd-81d5-ed3a4a402ceb

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