Skip to content

Commit

Permalink
Merge pull request #266 from lightclient/patch-1
Browse files Browse the repository at this point in the history
Replace backslashes with forwardslashes
  • Loading branch information
djrtwo authored Jul 18, 2022
2 parents 70cadd6 + cad017c commit 371f660
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ For the [virtualenv](https://virtualenv.pypa.io/en/latest/) users, you can creat
```cmd
pip3 install virtualenv
virtualenv venv
.\venv\Scripts\activate
./venv/Scripts/activate
```

and install the dependencies:
Expand All @@ -471,23 +471,23 @@ pip3 install -r requirements.txt
Run one of the following command to enter the interactive CLI:

```cmd
python .\staking_deposit\deposit.py new-mnemonic
python ./staking_deposit/deposit.py new-mnemonic
```

or

```cmd
python .\staking_deposit\deposit.py existing-mnemonic
python ./staking_deposit/deposit.py existing-mnemonic
```

You can also run the tool with optional arguments:

```cmd
python .\staking_deposit\deposit.py new-mnemonic --num_validators=<NUM_VALIDATORS> --mnemonic_language=english --chain=<CHAIN_NAME> --folder=<YOUR_FOLDER_PATH>
python ./staking_deposit/deposit.py new-mnemonic --num_validators=<NUM_VALIDATORS> --mnemonic_language=english --chain=<CHAIN_NAME> --folder=<YOUR_FOLDER_PATH>
```

```cmd
python .\staking_deposit\deposit.pyexisting-mnemonic --num_validators=<NUM_VALIDATORS> --validator_start_index=<START_INDEX> --chain=<CHAIN_NAME> --folder=<YOUR_FOLDER_PATH>
python ./staking_deposit/deposit.pyexisting-mnemonic --num_validators=<NUM_VALIDATORS> --validator_start_index=<START_INDEX> --chain=<CHAIN_NAME> --folder=<YOUR_FOLDER_PATH>
```

###### Language Argument
Expand Down

0 comments on commit 371f660

Please sign in to comment.