-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into set_p2p_node
- Loading branch information
Showing
83 changed files
with
5,143 additions
and
1,153 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
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -7,7 +7,14 @@ import "../based/TaikoInbox.sol"; | |
/// @dev Labeled in address resolver as "taiko" | ||
/// @custom:security-contact [email protected] | ||
contract DevnetInbox is TaikoInbox { | ||
constructor(address _resolver) TaikoInbox(_resolver) { } | ||
constructor( | ||
address _wrapper, | ||
address _verifier, | ||
address _bondToken, | ||
address _signalService | ||
) | ||
TaikoInbox(_wrapper, _verifier, _bondToken, _signalService) | ||
{ } | ||
|
||
/// @inheritdoc ITaikoInbox | ||
function pacayaConfig() public pure override returns (ITaikoInbox.Config memory) { | ||
|
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 |
---|---|---|
|
@@ -11,13 +11,9 @@ import "../../verifiers/IVerifier.sol"; | |
/// onchain. | ||
/// @custom:security-contact [email protected] | ||
contract OpVerifier is EssentialContract, IVerifier { | ||
uint64 public immutable taikoChainId; | ||
|
||
uint256[50] private __gap; | ||
|
||
constructor(address _resolver, uint64 _taikoChainId) EssentialContract(_resolver) { | ||
taikoChainId = _taikoChainId; | ||
} | ||
constructor(address _resolver) EssentialContract(_resolver) { } | ||
|
||
/// @notice Initializes the contract. | ||
/// @param _owner The owner of this contract. msg.sender will be used if this value is zero. | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,14 @@ import "../based/TaikoInbox.sol"; | |
/// @dev Labeled in address resolver as "taiko" | ||
/// @custom:security-contact [email protected] | ||
contract HeklaInbox is TaikoInbox { | ||
constructor(address _resolver) TaikoInbox(_resolver) { } | ||
constructor( | ||
address _wrapper, | ||
address _verifier, | ||
address _bondToken, | ||
address _signalService | ||
) | ||
TaikoInbox(_wrapper, _verifier, _bondToken, _signalService) | ||
{ } | ||
|
||
function pacayaConfig() public pure override returns (ITaikoInbox.Config memory) { | ||
return ITaikoInbox.Config({ | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,14 @@ import "./libs/LibFasterReentryLock.sol"; | |
/// @notice See the documentation in {TaikoL1}. | ||
/// @custom:security-contact [email protected] | ||
contract MainnetInbox is TaikoInbox { | ||
constructor(address _resolver) TaikoInbox(_resolver) { } | ||
constructor( | ||
address _wrapper, | ||
address _verifier, | ||
address _bondToken, | ||
address _signalService | ||
) | ||
TaikoInbox(_wrapper, _verifier, _bondToken, _signalService) | ||
{ } | ||
|
||
function pacayaConfig() public pure override returns (ITaikoInbox.Config memory) { | ||
// All hard-coded configurations: | ||
|
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
Oops, something went wrong.