rajsMad Scientists Holders
    Updated 2022-07-20
    with senders as
    (
    SELECT
    tx_from as address,
    -sum(amount) as no_of_nfts
    from solana.core.fact_transfers
    where mint IN
    (
    SELECT
    address
    from solana.core.dim_labels
    where address_name = 'communi3: mad scientists'
    )
    and tx_id not IN
    (
    SELECT
    tx_id
    from solana.core.fact_nft_sales
    where mint IN
    (
    SELECT
    address
    from solana.core.dim_labels
    where address_name = 'communi3: mad scientists'
    )
    )
    group by 1
    )
    ,

    receivers as
    (
    SELECT
    tx_to as address,
    sum(amount) as no_of_nfts
    from solana.core.fact_transfers
    Run a query to Download Data