Skip to content

Commit 7a55317

Browse files
authored
Merge pull request #1019 from jsvisa/fix-custom-gas-token
fix: wrong Deploy.s.sol file path
2 parents 9392a92 + b1afbc9 commit 7a55317

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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/features/custom-gas-token.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ section of the docs.
5656
```bash
5757
DEPLOYMENT_OUTFILE=deployments/artifact.json \
5858
DEPLOY_CONFIG_PATH=<PATH_TO_MY_DEPLOY_CONFIG> \
59-
forge script scripts/Deploy.s.sol:Deploy \
59+
forge script scripts/deploy/Deploy.s.sol:Deploy \
6060
--broadcast --private-key $PRIVATE_KEY \
6161
--rpc-url $ETH_RPC_URL
6262
```

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)