ben-wyattunit-query
    Updated 2025-02-03
    --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 {{chain}}.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 {{chain}}.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
    ORDER BY
    rounded_month,
    Last run: 3 months ago
    ROUNDED_MONTH
    UNIQUE_USERS
    TX_VOL_USD
    TX_COUNT
    TRANSACTION_SIZE
    1
    2022-01-01 00:00:00.00066072.47043592002359e+35221265Large
    2
    2022-01-01 00:00:00.00070443334087737327.314938835780Small
    3
    2022-02-01 00:00:00.00061711457196378285.78203834Large
    4
    2022-02-01 00:00:00.00058118230670313670.607937939981Small
    5
    2022-03-01 00:00:00.00070982520163973979520000158346Large
    6
    2022-03-01 00:00:00.00058955826064503677.685843225797Small
    7
    2022-04-01 00:00:00.0006233440945815984.113119042Large
    8
    2022-04-01 00:00:00.00052744921221583749.657838211727Small
    9
    2022-05-01 00:00:00.000567998152975823.664981780Large
    10
    2022-05-01 00:00:00.00051390724558250835.801126228819Small
    11
    2022-06-01 00:00:00.000337341310160653.109341640Large
    12
    2022-06-01 00:00:00.00030883211309180982.887813936664Small
    13
    2022-07-01 00:00:00.000232920885509355.936823453Large
    14
    2022-07-01 00:00:00.0003018597041389281.5126412134379Small
    15
    2022-08-01 00:00:00.000237215610257622.688822685Large
    16
    2022-08-01 00:00:00.0003081386176232011.387111318399Small
    17
    2022-09-01 00:00:00.000216213851988521.109221683Large
    18
    2022-09-01 00:00:00.0002418755131081409.925079706528Small
    19
    2022-10-01 00:00:00.00017528185693177.3671813913Large
    20
    2022-10-01 00:00:00.0003531574187919150.1017710499791Small
    72
    5KB
    9s