If you want to setup Andromeda fullnode manually follow the steps below
Update and upgrade
Copy sudo apt update && sudo apt upgrade -y
Install GO
Copy if ! [ -x "$(command -v go)" ]; then
ver="1.19.3"
cd $HOME
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
fi
Install node
Copy cd $HOME
git clone https://github.com/andromedaprotocol/andromedad.git
cd andromedad
git checkout galileo-3-v1.1.0-beta1
make install
andromedad version #galileo-3-v1.1.0-beta1
Setting up vars
You should replace values in <>
<YOUR_MONIKER> Here you should put name of your moniker (validator) that will be visible in explorer
<YOUR_WALLET> Here you shoud put the name of your wallet
Copy echo "export ANDROMEDA_WALLET="<YOUR_WALLET_NAME>"" >> $HOME/.bash_profile
echo "export ANDROMEDA_NODENAME="<YOUR_MONIKER>"" >> $HOME/.bash_profile
echo "export ANDROMEDA_CHAIN_ID="galileo-3"" >> $HOME/.bash_profile
source $HOME/.bash_profile
Configure your node
Copy andromedad config chain-id $ANDROMEDA_CHAIN_ID
Initialize your node
Copy andromedad init $ANDROMEDA_NODENAME --chain-id $ANDROMEDA_CHAIN_ID
Download genesis
Copy wget "$HOME/.andromedad/config/genesis.json" https://raw.githubusercontent.com/andromedaprotocol/testnets/galileo-3/genesis.json
(OPTIONAL) Set custom ports
If you want to use non-default ports
Copy ANDROMEDA_PORT=<SET_CUSTOM_PORT> #Example: ANDROMEDA_PORT=56 (numbers from 1 to 64)
Copy sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${ANDROMEDA_PORT}658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${ANDROMEDA_PORT}657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${ANDROMEDA_PORT}060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${ANDROMEDA_PORT}656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${ANDROMEDA_PORT}660\"%" $HOME/.andromedad/config/config.toml
sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${ANDROMEDA_PORT}317\"%; s%^address = \":8080\"%address = \":${ANDROMEDA_PORT}080\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${ANDROMEDA_PORT}090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${ANDROMEDA_PORT}091\"%; s%^address = \"0.0.0.0:8545\"%address = \"0.0.0.0:${ANDROMEDA_PORT}545\"%; s%^ws-address = \"0.0.0.0:8546\"%ws-address = \"0.0.0.0:${ANDROMEDA_PORT}546\"%" $HOME/.andromedad/config/app.toml
Set seeds and peers
Copy SEEDS=""
PEERS="77c04ed628aa56322c45b8da14b8567c1bf322e5@65.108.98.53:11056,d22bf273fc96fd6b184333271aa1e979e10876ff@188.40.140.51:21000"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.andromedad/config/config.toml
Config pruning
Copy pruning="custom"
pruning_keep_recent="100"
pruning_keep_every="0"
pruning_interval="50"
sed -i -e "s/^pruning *=.*/pruning = \"$pruning\"/" $HOME/.andromedad/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"$pruning_keep_recent\"/" $HOME/.andromedad/config/app.toml
sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"$pruning_keep_every\"/" $HOME/.andromedad/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"$pruning_interval\"/" $HOME/.andromedad/config/app.toml
Set minimum gas price and null indexer
Copy sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0uandr\"/" $HOME/.andromedad/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.andromedad/config/config.toml
Create Service
Copy sudo tee /etc/systemd/system/andromedad.service > /dev/null <<EOF
[Unit]
Description=Lava
After=network-online.target
[Service]
User=$USER
ExecStart=$(which andromedad) start
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
Reset blockchain info and restart your node
Copy sudo systemctl daemon-reload
sudo systemctl enable andromedad
andromedad tendermint unsafe-reset-all --home $HOME/.andromedad --keep-addr-book
sudo systemctl restart andromedad && sudo journalctl -u andromedad -f -o cat
(OPTIONAL) Use State Sync
Starting a validator
1. Add a new key
Copy andromedad keys add $ANDROMEDA_WALLET
(OR)
1. Recover your key
Copy andromedad keys add $ANDROMEDA_WALLET --recover
3. Create validator
Wait until the node is synchronized.
Copy andromedad tx staking create-validator \
--amount 1000000uandr \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.20" \
--commission-rate "0.1" \
--min-self-delegation "1" \
--details "" \
--pubkey=$(andromedad tendermint show-validator) \
--moniker $ANDROMEDA_NODENAME \
--chain-id $ANDROMEDA_CHAIN_ID \
--from $ANDROMEDA_WALLET \
--gas-prices 0.1uandr \
--gas-adjustment 1.5 \
--gas auto \
--yes