> ## 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.

# EventDisplayType

> Display category for an event — derived from the underlying EventType plus quoteToken side for Swap events.

### TypeScript shape

```ts theme={null}
type EventDisplayType =
  | 'Burn'
  | 'Mint'
  | 'Buy'
  | 'Sell'
  | 'Sync'
  | 'Collect'
  | 'CollectProtocol';
```

<ResponseField name="Buy" type="enum">Swap that buys the quote-side token. Derived from the sign of `raw_amount0` plus the requested `quoteToken`.</ResponseField>
<ResponseField name="Sell" type="enum">Swap that sells the quote-side token.</ResponseField>
<ResponseField name="Mint" type="enum">LP add.</ResponseField>
<ResponseField name="Burn" type="enum">LP remove.</ResponseField>
<ResponseField name="Sync" type="enum">V2 pool reserve sync.</ResponseField>
<ResponseField name="Collect" type="enum">V3 fee collection.</ResponseField>
<ResponseField name="CollectProtocol" type="enum">V3 protocol fee collection.</ResponseField>
