From 835b3ea6d84b4fb9bc2858db8642dbf5fdec5f55 Mon Sep 17 00:00:00 2001 From: rhuairahrighairigh Date: Fri, 17 Aug 2018 17:20:41 -0400 Subject: [PATCH] add new testnet --- README.md | 6 +- testnets/kava-test-1/genesis.json | 99 +++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+), 3 deletions(-) create mode 100644 testnets/kava-test-1/genesis.json diff --git a/README.md b/README.md index 8a840c9c..5cdfbf55 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ TODO users need to set up keys first? This will generate config and keys in `$HOME/.kvd` and `$HOME/.kvcli`. The default password is 'password'. -Copy the testnet genesis file (from https://raw.githubusercontent.com/Kava-Labs/kava/master/testnets/kava-test-0/genesis.json) into `$HOME/.kvd/config/`, replacing the existing one. +Copy the testnet genesis file (from https://raw.githubusercontent.com/Kava-Labs/kava/master/testnets/kava-test-1/genesis.json) into `$HOME/.kvd/config/`, replacing the existing one. -Add the kava node address (`4db23d731b4255c9624b283d0ca4e5b219e6cf67@validator.connector.kava.io:26656`) to `seeds` in `$HOME/.kvd/config/config.toml` +Add the kava node address (`0dfd43e440e34fc193ddee4ae99547184f3cb5d1@validator.connector.kava.io:26656`) to `seeds` in `$HOME/.kvd/config/config.toml` Start your full node @@ -76,7 +76,7 @@ Ask @rhuairahrighairidh in the chat to give you some coins. Get your validator pubkey with `kvd tendermint show_validator` kvcli stake create-validator \ - --amount 100000KVA \ + --amount 1000KVA \ --pubkey \ --address-validator \ --moniker "" \ diff --git a/testnets/kava-test-1/genesis.json b/testnets/kava-test-1/genesis.json new file mode 100644 index 00000000..c56b2244 --- /dev/null +++ b/testnets/kava-test-1/genesis.json @@ -0,0 +1,99 @@ +{ + "genesis_time": "2018-08-17T20:36:46.515426797Z", + "chain_id": "kava-test-1", + "consensus_params": { + "block_size_params": { + "max_bytes": "22020096", + "max_txs": "10000", + "max_gas": "-1" + }, + "tx_size_params": { + "max_bytes": "10240", + "max_gas": "-1" + }, + "block_gossip_params": { + "block_part_size_bytes": "65536" + }, + "evidence_params": { + "max_age": "100000" + } + }, + "validators": [ + { + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "2XxN3kL5CWNyI9x4o3+iG//R+BVyTwmhx0ZVNGQOAjo=" + }, + "power": "1000", + "name": "" + } + ], + "app_hash": "", + "app_state": { + "accounts": [ + { + "address": "cosmosaccaddr1fr2eescsy22uw93x9df2dernrd6llyar66e4gy", + "coins": [ + { + "denom": "KVA", + "amount": "99000" + } + ] + } + ], + "stake": { + "pool": { + "loose_tokens": "100000", + "bonded_tokens": "0", + "inflation_last_time": "0", + "inflation": "7/100", + "date_last_commission_reset": "0", + "prev_bonded_shares": "0" + }, + "params": { + "inflation_rate_change": "13/100", + "inflation_max": "1/5", + "inflation_min": "7/100", + "goal_bonded": "67/100", + "unbonding_time": "259200", + "max_validators": 100, + "bond_denom": "KVA" + }, + "validators": [ + { + "owner": "cosmosaccaddr1fr2eescsy22uw93x9df2dernrd6llyar66e4gy", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "2XxN3kL5CWNyI9x4o3+iG//R+BVyTwmhx0ZVNGQOAjo=" + }, + "revoked": false, + "status": 0, + "tokens": "1000", + "delegator_shares": "1000", + "description": { + "moniker": "kava-validator", + "identity": "", + "website": "", + "details": "" + }, + "bond_height": "0", + "bond_intra_tx_counter": 0, + "proposer_reward_pool": [], + "commission": "0", + "commission_max": "0", + "commission_change_rate": "0", + "commission_change_today": "0", + "prev_bonded_tokens": "0" + } + ], + "bonds": [ + { + "delegator_addr": "cosmosaccaddr1fr2eescsy22uw93x9df2dernrd6llyar66e4gy", + "validator_addr": "cosmosaccaddr1fr2eescsy22uw93x9df2dernrd6llyar66e4gy", + "shares": "1000", + "height": "0" + } + ] + } + } +} \ No newline at end of file