posthuman - nodes
Stargaze
Stargaze websiteStargaze github

Stargaze

type:
mainnet
chain id:
stargaze-1
rpc:
https://rpc.stargaze.posthuman.digital:443
rest:
https://rest.stargaze.posthuman.digital:443
grpc:
https://grpc.stargaze.posthuman.digital:443
seed-node:
e87e6dc4a941f35b2ad39a75a18fefbccf5d9072@46.39.246.50:10656
  • installation guide
  • state sync
  • peers

Update system and install build tools

Ensure your system is up to date and has all the necessary tools for the installation:

sudo apt update && sudo apt upgrade -y sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

Install Go

Replace VERSION with the desired Go version

VERSION="1.22.3" cd $HOME wget "https://golang.org/dl/go$VERSION.linux-amd64.tar.gz" sudo rm -rf /usr/local/go sudo tar -C /usr/local -xzf "go$VERSION.linux-amd64.tar.gz" rm "go$VERSION.linux-amd64.tar.gz" # Set Go environment variables echo "export PATH=\$PATH:/usr/local/go/bin:\$HOME/go/bin" >> ~/.bash_profile source ~/.bash_profile

Install node

cd $HOME mkdir src cd src git clone https://github.com/public-awesome/stargaze cd stargaze git checkout v14.0.0 make install starsd version

Initialize Node

Replace <node_name>

~/go/bin/.starsd init <node_name> --chain-id="stargaze-1"

Download genesis.json

curl -Ls https://raw.githubusercontent.com/public-awesome/mainnet/main/stargaze-1/genesis.tar.gz > $HOME/.starsd/config/genesis.json

Download addrbook.json

curl -Ls <addrbookUrl> > $HOME/.starsd/config/addrbook.json

Create Service

Cosmovisor:

If you haven't cosmovisor, you should install it

go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest

You can find cosmovisor biniry in ~/go/bin/ folder. After that you should create

mkdir -p ~/.stargaze/cosmovisor/genesis/bin && mkdir -p ~/.stargaze/cosmovisor/upgrades

Set up service:

sudo nano /etc/systemd/system/starsd.service

Replace <your_user>

[Unit] Description=starsd Daemon cosmovisor After=network-online.target [Service] User=<your_user> ExecStart=/home/<your_user>/go/bin/cosmovisor run start Restart=always RestartSec=3 LimitNOFILE=4096 Environment="DAEMON_NAME=starsd" Environment="DAEMON_HOME=/home/<your_user>/.starsd" Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false" Environment="DAEMON_RESTART_AFTER_UPGRADE=true" Environment="DAEMON_LOG_BUFFER_SIZE=512" [Install] WantedBy=multi-user.target

Simple service file:

Set up service:

sudo nano /etc/systemd/system/starsd.service

Replace <your_user>

[Unit] Description=starsd Daemon After=network-online.target [Service] User=<your_user> ExecStart=/home/<your_user>/go/bin/starsd start Restart=always RestartSec=3 LimitNOFILE=65535 [Install] WantedBy=multi-user.target

Sync node:

After that you sould sync node. You have 2 ways. State-sync or download snapsot. See this guides in next tabs.

Start service

sudo systemctl enable starsd.service && sudo systemctl start starsd.service && journalctl -u starsd.service -f
POSTHUMAN © Copyright 2024. All Rights Reserved.