CartanGroupMAYC Metadata
    Updated 2023-06-21
    select block_timestamp,
    tokenid,
    token_metadata:Fur as fur,
    token_metadata:Clothes as clothes,
    token_metadata:Background as background,
    token_metadata:Eyes as eyes,
    token_metadata:Hat as hat,
    token_metadata:Mouth as mouth,
    price,
    avg(price) over(
    order by block_timestamp
    rows between 100 preceding and current row ) floor
    from ethereum.core.ez_nft_sales
    where nft_address = '0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d'
    and price < 1080
    order by block_timestamp desc
    Run a query to Download Data