Operating and Running a Node
Basic guide for operating and running the node.
Running the Node Yourself
# Rename the downloaded binary to a simpler name.
mv sedad-${ARCH} sedad
# mv sedad-amd64 sedad
# mv sedad-arm64 sedad
# Make the downloaded binary executable.
chmod +x sedad
# This documentation assumes that you have added the binary to $PATH as well.
# Reset the chain.
sedad tendermint unsafe-reset-all
rm -rf ~/.sedad || true
# Create your operator key.
sedad keys add <key-name>
# Initialize your node and join the network.
# Choose mainnet or testnet.
# Use the recover flag to use an existing key.
sedad join <moniker> --network mainnet [--recover]
# Start your node.
sedad startRunning the Node with Cosmovisor
Running the Node Yourself Dockerized
Starting
Upgrading
Stopping and Resuming
Last updated
Was this helpful?

