DrsimonKem 1
    Updated 2024-12-30
    --0xee7d1b184be8185adc7052635329152a4d0cdefa
    --https://warpcast.com/hony

    select
    PLATFORM_NAME,
    DATE_TRUNC('{{Time_frame}}', block_timestamp) AS DATE,
    count (DISTINCT tx_hash) as "Total trades",

    count(DISTINCT ORIGIN_FROM_ADDRESS) as "Total users",

    min(price_usd) as "Min trading volume (USD)",
    avg(price_usd) as "Avg trading volume (USD)",
    max(price_usd) as "Max trading volume (USD)",
    sum(price_usd) as "Total trading volume (USD)",

    min(price) as "Min trading volume (ETH)",
    avg(price) as "Avg trading volume (ETH)",
    max(price) as "Max trading volume (ETH)",
    sum(price) as "Total trading volume (ETH)"

    from base.nft.ez_nft_sales
    where nft_address = lower('0xee7d1b184be8185adc7052635329152a4d0cdefa')
    and price <= '10'
    and price <> '0'
    group by 1,2
    order by 1 desc

    Auto-refreshes every 12 hours
    QueryRunArchived: QueryRun has been archived