> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# TokenPairEventType

> Pair-level event variants.

### TypeScript shape

```ts theme={null}
type TokenPairEventType =
  | 'SWAP'
  | 'MINT'
  | 'BURN'
  | 'SYNC'
  | 'BUY'
  | 'SELL'
  | 'COLLECT'
  | 'COLLECT_PROTOCOL';
```

<ResponseField name="SWAP" type="enum">A swap (trade) on the pair.</ResponseField>
<ResponseField name="MINT" type="enum">Liquidity added to the pair.</ResponseField>
<ResponseField name="BURN" type="enum">Liquidity removed from the pair.</ResponseField>
