From b7b9f1b1b23c8db2d2d31868eef88c7e9144e438 Mon Sep 17 00:00:00 2001 From: Ivan Schasny Date: Mon, 11 Nov 2024 14:12:31 +0000 Subject: [PATCH 1/2] fix: add deploy timestap asserter command --- l1-contracts/deploy-scripts/DeployL2Contracts.sol | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/l1-contracts/deploy-scripts/DeployL2Contracts.sol b/l1-contracts/deploy-scripts/DeployL2Contracts.sol index 9ce7583fd..3953ce20c 100644 --- a/l1-contracts/deploy-scripts/DeployL2Contracts.sol +++ b/l1-contracts/deploy-scripts/DeployL2Contracts.sol @@ -122,6 +122,15 @@ contract DeployL2Script is Script { saveOutput(); } + function runDeployTimestampAsserter() public { + initializeConfig(); + loadContracts(false); + + deployTimestampAsserter()(); + + saveOutput(); + } + function loadContracts(bool legacyBridge) internal { //HACK: Meanwhile we are not integrated foundry zksync we use contracts that has been built using hardhat contracts.l2StandardErc20FactoryBytecode = Utils.readFoundryBytecode( From 46d75088e7ddb534101874c3ec15b877da1cb417 Mon Sep 17 00:00:00 2001 From: Ivan Schasny Date: Mon, 11 Nov 2024 14:24:29 +0000 Subject: [PATCH 2/2] Typo --- l1-contracts/deploy-scripts/DeployL2Contracts.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l1-contracts/deploy-scripts/DeployL2Contracts.sol b/l1-contracts/deploy-scripts/DeployL2Contracts.sol index 3953ce20c..899cc9263 100644 --- a/l1-contracts/deploy-scripts/DeployL2Contracts.sol +++ b/l1-contracts/deploy-scripts/DeployL2Contracts.sol @@ -126,7 +126,7 @@ contract DeployL2Script is Script { initializeConfig(); loadContracts(false); - deployTimestampAsserter()(); + deployTimestampAsserter(); saveOutput(); }