CollectionMint
Represents a single NFT minted from a collection.
type CollectionMint {
id: UUID!
collectionId: UUID!
address: String
owner: String
creationStatus: CreationStatus!
createdBy: UUID!
createdAt: DateTime!
signature: String
edition: Int!
sellerFeeBasisPoints: Int!
creditsDeductionId: UUID
compressed: Boolean
collection: Collection
metadataJson: MetadataJson
updateHistories: [UpdateHistory!]
creators: [MintCreator!]
mintHistory: MintHistory
transferHistories: [NftTransfer!]
switchCollectionHistories: [SwitchCollectionHistory!]
}
Fields
CollectionMint.id
● UUID!
non-null scalar
The unique ID of the minted NFT.
CollectionMint.collectionId
● UUID!
non-null scalar
The ID of the collection the NFT was minted from.
CollectionMint.address
● String
scalar
The address of the NFT On Solana this is the mint address. On EVM chains it is the concatenation of the contract address and the token id
{contractAddress}:{tokenId}
.
CollectionMint.owner
● String
scalar
The wallet address of the owner of the NFT.
CollectionMint.creationStatus
● CreationStatus!
non-null enum
The status of the NFT creation.
CollectionMint.createdBy
● UUID!
non-null scalar
The unique ID of the creator of the NFT.
CollectionMint.createdAt
● DateTime!
non-null scalar
The date and time when the NFT was created.
CollectionMint.signature
● String
scalar
The transaction signature associated with the NFT.
CollectionMint.edition
● Int!
non-null scalar
The unique edition number of the NFT.
CollectionMint.sellerFeeBasisPoints
● Int!
non-null scalar
The seller fee basis points (ie royalties) for the NFT.
CollectionMint.creditsDeductionId
● UUID
scalar
credits deduction id
CollectionMint.compressed
● Boolean
scalar
Indicates if the NFT is compressed. Compression is only supported on Solana.
CollectionMint.collection
● Collection
object
The collection the NFT was minted from.
CollectionMint.metadataJson
● MetadataJson
object
The metadata json associated to the collection. Metaplex v1.1.0 Standard
CollectionMint.updateHistories
● [UpdateHistory!]
list object
The update history of the mint.
CollectionMint.creators
● [MintCreator!]
list object
The creators of the mint. Includes the creator addresses and their shares.
CollectionMint.mintHistory
● MintHistory
object
The record of the original mint.
CollectionMint.transferHistories
● [NftTransfer!]
list object
The history of transfers for the mint.
CollectionMint.switchCollectionHistories
● [SwitchCollectionHistory!]
list object
The history of switched collections for the mint.
Returned by
mint
query
Member of
Collection
object ● Customer
object ● Drop
object ● MintEditionPayload
object ● MintHistory
object ● MintQueuedPayload
object ● MintToCollectionPayload
object ● QueueMintToDropPayload
object ● RetryMintEditionPayload
object ● SwitchCollectionPayload
object ● TransferAssetPayload
object ● UpdateMintPayload
object ● Wallet
object