MintAccountDataArgs: {
    decimals: number;
    extensions: OptionOrNullable<ExtensionArgs[]>;
    freezeAuthority: OptionOrNullable<PublicKey>;
    isInitialized: boolean;
    mintAuthority: OptionOrNullable<PublicKey>;
    supply: number | bigint;
}

Type declaration

  • decimals: number

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

  • extensions: OptionOrNullable<ExtensionArgs[]>

    The extensions activated on the mint account.

  • freezeAuthority: OptionOrNullable<PublicKey>

    Optional authority to freeze token accounts.

  • isInitialized: boolean

    Is true if this structure has been initialized.

  • mintAuthority: OptionOrNullable<PublicKey>

    Optional authority used to mint new tokens. The mint authority may only be provided during mint creation. If no mint authority is present then the mint has a fixed supply and no further tokens may be minted.

  • supply: number | bigint

    Total supply of tokens.

Generated using TypeDoc