2021-05-26 10:58:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "prepare genesis: Run validate-genesis to ensure everything worked and that the genesis file is setup correctly"
|
2021-08-04 09:30:13 +00:00
|
|
|
./ethermintd validate-genesis --home /ethermint
|
2021-05-26 10:58:04 +00:00
|
|
|
|
2021-08-04 09:30:13 +00:00
|
|
|
echo "starting ethermint node $ID in background ..."
|
|
|
|
./ethermintd start \
|
|
|
|
--home /ethermint \
|
|
|
|
--keyring-backend test
|
2021-05-26 10:58:04 +00:00
|
|
|
|
|
|
|
echo "started ethermint node"
|
|
|
|
tail -f /dev/null
|