Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
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 @@ -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
```

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

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