Auto Install
Cosmos SDK multi-network automation script for node setup.
Features:
- Node installer
- Cosmovisor installer
- Snapshots
- State-sync
- No need to edit config
1. Install GOLANG:
Install custom version of Golang #GO.
Or you can install GO from official website.
Specify version and GO path in this line ./go.sh -v GO_VERSION -p GO_PATH
Example ./go.sh -v 1.20.2 -p /root/go
You can use all the variables or not use them at all and then the GO_VERSION and GO_PATH will be used by default as (-v 1.20.2 -p /usr/local/go)
wget https://raw.githubusercontent.com/Staketab/node-tools/main/components/golang/go.sh
chmod +x go.sh && ./go.sh -v 1.23.1
rm -rf go.sh
Now apply the changes with the command below or reboot your terminal.
. /etc/profile && . $HOME/.bashrc
2. Run Node setup:
The run command should look like this:
wget https://raw.githubusercontent.com/Staketab/cosmos-tools/main/node-installer/install.sh
chmod +x install.sh
./install.sh -g desmos-labs -f desmos -b desmos -c .desmos -v v6.2.1
rm -rf install.sh && . $HOME/.profile
3. Data for start the chain.
Binary link:
None
Chain-id:
desmos-mainnet
Genesis file:
https://services.staketab.org/desmos/genesis.json
Peers:
311cfd5691f11ec0cb0f0b8e5303016d86fb4789@148.251.19.41:26656,6af346f98a371c327afc078f45f401c7594bf4c7@95.216.42.177:26656,e67732a4a2a27b81c71fad4f8d3f018ee4c7176d@144.76.94.124:36656,96a7b9cca3fde0f22e1d9feafeed52d5f4da586d@167.235.237.172:26656,12ae8ddade3f602cbb747625ce3056b0cd0344e8@195.201.238.30:26656,ab1bc3840e4c29e4f1a1c6d51fa167a49f642377@78.47.98.236:26656,45105c7241068904bdf5a32c86ee45979794637f@212.71.238.55:26656,e507fb82435b5d7fab42967f3914501d4a8a6240@159.65.4.71:26656,5c86915026093f9a2f81e5910107cf14676b48fc@96.126.124.61:26656,a5a82439c9505c18716bb17582897baa94d3e510@103.180.28.211:26656,a69b71dea385113cbe3ff12ed704b78ad06db3f3@172.105.7.249:26656,3ca2aa0ec1f0ee243cb9c52dedc7653b02ffb94a@45.33.14.172:26656,2b25b8e7870263cfaeb1fdb08cca0e23e107a039@93.159.134.157:36656,77ca259c8738cfd3e2115de36ee7a99324800025@23.88.72.34:14041,c6fef6056c3ee978aeda51725f3eaaef8a3e8d17@80.90.238.121:26675,3765ca9e8f53fa7b5390558e09dd15839d6e9122@65.108.136.225:28656,05df847822a3aecf58bed8f47037ff4ba8f68f79@135.181.221.25:26696,86ef1ae4ce877b3021f1a384b0afc043e4c79ac4@121.78.247.251:31656,471831521a2d94269113c3c5f7cb209fb09c5f50@135.181.60.233:26656,9755cab2585a2794453a5b396ef13b893393366f@65.108.212.224:46666
Seed:
9bde6ab4e0e00f721cc3f5b4b35f3a0e8979fab5@seed-1.mainnet.desmos.network:26656,5c86915026093f9a2f81e5910107cf14676b48fc@seed-2.mainnet.desmos.network:26656,45105c7241068904bdf5a32c86ee45979794637f@seed-3.mainnet.desmos.network:26656
minimum-gas-prices:
0udsm
4. Service commands.
Restart service
sudo systemctl restart desmos.service
Service logs
sudo journalctl -u desmos.service -f
Stop service
sudo systemctl stop desmos.service
Reload configuration change
systemctl daemon-reload
Done