Skip to content

Commit

Permalink
chore: prepare v1.0.0 release (backport #15) (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: John Letey <john@kyve.network>
  • Loading branch information
mergify[bot] and johnletey authored Mar 10, 2023
1 parent cedc217 commit 82007dd
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The KYVE Network

###### v1.0.0-rc1
###### v1.0.0

The KYVE consensus layer is the backbone of the KYVE ecosystem. The layer is a
sovereign Delegated Proof of Stake network built using the
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@

## [Unreleased]

## [v1.0.0](https://github.com/KYVENetwork/chain/releases/tag/v1.0.0) - 2023-03-10

Release for the KYVE network launch.

## [v1.0.0-rc1](https://github.com/KYVENetwork/chain/releases/tag/v1.0.0-rc1) - 2023-03-07

Second `v1.0.0` release candidate for a Kaon network upgrade.

### Improvements

- (deps) [#3](https://github.com/KYVENetwork/chain/pull/3), [#7](https://github.com/KYVENetwork/chain/pull/7) Bump Cosmos SDK to [v0.46.10](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.46.10) ([`v0.46.10-kyve-rc0`](https://github.com/KYVENetwork/cosmos-sdk/releases/tag/v0.46.10-kyve-rc0)).
Expand Down
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
COMMIT := $(shell git log -1 --format='%H')
VERSION := v1.0.0-rc1 # $(shell echo $(shell git describe --tags) | sed 's/^v//')
VERSION := v1.0.0 # $(shell echo $(shell git describe --tags) | sed 's/^v//')

DENOM ?= ukyve
TEAM_TGE ?= 2023-03-14T14:03:14
TEAM_ALLOCATION ?= 165000000000000
# TODO(@john): Update these to the mainnet parameters.
TEAM_FOUNDATION_ADDRESS ?= kyve1vut528et85755xsncjwl6dx8xakuv26hxgyv0n
TEAM_BCP_ADDRESS ?= kyve1vut528et85755xsncjwl6dx8xakuv26hxgyv0n
TEAM_FOUNDATION_ADDRESS ?= kyve1xjpl57p7f49y5gueu7rlfytaw9ramcn5zhjy2g
TEAM_BCP_ADDRESS ?= kyve1fnh4kghr25tppskap50zk5j385pt65tyyjaraa
ifeq ($(ENV),kaon)
$(info 📑 Using Kaon environment...)
DENOM := tkyve
Expand Down
5 changes: 4 additions & 1 deletion cmd/kyved/config.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
package main

import (
"fmt"

globalTypes "github.com/KYVENetwork/chain/x/global/types"
serverCfg "github.com/cosmos/cosmos-sdk/server/config"
sdk "github.com/cosmos/cosmos-sdk/types"
tmCfg "github.com/tendermint/tendermint/config"
)

func initAppConfig() (string, *serverCfg.Config) {
cfg := serverCfg.DefaultConfig()
cfg.MinGasPrices = "0.001tkyve"
cfg.MinGasPrices = fmt.Sprintf("0.001%s", globalTypes.Denom)

return serverCfg.DefaultConfigTemplate, cfg
}
Expand Down
Loading

0 comments on commit 82007dd

Please sign in to comment.