Skip to content

Commit

Permalink
Make the difference between using the same password file and using di…
Browse files Browse the repository at this point in the history
…fferent password files more clear
  • Loading branch information
gnongs committed Dec 4, 2024
1 parent 805504d commit a501324
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,18 @@ To run you will use the "shares" command
yarn cli shares --keystore=./keystore.json --password=./password.txt --operator-ids=1,2,3,4 --operator-keys=LS..,LS..,LS..,LS.. --output-folder=./ --owner-address=... --owner-nonce=..

# folder with multiple keystore files
## folder structure
## folder structure for keystore files with the same password
keystore-files
├── keystore1.json
├── keystore2.json
├── keystore3.json
├── keystore4.json
└── keystore5.json
password.txt

yarn cli shares --keystore=./keystore_files --password=./password.txt --operator-ids=1,2,3,4 --operator-keys=LS..,LS..,LS..,LS.. --output-folder=./ --owner-address=... --owner-nonce=..

## folder structure for keystore files with diffent passwords
keystore_folders
├── validator1
│   ├── keystore.json
Expand All @@ -122,6 +133,7 @@ keystore_folders
└── validator5
├── keystore.json
└── password.txt

yarn cli shares --keystore=./keystore_folders --password=password.txt --operator-ids=1,2,3,4 --operator-keys=LS..,LS..,LS..,LS.. --output-folder=./ --owner-address=... --owner-nonce=..
```

Expand Down

0 comments on commit a501324

Please sign in to comment.