jgvfSolana NFTs - Minted Tokens (incl. compressed) - All Time Count copy
Updated 2023-08-30
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
›
⌄
-- forked from marqu / Solana NFTs - Minted Tokens (incl. compressed) - All Time Count @ https://flipsidecrypto.xyz/marqu/q/JWkMM70g89TT/solana-nfts---minted-tokens-incl.-compressed---all-time-count
with
regular_mints as (
select
block_timestamp
, mint
, 'NFTs' as label_type
from solana.core.fact_nft_mints
where succeeded
and not program_id = 'BGUMAp9Gq7iTEuizy4pqaxsTyUCBK68MDfK752saRPUY'
),
bgum_mints as (
select
block_timestamp
, concat(tx_id, row_number() over (partition by events.tx_id order by events.index)) as mint
, 'compressed NFTs' as label_type
from solana.core.fact_events events
inner join solana.core.fact_transactions txs
using(tx_id, block_timestamp, succeeded)
where succeeded
and program_id = 'BGUMAp9Gq7iTEuizy4pqaxsTyUCBK68MDfK752saRPUY'
and array_contains('Program log: Instruction: MintToCollectionV1' ::variant, log_messages)
and block_timestamp > '2023-02-07'
union all
select
Run a query to Download Data