Skip to main content

TypeScript shape

interface BurnEventData {
  amount0: string | null;
  amount1: string | null;
  amount0Shifted: string | null;
  amount1Shifted: string | null;
  tickLower: string | null;
  tickUpper: string | null;
  type: EventType;
}
__typename
String!
Always "BurnEventData".
type
EventType!
Always Burn.
amount0
String
Raw amount of token0 removed.
amount1
String
Raw amount of token1 removed.
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 Burn logs flatten into the swaps table as swap_type=WITHDRAWAL.
tickUpper
String
V3 upper tick of the position. Null — same as above.