# Events & Monitoring

* `WarpFactory.PairCreated(token0, token1, pair, pairIndex)` – emitted once per pool.
* `WarpPair.Mint(sender, amount0, amount1)` – a new liquidity provision.
* `WarpPair.Burn(sender, amount0, amount1, to)` – liquidity withdrawn.
* `WarpPair.Swap(sender, amount0In, amount1In, amount0Out, amount1Out, to)` – emitted on every hop in router swaps.
* `WarpPair.Sync(reserve0, reserve1)` – reserves updated; ingest for analytics/TWAPs.
* ERC-20 `Transfer` on LP tokens – track LP ownership changes.
* Router does not emit custom events; rely on pair-level emissions and transaction logs.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.warpx.exchange/for-developers/warpx-v2/events-and-monitoring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
