yasmindaily Top collection status copy copy copy
    Updated 2024-05-26








    -- select
    -- project_name,
    -- sum(TOTAL_PRICE_USD) as VOLUME_USD
    -- -- count(DISTINCT tx_hash) as TX,
    -- -- count(DISTINCT Seller_address) as Sellers,
    -- -- count(DISTINCT buyer_address) as Buyers
    -- from
    -- aptos.nft.ez_nft_sales

    -- WHERE block_timestamp::date >= '{{Start_Date}}'
    -- AND block_timestamp::date <= '{{End_Date}}'
    -- AND project_name IS NOT NULL
    -- AND EVENT_TYPE='sale'
    -- GROUP by 1
    -- ORDER by 2 DESC

    -- forked from Top collection status copy @ https://flipsidecrypto.xyz/edit/queries/8f0c429e-2e9d-4ad4-92da-87e2f206e97a


    select
    trunc(block_timestamp,'week') as date,
    sum(TOTAL_PRICE_USD) as VOLUME_USD,
    count(DISTINCT tx_hash) as TX,
    count(DISTINCT Seller_address) as Sellers,
    count(DISTINCT buyer_address) as Buyers
    from
    aptos.nft.ez_nft_sales
    QueryRunArchived: QueryRun has been archived