gill
gill/programs/token/Type aliases

Mint

type Mint = {
  decimals: number;
  extensions: Option<Extension[]>;
  freezeAuthority: Option<Address>;
  isInitialized: boolean;
  mintAuthority: Option<Address>;
  supply: bigint;
};

Properties

decimals

decimals: number;

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


extensions

extensions: Option<Extension[]>;

The extensions activated on the mint account.


freezeAuthority

freezeAuthority: Option<Address>;

Optional authority to freeze token accounts.


isInitialized

isInitialized: boolean;

Is true if this structure has been initialized.


mintAuthority

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

Total supply of tokens.

On this page