Since there was a network upgrade of testnet-croeseid-2
, If you would like to build a fullnode will complete blockchain data from scratch:
- Begin with the older version v0.8.1-croeseid of
chain-maind
; - Let it sync to block height
905532
, which is the block height of the upgrade happened; - The
chain-maind
should stop and ask you to upgrade; - You can then restart the node with v0.9.1-croeseid and let it synced to the latest block.
We officially support macOS, Windows and Linux only. Other platforms may work but there is no guarantee. We will extend our support to other platforms after we have stabilized our current architecture.
To run Crypto.org Chain nodes in the testnet, you will need a machine with the following minimum requirements:
- Dual-core, x86_64 architecture processor;
- 4GB RAM;
- 100GB of storage space.
For Crypto.org Chain mainnet in the future, you will need a machine with the following minimum requirements:
- 4-core, x86_64 architecture processor;
- 16GB RAM;
- 1TB of storage space.
To simplify the following step, we will be using Linux for illustration. Binary for Mac and Windows are also available.
-
To install Crypto.org Chain released binaries from github:
$ curl -LOJ https://github.com/crypto-com/chain-main/releases/download/v0.8.1-croeseid/chain-main_0.8.1-croeseid_Linux_x86_64.tar.gz $ tar -zxvf chain-main_0.8.1-croeseid_Linux_x86_64.tar.gz
Before kick-starting your node, we will have to configure your node so that it connects to the Croeseid testnet:
-
First of all, you can initialize chain-maind by:
$ ./chain-maind init [moniker] --chain-id testnet-croeseid-2
This
moniker
will be the displayed id of your node when connected to Crypto.org Chain network. When providing the moniker value, make sure you drop the square brackets since they are not needed. The example below shows how to initialize a node namedpegasus-node
:$ ./chain-maind init pegasus-node --chain-id testnet-croeseid-2
NOTE
- Depending on your chain-maind home setting, the chain-maind configuration will be initialized to that home directory. To simply the following steps, we will use the default chain-maind home directory
~/.chain-maind/
for illustration. - You can also put the
chain-maind
to your binary path and run it bychain-maind
- Depending on your chain-maind home setting, the chain-maind configuration will be initialized to that home directory. To simply the following steps, we will use the default chain-maind home directory
-
Download and replace the Croeseid Testnet
genesis.json
by:$ curl https://raw.githubusercontent.com/crypto-com/testnets/main/testnet-croeseid-2/genesis.json > ~/.chain-maind/config/genesis.json
-
Verify sha256sum checksum of the downloaded
genesis.json
. You should seeOK!
if the sha256sum checksum matches.$ if [[ $(sha256sum ~/.chain-maind/config/genesis.json | awk '{print $1}') = "af7c9828806da4945b1b41d434711ca233c89aedb5030cf8d9ce2d7cd46a948e" ]]; then echo "OK"; else echo "MISMATCHED"; fi; OK!
-
In
~/.chain-maind/config/app.toml
, update minimum gas price to avoid transaction spamming$ sed -i.bak -E 's#^(minimum-gas-prices[[:space:]]+=[[:space:]]+)""$#\1"0.025basetcro"#' ~/.chain-maind/config/app.toml
-
For network configuration, in
~/.chain-maind/config/config.toml
, please modify the configurations ofpersistent_peers
andcreate_empty_blocks_interval
by:$ sed -i.bak -E 's#^(persistent_peers[[:space:]]+=[[:space:]]+).*$#\1"[email protected]:26656,[email protected]:26656,[email protected]:26656"# ; s#^(create_empty_blocks_interval[[:space:]]+=[[:space:]]+).*$#\1"5s"#' ~/.chain-maind/config/config.toml
Once the chain-maind
has been configured, we are ready to start the node and sync the blockchain data:
- Start chain-maind, e.g.:
$ ./chain-maind start
It should begin fetching blocks from the other peers.
For example, one can check the current block height by querying the public full node by:
curl -s https://testnet-croeseid.crypto.org:26657/commit | jq "{height: .result.signed_header.header.height}"
Once it has been synced to block height 905532
. The chain-maind
should stop and ask you to upgrade to v0.9.1-croeseid
.
-
To install Crypto.org Chain released binaries
v0.9.1-croeseid
from github:$ curl -LOJ https://github.com/crypto-org-chain/chain-main/releases/download/v0.9.1-croeseid/chain-main_0.9.1-croeseid_Linux_x86_64.tar.gz $ tar -zxvf chain-main_0.9.1-croeseid_Linux_x86_64.tar.gz
Note: Binary for Mac and Windows are also available.
Once it has been done, you can check the version of your chain-maind
by:
$ ./chain-maind version
0.9.1-croeseid
Afterwards, you can restart the node with the v0.9.1-croeseid
binary by:
./chain-maind start
It should begin fetching blocks from the other peers. Please wait until it is fully synced.