Install
Website
Discord
GitHub
Explorer
Endpoints | Genesis | Addrbook
curl -Ls https://snapshots.moonbridge.org/testnet/galactica/genesis.json > $HOME/.galactica/config/genesis.json
curl -Ls https://snapshots.moonbridge.org/testnet/galactica/addrbook.json > $HOME/.galactica/config/addrbook.json
Chain ID: galactica_9302-1 Latest Version: v0.2.7 Custom Port: 134
Specify the name of your “MONIKER” (validator) which will be visible in the explorer
MONIKER="YOUR_MONIKER_NAME"
Update system and install tools
sudo apt update && sudo apt upgrade -ysudo apt install curl build-essential git jq lz4 ncdu btop -y
Install GO
cd $HOMEversion="1.23.3"wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"sudo rm -rf /usr/local/gosudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"rm "go$version.linux-amd64.tar.gz"echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profilesource $HOME/.bash_profile
Install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
Download and install
cd $HOMEgit clone https://github.com/Galactica-corp/galacticacd galacticagit checkout v0.2.7make buildsudo mv $HOME/galactica/build/galacticad $HOME/go/bingalacticad version --long | grep -e commit -e version
Config and Init node
# Set node configurationgalacticad config set client chain-id galactica_9302-1galacticad config set client keyring-backend testgalacticad config set client node tcp://localhost:13457
# Initialize nodegalacticad init $MONIKER --chain-id galactica_9302-1
# Download genesis and addrbookcurl -Ls https://snapshots.moonbridge.org/testnet/galactica/genesis.json > $HOME/.galactica/config/genesis.jsoncurl -Ls https://snapshots.moonbridge.org/testnet/galactica/addrbook.json > $HOME/.galactica/config/addrbook.json
# Set seeds and peersSEEDS=""PEERS=""sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.galactica/config/config.toml
# Setting minimum gas pricesed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"10agnet\"|" $HOME/.galactica/config/app.toml
# Setting pruningsed -i -e 's|^pruning *=.*|pruning = "custom"|' $HOME/.galactica/config/app.tomlsed -i -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' $HOME/.galactica/config/app.tomlsed -i -e 's|^pruning-interval *=.*|pruning-interval = "19"|' $HOME/.galactica/config/app.toml
# Disable indexersed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.galactica/config/config.toml
# Enable Prometheussed -i -e "s/prometheus = false/prometheus = true/" $HOME/.galactica/config/config.toml
# Setting custom portssed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:13458\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://0.0.0.0:13457\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:13460\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:13456\"%; s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):13456\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":13466\"%" $HOME/.galactica/config/config.tomlsed -i -e "s%:1317%:13417%g; s%:8080%:13480%g; s%:9090%:13490%g; s%:9091%:13491%g; s%:8545%:13445%g; s%:8546%:13446%g; s%:6065%:13465%g" $HOME/.galactica/config/app.toml
Configure Cosmovisor
mkdir -p $HOME/.galactica/cosmovisor/genesis/binmkdir -p $HOME/.galactica/cosmovisor/upgradescp $HOME/go/bin/galacticad $HOME/.galactica/cosmovisor/genesis/bin/
Create service
sudo tee /etc/systemd/system/galacticad.service > /dev/null << EOF[Unit]Description=Galactica NodeAfter=network-online.target
[Service]User=$USERExecStart=$(which cosmovisor) run start --chain-id galactica_9302-1Restart=alwaysRestartSec=5LimitNOFILE=65535Environment="DAEMON_NAME=galacticad"Environment="DAEMON_HOME=$HOME/.galactica"Environment="UNSAFE_SKIP_BACKUP=true"Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
[Install]WantedBy=multi-user.targetEOFsudo systemctl daemon-reloadsudo systemctl enable galacticad
Download latest snapshot
curl -o - -L https://snapshots.moonbridge.org/testnet/galactica/snapshot_latest.tar.lz4 | lz4 -dc - | tar -x -C $HOME/.galactica[[ -f $HOME/.galactica/data/upgrade-info.json ]] && cp $HOME/.galactica/data/upgrade-info.json $HOME/.galactica/cosmovisor/genesis/upgrade-info.json
Start service and check the logs
sudo systemctl start galacticad && sudo journalctl -u galacticad -f --no-hostname -o cat
Create wallet
galacticad keys add wallet
Check wallet balance
galacticad q bank balances $(galacticad keys show wallet -a)
Create validator
galacticad tx staking create-validator \ --amount 1000000000000000000agnet \ --pubkey $(galacticad tendermint show-validator) \ --moniker "YOUR_MONIKER_NAME" \ --identity "YOUR_KEYBASE_ID" \ --details "YOUR_DETAILS" \ --website "YOUR_WEBSITE_URL" \ --security-contact "YOUR_EMAIL_ADDRESS" \ --chain-id galactica_9302-1 \ --commission-rate 0.10 \ --commission-max-rate 0.20 \ --commission-max-change-rate 0.01 \ --min-self-delegation 1 \ --from wallet \ --gas-adjustment 1.4 \ --gas 200000 \ --gas-prices 10agnet \ -y
Delete node
sudo systemctl stop galacticadsudo systemctl disable galacticadsudo rm -rf /etc/systemd/system/galacticad.servicesudo systemctl daemon-reloadsudo rm -f $(which galacticad)sudo rm -rf $HOME/.galacticasudo rm -rf $HOME/galactica