MLDZMNnfc9
Updated 2022-10-13Copy Reference Fork
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 tb1 as (select
distinct BUYER_ADDRESS as sender,
PROJECT_NAME as NFT
from optimism.core.ez_nft_sales x left join optimism.core.dim_labels s on x.NFT_ADDRESS=s.ADDRESS
where PLATFORM_NAME='quixotic'
and EVENT_TYPE='sale'
and NFT='optipunk'
),
tb2 as (select
distinct BUYER_ADDRESS as sender,
PROJECT_NAME as NFT
from optimism.core.ez_nft_sales x left join optimism.core.dim_labels s on x.NFT_ADDRESS=s.ADDRESS
where PLATFORM_NAME='quixotic'
and EVENT_TYPE='sale'
and NFT='optimism'
),
tb3 as (select
distinct BUYER_ADDRESS as sender,
PROJECT_NAME as NFT
from optimism.core.ez_nft_sales x left join optimism.core.dim_labels s on x.NFT_ADDRESS=s.ADDRESS
where PLATFORM_NAME='quixotic'
and EVENT_TYPE='sale'
and NFT='bored town'
),
tb4 as (select
distinct BUYER_ADDRESS as sender,
PROJECT_NAME as NFT
from optimism.core.ez_nft_sales x left join optimism.core.dim_labels s on x.NFT_ADDRESS=s.ADDRESS
where PLATFORM_NAME='quixotic'
and EVENT_TYPE='sale'
and NFT='elements of ganland'
),
Run a query to Download Data