From cb477c2a1e3e84cba241efcbc8ac52f8c0ea4ca5 Mon Sep 17 00:00:00 2001 From: Salad <148864073+Saladerl@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:53:49 +0800 Subject: [PATCH] docs: incorrect link reference in 03_withdrawals.md (#354) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ - incorrect link reference in 03_withdrawals.md ## Why ❔ - incorrect link reference in 03_withdrawals.md ## Checklist - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] Code has been formatted via `zk fmt` and `zk lint`. --- docs/advanced/03_withdrawals.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/advanced/03_withdrawals.md b/docs/advanced/03_withdrawals.md index 78fbf2a7d5f..262dcf2de6c 100644 --- a/docs/advanced/03_withdrawals.md +++ b/docs/advanced/03_withdrawals.md @@ -79,12 +79,13 @@ address constant L2_ETH_TOKEN_SYSTEM_CONTRACT_ADDR = address(0x800a); This is a good opportunity to talk about system contracts that are automatically deployed on L2. You can find the full list here -[in github](https://github.com/matter-labs/system-contracts/blob/436d57da2fb35c40e38bcb6637c3a090ddf60701/scripts/constants.ts#L29) +[in github](https://github.com/matter-labs/era-system-contracts/blob/436d57da2fb35c40e38bcb6637c3a090ddf60701/scripts/constants.ts#L29) This is the place were we specify that `bootloader` is at address 0x8001, `NonceHolder` at 0x8003 etc. -This brings us to [L2EthToken.sol](https://github.com/matter-labs/system-contracts/blob/main/contracts/L2EthToken.sol) -that has the implementation of the L2 Eth. +This brings us to +[L2EthToken.sol](https://github.com/matter-labs/era-system-contracts/blob/main/contracts/L2EthToken.sol) that has the +implementation of the L2 Eth. When we look inside, we can see: