From dde8b2a62a8d3a0cfc9bffc4076ab7a23a3622ff Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Tue, 2 Jul 2019 16:06:16 -0400 Subject: [PATCH 1/2] feat: use kava prefix --- app/app.go | 2 +- testnet-1.1/gentx/.gitkeep | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 testnet-1.1/gentx/.gitkeep diff --git a/app/app.go b/app/app.go index 46b0ccab..a2bffcab 100644 --- a/app/app.go +++ b/app/app.go @@ -29,7 +29,7 @@ const ( appName = "kava" // DefaultKeyPass contains the default key password for genesis transactions DefaultKeyPass = "12345678" - Bech32MainPrefix = "k" + Bech32MainPrefix = "kava" ) // default home directories for expected binaries diff --git a/testnet-1.1/gentx/.gitkeep b/testnet-1.1/gentx/.gitkeep new file mode 100644 index 00000000..e69de29b From b9d93af753c97690deee7bb5e557a7f0723a0dba Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Tue, 2 Jul 2019 16:06:31 -0400 Subject: [PATCH 2/2] feat: update for 1.1 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7b10b422..83a07a3d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ go install -tags "ledger" ./cmd/kvd ./cmd/kvcli #### Create a Wallet ``` -kvd init --chain-id=kava-testnet-1 +kvd init --chain-id=kava-testnet-1.1 kvcli keys add ``` @@ -47,15 +47,15 @@ kvcli keys add #### Create a Genesis Transaction ``` -kvd add-genesis-account $(kvcli keys show -a) 1000000kva -kvd gentx --name --amount 1000000kva --ip +kvd add-genesis-account $(kvcli keys show -a) 1000000000000ukva +kvd gentx --name --amount 1000000000000ukva --ip ``` A genesis transaction should be written to `$HOME/.kvd/config/gentx/gentx-.json` #### Submit Genesis Transaction -To be included in the genesis file for testnet one, fork this repo and copy your genesis transaction to the `testnet-1/gentx` directory. Submit your fork including your genesis transaction as a PR on this repo [here](https://github.com/Kava-Labs/kava/pulls) +To be included in the genesis file for testnet one, fork this repo and copy your genesis transaction to the `testnet-1.1/gentx` directory. Submit your fork including your genesis transaction as a PR on this repo [here](https://github.com/Kava-Labs/kava/pulls) ## License