Updated 2025-05-09
    select
    date_trunc('day',block_timestamp) as date,
    count(distinct SELLER_ADDRESS ) as sellers,
    count(distinct BUYER_ADDRESS ) as buyers,
    count(distinct tx_hash) as trades,
    sum(PRICE_usd) as amount_usd,
    sum(amount_usd) over (order by date) as cum_amount_usd
    from avalanche.nft.ez_nft_sales
    where block_timestamp >= current_date - 180
    group by 1
    order by 1 desc


    --select * from avalanche.nft.ez_nft_sales limit 100


    Last run: about 1 month ago
    DATE
    SELLERS
    BUYERS
    TRADES
    AMOUNT_USD
    CUM_AMOUNT_USD
    1
    2025-05-09 00:00:00.0002785206758813.1019238172733131.22790958
    2
    2025-05-08 00:00:00.0002724327216297.148408852724318.12598577
    3
    2025-05-07 00:00:00.0002904756834089.7111266422718020.97757692
    4
    2025-05-06 00:00:00.0003226219263855.9639262842713931.26645028
    5
    2025-05-05 00:00:00.0002184797003378.8135986582710075.30252399
    6
    2025-05-04 00:00:00.0002175087744081.3132650622706696.48892533
    7
    2025-05-03 00:00:00.00024782912602864.8174288932702615.17566027
    8
    2025-05-02 00:00:00.000399113914587344.520946232699750.35823138
    9
    2025-05-01 00:00:00.000354137618095229.2000696652692405.83728515
    10
    2025-04-30 00:00:00.000298197924464305.1792154532687176.63721548
    11
    2025-04-29 00:00:00.000342216826232350.7779569492682871.45800003
    12
    2025-04-28 00:00:00.000385122914862328.8164743382680520.68004308
    13
    2025-04-27 00:00:00.00032486311163805.0214323472678191.86356874
    14
    2025-04-26 00:00:00.0001456167645789.909382382674386.8421364
    15
    2025-04-25 00:00:00.0001783754382068.1684971162668596.93275402
    16
    2025-04-24 00:00:00.0001411852342734.6976540472666528.7642569
    17
    2025-04-23 00:00:00.0001391692304307.354617462663794.06660285
    18
    2025-04-22 00:00:00.0001392012682413.842060442659486.71198539
    19
    2025-04-21 00:00:00.0001502313154359.8762985652657072.86992495
    20
    2025-04-20 00:00:00.0001463044304732.922384072652712.99362639
    ...
    181
    13KB
    5s