ben-wyattarbitrum
    Updated 2025-02-07
    -- forked from unit-query @ https://flipsidecrypto.xyz/studio/queries/54460826-0a26-461a-b81d-22a6d8da4cb8

    --this combines the ez_native_transfer and the ez_token_transfer tables together
    --grabs the amount_usd values and does a little bit of by-row analysis


    SELECT
    DATE_TRUNC('month', block_timestamp) AS rounded_month,
    COUNT(DISTINCT from_address) AS unique_users,
    SUM(amount_usd) AS tx_vol_usd,
    COUNT(*) AS tx_count,
    CASE
    WHEN amount_usd > 100000 THEN 'Large'
    ELSE 'Small'
    END AS transaction_size
    FROM (
    SELECT
    block_timestamp,
    from_address,
    amount_usd
    FROM arbitrum.core.ez_token_transfers
    WHERE block_timestamp BETWEEN '2022-01-01' AND '2024-12-31'
    UNION ALL
    SELECT
    block_timestamp,
    from_address,
    amount_usd,
    FROM arbitrum.core.ez_native_transfers
    WHERE block_timestamp BETWEEN '2022-01-01' AND '2024-12-31'
    ) AS combined_transfers
    where amount_usd < 1e9
    GROUP BY
    rounded_month,
    transaction_size
    Last run: 2 months ago
    ROUNDED_MONTH
    UNIQUE_USERS
    TX_VOL_USD
    TX_COUNT
    TRANSACTION_SIZE
    1
    2022-01-01 00:00:00.000282611785922873.068633333Large
    2
    2022-01-01 00:00:00.0005851212891965705.89611955299Small
    3
    2022-02-01 00:00:00.00018308811778408.2600222561Large
    4
    2022-02-01 00:00:00.000738168064467317.691471891426Small
    5
    2022-03-01 00:00:00.00014995941255901.8180317792Large
    6
    2022-03-01 00:00:00.0001019325783266861.152422235647Small
    7
    2022-04-01 00:00:00.00014554649133057.5526415600Large
    8
    2022-04-01 00:00:00.0001412885377197521.636952646331Small
    9
    2022-05-01 00:00:00.00011553406273899.5610910365Large
    10
    2022-05-01 00:00:00.0001734785231693334.907693752734Small
    11
    2022-06-01 00:00:00.0007422090475364.701226293Large
    12
    2022-06-01 00:00:00.0002481793800016674.961296707897Small
    13
    2022-07-01 00:00:00.0007273870640684.350238725Large
    14
    2022-07-01 00:00:00.0001973003459359830.914923786967Small
    15
    2022-08-01 00:00:00.00010886483302440.0423115152Large
    16
    2022-08-01 00:00:00.0002007715499167993.464376114828Small
    17
    2022-09-01 00:00:00.000143613447826397.344417607Large
    18
    2022-09-01 00:00:00.0003417806236106856.4979611671611Small
    19
    2022-10-01 00:00:00.00010573456671926.3972511988Large
    20
    2022-10-01 00:00:00.0004334086438347063.5017717859733Small
    72
    5KB
    82s