Interface Mint

Information about a mint

interface Mint {
    address: PublicKey;
    decimals: number;
    freezeAuthority: null | PublicKey;
    isInitialized: boolean;
    mintAuthority: null | PublicKey;
    supply: bigint;
    tlvData: Buffer;
}

Properties

address: PublicKey

Address of the mint

decimals: number

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

freezeAuthority: null | PublicKey

Optional authority to freeze token accounts

isInitialized: boolean

Is this mint initialized

mintAuthority: null | 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

tlvData: Buffer

Additional data for extension

Generated using TypeDoc