Updated 2025-03-28
    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: 29 days ago
    DATE
    SELLERS
    BUYERS
    TRADES
    AMOUNT_USD
    CUM_AMOUNT_USD
    1
    2025-03-28 00:00:00.00096631753273.6953112682115.49960605
    2
    2025-03-27 00:00:00.00028617743413811.1181642782678841.80429505
    3
    2025-03-26 00:00:00.00030021038829484.9728615642665030.68613077
    4
    2025-03-25 00:00:00.00021516435513182.131901322635545.7132692
    5
    2025-03-24 00:00:00.00034124866311392.9377781942622363.58136788
    6
    2025-03-23 00:00:00.0003272388515666.9281316622610970.64358969
    7
    2025-03-22 00:00:00.00035822164011834.7611136772605303.71545803
    8
    2025-03-21 00:00:00.00042225385011305.0121115862593468.95434435
    9
    2025-03-20 00:00:00.000431316108011229.6353524172582163.94223277
    10
    2025-03-19 00:00:00.000558320109814046.383109622570934.30688035
    11
    2025-03-18 00:00:00.000718426163410751.24983972556887.92377073
    12
    2025-03-17 00:00:00.0001299620348826305.7724809922546136.67393103
    13
    2025-03-16 00:00:00.0002862256125835.743846822519830.90145004
    14
    2025-03-15 00:00:00.0001741492574279.244859012513995.15760322
    15
    2025-03-14 00:00:00.00019615026921719.783146652509715.91274421
    16
    2025-03-13 00:00:00.00030121542518477.041384382487996.12959756
    17
    2025-03-12 00:00:00.00039827051990437.86260342469519.08821318
    18
    2025-03-11 00:00:00.00020113323137512.7842159282379081.22560978
    19
    2025-03-10 00:00:00.0001461002426230.495148292341568.44139385
    20
    2025-03-09 00:00:00.0001691102064766.26011862335337.94624556
    ...
    181
    12KB
    3s