SniperQuarterly Transactions
    Updated 2025-05-08
    with main as (
    select
    date_trunc('quarter', block_timestamp) as date,
    count(DISTINCT TX_HASH) as "Transactions",
    count(distinct FROM_ADDRESS) as "Active Users",
    sum(tx_fee) as "Fees (AVAX)"
    from
    avalanche.core.fact_transactions
    where
    STATUS = 'SUCCESS'
    and block_timestamp :: Date >= '2023-01-01'
    group by
    1
    order by
    1 desc
    ),

    new_wallet as (
    select
    date_trunc('quarter', first_tx) as date,
    count(DISTINCT FROM_ADDRESS) as "New Users"
    from
    (
    select
    FROM_ADDRESS,
    min(block_timestamp) as first_tx
    from
    avalanche.core.fact_transactions
    where
    STATUS = 'SUCCESS'
    group by 1
    )
    where
    first_tx :: Date >= '2023-01-01'
    group by 1)

    Last run: 14 days ago
    DATE
    QUARTER_NAME
    Active Users
    Avg Daily Active Users
    Active Users Growth %
    New Users
    Avg Daily New Users
    New Users Growth %
    Transactions
    Avg Daily Transactions
    Transactions Growth %
    Fees (AVAX)
    Avg Daily Fees (AVAX)
    Fees (AVAX) Growth %
    1
    2023-01-01 00:00:00.000Q1 - 20237995548690.8471684512712260460133265.8797532.5565872391060.14
    2
    2023-04-01 00:00:00.000Q2 - 2023190713520729.73🟩 138.52%159002117282.84🟩 237.09%34574507375809.86🟩 182.00%282911.2167268143075.12🟩 190.07%
    3
    2023-07-01 00:00:00.000Q3 - 2023177465619289.74🟥 -6.95%8307089029.43🟥 -47.75%24952251271220.12🟥 -27.83%151522.4451659741646.98🟥 -46.44%
    4
    2023-10-01 00:00:00.000Q4 - 2023170103718489.53🟥 -4.15%8101698806.18🟥 -2.47%1398592501520209.24🟩 460.51%1416730.8635152215399.25🟩 835%
    5
    2024-01-01 00:00:00.000Q1 - 2024220265223941.87🟩 29.49%116027212611.65🟩 43.21%40522135440457.99🟥 -71.03%161065.6513241051750.71🟥 -88.63%
    6
    2024-04-01 00:00:00.000Q2 - 2024176079619139.09🟥 -20.06%8221658936.58🟥 -29.14%17241407187406.6🟥 -57.45%85974.549995217934.51🟥 -46.62%
    7
    2024-07-01 00:00:00.000Q3 - 2024128495613966.91🟥 -27.02%5694136189.27🟥 -30.74%13942022151543.72🟥 -19.14%77278.058024867839.98🟥 -10.12%
    8
    2024-10-01 00:00:00.000Q4 - 2024142507715489.97🟩 10.90%8005098701.18🟩 40.59%20008535217484.08🟩 43.51%95073.4156524171033.41🟩 23.03%
    9
    2025-01-01 00:00:00.000Q1 - 2025225847524548.64🟩 58.48%122688413335.7🟩 53.26%28913306314275.07🟩 44.50%48318.91373662525.21🟥 -49.18%
    9
    1KB
    88s