Updated 2025-02-04
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    platform_name,
    seller_address,
    buyer_address,
    price_usd,
    tokenid
    from
    base.nft.ez_nft_sales
    where
    project_name = 'Based Fellas'
    )

    select
    count(distinct tx_hash) as transactions,
    count(distinct seller_address) as sellers,
    count(distinct buyer_address) as buyers,
    sum(price_usd) as volume_usd,
    avg(price_usd) as average_price_usd,
    max(price_usd) as max_price_usd
    from
    main
    QueryRunArchived: QueryRun has been archived