For the complete documentation index, see llms.txt. This page is also available as Markdown.

isBlindMintProduct

isBlindMintProduct() → boolean

Validate whether a product is a Blind Mint product

Provides additional TypeScript typing support by narrowing the product type to BlindMintProduct

Example

const product = await sdk.getProduct('31231232')
if (!isBlindMintProduct(product)) {
  throw new Error('Is not a blind mint instance')
}
// product is now BlindMintProduct

Last updated