tongzzeztotal solana
    Updated 2022-09-14
    select

    count(1) as all_sale,
    count(distinct buyer_address) as all_buyer,
    sum(price_usd) as all_volume
    from
    ethereum.core.ez_nft_sales
    where
    block_timestamp::date >= '2022-01-01'
    and event_type = 'sale'
    -- flow.core.ez_nft_sales
    Run a query to Download Data