> ## Documentation Index
> Fetch the complete documentation index at: https://voltaire.tevm.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# EventLog.getIndexed

> Alias for getIndexedTopics

<Card title="Try it Live" icon="play" href="https://playground.tevm.sh?example=primitives/event-log.ts">
  Run EventLog examples in the interactive playground
</Card>

<Tabs />

## Usage Notes

`getIndexed()` is functionally identical to `getIndexedTopics()`:

```typescript theme={null}
// Both equivalent
const indexed1 = log.getIndexedTopics();
const indexed2 = log.getIndexed();
```

Use whichever name is clearer in context. `getIndexed()` is shorter; `getIndexedTopics()` is more explicit.

## See Also

* [getIndexedTopics](/primitives/eventlog/getindexedtopics) - Primary method with full documentation
* [getTopic0](/primitives/eventlog/gettopic0) - Get event signature
