-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operator confirmation from Coordinator to TACo application #114
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
0d05a3c
FxBaseChildTunnel can't emit events on _processMessageFromRoot callback
cygnusv 38870ed
FxPortal Deployment info: FxRoot, FxChild, CheckpointManager
cygnusv e54455b
Set FxChildTunnel on PolygonRoot constructor
cygnusv f2953e7
Grant DEFAULT_ADMIN_ROLE on StakeInfo to the deployer
cygnusv 9551852
Adapt xchain deployment script to new changes
cygnusv ff108c7
Improve logging of check_xchain script
theref 1dfe46f
Fix bugs and improve config handling for deploying xchain scripts
theref a0acacd
New coordinator deployment script
cygnusv 4edfe53
Rename StakeInfo and interfaces. Add confirmation from Polygon to Mai…
vzotova cd5dc14
Fixes tests after renaming and adding confirmation through Coordinator
vzotova c74edc6
Removes `batchUpdate`, moves additional access in child app to extend…
vzotova 7b7899c
Update contracts for coordinator test
vzotova 19ca893
Update the x chain deploy script for full TACO test
theref ef6c536
Merge pull request #1 from theref/taco_x_chain
vzotova bef7fa1
Tests for child app
vzotova 5bce831
Updates dependencies and config to use deploy_xchain_test
vzotova ff36f5b
Final renames StakeInfo -> TACoChildApp
vzotova 34089fa
Checks X chanin txs in bridge contracts
vzotova b2efc21
Changes functions in polygon bridge to fallback functions, minor refi…
vzotova File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we still need
rinkeby
at all? Can we remove it?