LiquidityAdded: PlainDescriptor<{
    amount1_provided: bigint;
    amount2_provided: bigint;
    lp_token: number;
    lp_token_minted: bigint;
    mint_to: SS58String;
    pool_id: FixedSizeArray<2, {
        interior: XcmV3Junctions;
        parents: number;
    }>;
    who: SS58String;
}>

A successful call of the AddLiquidity extrinsic will create this event.

Type declaration

  • amount1_provided: bigint

    The amount of the first asset that was added to the pool.

  • amount2_provided: bigint

    The amount of the second asset that was added to the pool.

  • lp_token: number

    The id of the lp token that was minted.

  • lp_token_minted: bigint

    The amount of lp tokens that were minted of that id.

  • mint_to: SS58String

    The account that the liquidity tokens were minted to.

  • pool_id: FixedSizeArray<2, {
        interior: XcmV3Junctions;
        parents: number;
    }>

    The pool id of the pool that the liquidity was added to.

  • who: SS58String

    The account that the liquidity was taken from.