ben-wyattethereum copy
    Updated 2025-02-03
    -- forked from ethereum @ https://flipsidecrypto.xyz/studio/queries/6ed3c699-c3a5-46f9-ab50-53181a3e1e66

    -- 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 ethereum.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 ethereum.core.ez_native_transfers
    WHERE block_timestamp BETWEEN '2022-01-01' AND '2024-12-31'
    ) AS combined_transfers
    where amount_usd < 1e9
    GROUP BY
    Last run: 3 months ago
    ROUNDED_MONTH
    UNIQUE_USERS
    TX_VOL_USD
    TX_COUNT
    TRANSACTION_SIZE
    1
    2024-12-01 00:00:00.00050306278308372986.52291069Large
    2
    2024-03-01 00:00:00.00053435266894570270.74419673Large
    3
    2024-11-01 00:00:00.00040074240550644156.77259391Large
    4
    2024-04-01 00:00:00.00042360223691493873.2347352Large
    5
    2022-01-01 00:00:00.00043773223248088162.24264735Large
    6
    2022-05-01 00:00:00.00031585212726880212.46217266Large
    7
    2024-07-01 00:00:00.00031066191672151438.52257622Large
    8
    2022-04-01 00:00:00.00033957169048725455.42200550Large
    9
    2022-02-01 00:00:00.00030849165825172740.28177846Large
    10
    2022-03-01 00:00:00.00032510164041647894.82189060Large
    11
    2024-05-01 00:00:00.00033587163799249065.15212507Large
    12
    2024-08-01 00:00:00.00024493144107039171.55164245Large
    13
    2022-06-01 00:00:00.00020914143486802635.88159242Large
    14
    2024-06-01 00:00:00.00030818143360289698.51215589Large
    15
    2024-02-01 00:00:00.00029244139036182281.55182047Large
    16
    2022-09-01 00:00:00.00020405138548298247.74116053Large
    17
    2024-10-01 00:00:00.00023143134986035370.29142036Large
    18
    2024-01-01 00:00:00.00023427127962687659.24148762Large
    19
    2023-12-01 00:00:00.00023191120099561301.74145354Large
    20
    2022-11-01 00:00:00.00017831119768288708.97124666Large
    72
    5KB
    20s