The Event Emitted trigger alerts you whenever a particular event is logged by the monitored contract. Events are the standard way Solidity contracts signal state changes, making this trigger the most direct way to monitor your contract’s activity.Documentation Index
Fetch the complete documentation index at: https://docs.extractor.live/llms.txt
Use this file to discover all available pages before exploring further.
Use cases
Token transfer tracking
Token transfer tracking
Alert on every
Transfer event to monitor all token movements in real time.Ownership and role changes
Ownership and role changes
Watch for
OwnershipTransferred or RoleGranted / RoleRevoked events to detect any access control changes.Pausing and emergency events
Pausing and emergency events
Catch
Paused or Unpaused events immediately so your team knows when circuit-breaker logic has been activated.Configuration
Include Transaction Value (optional)
Toggle Include Transaction Value to only fire when the transaction that emitted the event also carries a native token value meeting a condition:
Leave the toggle off to fire on every event emission regardless of value.
| Field | Description |
|---|---|
| Operator | Comparison to apply: =, !=, >, >=, <, <= |
| Transaction value | Native token amount in wei |
Event Emitted selects events from the monitored contract’s ABI. To monitor events on a different contract address, use Event Advanced instead.