elsinaFirst available sale date for each marketplace
    Updated 2022-10-07
    select platform_name, min(block_timestamp::date) as start_date
    from ethereum.core.ez_nft_sales
    where platform_name in ('opensea', 'rarible', 'looksrare', 'x2y2')
    group by 1
    Run a query to Download Data