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

# MintEventData

> Payload for an Event with eventType=Mint (LP add).

### TypeScript shape

```ts theme={null}
interface MintEventData {
  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 `"MintEventData"`.</ResponseField>
<ResponseField name="type" type="EventType!">Always `Mint`.</ResponseField>
<ResponseField name="amount0" type="String">Raw amount of token0 added.</ResponseField>
<ResponseField name="amount1" type="String">Raw amount of token1 added.</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 Mint logs flatten into the swaps table as `swap_type=DEPOSIT`.</ResponseField>
<ResponseField name="tickUpper" type="String">V3 upper tick of the position. Null — same as above.</ResponseField>
