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

    Type Alias TokenPoolInfo

    Use SplInterfaceInfo instead. This type maintains backward compatibility by including both tokenPoolPda and splInterfacePda. Both properties point to the same PublicKey value.

    type TokenPoolInfo = {
        mint: PublicKey;
        tokenPoolPda: PublicKey;
        splInterfacePda: 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 SPL interface

    tokenPoolPda: PublicKey

    Use splInterfacePda instead.

    splInterfacePda: PublicKey

    The SPL interface address (new name). For backward compatibility, tokenPoolPda is also available.

    tokenProgram: PublicKey

    The token program of the SPL interface

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

    count of txs and volume in the past 60 seconds.

    isInitialized: boolean

    Whether the SPL interface is initialized

    balance: BN

    The balance of the SPL interface

    poolIndex: number

    The index of the SPL interface

    bump: number

    The bump used to derive the SPL interface PDA