@lightprotocol/compressed-token - v0.22.1-alpha.2
    Preparing search index...

    Type Alias TokenPoolInfo

    Token pool pda info.

    type TokenPoolInfo = {
        mint: PublicKey;
        tokenPoolPda: PublicKey;
        tokenProgram: PublicKey;
        activity?: { txs: number; amountAdded: BN; amountRemoved: BN };
        isInitialized: boolean;
        balance: BN;
        poolIndex: number;
        bump: number;
    }
    Index

    Properties

    mint: PublicKey

    The mint of the token pool

    tokenPoolPda: PublicKey

    The token pool address

    tokenProgram: PublicKey

    The token program of the token pool

    activity?: { txs: number; amountAdded: BN; amountRemoved: BN }

    count of txs and volume in the past 60 seconds.

    isInitialized: boolean

    Whether the token pool is initialized

    balance: BN

    The balance of the token pool

    poolIndex: number

    The index of the token pool

    bump: number

    The bump used to derive the token pool pda