theericstoneWeekly Sales by Platform
    Updated 2022-11-03
    select platform_name, count(tx_hash) as n_sales_weekly
    from ethereum.core.ez_nft_sales
    where block_timestamp > current_date - 7
    group by 1
    Run a query to Download Data