rajsSolana NFTS Purchaser
    Updated 2022-07-20
    SELECT
    purchaser,
    count(*) as no_of_txs,
    date_trunc('month', min(block_timestamp)) as first_month
    from solana.core.fact_nft_mints
    where mint not IN
    (
    SELECT
    address
    from solana.core.dim_labels
    where address_name = 'communi3: mad scientists'
    )
    and block_timestamp < '2022-05-05'
    and purchaser IN
    (
    SELECT
    distinct address as address
    FROM
    (
    SELECT
    distinct purchaser as address
    from solana.core.fact_nft_sales
    where mint IN
    (
    SELECT
    address
    from solana.core.dim_labels
    where address_name = 'communi3: mad scientists'
    )

    union

    SELECT
    distinct purchaser as address
    from solana.core.fact_nft_mints
    where mint IN
    Run a query to Download Data