Skip to content

Commit 3fbf23e

Browse files
committed
Added v2.0
1 parent 59cae5f commit 3fbf23e

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ comma := ,
5959
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))
6060

6161
# process linker flags
62-
network := Testnet-IBC
62+
network := Mainnet-IBC
6363

6464
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=kitools \
6565
-X github.com/cosmos/cosmos-sdk/version.AppName=kid \
66-
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION)-$(network) \
66+
-X github.com/cosmos/cosmos-sdk/version.Version=$(network)-$(VERSION) \
6767
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
6868
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" \
6969
-X github.com/tendermint/tendermint/version.TMCoreSemVer=$(TM_VERSION)

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ This repository hosts `ki-tools`, a set of tools that allow to deploy and run Ki
99
## Quick Start
1010

1111
### Install Golang
12-
To install Go, visit the Go download page and copy the link of the latest Go release for Linux systems:
13-
14-
```
15-
https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz
16-
```
17-
18-
Download and unzip the archive file as follows:
12+
To install Go, visit the Go download page and copy the link of the latest Go release for Linux systems, download and unzip the archive file as follows:
1913

2014
```
2115
wget https://dl.google.com/go/go1.16.linux-amd64.tar.gz

app/address/address.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
const (
8-
Bech32MainPrefix = "tki"
8+
Bech32MainPrefix = "ki"
99

1010
// PrefixAccount is the prefix for account keys
1111
PrefixAccount = "acc"

app/migrate.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ $ %s migrate /path/to/genesis.json --chain-id=cosmoshub-4 --genesis-time=2019-04
113113
{
114114
Description: "The native staking token of the KiChain.",
115115
DenomUnits: []*bank.DenomUnit{
116-
{Denom: "utki", Exponent: uint32(0), Aliases: []string{"microtki"}},
117-
{Denom: "mtki", Exponent: uint32(3), Aliases: []string{"millitki"}},
118-
{Denom: "tki", Exponent: uint32(6), Aliases: []string{}},
116+
{Denom: "uki", Exponent: uint32(0), Aliases: []string{"microki"}},
117+
{Denom: "mki", Exponent: uint32(3), Aliases: []string{"milliki"}},
118+
{Denom: "ki", Exponent: uint32(6), Aliases: []string{}},
119119
},
120-
Base: "utki",
121-
Display: "tki",
120+
Base: "uki",
121+
Display: "ki",
122122
},
123123
}
124124
newGenState[bank.ModuleName] = clientCtx.JSONMarshaler.MustMarshalJSON(&bankGenesis)

0 commit comments

Comments
 (0)