RegistryEvents

Git Source

Events

HandleLinked

event HandleLinked(
    RegistryTypes.Handle handle, RegistryTypes.Token token, address transactionExecutor, uint256 timestamp
);

HandleUnlinked

WARNING: If a linked handle or token is burnt, this event will not be emitted. Indexers should also take into account token burns through ERC-721 Transfer events to track all unlink actions. The resolveHandle and resolveToken functions will properly reflect the unlink in any case.

event HandleUnlinked(
    RegistryTypes.Handle handle, RegistryTypes.Token token, address transactionExecutor, uint256 timestamp
);

NonceUpdated

Emitted when a signer's nonce is used and, as a consequence, the next available nonce is updated.

event NonceUpdated(address indexed signer, uint256 nonce, uint256 timestamp);