vendettaAvalanche Benqi
    Updated 2024-09-01
    SELECT
    date_trunc('month',block_timestamp) AS date,
    COUNT(DISTINCT tx_hash) AS transactions,
    COUNT(DISTINCT to_address) AS wallets,
    SUM(raw_amount / POW(10, 18)) AS volume
    FROM
    avalanche.core.fact_token_transfers
    WHERE block_timestamp::date >= '2023-01-01'
    and contract_address = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' --avax
    AND from_address = '0x0000000000000000000000000000000000000000'
    GROUP BY
    date
    ORDER BY
    date asc


    Last run: about 2 months ago
    DATE
    TRANSACTIONS
    WALLETS
    VOLUME
    1
    2023-01-01 00:00:00.000113778927613698.885840317
    2
    2023-02-01 00:00:00.00079176578194393.967985975
    3
    2023-03-01 00:00:00.00056024852332938.572555947
    4
    2023-04-01 00:00:00.00036633268334132.034989496
    5
    2023-05-01 00:00:00.00027412159777634.556580328
    6
    2023-06-01 00:00:00.00023611843118076.286525261
    7
    2023-07-01 00:00:00.00032622308206006.444113199
    8
    2023-08-01 00:00:00.0004210344385245.367944619
    9
    2023-09-01 00:00:00.00021761718260158.583032763
    10
    2023-10-01 00:00:00.00017281261621179.938350737
    11
    2023-11-01 00:00:00.0001302794343848.298712929
    12
    2023-12-01 00:00:00.00024451793391910.521642986
    13
    2024-01-01 00:00:00.00029332168271878.747501331
    14
    2024-02-01 00:00:00.00025702039104324.747733959
    15
    2024-03-01 00:00:00.00027042046192186.288182945
    16
    2024-04-01 00:00:00.00047574206332075.874930716
    17
    2024-05-01 00:00:00.00019521607359873.177323045
    18
    2024-06-01 00:00:00.00022271931203623.051867292
    19
    2024-07-01 00:00:00.0001297871854984.930863462
    20
    2024-08-01 00:00:00.00029152608290798.770206108
    26
    1KB
    16s