Skip to content

Commit

Permalink
Added v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TarekAwwad committed Nov 5, 2021
1 parent 59cae5f commit 3fbf23e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ comma := ,
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))

# process linker flags
network := Testnet-IBC
network := Mainnet-IBC

ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=kitools \
-X github.com/cosmos/cosmos-sdk/version.AppName=kid \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION)-$(network) \
-X github.com/cosmos/cosmos-sdk/version.Version=$(network)-$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" \
-X github.com/tendermint/tendermint/version.TMCoreSemVer=$(TM_VERSION)
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ This repository hosts `ki-tools`, a set of tools that allow to deploy and run Ki
## Quick Start

### Install Golang
To install Go, visit the Go download page and copy the link of the latest Go release for Linux systems:

```
https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz
```

Download and unzip the archive file as follows:
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:

```
wget https://dl.google.com/go/go1.16.linux-amd64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion app/address/address.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

const (
Bech32MainPrefix = "tki"
Bech32MainPrefix = "ki"

// PrefixAccount is the prefix for account keys
PrefixAccount = "acc"
Expand Down
10 changes: 5 additions & 5 deletions app/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ $ %s migrate /path/to/genesis.json --chain-id=cosmoshub-4 --genesis-time=2019-04
{
Description: "The native staking token of the KiChain.",
DenomUnits: []*bank.DenomUnit{
{Denom: "utki", Exponent: uint32(0), Aliases: []string{"microtki"}},
{Denom: "mtki", Exponent: uint32(3), Aliases: []string{"millitki"}},
{Denom: "tki", Exponent: uint32(6), Aliases: []string{}},
{Denom: "uki", Exponent: uint32(0), Aliases: []string{"microki"}},
{Denom: "mki", Exponent: uint32(3), Aliases: []string{"milliki"}},
{Denom: "ki", Exponent: uint32(6), Aliases: []string{}},
},
Base: "utki",
Display: "tki",
Base: "uki",
Display: "ki",
},
}
newGenState[bank.ModuleName] = clientCtx.JSONMarshaler.MustMarshalJSON(&bankGenesis)
Expand Down

0 comments on commit 3fbf23e

Please sign in to comment.