ben-wyatterc20-and-native-token-transfers
    Updated 2025-02-03
    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 avalanche.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 avalanche.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,
    transaction_size;
    Last run: 3 months ago
    ROUNDED_MONTH
    UNIQUE_USERS
    TX_VOL_USD
    TX_COUNT
    TRANSACTION_SIZE
    1
    2022-01-01 00:00:00.00066041943522652464.38221250Large
    2
    2022-01-01 00:00:00.00065333334087737327.314927493873Small
    3
    2022-02-01 00:00:00.00061711457196378285.78203834Large
    4
    2022-02-01 00:00:00.00051949130670313670.607929619176Small
    5
    2022-03-01 00:00:00.0007095906223359356.604158341Large
    6
    2022-03-01 00:00:00.00054781426064503677.685836474721Small
    7
    2022-04-01 00:00:00.0006231332445781393.329119039Large
    8
    2022-04-01 00:00:00.00050408221221583749.657834563554Small
    9
    2022-05-01 00:00:00.000567972482278741.614781776Large
    10
    2022-05-01 00:00:00.00049273624558250835.801122964986Small
    11
    2022-06-01 00:00:00.000337341310160653.109341640Large
    12
    2022-06-01 00:00:00.00029719811309180982.887811359331Small
    13
    2022-07-01 00:00:00.000232920885509355.936823453Large
    14
    2022-07-01 00:00:00.0002914157041389281.5126410015406Small
    15
    2022-08-01 00:00:00.000237215610257622.688822685Large
    16
    2022-08-01 00:00:00.0002980906176232011.38719377422Small
    17
    2022-09-01 00:00:00.000216213851988521.109221683Large
    18
    2022-09-01 00:00:00.0002321635131081409.925088185921Small
    19
    2022-10-01 00:00:00.00017528185693177.3671813913Large
    20
    2022-10-01 00:00:00.0003443434187919150.101778073349Small
    72
    5KB
    14s