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

# SandwichLabelForEventType

> Discriminator for an event's role in a sandwich attack.

### TypeScript shape

```ts theme={null}
type SandwichLabelForEventType =
  | 'sandwiched'
  | 'frontrun'
  | 'backrun';
```

<ResponseField name="sandwiched" type="enum">
  The victim trade — sat between the attacker's frontrun and backrun.
</ResponseField>

<ResponseField name="frontrun" type="enum">
  The attacker's leading trade, placed immediately before the victim to move price.
</ResponseField>

<ResponseField name="backrun" type="enum">
  The attacker's trailing trade, placed immediately after the victim to close the position at the manipulated price.
</ResponseField>
