Skip to content

Commit b6257b0

Browse files
update changes
1 parent 4dbeda9 commit b6257b0

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

docs/cdk/get-started/deploy-validium/contracts/deploy-contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
2. Run the following `jq` script to streamline the process of replacing these fields:
1111

1212
```bash
13-
source /var/tmp/cdk/.env
13+
source /tmp/cdk/.env
1414
jq --arg TEST_ADDRESS "$TEST_ADDRESS" '.trustedSequencerURL = "http://127.0.0.1:8123" | .trustedSequencer = $TEST_ADDRESS | .trustedAggregator = $TEST_ADDRESS | .admin = $TEST_ADDRESS | .cdkValidiumOwner = $TEST_ADDRESS | .initialCDKValidiumDeployerOwner = $TEST_ADDRESS | .timelockAddress = $TEST_ADDRESS | .forkID = 6' ./deploy_parameters.json.example > ./deploy_parameters.json
1515
```
1616

docs/cdk/get-started/deploy-validium/contracts/prerequisites.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,16 @@ Use a public faucet to get Sepolia test ETH.
3535
Create a folder in `/var/tmp/cdk/` to store configuration files.
3636

3737
```bash
38-
mkdir /var/tmp/cdk/
38+
mkdir /tmp/cdk/
3939
```
4040

4141
## Environment variables
4242

4343
Create a `.env` file to store environment variables we will use later on.
4444

4545
```bash
46-
nano /var/tmp/cdk.env
47-
```
46+
nano /tmp/cdk/.env
47+
```
48+
49+
!!! danger
50+
The system removes this file on shutdown.

docs/cdk/get-started/deploy-validium/contracts/set-up.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ npm install
7575
5. Add the following variables to `/var/tmp/cdk/.env`.
7676

7777
```bash
78-
nano /var/tmp/cdk/.env
78+
nano /tmp/cdk/.env
7979
TEST_ADDRESS="<the address generated by cast>"
8080
TEST_PRIVATE_KEY="<the private key generated by cast>"
8181
L1_URL="https://sepolia.infura.io/v3/<YOUR INFURA PROJECT ID>"

docs/cdk/get-started/deploy-validium/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The process requires two separate flows with different software requirements. Fo
1111

1212
## Git repos
1313

14-
These are code bases for setting everything up in this order.
14+
These are code bases we use to set everything up, and in this order.
1515

1616
| Repo | Version |
1717
| --- | --- |

docs/cdk/get-started/deploy-validium/node/prerequisites.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## Software requirements
66

7+
!!! important
8+
These are the minimum versions.
9+
710
| Software | Version | Installation link |
811
| --- | --- | --- |
912
| `git` | 2.18.0 | https://git-scm.com/book/en/v2/Getting-Started-Installing-Git |

0 commit comments

Comments
 (0)