build: refactor init.sh
(#294)
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
parent
c8ddb503c1
commit
333a76bdf8
13
init.sh
13
init.sh
@ -2,17 +2,20 @@
|
|||||||
KEY="mykey"
|
KEY="mykey"
|
||||||
CHAINID="ethermint-2"
|
CHAINID="ethermint-2"
|
||||||
MONIKER="localtestnet"
|
MONIKER="localtestnet"
|
||||||
|
KEYRING="test"
|
||||||
|
KEYALGO="eth_secp256k1"
|
||||||
|
LOGLEVEL="info"
|
||||||
|
|
||||||
# remove existing daemon and client
|
# remove existing daemon and client
|
||||||
rm -rf ~/.ethermintd*
|
rm -rf ~/.ethermintd*
|
||||||
|
|
||||||
make install
|
make install
|
||||||
|
|
||||||
ethermintd config keyring-backend test
|
ethermintd config keyring-backend $KEYRING
|
||||||
ethermintd config chain-id $CHAINID
|
ethermintd config chain-id $CHAINID
|
||||||
|
|
||||||
# if $KEY exists it should be deleted
|
# if $KEY exists it should be deleted
|
||||||
ethermintd keys add $KEY --keyring-backend test --algo "eth_secp256k1"
|
ethermintd keys add $KEY --keyring-backend $KEYRING --algo $KEYALGO
|
||||||
|
|
||||||
# Set moniker and chain-id for Ethermint (Moniker can be anything, chain-id must be an integer)
|
# Set moniker and chain-id for Ethermint (Moniker can be anything, chain-id must be an integer)
|
||||||
ethermintd init $MONIKER --chain-id $CHAINID
|
ethermintd init $MONIKER --chain-id $CHAINID
|
||||||
@ -58,10 +61,10 @@ if [[ $1 == "pending" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Allocate genesis accounts (cosmos formatted addresses)
|
# Allocate genesis accounts (cosmos formatted addresses)
|
||||||
ethermintd add-genesis-account $KEY 100000000000000000000000000aphoton --keyring-backend test
|
ethermintd add-genesis-account $KEY 100000000000000000000000000aphoton --keyring-backend $KEYRING
|
||||||
|
|
||||||
# Sign genesis transaction
|
# Sign genesis transaction
|
||||||
ethermintd gentx $KEY 1000000000000000000000aphoton --keyring-backend test --chain-id $CHAINID
|
ethermintd gentx $KEY 1000000000000000000000aphoton --keyring-backend $KEYRING --chain-id $CHAINID
|
||||||
|
|
||||||
# Collect genesis tx
|
# Collect genesis tx
|
||||||
ethermintd collect-gentxs
|
ethermintd collect-gentxs
|
||||||
@ -74,4 +77,4 @@ if [[ $1 == "pending" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Start the node (remove the --pruning=nothing flag if historical queries are not needed)
|
# Start the node (remove the --pruning=nothing flag if historical queries are not needed)
|
||||||
ethermintd start --pruning=nothing --trace --log_level info --minimum-gas-prices=0.0001aphoton
|
ethermintd start --pruning=nothing --trace --log_level $LOGLEVEL --minimum-gas-prices=0.0001aphoton
|
||||||
|
Loading…
Reference in New Issue
Block a user