aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface PoolDepositEvent

    Represents a deposit event where a user adds liquidity to a pool, receiving minted LP tokens in return.

    interface PoolDepositEvent {
        depositor: string;
        deposits: bigint[];
        lpMinted: bigint;
        poolId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        types: string[];
    }

    Hierarchy (View Summary)

    Index
    depositor: string

    The address that deposited into the pool.

    deposits: bigint[]

    The amounts for each deposited coin type.

    lpMinted: bigint

    The amount of LP minted for the depositor.

    poolId: string

    The pool object ID receiving the deposit.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.

    types: string[]

    The coin types that were deposited.