CreateMintWithExtensionsArgs: {
    decimals?: number;
    extensions?: ExtensionArgs[];
    freezeAuthority?: OptionOrNullable<PublicKey>;
    lamports?: SolAmount;
    mint: Signer;
    mintAuthority: Signer;
}

Type declaration

  • Optional decimals?: number

    Number of base-10 digits to the right of the decimal place.

    Default Value

    0

  • Optional extensions?: ExtensionArgs[]

    The mint extensions to initialize on the account.

  • Optional freezeAuthority?: OptionOrNullable<PublicKey>

    The optional freeze authority of the mint.

  • Optional lamports?: SolAmount

    Optional override for the lamports funding the mint account.

    Default Value

    enough to make the fully-extended account rent-exempt.

  • mint: Signer

    The new mint account to create.

  • mintAuthority: Signer

    The authority allowed to mint tokens and to configure extensions.

Generated using TypeDoc