rajsNFT Wallets Crossover
Updated 2022-06-15
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 topshot_wallets as
(
SELECT
distinct buyer as topshot_wallets
from flow.core.fact_nft_sales
where block_timestamp >= '2022-05-09'
and nft_collection = 'A.0b2a3299cc857e29.TopShot'
union
SELECT
distinct seller as topshot_wallets
from flow.core.fact_nft_sales
where block_timestamp >= '2022-05-09'
and nft_collection = 'A.0b2a3299cc857e29.TopShot'
)
,
allday_wallets AS
(
SELECT
distinct buyer as allday_wallets
from flow.core.fact_nft_sales
where block_timestamp >= '2022-05-09'
and nft_collection = 'A.e4cf4bdc1751c65d.AllDay'
union
SELECT
distinct seller as allday_wallets
from flow.core.fact_nft_sales
where block_timestamp >= '2022-05-09'
and nft_collection = 'A.e4cf4bdc1751c65d.AllDay'
)
,
Run a query to Download Data