Type alias RevokeNftUseAuthorityBuilderParams

RevokeNftUseAuthorityBuilderParams: {
    mintAddress: PublicKey;
    user: PublicKey;
    owner?: undefined | Signer;
    ownerTokenAddress?: undefined | PublicKey;
    instructionKey?: undefined | string;
}

Type declaration

  • mintAddress: PublicKey

    The address of the mint account.

  • user: PublicKey

    The address of the use authority to revoke.

  • Optional owner?: undefined | Signer

    The owner of the NFT or SFT as a Signer.

    Default Value

    metaplex.identity()

  • Optional ownerTokenAddress?: undefined | PublicKey

    The address of the token account linking the mint account with the owner account.

    Default Value

    Defaults to using the associated token account from the mintAddress and owner parameters.

  • Optional instructionKey?: undefined | string

    A key to distinguish the instruction that revokes the use authority.

Generated using TypeDoc