forked from cerc-io/laconicd-deprecated
7b50331b98
* docs: more updates * minor changes * workflow * yarn * structure * more updates * cleanup * additional cleanup * docs * interact with node * additional guides and testnet docs * update swagger * update docs * action
2.2 KiB
2.2 KiB
Single Node
Pre-requisite Readings
- Install Binary {prereq}
- Install Starport {prereq}
Automated Localnet (script)
init.sh
Manual Localnet
This guide helps you create a single validator node that runs a network locally for testing and other development related uses.
Initialize node
$MONIKER=testing
$KEY=mykey
$CHAINID="ethermint-777"
ethermintd init $MONIKER --chain-id=$CHAINID
::: warning Monikers can contain only ASCII characters. Using Unicode characters will render your node unreachable. :::
You can edit this moniker
later, in the $(HOME)/.ethermintd/config/config.toml
file:
# A custom human readable name for this node
moniker = "<your_custom_moniker>"
You can edit the $HOME/.ethermintd/config/app.toml
file in order to enable the anti spam mechanism and reject incoming transactions with less than the minimum gas prices:
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
##### main base config options #####
# The minimum gas prices a validator is willing to accept for processing a
# transaction. A transaction's fees must meet the minimum of any denomination
# specified in this config (e.g. 10aphoton).
minimum-gas-prices = ""
Genesis Procedure
# Create a key to hold your account
ethermintd keys add $KEY
# Add that key into the genesis.app_state.accounts array in the genesis file
# NOTE: this command lets you set the number of coins. Make sure this account has some coins
# with the genesis.app_state.staking.params.bond_denom denom, the default is staking
ethermintd add-genesis-account $(ethermintd keys show validator -a) 1000000000stake,10000000000aphoton
# Generate the transaction that creates your validator
ethermintd gentx --name $KEY
# Add the generated bonding transaction to the genesis file
ethermintd collect-gentxs
# Finally, check the correctness of the genesis.json file
ethermintd validate-genesis
Run Testnet
Now its safe to start the daemon:
ethermintd start
You can then stop the node using Ctrl+C.