ben-wyattethereum
    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,
    'token' as type
    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,
    'native' as type
    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: 2 months ago
    ROUNDED_MONTH
    UNIQUE_USERS
    TX_VOL_USD
    TX_COUNT
    TRANSACTION_SIZE
    1
    2022-01-01 00:00:00.0001198921233465043931.861304049Large
    2
    2022-01-01 00:00:00.0005425488192075707788.08747551209Small
    3
    2022-02-01 00:00:00.000920041707485836200.76890737Large
    4
    2022-02-01 00:00:00.0005297915134947532849.90842539963Small
    5
    2022-03-01 00:00:00.0001021633450570652898.94926212Large
    6
    2022-03-01 00:00:00.0007239036147035236107.65748777200Small
    7
    2022-04-01 00:00:00.000997102989535486726.44887368Large
    8
    2022-04-01 00:00:00.0005332441148055392083.26345466150Small
    9
    2022-05-01 00:00:00.0001045241997511369313.581142477Large
    10
    2022-05-01 00:00:00.0006039908148692753392.67343672770Small
    11
    2022-06-01 00:00:00.000762271804823798666.62844867Large
    12
    2022-06-01 00:00:00.0004418613100793793747.72636622861Small
    13
    2022-07-01 00:00:00.000577601833774419897.46654098Large
    14
    2022-07-01 00:00:00.000705431491066953499.725744904521Small
    15
    2022-08-01 00:00:00.000592011192442594850.77613407Large
    16
    2022-08-01 00:00:00.000676252093377131644.401645658040Small
    17
    2022-09-01 00:00:00.000600821073514711755.91544793Large
    18
    2022-09-01 00:00:00.000644732684242385927.830245256651Small
    19
    2022-10-01 00:00:00.00049827904755432216.032451407Large
    20
    2022-10-01 00:00:00.000506803070970277293.502346044006Small
    72
    5KB
    170s