-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addressed review feedback from @mcclurejt and @jrhea
- Loading branch information
1 parent
dd52910
commit ca0f03d
Showing
5 changed files
with
36 additions
and
38 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
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
23 changes: 23 additions & 0 deletions
23
contracts/src/interfaces/IHyperdriveGovernedRegistryEvents.sol
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,23 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8.20; | ||
|
||
interface IHyperdriveGovernedRegistryEvents { | ||
/// @notice Emitted when the registry is initialized. | ||
event Initialized(string indexed name, address indexed admin); | ||
|
||
/// @notice Emitted when admin is transferred. | ||
event AdminUpdated(address indexed admin); | ||
|
||
/// @notice Emitted when Hyperdrive factory info is updated. | ||
event FactoryInfoUpdated(address indexed factory, uint256 indexed data); | ||
|
||
/// @notice Emitted when Hyperdrive instance info is updated. | ||
event InstanceInfoUpdated( | ||
address indexed instance, | ||
uint256 indexed data, | ||
address indexed factory | ||
); | ||
|
||
/// @notice Emitted when the name is updated. | ||
event NameUpdated(string indexed name); | ||
} |
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
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