Sandeshsolana market share
    Updated 2023-07-24
    select block_timestamp::date as "date",
    case
    when marketplace='solana monkey business marketplace' then 'monkey business'
    else marketplace
    end as marketplace
    , count(tx_id) as number_of_transactions
    from solana.core.fact_nft_sales
    where "date" >= {{start_date}}
    group by "date", marketplace
    order by "date" asc
    Run a query to Download Data