Skip to content

Commit 25a4e04

Browse files
authored
Curie update details (#286)
* remove legacy flag for foundry * update Curie details * fix typo * oops * Add PR descriptions
1 parent 94cfcdd commit 25a4e04

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

src/content/docs/en/developers/developer-quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const config: HardhatUserConfig = {
113113
To deploy using the Scroll Sepolia Testnet Public RPC, run:
114114

115115
```bash
116-
forge create ... --rpc-url=https://sepolia-rpc.scroll.io/ --legacy
116+
forge create ... --rpc-url=https://sepolia-rpc.scroll.io/
117117
```
118118

119119
### Remix Web IDE

src/content/docs/en/developers/guides/contract-deployment-tutorial.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I
6363
--value <lock_amount> \
6464
--constructor-args <unlock_time> \
6565
--private-key <your_private_key> \
66-
--legacy \
6766
contracts/Lock.sol:Lock
6867
```
6968

@@ -77,7 +76,7 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I
7776
--value 0.00000000002ether \
7877
--constructor-args 1696118400 \
7978
--private-key 0xabc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc1 \
80-
--legacy contracts/Lock.sol:Lock
79+
contracts/Lock.sol:Lock
8180
```
8281

8382
## Questions and Feedback

src/content/docs/en/developers/l1-and-l2-bridging/eth-and-erc20-token-bridge.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Sends ERC20 tokens from L1 to L2.
119119
| token | The token address on L1. |
120120
| to | The address of recipient's account on L2. |
121121
| amount | The amount of token to transfer, in wei. |
122-
| 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. |
122+
| 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. |
123123

124124
### getL2ERC20Address
125125

src/content/docs/en/technology/overview/scroll-upgrades.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ This significant upgrade will reduce gas fees on the Scroll chain by 1.5x. Highl
3636
- Network Upgrade: June 17th, 2024
3737
- **Scroll Mainnet**
3838
- Upgrade Initiation: June 20th, 2024
39-
- Timelock Completion & Upgrade: June 27th, 2024
39+
- Timelock Completion & Upgrade: July 3rd, 2024
4040

4141
### Technical Details
4242

4343
#### Contract Changes
4444

4545
The code changes for this upgrade are documented in the following PRs:
4646

47-
- [PR 1317](https://github.com/scroll-tech/scroll/pull/1317)
48-
- [PR 1343](https://github.com/scroll-tech/scroll/pull/1343)
49-
- [PR 1354](https://github.com/scroll-tech/scroll/pull/1354)
50-
- [PR 1372](https://github.com/scroll-tech/scroll/pull/1372)
47+
- [Accept compressed batches](https://github.com/scroll-tech/scroll/pull/1317)
48+
- [Update `L1GasPriceOracle`](https://github.com/scroll-tech/scroll/pull/1343)
49+
- [Change `MAX_COMMIT_SCALAR` and `MAX_BLOB_SCALAR` to 1e18](https://github.com/scroll-tech/scroll/pull/1354)
50+
- [Remove batch index check when updating a verifier](https://github.com/scroll-tech/scroll/pull/1372)
5151

5252
The main changes are as follows:
5353

@@ -58,16 +58,16 @@ The main changes are as follows:
5858

5959
#### Node Changes
6060

61-
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.
61+
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.
6262

6363
#### zkEVM circuit changes
6464

65-
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.
65+
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.
6666

6767
#### Audits
6868

6969
- TrailofBits: coming soon!
70-
- Zellic: coming soon!
70+
- [Zellic](https://github.com/Zellic/publications/blob/master/Scroll%20zkEVM%20-%20Zellic%20Audit%20Report.pdf)
7171

7272
### Compatibility
7373

0 commit comments

Comments
 (0)