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

    wasRemoved() is functionally identical to isRemoved():
    // Both equivalent
    const removed1 = log.isRemoved();
    const removed2 = log.wasRemoved();
    
    Use whichever name is clearer in context. wasRemoved() emphasizes past tense; isRemoved() emphasizes current state.

    See Also