Updated 2022-10-23
    WITH ktf AS (
    SELECT * FROM ethereum.core.ez_nft_sales
    WHERE event_type = 'sale'
    AND block_timestamp::DATE >= '2022-01-01'
    AND project_name IN ('10ktf')
    AND buyer_address <> '0x0000000000000000000000000000000000000000'
    AND price <> '0'
    )

    SELECT tokenid, price_usd, price
    FROM ktf
    where price_usd is not null
    ORDER BY 2 DESC
    LIMIT 2
    Run a query to Download Data