Interface MintTokenDataV2

interface MintTokenDataV2 {
    blueprint: string;
    id: string;
    royalties?: MintFee[];
}

Hierarchy

  • MintTokenDataV2
    • MintTokenDataV2

Properties

blueprint: string

Token metadata blueprint

MintTokenDataV2

id: string

Token ID Note: While the Token ID is required to be a string, it still needs to be a valid uint256 as per the ERC-721 token standard.

MintTokenDataV2

royalties?: MintFee[]

List of mint fees

MintTokenDataV2