mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +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
12 lines
275 B
Bash
Executable File
12 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DEPOSIT_CONTRACT=DEPOSITCONTRACTHERE
|
|
|
|
DATA_DIR=/tmp/beacon
|
|
rm -rf $DATA_DIR
|
|
mkdir -p $DATA_DIR
|
|
|
|
CMD="bazel run //beacon-chain -- --web3provider wss://goerli.prylabs.net/websocket"
|
|
CMD+=" --datadir $DATA_DIR --deposit-contract $DEPOSIT_CONTRACT --demo-config"
|
|
|
|
$CMD |