diff --git a/migrate/v0_15/migrate.md b/migrate/v0_15/migrate.md index d14b8986..46febc67 100644 --- a/migrate/v0_15/migrate.md +++ b/migrate/v0_15/migrate.md @@ -3,8 +3,8 @@ ## Software Version and Key Dates - We will be upgrading from chain-id "kava-7" to chain-id "kava-8". -- The version of Kava for kava-8 is [TODO: version] -- The kava-7 chain will be shutdown with a `SoftwareUpgradeProposal` that activates at approximately 13:00 UTC on August, 30 2021. +- The version of Kava for kava-8 is v0.15.0 +- The kava-7 chain will be shutdown with a `SoftwareUpgradeProposal` that activates at block height __1878509__, which is approximately 13:00 UTC on August, 30 2021. - kava-8 genesis time is set to August 30th, 2021 at 15:00 UTC - The version of cosmos-sdk for kava-8 is v0.39.3 - The version of tendermint for kava-8 v0.33.9 @@ -39,7 +39,18 @@ Kava developers will update this PR with the final block number when it is reach 1. Export State (this **MUST** be done using **v0.14.3**, previous v0.14.x versions will not produce the same genesis hash!) ```sh -kvd export --for-zero-height --height PLACEHOLDER > export-genesis.json +# verify version before export: +kvd version --long +# name: kava +# server_name: kvd +# client_name: kvcli +# version: 0.14.3 +# commit: 19c4926078be89730b336edf5bb3873f3c396e43 +# build_tags: netgo,ledger +# go: go version go1.15.8 linux/amd64 + +# export genesis using v0.14.3 +kvd export --for-zero-height --height 1878509 > export-genesis.json ``` **Note:** This can take a while! @@ -48,17 +59,17 @@ kvd export --for-zero-height --height PLACEHOLDER > export-genesis.json ```sh # in the `kava` folder - git pull - git checkout [TODO: version] - make install + git pull + git checkout v0.15.0 + make install # verify versions kvd version --long # name: kava # server_name: kvd # client_name: kvcli - # version: [TODO: version] - # commit: PLACEHOLDER + # version: v0.15.0 + # commit: 19c4926078be89730b336edf5bb3873f3c396e43 # build_tags: netgo,ledger # go: go version go1.15.8 linux/amd64