This repository contains all the data related to the different chains that a Commercio.network validator can connect to.
First off, you’ll need to setup a server. This guide is written for Digital Ocean, but it is applicable to any other cloud provider like Amazon AWS, Google Cloud, Microsoft Azure, Alibaba Cloud or Scaleway.
Here's a friendly Digital Ocean $50 credit Coupon link: https://m.do.co/c/132ef6958ef7.
For the sake of simplicity, we will assume you have selected the following DigitalOcean configuration.
Please not that this is just an example, but any configuration similar to this one will work perfectly fine.
| Characteristic | Specification |
|---|---|
| Operative System | Ubuntu 18.04 |
| Number of CPUs | 2 |
| RAM | 4GB |
| SSD | 80GB |
Also, we need to make sure the following requirements are met:
- Allow incoming connections on port
26656 - Have a static IP address
- Have access to the root user
In order to update the OS so that you can work properly, execute the following commands:
apt update && sudo apt upgrade -y
apt install unzip
apt install -y git gcc make
snap install --classic go
GOPATH=$HOME/go
PATH=$GOPATH/bin:$PATHBefore installing the node, please select which chain you would like to connect to
mkdir commercio-chains && cd commercio-chains
git clone https://github.com/commercionetwork/chains.git .
cd commercio-<chain-version> # eg. cd commercio-testnet1001 Download binaries
git init .
git remote add origin https://github.com/commercionetwork/commercionetwork.git
git pull
git checkout tags/$(cat .data | grep -oP 'Release\s+\K\S+')
make installTest if you have the correct binaries version:
cnd version
# Should output the same version written inside the .data fileSetup the validator node name. We will use the same name for node as well as the wallet key:
export NODENAME="<your-moniker>"
export CHAINID=commercio-$(cat .data | grep -oP 'Name\s+\K\S+')
cat <<EOF >> ~/.profile
export NODENAME="$NODENAME"
export CHAINID="$CHAINID"
EOFInit the .cnd folder with the basic configuration
pkill cnd
cnd unsafe-reset-all
# If you get a error because .cnd folder is not present don't worry
cnd init $NODENAMEInstall genesis.json file
pkill cnd
rm -rf ~/.cnd/config/genesis.json
cp genesis.json ~/.cnd/configChange the persistent peers inside config.toml file
sed -e "s|persistent_peers = \".*\"|persistent_peers = \"$(cat .data | grep -oP 'Persistent peers\s+\K\S+')\"|g" ~/.cnd/config/config.toml > ~/.cnd/config/config.toml.tmp
mv ~/.cnd/config/config.toml.tmp ~/.cnd/config/config.tomlChange the seeds inside the config.toml file
sed -e "s|seeds = \".*\"|seeds = \"$(cat .data | grep -oP 'Seeds\s+\K\S+')\"|g" ~/.cnd/config/config.toml > ~/.cnd/config/config.toml.tmp
mv ~/.cnd/config/config.toml.tmp ~/.cnd/config/config.tomltee /etc/systemd/system/cnd.service > /dev/null <<EOF
[Unit]
Description=Commercio Node
After=network-online.target
[Service]
User=root
ExecStart=/usr/bin/cnd start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOFNow you can start full node. Enable and try to start service
# Start the node
systemctl enable cnd
systemctl start cndOptional. You can quick sync with the follow procedure:
wget "https://quicksync.commercio.network/$CHAINID.latest.tgz" -P ~/.cnd/
# Check if the checksum matches the one present inside https://quicksync.commercio.network
cd ~/.cnd/
tar -zxf commercio-$(echo $CHAINID).latest.tgzControl if the sync was started. Use ctrl+c to interrupt tail command
tail -100f /var/log/syslog
# OUTPUT SHOULD BE LIKE BELOW
#
# Aug 13 16:30:20 commerciotestnet-node4 cnd[351]: I[2019-08-13|16:30:20.722] Executed block module=state height=1 validTxs=0 invalidTxs=0
# Aug 13 16:30:20 commerciotestnet-node4 cnd[351]: I[2019-08-13|16:30:20.728] Committed state module=state height=1 txs=0 appHash=9815044185EB222CE9084AA467A156DFE6B4A0B1BAAC6751DE86BB31C83C4B08
# Aug 13 16:30:20 commerciotestnet-node4 cnd[351]: I[2019-08-13|16:30:20.745] Executed block module=state height=2 validTxs=0 invalidTxs=0
# Aug 13 16:30:20 commerciotestnet-node4 cnd[351]: I[2019-08-13|16:30:20.751] Committed state module=state height=2 txs=0 appHash=96BFD9C8714A79193A7913E5F091470691B195E1E6F028BC46D6B1423F7508A5
# Aug 13 16:30:20 commerciotestnet-node4 cnd[351]: I[2019-08-13|16:30:20.771] Executed block module=state height=3 validTxs=0 invalidTxs=0Inside the testnet we don't use the Ledger.
However, if you wish to do so, please add the --ledger flat to any command.
ATTENTION
Please remember to copy the 24 words seed phrase in a secure place.
They are your memonic and if you loose them you lose all your tokens and the whole access to your validator.
cncli keys add $NODENAME
# Enter a password that you can rememberCopy your public address. It should have the format did:com:<data>.
cncli keys show $NODENAME --addressFrom now on we will refer to the value of your public address using the <your pub addr> notation.
In order to receive your tokens, please send your <your pub addr> inside our
Telegram group requesting them.
We will make sure to send them to you as soon as possible.
Once you've been confirmed the successful transaction, please check using the following command:
cncli query account <your pub addr> --chain-id $CHAINID
# Output should like this
# ...
# - denom: ucommercio
# amount: "52000000000"
# ...Now you can create validator. If you want you can fill follow parameters
--details: add a brief description about your node or your company--identity: your Keybase identity--website: a public site of your node or your company
cncli tx staking create-validator \
--amount=50000000000ucommercio \
--pubkey=$(cnd tendermint show-validator) \
--moniker="$NODENAME" \
--chain-id="$CHAINID" \
--identity="" --website="" --details="" \
--commission-rate="0.10" --commission-max-rate="0.20" \
--commission-max-change-rate="0.01" --min-self-delegation="1" \
--from=<your pub addr> \
-y
# Output should like this
# ...
# rawlog: '[{"msg_index":0,"success":true,"log":""}]'
# ...Your validator is active if the following command returns anything:
cncli query staking validators --chain-id $CHAINID | fgrep $(cnd tendermint show-validator)You should now see your validator inside the Commercio.network explorer