From c924ae4fc8469adb3a3390643aea521c55d3dbd5 Mon Sep 17 00:00:00 2001 From: romsters Date: Thu, 12 Sep 2024 11:14:04 +0300 Subject: [PATCH] fix: use latest zksync-contracts version --- .../30.ethereum-differences/60.contract-deployment.md | 2 +- .../65.developer-reference/80.l1-l2-interoperability.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/00.build/65.developer-reference/30.ethereum-differences/60.contract-deployment.md b/content/00.build/65.developer-reference/30.ethereum-differences/60.contract-deployment.md index 4804627a..618a708b 100644 --- a/content/00.build/65.developer-reference/30.ethereum-differences/60.contract-deployment.md +++ b/content/00.build/65.developer-reference/30.ethereum-differences/60.contract-deployment.md @@ -159,7 +159,7 @@ To have a deterministic address, you should use the `create2` method from Deploying contracts on ZKsync Era is also possible via L1-L2 communication. -The [interface](https://github.com/matter-labs/era-contracts/blob/main/l1-contracts/contracts/zksync/interfaces/IZkSync.sol) +The [interface](https://github.com/matter-labs/era-contracts/blob/main/l1-contracts/contracts/state-transition/chain-interfaces/IZkSyncHyperchain.sol) for submitting L1->L2 transactions accepts the list of all the factory dependencies required for this particular transaction. The logic for working with them is the same as for the default L2 deployments. The diff --git a/content/00.build/65.developer-reference/80.l1-l2-interoperability.md b/content/00.build/65.developer-reference/80.l1-l2-interoperability.md index 1aa42f7a..e3648ebe 100644 --- a/content/00.build/65.developer-reference/80.l1-l2-interoperability.md +++ b/content/00.build/65.developer-reference/80.l1-l2-interoperability.md @@ -15,7 +15,7 @@ Many use cases require multi-layer interoperability, such as: ## L1 to L2 communication L1 to L2 communication is governed by the -[`IZkSync.sol`](https://github.com/matter-labs/era-contracts/blob/main/l1-contracts/contracts/zksync/interfaces/IZkSync.sol) inherited interfaces. +[`IZkSyncHyperchain.sol`](https://github.com/matter-labs/era-contracts/blob/main/l1-contracts/contracts/state-transition/chain-interfaces/IZkSyncHyperchain.sol) inherited interfaces. ### Gas estimation