BlockTrackervolume by new users (last week)
    Updated 4 days ago
    -- forked from volume by new users (last month) @ https://flipsidecrypto.xyz/studio/queries/5adba1a0-a20d-4195-8b0b-bd85eae0a166

    with volume_last_months as (
    select
    'total' as type,
    sum(from_amount_usd) as amount
    from thorchain.defi.fact_swaps
    where block_timestamp::date between '2025-05-19' and '2025-05-25'
    )

    ,
    new as (
    select user
    from (
    SELECT
    from_address as user,
    min(block_timestamp) as first_tx
    from thorchain.defi.fact_swaps
    GROUP BY 1)
    where first_tx::date between '2025-05-19' and '2025-05-25'
    )
    ,
    volume_by_new as (
    select
    date_trunc('day', block_timestamp) as date,
    'new' as type,
    sum(from_amount_usd) as amount
    from thorchain.defi.fact_swaps
    where block_timestamp::date between '2025-05-19' and '2025-05-25'
    and from_address IN (select user from new)
    group by date

    ),
    volume_by_returning_user as (
    select
    date_trunc('day', block_timestamp) as date,
    Last run: 4 days ago
    DATE
    TYPE
    AMOUNT
    1
    2025-05-19 00:00:00.000old115029481.397805
    2
    2025-05-19 00:00:00.000new19581483.2072374
    3
    2025-05-25 00:00:00.000old84543966.1310314
    4
    2025-05-25 00:00:00.000new25311954.6014782
    5
    2025-05-23 00:00:00.000old73228960.1940023
    6
    2025-05-23 00:00:00.000new22865113.2486239
    7
    2025-05-22 00:00:00.000old172264808.636381
    8
    2025-05-22 00:00:00.000new81509323.5528994
    9
    2025-05-21 00:00:00.000old181676579.969949
    10
    2025-05-21 00:00:00.000new100554721.60807
    11
    2025-05-20 00:00:00.000old79647949.0238631
    12
    2025-05-20 00:00:00.000new18932606.2142311
    13
    2025-05-24 00:00:00.000old62570273.494273
    14
    2025-05-24 00:00:00.000new28758637.7849209
    14
    713B
    3s