Skip to content

Commit b1afbc9

Browse files
committed
chain-operators: wrong Deploy.s.sol file path
Signed-off-by: jsvisa <[email protected]>
1 parent 75cef24 commit b1afbc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/builders/chain-operators/deploy/smart-contracts.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ the outputs inside [`snapshots/state-diff/`](https://github.com/ethereum-optimis
4444
Run the deployment with state diffs by executing:
4545

4646
```bash
47-
forge script -vvv scripts/Deploy.s.sol:Deploy --sig 'runWithStateDiff()' --rpc-url $ETH_RPC_URL --broadcast --private-key $PRIVATE_KEY
47+
forge script -vvv scripts/deploy/Deploy.s.sol:Deploy --sig 'runWithStateDiff()' --rpc-url $ETH_RPC_URL --broadcast --private-key $PRIVATE_KEY
4848
```
4949

5050
### Execution
@@ -71,7 +71,7 @@ shared SuperchainConfig contract.
7171
```
7272
DEPLOYMENT_OUTFILE=deployments/artifact.json \
7373
DEPLOY_CONFIG_PATH=<PATH_TO_MY_DEPLOY_CONFIG> \
74-
forge script scripts/Deploy.s.sol:Deploy \
74+
forge script scripts/deploy/Deploy.s.sol:Deploy \
7575
--broadcast --private-key $PRIVATE_KEY \
7676
--rpc-url $ETH_RPC_URL
7777
```

pages/builders/chain-operators/tutorials/create-l2-rollup.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ Once you've configured your network, it's time to deploy the L1 contracts necess
418418
{<h3>Deploy the L1 contracts</h3>}
419419

420420
```bash
421-
forge script scripts/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --broadcast --rpc-url $L1_RPC_URL --slow
421+
forge script scripts/deploy/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --broadcast --rpc-url $L1_RPC_URL --slow
422422
```
423423

424424
<Callout>

0 commit comments

Comments
 (0)