rajsMad Scientists Holders
Updated 2022-07-20
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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