This repository contains all the data related to the different chains that a Commercio.network validator can connect to.
Use https://quicksync.commercio.network with the dump to start a new node.
Don't start from genesis
8d3ac30a774245019f7b94d7a0713fd8caccaa03@seed-01.commercio.network:26656 68ccfc9a1574923e344993d49253d8169f592f9e@seed-02.commercio.network:26656
3f26a7d3269e352574e760d4b08d045aa40ebbf2@persistent-01.commercio.network:26656 542a55fff599ea07e2b4841febff4a78cf8db2aa@persistent-05.commercio.network:26656 01f615a56a7ba14d39e4eaf2bfd00a885cc4e629@persistent-03.commercio.network:26656 15767f4961b501eb67e740aa60c1608bf65679f3@persistent-02.commercio.network:26656 49fdf20f845573429a695c15729c60f52bb5ab19@84.46.241.230:26656
seeds = "8d3ac30a774245019f7b94d7a0713fd8caccaa03@seed-01.commercio.network:26656,68ccfc9a1574923e344993d49253d8169f592f9e@seed-02.commercio.network:26656"
persistent_peers = "3f26a7d3269e352574e760d4b08d045aa40ebbf2@persistent-01.commercio.network:26656,542a55fff599ea07e2b4841febff4a78cf8db2aa@persistent-05.commercio.network:26656,01f615a56a7ba14d39e4eaf2bfd00a885cc4e629@persistent-03.commercio.network:26656,15767f4961b501eb67e740aa60c1608bf65679f3@persistent-02.commercio.network:26656,49fdf20f845573429a695c15729c60f52bb5ab19@84.46.241.230:26656"
Use https://quicksync.commercio.network with the dump to start a new node.
Don't start from genesis
a750af543e9e475c17af98cf3166f2a9f260c318@commercio-testnet4k-seed.commercio.network:26656
263855c2a4f599633a5a86c79823365616a3f5cd@46.101.146.48:26656 5662530384f67f5b6317a48ec339cbf543a975fb@134.209.88.227:26656 f64d897a4d73f0324495eee811d4b1d137afef37@commercio-testnet4k-02.commercio.network:26656 c2af8cd06485a550ea86cbe5774f397bdffa3046@commercio-testnet4k-03.commercio.network:26656
seeds = "a750af543e9e475c17af98cf3166f2a9f260c318@commercio-testnet4k-seed.commercio.network:26656"
persistent_peers = "263855c2a4f599633a5a86c79823365616a3f5cd@46.101.146.48:26656,5662530384f67f5b6317a48ec339cbf543a975fb@134.209.88.227:26656,f64d897a4d73f0324495eee811d4b1d137afef37@commercio-testnet4k-02.commercio.network:26656,c2af8cd06485a550ea86cbe5774f397bdffa3046@commercio-testnet4k-03.commercio.network:26656"
IMPORTANT BEFORE YOU START: If you are already a validator you need see section Update chain procedure.
If you are thinking of creating a new server instance, use the following procedure.
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/20.04/22.04 |
| Number of CPUs | 2 |
| RAM | 32GB |
| SSD | 300GB |
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
rm -rf commercio-chains
mkdir commercio-chains && cd commercio-chains
git clone https://github.com/commercionetwork/chains.git .
cd commercio-<chain-version> # eg. cd commercio-testnet1001 Compile 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:
commercionetworkd 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"
export GOPATH="\$HOME/go"
export PATH="\$GOPATH/bin:\$PATH"
EOFInit the .commercionetwork folder with the basic configuration
pkill commercionetworkd
commercionetworkd unsafe-reset-all
# If you get a error because .commercionetwork folder is not present don't worry
commercionetworkd init $NODENAMEInstall genesis.json file
pkill commercionetworkd
rm -rf ~/.commercionetwork/config/genesis.json
cp genesis.json ~/.commercionetwork/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" ~/.commercionetwork/config/config.toml > ~/.commercionetwork/config/config.toml.tmp
mv ~/.commercionetwork/config/config.toml.tmp ~/.commercionetwork/config/config.tomlChange the seeds inside the config.toml file
sed -e "s|seeds = \".*\"|seeds = \"$(cat .data | grep -oP 'Seeds\s+\K\S+')\"|g" ~/.commercionetwork/config/config.toml > ~/.commercionetwork/config/config.toml.tmp
mv ~/.commercionetwork/config/config.toml.tmp ~/.commercionetwork/config/config.tomltee /etc/systemd/system/commercionetworkd.service > /dev/null <<EOF
[Unit]
Description=Commercio Node
After=network-online.target
[Service]
User=root
ExecStart=/root/go/bin/commercionetworkd start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOFOptional. You can quick sync with the follow procedure:
wget "https://quicksync.commercio.network/$CHAINID.latest.tgz" -P ~/.commercionetwork/
# Check if the checksum matches the one present inside https://quicksync.commercio.network
cd ~/.commercionetwork/
tar -zxf $(echo $CHAINID).latest.tgzNow you can start full node. Enable and try to start service
# Start the node
systemctl enable commercionetworkd
systemctl start commercionetworkdControl 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 commercionetworkd[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 commercionetworkd[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 commercionetworkd[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 commercionetworkd[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 commercionetworkd[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.
WARNING
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 $(commercionetworkd tendermint show-validator)You should now see your validator inside the Commercio.network explorer
IMPORTANT BEFORE YOU START: If you are a new validator you need follow "Getting Started" procedure. DON'T USE THESE UPDATE PROCEDURES
This section describe the procedures to update chain from a version to another.
Every update have a specific produre type.
First type will be used only for testnet chains, while the second will be used to update mainnet chain.
Every chain starting commercio-testnet3000 contains type procedure adopted.
In
https://github.com/commercionetwork/chains/blob/master/commercio-<chain-version>/.data
You should find Update type.
This type is similar to the "getting started" procedure.
You need to delete or move the ~/.commercionetwork folder and start as fresh.
You can mantain your wallet that is installed in ~/.commercionetwork folder or in your ledger device, or recreate it with mnemonic.
You can create new wallet if you prefered and use a new account to become a validator.
systemctl stop commercionetworkd
pkill commercionetworkd #We want be sure that chain process was stopped ;)Delete ~/.commercionetwork folder
rm -rf ~/.commercionetworkor move it (if you want keep the old testnet state for your porpouses).
Use <previous-chain-version> name for copy name for example
cp -r ~/.commercionetwork ~/.commercionetwork.<previous-chain-version>Now you can start follow "getting started" procedure. WARNING: before go haed with "getting started" procedure read follow changes about some steps
In step 1 in order to update the OS so that you can work properly, execute the following commands:
apt update && sudo apt upgrade -y
snap refresh --classic go # You need to update golang to last versionIn step 4 you don't need to change the follow rows of your ~/.profile file
export GOPATH="\$HOME/go"
export PATH="\$GOPATH/bin:\$PATH"
You need clean up your file from previous chain configurations
sed -i \
-e '/export NODENAME=.*/d' \
-e '/export CHAINID=.*/d' ~/.profileand add new chain configs
export NODENAME="<your-moniker>"
export CHAINID=commercio-$(cat .data | grep -oP 'Name\s+\K\S+')
cat <<EOF >> ~/.profile
export NODENAME="$NODENAME"
export CHAINID="$CHAINID"
EOFThis procedure will be applied to mainnet chain and to some specific testnet update
To this type of procedure will be assigned a height of block, informations about checksum of geneis file and software version and a deadline expressed in UTC format.
There is some risks about double signature: to avoid every sort of risks verify software and hash of genesis.json and specific configuration in config.toml.
The deadline of update must be respected: every validator that will not update just in time will be slashed.
Is recommended to take a full data snapshot at the export height before update.
This procedure is quite simple using commands below
systemctl stop cnd
cp -r ~/.commercionetwork ~/.commercionetwork.[OLD VERSION]
# Save binaries also
cp -r /root/go/bin/cnd /root/go/bin/cnd.[OLD VERSION]
cp -r /root/go/bin/cncli /root/go/bin/cncli.[OLD VERSION]rm -rf commercio-chains
mkdir commercio-chains && cd commercio-chains
git clone https://github.com/commercionetwork/chains.git .
cd commercio-<chain-version> # eg. cd commercio-testnet1001 Compile 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 fileGet height from update info
export BLOCKHEIGHT=$(cat .data | grep -oP 'Height\s+\K\S+')Export state from
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 | 8 |
| RAM | 32GB |
| SSD | 200GB |
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
rm -rf commercio-chains
mkdir commercio-chains && cd commercio-chains
git clone https://github.com/commercionetwork/chains.git .
cd commercio-<chain-version> # eg. cd commercio-testnet1001 Compile 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:
commercionetworkd 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"
export GOPATH="\$HOME/go"
export PATH="\$GOPATH/bin:\$PATH"
EOFInit the .commercionetworkd folder with the basic configuration
pkill cnd
commercionetworkd unsafe-reset-all
# If you get a error because .commercionetwork folder is not present don't worry
cnd init $NODENAMEInstall genesis.json file
pkill cnd
rm -rf ~/.commercionetworkd/config/genesis.json
cp genesis.json ~/.commercionetworkd/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" ~/.commercionetwork/config/config.toml > ~/.commercionetwork/config/config.toml.tmp
mv ~/.commercionetwork/config/config.toml.tmp ~/.commercionetwork/config/config.tomlChange the seeds inside the config.toml file
sed -e "s|seeds = \".*\"|seeds = \"$(cat .data | grep -oP 'Seeds\s+\K\S+')\"|g" ~/.commercionetwork/config/config.toml > ~/.commercionetwork/config/config.toml.tmp
mv ~/.commercionetwork/config/config.toml.tmp ~/.commercionetwork/config/config.tomltee /etc/systemd/system/commercionetworkd.service > /dev/null <<EOF
[Unit]
Description=Commercio Node
After=network-online.target
[Service]
User=root
ExecStart=/root/go/bin/commercionetwork start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOFOptional. You can quick sync with the follow procedure:
wget "https://quicksync.commercio.network/$CHAINID.latest.tgz" -P ~/.commercionetwork/
# Check if the checksum matches the one present inside https://quicksync.commercio.network
cd ~/.commercionetwork/
tar -zxf $(echo $CHAINID).latest.tgzNow you can start full node. Enable and try to start service
# Start the node
systemctl enable commercionetworkd
systemctl start commercionetworkdControl 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.
WARNING
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
IMPORTANT BEFORE YOU START: If you are a new validator you need follow "Getting Started" procedure. DON'T USE THESE UPDATE PROCEDURES
This section describe the procedures to update chain from a version to another.
Every update have a specific produre type.
First type will be used only for testnet chains, while the second will be used to update mainnet chain.
Every chain starting commercio-testnet3000 contains type procedure adopted.
In
https://github.com/commercionetwork/chains/blob/master/commercio-<chain-version>/.data
You should find Update type.
This type is similar to the "getting started" procedure.
You need to delete or move the ~/.commercionetwork folder and start as fresh.
You can mantain your wallet that is installed in ~/.commercionetwork folder or in your ledger device, or recreate it with mnemonic.
You can create new wallet if you prefered and use a new account to become a validator.
systemctl stop cnd
pkill cnd #We want be sure that chain process was stopped ;)Delete ~/.commercionetwork folder
rm -rf ~/.commercionetworkor move it (if you want keep the old testnet state for your porpouses).
Use <previous-chain-version> name for copy name for example
cp -r ~/.commercionetwork ~/.commercionetwork.<previous-chain-version>Now you can start follow "getting started" procedure. WARNING: before go haed with "getting started" procedure read follow changes about some steps
In step 1 in order to update the OS so that you can work properly, execute the following commands:
apt update && sudo apt upgrade -y
snap refresh --classic go # You need to update golang to last versionIn step 4 you don't need to change the follow rows of your ~/.profile file
export GOPATH="\$HOME/go"
export PATH="\$GOPATH/bin:\$PATH"
You need clean up your file from previous chain configurations
sed -i \
-e '/export NODENAME=.*/d' \
-e '/export CHAINID=.*/d' ~/.profileand add new chain configs
export NODENAME="<your-moniker>"
export CHAINID=commercio-$(cat .data | grep -oP 'Name\s+\K\S+')
cat <<EOF >> ~/.profile
export NODENAME="$NODENAME"
export CHAINID="$CHAINID"
EOFThis procedure will be applied to mainnet chain and to some specific testnet update
To this type of procedure will be assigned a height of block, informations about checksum of geneis file and software version and a deadline expressed in UTC format.
There is some risks about double signature: to avoid every sort of risks verify software and hash of genesis.json and specific configuration in config.toml.
The deadline of update must be respected: every validator that will not update just in time will be slashed.
Is recommended to take a full data snapshot at the export height before update.
This procedure is quite simple using commands below
systemctl stop cnd
cp -r ~/.commercionetwork ~/.commercionetwork.[OLD VERSION]
# Save binaries also
cp -r /root/go/bin/cnd /root/go/bin/cnd.[OLD VERSION]
cp -r /root/go/bin/cncli /root/go/bin/cncli.[OLD VERSION]rm -rf commercio-chains
mkdir commercio-chains && cd commercio-chains
git clone https://github.com/commercionetwork/chains.git .
cd commercio-<chain-version> # eg. cd commercio-testnet1001 Compile 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 fileGet height from update info
export BLOCKHEIGHT=$(cat .data | grep -oP 'Height\s+\K\S+')Export state from