-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from zkLinkProtocol/issue_8
update initialization
- Loading branch information
Showing
8 changed files
with
121 additions
and
84 deletions.
There are no files selected for viewing
File renamed without changes.
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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,6 @@ import {FeeParams} from "../Storage.sol"; | |
/// @author Matter Labs | ||
/// @custom:security-contact [email protected] | ||
interface IAdmin { | ||
/// @notice Starts the transfer of governor rights. Only the current governor can propose a new pending one. | ||
/// @notice New governor can accept governor rights by calling `acceptGovernor` function. | ||
/// @param _newPendingGovernor Address of the new governor | ||
function setPendingGovernor(address _newPendingGovernor) external; | ||
|
||
/// @notice Starts the transfer of admin rights. Only the current governor or admin can propose a new pending one. | ||
/// @notice New admin can accept admin rights by calling `acceptAdmin` function. | ||
/// @param _newPendingAdmin Address of the new admin | ||
function setPendingAdmin(address _newPendingAdmin) external; | ||
|
||
/// @notice Change validator status (active or not active) | ||
/// @param _validator Validator address | ||
/// @param _active Active flag | ||
|
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