Prathamesh Musale
8c672c0966
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Requires cerc-io/fixturenet-laconicd-stack#14 Reviewed-on: #25 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
46 lines
1.3 KiB
Markdown
46 lines
1.3 KiB
Markdown
# scripts
|
|
|
|
## Prerequisites
|
|
|
|
- NodeJS >= `v18.17.x`
|
|
|
|
## Instructions
|
|
|
|
- Change to scripts dir:
|
|
|
|
```bash
|
|
cd scripts
|
|
```
|
|
|
|
- Install dependencies and build:
|
|
|
|
```bash
|
|
yarn && yarn build
|
|
```
|
|
|
|
- Create required env configuration:
|
|
|
|
```bash
|
|
# Update the values as required
|
|
# By default, live laconicd testnet (laconicd.laconic.com) endpoint is configured
|
|
cp .env.example .env
|
|
```
|
|
|
|
- Generate a list of onboarded participants and allocations with given list of validators:
|
|
|
|
```bash
|
|
yarn participants-with-filtered-validators --validators-csv <validators-csv-file> --participant-alloc <participant-alloc-amount> --validator-alloc <validator-alloc-amount> --output <output-json-file> --output-allocs <output-allocs-json-file>
|
|
|
|
# Example:
|
|
# yarn participants-with-filtered-validators --validators-csv ./validators.csv --participant-alloc 200000000000 --validator-alloc 1000200000000000 --output stage1-participants-$(date +"%Y-%m-%dT%H%M%S").json --output-allocs stage1-allocs-$(date +"%Y-%m-%dT%H%M%S").json
|
|
```
|
|
|
|
- Map subscribers to onboarded participants:
|
|
|
|
```bash
|
|
yarn map-subscribers-to-participants --subscribers-csv <subscribers-csv-file> --output <output-csv-file>
|
|
|
|
# Example:
|
|
# yarn map-subscribers-to-participants --subscribers-csv subscribers.csv --output result-$(date +"%Y-%m-%dT%H%M%S").csv
|
|
```
|