mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-05-02 03:01:08 -04:00
18 lines
336 B
Bash
Executable File
18 lines
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GENESIS_TIME=$(date +%s)
|
|
|
|
./lodestar dev \
|
|
--genesisValidators 8 \
|
|
--startValidators 0..7 \
|
|
--genesisTime $GENESIS_TIME \
|
|
--enr.ip 127.0.0.1 \
|
|
--dataDir .lodestar/node1 \
|
|
--reset \
|
|
--rest \
|
|
--rest.namespace '*' \
|
|
--metrics \
|
|
--logLevel debug \
|
|
--eth1 false \
|
|
--network.rateLimitMultiplier 0
|