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..7cf3d90ee 100644 --- a/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx +++ b/src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx @@ -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 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 diff --git a/src/content/docs/en/technology/overview/scroll-upgrades.mdx b/src/content/docs/en/technology/overview/scroll-upgrades.mdx index 50a288016..306579649 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 @@ -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: @@ -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