-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
137 additions
and
79 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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ import {ISystemContext} from "./interfaces/ISystemContext.sol"; | |
import {InvalidChainId} from "contracts/SystemContractErrors.sol"; | ||
import {IL2GenesisUpgrade} from "./interfaces/IL2GenesisUpgrade.sol"; | ||
|
||
import {L2GatewayUpgradeHelper} from "./L2GatewayUpgradeHelper.sol"; | ||
import {L2GenesisUpgradeHelper as L2GatewayUpgradeHelper} from "./L2GatewayUpgradeHelper.sol"; | ||
|
||
/// @custom:security-contact [email protected] | ||
/// @author Matter Labs | ||
|
@@ -30,11 +30,11 @@ contract L2GenesisUpgrade is IL2GenesisUpgrade { | |
} | ||
ISystemContext(SYSTEM_CONTEXT_CONTRACT).setChainId(_chainId); | ||
|
||
L2GatewayUpgradeHelper.performForceDeployedContractsInit( | ||
_ctmDeployer, | ||
_fixedForceDeploymentsData, | ||
_additionalForceDeploymentsData | ||
); | ||
// L2GatewayUpgradeHelper.performForceDeployedContractsInit( | ||
// _ctmDeployer, | ||
// _fixedForceDeploymentsData, | ||
// _additionalForceDeploymentsData | ||
// ); | ||
|
||
emit UpgradeComplete(_chainId); | ||
} | ||
|
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,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// We use a floating point pragma here so it can be used within other projects that interact with the ZKsync ecosystem without using our exact pragma version. | ||
pragma solidity ^0.8.20; | ||
|
||
interface IInteropAccount { | ||
} |
7 changes: 7 additions & 0 deletions
7
system-contracts/contracts/test-contracts/DummyInteropCenter.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,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
pragma solidity 0.8.24; | ||
|
||
contract DummyInteropCenter { | ||
constructor(address _bridgehub, uint256 _l1ChainId, address _owner) {} | ||
} |
Oops, something went wrong.