@lightprotocol/compressed-token - v0.23.0-beta.8
    Preparing search index...

    Interface BaseMint

    SPL-compatible base mint structure

    interface BaseMint {
        mintAuthority: PublicKey | null;
        supply: bigint;
        decimals: number;
        isInitialized: boolean;
        freezeAuthority: PublicKey | null;
    }
    Index

    Properties

    mintAuthority: PublicKey | null

    Optional authority used to mint new tokens

    supply: bigint

    Total supply of tokens

    decimals: number

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

    isInitialized: boolean

    Is initialized - for SPL compatibility

    freezeAuthority: PublicKey | null

    Optional authority to freeze token accounts