alfredfx10creator's fee per month
    Updated 2024-05-04
    SELECT SUM (CREATOR_FEE_USD) Sum_of_creators_fees,
    DATE_TRUNC ('month', BLOCK_TIMESTAMP) AS Month
    FROM ethereum.nft.ez_nft_sales
    WHERE DATE(BLOCK_TIMESTAMP) >='2024-01-01' AND
    DATE(BLOCK_TIMESTAMP)<= '2024-04-30'
    GROUP BY 2
    ORDER BY 2 ASC
    QueryRunArchived: QueryRun has been archived