eslamis-darkatNFT solana vs
    Updated 2022-09-24
    with ethereum as (select count(DISTINCT(BUYER_ADDRESS)) as unique_buyer
    from ethereum.core.ez_nft_sales
    where block_timestamp::date >= '2022-01-01'

    order by 1)
    ,
    solana as (select count(DISTINCT(PURCHASER)) as unique_buyer
    from solana.core.fact_nft_sales
    where block_timestamp::date >= '2022-01-01'

    order by 1)

    select 'Ethereum' as blockchain , unique_buyer
    from ethereum
    UNION
    select 'Solana' as blockchain , unique_buyer
    from solana
    Run a query to Download Data