Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Curie update details #286

Merged
merged 5 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/en/developers/developer-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
dghelm marked this conversation as resolved.
Show resolved Hide resolved
forge create ... --rpc-url=https://sepolia-rpc.scroll.io/
```

### Remix Web IDE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ The Scroll Sepolia Testnet allows anyone to deploy a smart contract on Scroll. I
--value <lock_amount> \
--constructor-args <unlock_time> \
--private-key <your_private_key> \
--legacy \
contracts/Lock.sol:Lock
```

Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
16 changes: 8 additions & 8 deletions src/content/docs/en/technology/overview/scroll-upgrades.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ 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

#### Contract Changes

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:

Expand All @@ -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

Expand Down