Skip to main content

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.

Try it Live

Run EventLog examples in the interactive playground

    Usage Notes

    getIndexed() is functionally identical to getIndexedTopics():
    // 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