Ali3NDistribution of Minters Who Have Sold Their NFT By Their Sale Time Foxes
Updated 2022-12-02
99
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 famoust as (
select * from solana.core.dim_labels
where label = 'famous fox federation'),
transdimensionalt as (
select * from solana.core.dim_labels
where label = 'transdimensional fox federation'),
famoust1 as (
select t2.tx_id,
t1.block_timestamp as mint_date,
t2.block_timestamp as purchase_date,
t1.purchaser,
seller as NFT_User
from solana.core.fact_nft_mints t1 join solana.core.fact_nft_sales t2 on t1.purchaser = t2.seller and t1.mint = t2.mint and t2.block_timestamp > t1.block_timestamp
where t1.mint in (select address from famoust)),
famoust2 as (
select NFT_User,
datediff (hour,mint_date,purchase_date) as Date_Diff
from famoust1),
transdimensionalt1 as (
select t2.tx_id,
t1.block_timestamp as mint_date,
t2.block_timestamp as purchase_date,
t1.purchaser,
seller as NFT_User
from solana.core.fact_nft_mints t1 join solana.core.fact_nft_sales t2 on t1.purchaser = t2.seller and t1.mint = t2.mint and t2.block_timestamp > t1.block_timestamp
where t1.mint in (select address from transdimensionalt)),
transdimensionalt2 as (
select NFT_User,
datediff (hour,mint_date,purchase_date) as Date_Diff
from transdimensionalt1)
Run a query to Download Data