# 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 (optionally with an existing key using the recover flag).
sedad join <moniker> --network testnet [--recover]
# Start your node.
sedad start
Running the Node with Cosmovisor
Run the node as a subprocess of Cosmovisor if you want automatic upgrading, which only requires you to place a new binary in the right location before an upgrade height.
Install Cosmovisor.
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
Then, add these lines to your profile (maybe .profile, .zprofile, or something else) to set up environment variables:
Docker support is currently limited for the SEDA testnet since it has undergone an upgrade. The SEDA team is planning to add state sync support for the Docker environment soon.