MintAccountData: {
    decimals: number;
    extensions: Option<Extension[]>;
    freezeAuthority: Option<PublicKey>;
    isInitialized: boolean;
    mintAuthority: Option<PublicKey>;
    supply: bigint;
}

Type declaration

  • decimals: number

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

  • extensions: Option<Extension[]>

    The extensions activated on the mint account.

  • freezeAuthority: Option<PublicKey>

    Optional authority to freeze token accounts.

  • isInitialized: boolean

    Is true if this structure has been initialized.

  • mintAuthority: Option<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: bigint

    Total supply of tokens.

Generated using TypeDoc