Interface RouterAddLiquidityEvent

Event emitted when liquidity is added to a pair through the Router.

interface RouterAddLiquidityEvent {
    amountOfFirstTokenDeposited: bigint;
    amountOfSecondTokenDeposited: bigint;
    contractType: "SoroswapRouter";
    eventType: "add";
    firstToken: Asset;
    ledger: number;
    liquidityPoolAddress: string;
    liquidityPoolTokensMinted: bigint;
    recipientAddress: string;
    secondToken: Asset;
    timestamp: number;
}

Hierarchy

  • BaseLiquidityEvent
    • RouterAddLiquidityEvent

Properties

amountOfFirstTokenDeposited: bigint
amountOfSecondTokenDeposited: bigint
contractType
eventType
firstToken: Asset
ledger: number
liquidityPoolAddress: string
liquidityPoolTokensMinted: bigint
recipientAddress: string
secondToken: Asset
timestamp: number