Type alias FreezeDelegatedNftInput

FreezeDelegatedNftInput: {
    mintAddress: PublicKey;
    delegateAuthority: Signer;
    tokenOwner?: PublicKey;
    tokenAddress?: PublicKey;
}

Type declaration

  • mintAddress: PublicKey

    The address of the mint account.

  • delegateAuthority: Signer

    The SPL Token delegate authority.

    This authority should have been approved using metaplex.tokens().approveDelegateAuthority() beforehand.

  • Optional tokenOwner?: PublicKey

    The owner of the token account.

    Default Value

    metaplex.identity().publicKey

  • Optional tokenAddress?: PublicKey

    The address of the token account.

    Default Value

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

Generated using TypeDoc