MintToCollectionInput
Represents input data for mint_to_collection
mutation with a collection ID, recipient, metadata, and optional seller fee basis points as fields
input MintToCollectionInput {
collection: UUID!
recipient: String!
metadataJson: MetadataJsonInput!
sellerFeeBasisPoints: Int
creators: [CreatorInput!]!
compressed: Boolean
}
Fields
MintToCollectionInput.collection
● UUID!
non-null scalar
The ID of the collection to mint to
MintToCollectionInput.recipient
● String!
non-null scalar
The recipient of the mint
MintToCollectionInput.metadataJson
● MetadataJsonInput!
non-null input
The metadata of the mint
MintToCollectionInput.sellerFeeBasisPoints
● Int
scalar
The optional seller fee basis points
MintToCollectionInput.creators
● [CreatorInput!]!
non-null input
The creators to be assigned to the NFT. For Solana, this can be up to five creators. If the project treasury wallet is set as a creator and verified set to true the creator will be verified on chain. For Polygon, this can be only 1 creator.
MintToCollectionInput.compressed
● Boolean
scalar
Member of
mintToCollection
mutation