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

    getSignature() is functionally identical to getTopic0(). Use whichever name is clearer in context:
    // Both equivalent
    const sig1 = log.getTopic0();
    const sig2 = log.getSignature();
    
    The name “signature” emphasizes that topic0 typically contains the event signature hash for non-anonymous events.

    See Also