a924b20091
* chain_id.go * rpc changes * update scripts * additional test * changelog * fix tests * update script * rpc updates * validate testnet command chain-id * validate rest server chain-id * fix lint * rpc updates * changelog * comment simulations
58 lines
2.8 KiB
Bash
Executable File
58 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
KEY="mykey"
|
|
CHAINID="ethermint-1"
|
|
MONIKER="localtestnet"
|
|
|
|
# remove existing daemon and client
|
|
rm -rf ~/.ethermint*
|
|
|
|
make install
|
|
|
|
ethermintcli config keyring-backend test
|
|
|
|
# Set up config for CLI
|
|
ethermintcli config chain-id $CHAINID
|
|
ethermintcli config output json
|
|
ethermintcli config indent true
|
|
ethermintcli config trust-node true
|
|
|
|
# if $KEY exists it should be deleted
|
|
ethermintcli keys add $KEY
|
|
|
|
# Set moniker and chain-id for Ethermint (Moniker can be anything, chain-id must be an integer)
|
|
ethermintd init $MONIKER --chain-id $CHAINID
|
|
|
|
# Change parameter token denominations to aphoton
|
|
cat $HOME/.ethermintd/config/genesis.json | jq '.app_state["staking"]["params"]["bond_denom"]="aphoton"' > $HOME/.ethermintd/config/tmp_genesis.json && mv $HOME/.ethermintd/config/tmp_genesis.json $HOME/.ethermintd/config/genesis.json
|
|
cat $HOME/.ethermintd/config/genesis.json | jq '.app_state["crisis"]["constant_fee"]["denom"]="aphoton"' > $HOME/.ethermintd/config/tmp_genesis.json && mv $HOME/.ethermintd/config/tmp_genesis.json $HOME/.ethermintd/config/genesis.json
|
|
cat $HOME/.ethermintd/config/genesis.json | jq '.app_state["gov"]["deposit_params"]["min_deposit"][0]["denom"]="aphoton"' > $HOME/.ethermintd/config/tmp_genesis.json && mv $HOME/.ethermintd/config/tmp_genesis.json $HOME/.ethermintd/config/genesis.json
|
|
cat $HOME/.ethermintd/config/genesis.json | jq '.app_state["mint"]["params"]["mint_denom"]="aphoton"' > $HOME/.ethermintd/config/tmp_genesis.json && mv $HOME/.ethermintd/config/tmp_genesis.json $HOME/.ethermintd/config/genesis.json
|
|
|
|
# Enable faucet
|
|
cat $HOME/.ethermintd/config/genesis.json | jq '.app_state["faucet"]["enable_faucet"]=true' > $HOME/.ethermintd/config/tmp_genesis.json && mv $HOME/.ethermintd/config/tmp_genesis.json $HOME/.ethermintd/config/genesis.json
|
|
|
|
# Allocate genesis accounts (cosmos formatted addresses)
|
|
ethermintd add-genesis-account $(ethermintcli keys show $KEY -a) 100000000000000000000aphoton
|
|
|
|
# Sign genesis transaction
|
|
ethermintd gentx --name $KEY --amount=1000000000000000000aphoton --keyring-backend test
|
|
|
|
# Collect genesis tx
|
|
ethermintd collect-gentxs
|
|
|
|
echo -e '\n\ntestnet faucet enabled'
|
|
echo -e 'to transfer tokens to your account address use:'
|
|
echo -e "ethermintcli tx faucet request 100aphoton --from $KEY\n"
|
|
|
|
|
|
# Run this to ensure everything worked and that the genesis file is setup correctly
|
|
ethermintd validate-genesis
|
|
|
|
# Command to run the rest server in a different terminal/window
|
|
echo -e '\nrun the following command in a different terminal/window to run the REST server and JSON-RPC:'
|
|
echo -e "ethermintcli rest-server --laddr \"tcp://localhost:8545\" --unlock-key $KEY --chain-id $CHAINID --trace\n"
|
|
|
|
# Start the node (remove the --pruning=nothing flag if historical queries are not needed)
|
|
ethermintd start --pruning=nothing --rpc.unsafe --log_level "main:info,state:info,mempool:info" --trace
|