https://github.com/multiversx/mx-sdk-js-pem-generator
https://github.com/multiversx/mx-sdk-js-pem-generator
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/multiversx/mx-sdk-js-pem-generator
- Owner: multiversx
- Created: 2021-03-25T11:46:04.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-09-01T12:32:20.000Z (11 months ago)
- Last Synced: 2025-10-25T10:39:43.008Z (10 months ago)
- Language: JavaScript
- Size: 52.7 KB
- Stars: 2
- Watchers: 20
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elrond Pem Generator
This is a small tool we wrote to assist validators in generating a bunch of pem files given a mnemonic.
## How to use
### First option:
```
$ npm install -g @elrondnetwork/elrond-pem
$ elrond-pem generate-mnemonic ./path-to-file/mnemonic.txt
$ elrond-pem generate-pems 10 0 0 # The parameters used are: numberOfPems, accountIndex, addressIndex
$ # You will be prompted to enter a path to a file containing your mnemonic, then a path to the output folder.
```
### Second option - if you don't want it installed globally
```
$ git clone git@github.com:ElrondNetwork/elrond-pem-js.git && cd elrond-pem-js
$ node ./index.js generate-mnemonic
$ node ./index.js 10 0 0
```