mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
c2d4f5b2b8
* Create scripts for k8s and standard runs * Add comment * Create scripts to deploy contract, start beacon chain and validators * Add placeholders * Add more docs and remove uneeded tag
18 lines
720 B
Markdown
18 lines
720 B
Markdown
# Bash Scripts
|
|
|
|
This subproject contains useful bash scripts for working with our repository. We have a simple tool that outputs coverage, a simple tool to check for gazelle requirements, and visibility rules tools for Bazel packages.
|
|
|
|
### Instructions to run a single beacon chain node and 8 validators locally using the scripts.
|
|
|
|
1. Ensure your private key path is correct in all the files below.
|
|
|
|
2. Run `./deploy-deposit-contract.sh`
|
|
|
|
3. Put the resulting contract address in `start-beacon-chain.sh` and `setup-8-validators.sh`.
|
|
|
|
4. Run `./start-beacon-chain.sh`
|
|
|
|
5. Run `./setup-8-validators.sh`
|
|
|
|
6. You can use `tail -f /tmp/data/validator#.log` with # as a number from 1 - 8 to view the output of the validators.
|