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

# BurnEventData

> Payload for an Event with eventType=Burn (LP remove).

### TypeScript shape

```ts theme={null}
interface BurnEventData {
  amount0: string | null;
  amount1: string | null;
  amount0Shifted: string | null;
  amount1Shifted: string | null;
  tickLower: string | null;
  tickUpper: string | null;
  type: EventType;
}
```

<ResponseField name="__typename" type="String!">Always `"BurnEventData"`.</ResponseField>
<ResponseField name="type" type="EventType!">Always `Burn`.</ResponseField>
<ResponseField name="amount0" type="String">Raw amount of token0 removed.</ResponseField>
<ResponseField name="amount1" type="String">Raw amount of token1 removed.</ResponseField>
<ResponseField name="amount0Shifted" type="String">Decimal-shifted amount of token0. Null on the historical path.</ResponseField>
<ResponseField name="amount1Shifted" type="String">Decimal-shifted amount of token1. Null on the historical path.</ResponseField>
<ResponseField name="tickLower" type="String">V3 lower tick of the position. Null — not preserved when V3 Burn logs flatten into the swaps table as `swap_type=WITHDRAWAL`.</ResponseField>
<ResponseField name="tickUpper" type="String">V3 upper tick of the position. Null — same as above.</ResponseField>
