adriaparcerisasNew nft mints 4
Updated 2022-05-18
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
transactions as (
select
x.block_timestamp,
y.contract_name,
y.project_name,
y.created_at_timestamp,
x.tx_id,
x.purchaser,
x.sales_amount
from solana.fact_nft_sales x
join solana.dim_nft_metadata y on x.mint = y.mint --and y.contract_name = 'Catalina Whale Mixer'
--where program_id='MEisE1HzehtrDpAAT8PnLHjpSSkRYakotTuJRPjTpo8' --like '%magic eden%'
),
collections as (
select
distinct contract_name as collection,
'Solana' as network,
min(block_timestamp) as debut
from transactions
group by 1
order by 1 asc
),
eth as (
SELECT
distinct project_name as collection,
'Ethereum' as network,
min(block_timestamp) as debut
from ethereum_core.ez_nft_sales
group by 1
order by 1 asc
),
sol_sales as (
SELECT
trunc(block_timestamp,'day') as date1,
'Solana' as network1,
Run a query to Download Data