Skip to main content

TypeScript shape

interface SandwichLabelForEvent {
  label: string;
  sandwichType: SandwichLabelForEventType;
  token0DrainedAmount: string;
  token1DrainedAmount: string;
}
label
String!
Display label for the classification (e.g. sandwiched, frontrun, backrun).
sandwichType
SandwichLabelForEventType!
Discriminator. See SandwichLabelForEventType.
token0DrainedAmount
String!
Token0 drained amount. Currently null.
token1DrainedAmount
String!
Token1 drained amount. Currently null.