Skip to main content

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