ben-wyatterc20-token-transfers
    Updated 2025-02-03

    SELECT
    DATE_TRUNC('month', block_timestamp) AS rounded_month,
    COUNT(DISTINCT from_address) as unique_users,
    --symbol,
    SUM(amount_usd) as tx_vol_usd,
    COUNT(amount_usd) as tx_count,
    CASE
    WHEN amount_usd > 100000 THEN 'Large'
    ELSE 'Small'
    END AS transaction_size
    FROM avalanche.core.ez_token_transfers
    WHERE rounded_month BETWEEN '2022-01-01' AND '2024-12-31' AND amount_usd < 1e15
    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.00048362.47043592002359e+35128185Large
    2
    2022-01-01 00:00:00.00048782924568507409.434918840328Small
    3
    2022-02-01 00:00:00.0004036495338422090.602131369Large
    4
    2022-02-01 00:00:00.00039986422074165660.387921220532Small
    5
    2022-03-01 00:00:00.00055372520163310898590000101603Large
    6
    2022-03-01 00:00:00.00038607619467932462.455827362553Small
    7
    2022-04-01 00:00:00.0005034328641299590.42395009Large
    8
    2022-04-01 00:00:00.00034821216695683715.727827813499Small
    9
    2022-05-01 00:00:00.000486092644697499.754970421Large
    10
    2022-05-01 00:00:00.00035249720119389648.251118044088Small
    11
    2022-06-01 00:00:00.000288439142663682.639336164Large
    12
    2022-06-01 00:00:00.0002075779216407886.867768543920Small
    13
    2022-07-01 00:00:00.000187719523130166.116819909Large
    14
    2022-07-01 00:00:00.0001852015551464132.672637188966Small
    15
    2022-08-01 00:00:00.000190914400149238.418819185Large
    16
    2022-08-01 00:00:00.0001827674850488361.45716737555Small
    17
    2022-09-01 00:00:00.000182712756907003.099218656Large
    18
    2022-09-01 00:00:00.0001661824220974251.055086035273Small
    19
    2022-10-01 00:00:00.00014467486973339.7871811636Large
    20
    2022-10-01 00:00:00.0002117383425983821.731775772873Small
    72
    5KB
    18s