MintArgs
type MintArgs = {
decimals: number;
extensions: OptionOrNullable<ExtensionArgs[]>;
freezeAuthority: OptionOrNullable<Address>;
isInitialized: boolean;
mintAuthority: OptionOrNullable<Address>;
supply: number | bigint;
};Properties
decimals
decimals: number;Number of base 10 digits to the right of the decimal place.
extensions
extensions: OptionOrNullable<ExtensionArgs[]>;The extensions activated on the mint account.
freezeAuthority
freezeAuthority: OptionOrNullable<Address>;Optional authority to freeze token accounts.
isInitialized
isInitialized: boolean;Is true if this structure has been initialized.
mintAuthority
mintAuthority: OptionOrNullable<Address>;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
supply: number | bigint;Total supply of tokens.