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

# EventCommitmentLevel

> Commitment level for an event. Historical reads always emit Confirmed.

### TypeScript shape

```ts theme={null}
type EventCommitmentLevel =
  | 'Processed'
  | 'Confirmed';
```

<ResponseField name="Processed" type="enum">Block has been processed but may still be reorged. Subscription stream only.</ResponseField>
<ResponseField name="Confirmed" type="enum">Block is final. The historical query path always emits this value.</ResponseField>
