Type alias NftPrintEdition

NftPrintEdition: {
    model: "nftEdition";
    isOriginal: false;
    address: PublicKey;
    parent: PublicKey;
    number: BigNumber;
}

Type declaration

  • Readonly model: "nftEdition"

    A model identifier to distinguish models in the SDK.

  • Readonly isOriginal: false

    Whether or not this is an original edition. This field helps distinguish between the NftOriginalEdition and the NftPrintEdition models.

  • Readonly address: PublicKey

    The address of the edition account.

  • Readonly parent: PublicKey

    The address of the original edition account this was printed from.

  • Readonly number: BigNumber

    The number of this printed edition.

    For instance, 1 means this was the very first edition printed from the original edition. This is a key difference between printed editions and SFTs as SFTs do not keep track of any ordering.

Generated using TypeDoc