CertiK Incentivized Testnet
The incentivized testnet release comes with a brand new chain with a clean history. Any old history will be discarded in favor of this chain.
How to Join Incentivized Testnet
- Download relevant binary and data files.
shasum
of genesis.json is44ca3e4049d0ac0e24a5087f7c767ffd01a7d38a
- Establish a certikd environment with command
certikd init --chain-id shentu-incentivized <your_moniker>
. Replace<your_moniker>
with a name of your choice. - Replace the genesis.json file in the config directory. By default, it's located in
~/.certikd/config/
. - Configure youre node's parameters.
- Open up
config.toml
file. By default, it's located in~/.certikd/config/config.toml
. - Modify the variables inside. Usually you want to set
minimum gas price
if you are planning to run a validator. Modify persistent_peers and/or seeds list to the provided list.
- Open up
- Start
certikd
daemon. You can start throughcertikd start &> certikd.log
. Any output from the daemon will be written to certikd.log - create a key in the testnet via
certikcli keys add <key_name>
command. Replace<key_name>
with a name of your choice. - You can head to explorer faucet to receive some funds to your generated account.
- You are all set to participate in the testnet!
seeds = "f4678480e4b7f1daee8ff47e6265954f8b57291d@54.234.180.96:26656,f6764b2a92ad718ece49736f521cadab6bfad762@34.229.19.214:26656,be9db97f250a6aeca95b50ef61453cb8d08604e6@34.201.163.218:26656,60a4d4310878ee664cb2ed4d74f79d3940df595a@3.92.81.28:26656"
For further information, you can refer to detailed guide to join certikd testnet
Changelog :
API Breaking Changes
- (x/cert) Added sourcecodeHash flag for issuing a certificate.
State Machine Breaking Changes
- (x/cert) Merged proof/auditing into issue-certificate by flags.
- (x/slashing) Changed slashing factor to 0% for both downtime and double-sign.
Features
- (x/cert) Refactored auditing and proof and added queriers with filter options.
- (x/gov) Added software upgrade proposal.
- (x/gov) Modified gov keeper for certifier update proposals.
- (x/gov) Added Handler for when certifier proposal passes.
- (x/gov) Added CLI and REST for certifier update proposal.
Improvements
- (x/cert) Improved the query responses in cert module.
Bug Fixes
- (x/cert) Fixed the error when exporting genesis states of cert module.