-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: operator<>AVS mapping tests (#407)
* test: added back avsRegistration tests * fix: fuzz runs 4096 * fix: broken fuzz test
- Loading branch information
Showing
6 changed files
with
321 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: BUSL-1.1 | ||
pragma solidity =0.8.12; | ||
|
||
import "src/contracts/interfaces/IAVSDirectory.sol"; | ||
|
||
interface IAVSDirectoryEvents { | ||
/** | ||
* @notice Emitted when @param avs indicates that they are updating their MetadataURI string | ||
* @dev Note that these strings are *never stored in storage* and are instead purely emitted in events for off-chain indexing | ||
*/ | ||
event AVSMetadataURIUpdated(address indexed avs, string metadataURI); | ||
|
||
/// @notice Emitted when an operator's registration status for an AVS is updated | ||
event OperatorAVSRegistrationStatusUpdated(address indexed operator, address indexed avs, IAVSDirectory.OperatorAVSRegistrationStatus status); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.