-
Notifications
You must be signed in to change notification settings - Fork 11
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 #114 from vzotova/confirmation
Operator confirmation from Coordinator to TACo application
- Loading branch information
Showing
28 changed files
with
989 additions
and
448 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
/** | ||
* @title ITACoChildToRoot | ||
* @notice Interface for x-chain interactions from coordinator to application | ||
*/ | ||
interface ITACoChildToRoot { | ||
/** | ||
* @notice Signals that an operator address is confirmed | ||
* @param stakingProvider Staking provider address | ||
* @param operator Operator address | ||
*/ | ||
event OperatorConfirmed(address indexed stakingProvider, address indexed operator); | ||
|
||
function confirmOperatorAddress(address operator) external; | ||
} |
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,16 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
/** | ||
* @title ITACoRootToChild | ||
* @notice Interface for x-chain interactions from application to coordinator | ||
*/ | ||
interface ITACoRootToChild { | ||
event OperatorUpdated(address indexed stakingProvider, address indexed operator); | ||
event AuthorizationUpdated(address indexed stakingProvider, uint96 amount); | ||
|
||
function updateOperator(address stakingProvider, address operator) external; | ||
|
||
function updateAuthorization(address stakingProvider, uint96 amount) external; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.