Type alias Creator

Creator: {
    address: PublicKey;
    verified: boolean;
    share: number;
}

Object that represents the creator of an asset. It contains its public key, its shares of the royalties in percent and whether or not the creator is verified for a given asset (i.e. they signed the asset).

Type declaration

  • Readonly address: PublicKey

    The public key of the creator.

  • Readonly verified: boolean

    Whether or not the creator is verified for the asset.

  • Readonly share: number

    The creator's shares of the royalties in percent (i.e. 5 is 5%).

Generated using TypeDoc