Updated 2025-03-14
    SELECT
    date_trunc('week', block_timestamp) as week,
    'Arbitrum' as chain,
    count(DISTINCT tx_hash) as transaction,
    count(DISTINCT from_address) as users

    FROM arbitrum.core.fact_transactions
    WHERE TO_ADDRESS LIKE lower('0x7698E925FfC29655576D0b361D75Af579e20AdAc')
    GROUP BY 1,2

    UNION all

    SELECT
    date_trunc('week', block_timestamp) as week,
    'Blast' as chain,
    count(DISTINCT tx_hash) as transaction,
    count(DISTINCT from_address) as users

    FROM blast.core.fact_transactions
    WHERE to_address LIKE lower('0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb')
    GROUP BY 1,2

    UNION all

    SELECT
    date_trunc('week', block_timestamp) as week,
    'Optimism' as chain,
    count(DISTINCT tx_hash) as transaction,
    count(DISTINCT from_address) as users

    FROM optimism.core.fact_transactions
    WHERE to_address LIKE lower('0xdF21D137Aadc95588205586636710ca2890538d5')
    GROUP BY 1,2

    UNION all

    Last run: 25 days ago
    WEEK
    CHAIN
    TRANSACTION
    USERS
    1
    2024-02-05 00:00:00.000Arbitrum11
    2
    2024-11-25 00:00:00.000Blast159742
    3
    2024-02-05 00:00:00.000Optimism11
    4
    2024-11-25 00:00:00.000Base4462
    5
    2024-07-22 00:00:00.000Arbitrum111
    6
    2024-07-22 00:00:00.000Blast263
    7
    2024-07-22 00:00:00.000Base256705
    8
    2025-02-17 00:00:00.000Blast889212
    9
    2025-02-17 00:00:00.000Base2152
    10
    2025-01-27 00:00:00.000Blast468242
    11
    2025-01-27 00:00:00.000Base1831
    12
    2024-07-01 00:00:00.000Blast1021
    13
    2024-07-01 00:00:00.000Base234531
    14
    2024-08-26 00:00:00.000Blast1312
    15
    2024-08-26 00:00:00.000Base6571
    16
    2024-06-17 00:00:00.000Blast311222
    17
    2024-06-17 00:00:00.000Base11
    18
    2024-11-11 00:00:00.000Blast168372
    19
    2024-11-11 00:00:00.000Base3131
    20
    2024-10-21 00:00:00.000Blast151262
    ...
    114
    5KB
    49s