Type alias FreezeTokensBuilderParams

FreezeTokensBuilderParams: {
    mintAddress: PublicKey;
    freezeAuthority: PublicKey | Signer;
    tokenAddress?: undefined | PublicKey;
    multiSigners?: undefined | KeypairSigner[];
    tokenOwner?: undefined | PublicKey;
    instructionKey?: undefined | string;
}

Type declaration

  • mintAddress: PublicKey

    The address of the mint account.

  • freezeAuthority: PublicKey | Signer

    The freeze authority as a Signer.

    This may be provided as a PublicKey if and only if the multiSigners parameter is provided.

  • Optional tokenAddress?: undefined | PublicKey

    The address of the token account.

    Default Value

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

  • Optional multiSigners?: undefined | KeypairSigner[]

    The signing accounts to use if the freeze authority is a multisig.

    Default Value

    []

  • Optional tokenOwner?: undefined | PublicKey

    The owner of the token account.

    Default Value

    metaplex.identity().publicKey

  • Optional instructionKey?: undefined | string

    A key to distinguish the instruction that freezes the token account.

Generated using TypeDoc