Skip to content

Commit

Permalink
remove legacy flag for foundry
Browse files Browse the repository at this point in the history
  • Loading branch information
isabellewei committed Jun 27, 2024
1 parent 8e81ea8 commit deccbd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
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

0 comments on commit deccbd6

Please sign in to comment.