MintHistory
A record of a minted NFT.
type MintHistory {
id: UUID!
mintId: UUID!
wallet: String!
txSignature: String
status: CreationStatus!
createdAt: DateTime!
collectionId: UUID!
mint: CollectionMint
}
Fields
MintHistory.id ● UUID! non-null scalar
MintHistory.mintId ● UUID! non-null scalar
The ID of the NFT minted.
MintHistory.wallet ● String! non-null scalar
The wallet address of the buyer.
MintHistory.txSignature ● String scalar
The signature of the transaction, if any.
MintHistory.status ● CreationStatus! non-null enum
The status of the creation of the NFT.
MintHistory.createdAt ● DateTime! non-null scalar
The date and time when the purchase was created.
MintHistory.collectionId ● UUID! non-null scalar
The ID of the collection that facilitated the mint, if any.
MintHistory.mint ● CollectionMint object
The minted NFT.
Member of
Collection object ● CollectionMint object ● Customer object ● Drop object