From deccbd640c75045d7fa261fe81d6f9bd88b0e368 Mon Sep 17 00:00:00 2001 From: isabelle Date: Thu, 27 Jun 2024 15:20:25 -0400 Subject: [PATCH 1/5] remove legacy flag for foundry --- src/content/docs/en/developers/developer-quickstart.mdx | 2 +- .../en/developers/guides/contract-deployment-tutorial.mdx | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/content/docs/en/developers/developer-quickstart.mdx b/src/content/docs/en/developers/developer-quickstart.mdx index 3da6c8786..465a3601c 100644 --- a/src/content/docs/en/developers/developer-quickstart.mdx +++ b/src/content/docs/en/developers/developer-quickstart.mdx @@ -113,7 +113,7 @@ const config: HardhatUserConfig = { To deploy using the Scroll Sepolia Testnet Public RPC, run: ```bash -forge create ... --rpc-url=https://sepolia-rpc.scroll.io/ --legacy +forge create ... --rpc-url=https://sepolia-rpc.scroll.io/ ``` ### Remix Web IDE diff --git a/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx b/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx index 1f293a3fe..1ce438bac 100644 --- a/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx +++ b/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx @@ -43,7 +43,7 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I 1. Clone the repo: ```shell - git clone https://github.com/scroll-tech/scroll-guides.git + c cd scroll-guides/contract-deploy-demo ``` @@ -63,7 +63,6 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I --value \ --constructor-args \ --private-key \ - --legacy \ contracts/Lock.sol:Lock ``` @@ -77,7 +76,7 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I --value 0.00000000002ether \ --constructor-args 1696118400 \ --private-key 0xabc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc1 \ - --legacy contracts/Lock.sol:Lock + contracts/Lock.sol:Lock ``` ## Questions and Feedback From 0edad3fbd8680b6f49b00d9c0cd133193eb0c3dd Mon Sep 17 00:00:00 2001 From: isabelle Date: Thu, 27 Jun 2024 15:20:35 -0400 Subject: [PATCH 2/5] update Curie details --- .../docs/en/technology/overview/scroll-upgrades.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/en/technology/overview/scroll-upgrades.mdx b/src/content/docs/en/technology/overview/scroll-upgrades.mdx index 50a288016..08eaec82f 100644 --- a/src/content/docs/en/technology/overview/scroll-upgrades.mdx +++ b/src/content/docs/en/technology/overview/scroll-upgrades.mdx @@ -36,7 +36,7 @@ This significant upgrade will reduce gas fees on the Scroll chain by 1.5x. Highl - Network Upgrade: June 17th, 2024 - **Scroll Mainnet** - Upgrade Initiation: June 20th, 2024 - - Timelock Completion & Upgrade: June 27th, 2024 + - Timelock Completion & Upgrade: July 3rd, 2024 ### Technical Details @@ -58,16 +58,16 @@ The main changes are as follows: #### Node Changes -The new node version is `v5.4.2`. See the [release notes](https://github.com/scroll-tech/go-ethereum/releases/tag/scroll-v5.4.2) for the list of changes. +The new node version is `v5.5.0`. See the [release notes](https://github.com/scroll-tech/go-ethereum/releases/tag/scroll-v5.5.0) for the list of changes. #### zkEVM circuit changes -The new version of zkevm circuits is `v0.11.3`. See [here](https://github.com/scroll-tech/zkevm-circuits/releases/tag/v0.11.3) for the release log. +The new version of zkevm circuits is `v0.11.4`. See [here](https://github.com/scroll-tech/zkevm-circuits/releases/tag/v0.11.4) for the release log. #### Audits - TrailofBits: coming soon! -- Zellic: coming soon! +- [Zellic](https://github.com/Zellic/publications/blob/master/Scroll%20zkEVM%20-%20Zellic%20Audit%20Report.pdf) ### Compatibility From 49a0f540232a0ccd717ef924d8aa046c28c621ca Mon Sep 17 00:00:00 2001 From: isabelle Date: Fri, 28 Jun 2024 12:22:51 -0400 Subject: [PATCH 3/5] fix typo --- .../l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/developers/l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx b/src/content/docs/en/developers/l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx index 8999637f8..8dfb5b08e 100644 --- a/src/content/docs/en/developers/l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx +++ b/src/content/docs/en/developers/l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx @@ -119,7 +119,7 @@ Sends ERC20 tokens from L1 to L2. | token | The token address on L1. | | to | The address of recipient's account on L2. | | amount | The amount of token to transfer, in wei. | -| gasLimit | Gas limit required to complete the deposit on L2. 20000 should be enough to process the transaction, depending on the Gateway, but unused funds are refunded. | +| gasLimit | Gas limit required to complete the deposit on L2. 200000 should be enough to process the transaction, depending on the Gateway, but unused funds are refunded. | ### getL2ERC20Address From 7a0cd4d504c0331159bcd9339b3f1de748c7dcd8 Mon Sep 17 00:00:00 2001 From: isabelle Date: Wed, 3 Jul 2024 22:02:26 -0400 Subject: [PATCH 4/5] oops --- .../docs/en/developers/guides/contract-deployment-tutorial.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx b/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx index 1ce438bac..7cf3d90ee 100644 --- a/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx +++ b/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx @@ -43,7 +43,7 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I 1. Clone the repo: ```shell - c + git clone https://github.com/scroll-tech/scroll-guides.git cd scroll-guides/contract-deploy-demo ``` From 75ab9cabeb081883752efd1899e62f7f1c7bad19 Mon Sep 17 00:00:00 2001 From: isabelle Date: Fri, 5 Jul 2024 15:14:48 -0400 Subject: [PATCH 5/5] Add PR descriptions --- .../docs/en/technology/overview/scroll-upgrades.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/en/technology/overview/scroll-upgrades.mdx b/src/content/docs/en/technology/overview/scroll-upgrades.mdx index 08eaec82f..306579649 100644 --- a/src/content/docs/en/technology/overview/scroll-upgrades.mdx +++ b/src/content/docs/en/technology/overview/scroll-upgrades.mdx @@ -44,10 +44,10 @@ This significant upgrade will reduce gas fees on the Scroll chain by 1.5x. Highl The code changes for this upgrade are documented in the following PRs: -- [PR 1317](https://github.com/scroll-tech/scroll/pull/1317) -- [PR 1343](https://github.com/scroll-tech/scroll/pull/1343) -- [PR 1354](https://github.com/scroll-tech/scroll/pull/1354) -- [PR 1372](https://github.com/scroll-tech/scroll/pull/1372) +- [Accept compressed batches](https://github.com/scroll-tech/scroll/pull/1317) +- [Update `L1GasPriceOracle`](https://github.com/scroll-tech/scroll/pull/1343) +- [Change `MAX_COMMIT_SCALAR` and `MAX_BLOB_SCALAR` to 1e18](https://github.com/scroll-tech/scroll/pull/1354) +- [Remove batch index check when updating a verifier](https://github.com/scroll-tech/scroll/pull/1372) The main changes are as follows: