Skip to main content

TypeScript shape

interface MintEventData {
  amount0: string | null;
  amount1: string | null;
  amount0Shifted: string | null;
  amount1Shifted: string | null;
  tickLower: string | null;
  tickUpper: string | null;
  type: EventType;
}
__typename
String!
Always "MintEventData".
type
EventType!
Always Mint.
amount0
String
Raw amount of token0 added.
amount1
String
Raw amount of token1 added.
amount0Shifted
String
Decimal-shifted amount of token0. Null on the historical path.
amount1Shifted
String
Decimal-shifted amount of token1. Null on the historical path.
tickLower
String
V3 lower tick of the position. Null — not preserved when V3 Mint logs flatten into the swaps table as swap_type=DEPOSIT.
tickUpper
String
V3 upper tick of the position. Null — same as above.