Skip to content

Commit 3910277

Browse files
chore: prepare v1.5 (#206)
Co-authored-by: Troy Kessler <troy.kessler99@gmail.com>
1 parent 781bd00 commit 3910277

4 files changed

Lines changed: 27 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
An '!' indicates a state machine breaking change.
1616

17-
## [Unreleased]
17+
## [v1.5.0](https://github.com/KYVENetwork/chain/releases/tag/v1.5.0) - 2024-07-05
1818

1919
### Features
2020

@@ -29,6 +29,7 @@ An '!' indicates a state machine breaking change.
2929

3030
### Improvements
3131

32+
- [#199](https://github.com/KYVENetwork/chain/pull/199) Align events naming.
3233
- ! (deps) [#198](https://github.com/KYVENetwork/chain/pull/198) Bump ibc version to v8.3.1.
3334
- (deps) [#197](https://github.com/KYVENetwork/chain/pull/197) Bump to CosmosSDK v0.50.7
3435
- ! (`x/pool`) [#190](https://github.com/KYVENetwork/chain/pull/190) Make inflation-share-weight a decimal.
@@ -41,8 +42,9 @@ An '!' indicates a state machine breaking change.
4142

4243
### Bug Fixes
4344

44-
- [#194](https://github.com/KYVENetwork/chain/pull/194) fix: return correct result for legacy rpc block_results request
45-
- [#192](https://github.com/KYVENetwork/chain/pull/192) fix: Cosmos-SDK & IBC swagger-code generation.
45+
- ! (deps) [#203](https://github.com/KYVENetwork/chain/pull/203) Use newest IAVL version to prevent pruning error.
46+
- [#194](https://github.com/KYVENetwork/chain/pull/194) Return correct result for legacy rpc block_results request.
47+
- [#192](https://github.com/KYVENetwork/chain/pull/192) Cosmos-SDK & IBC swagger-code generation.
4648
- (`x/query`) [#159](https://github.com/KYVENetwork/chain/pull/159) Add pool params back to kyve params query.
4749
- (`x/query`) [#160](https://github.com/KYVENetwork/chain/pull/160) Add funders back to pool query.
4850
- [#163](https://github.com/KYVENetwork/chain/pull/163) Add back swagger UI for KYVE and Cosmos REST queries.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ If a major chain upgrade is planned, the additional checks must be done:
5050
## Legal
5151

5252
You agree that your contribution is licenced under the MIT Licence and all
53-
ownership is handed over the authors named in [LICENSE](https://github.com/KYVENetwork/chain/blob/main/LICENSE).
53+
ownership is handed over to the authors named in [LICENSE](https://github.com/KYVENetwork/chain/blob/main/LICENSE).

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GO_VERSION := $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1,2)
44
# VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
55
VERSION := v1.5.0
66

7-
BUILD_TIME := 202405060800.00 # format [[CC]YY]MMDDhhmm[.ss]
7+
BUILD_TIME := 202407040800.00 # format [[CC]YY]MMDDhhmm[.ss]
88

99
TEAM_ALLOCATION := 165000000000000
1010
ifeq ($(ENV),kaon)

app/upgrades/v1_5/upgrade.go

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,17 +204,35 @@ func migrateOldGovProposals(sdkCtx sdk.Context, cdc codec.Codec, govStoreKey sto
204204

205205
func migrateFundersModule(sdkCtx sdk.Context, cdc codec.Codec, fundersStoreKey storetypes.StoreKey, fundersKeeper fundersKeeper.Keeper) {
206206
// migrate params
207-
// TODO: define final prices and initial whitelisted coins
208207
oldParams := v1_4_funders.GetParams(sdkCtx, cdc, fundersStoreKey)
209208

210209
newParams := fundersTypes.Params{
211210
CoinWhitelist: []*fundersTypes.WhitelistCoinEntry{
211+
// Prices were obtained on 03.07.2024
212+
213+
// KYVE
212214
{
213215
CoinDenom: globalTypes.Denom,
214216
CoinDecimals: uint32(6),
215217
MinFundingAmount: math.NewIntFromUint64(oldParams.MinFundingAmount),
216218
MinFundingAmountPerBundle: math.NewIntFromUint64(oldParams.MinFundingAmountPerBundle),
217-
CoinWeight: math.LegacyMustNewDecFromStr("0.06"),
219+
CoinWeight: math.LegacyMustNewDecFromStr("0.0358"),
220+
},
221+
// Andromeda
222+
{
223+
CoinDenom: "ibc/58EDC95E791161D711F4CF012ACF30A5DA8DDEB40A484F293A52B1968903F643",
224+
CoinDecimals: uint32(6),
225+
MinFundingAmount: math.NewInt(1000_000_000),
226+
MinFundingAmountPerBundle: math.NewInt(100_000),
227+
CoinWeight: math.LegacyMustNewDecFromStr("0.1007"),
228+
},
229+
// Source Protocol
230+
{
231+
CoinDenom: "ibc/0D2ABDF58A5DBA3D2A90398F8737D16ECAC0DDE58F9792B2918495D499400672",
232+
CoinDecimals: uint32(6),
233+
MinFundingAmount: math.NewInt(1000_000_000),
234+
MinFundingAmountPerBundle: math.NewInt(100_000),
235+
CoinWeight: math.LegacyMustNewDecFromStr("0.0207"),
218236
},
219237
},
220238
MinFundingMultiple: oldParams.MinFundingMultiple,
@@ -292,7 +310,6 @@ func migrateStakersModule(sdkCtx sdk.Context, cdc codec.Codec, stakersStoreKey s
292310
func migrateBundlesModule(sdkCtx sdk.Context, cdc codec.Codec, bundlesStoreKey storetypes.StoreKey, bundlesKeeper bundlesKeeper.Keeper) {
293311
oldParams := v1_4_bundles.GetParams(sdkCtx, cdc, bundlesStoreKey)
294312

295-
// TODO: define final storage cost prices
296313
newParams := bundlesTypes.Params{
297314
UploadTimeout: oldParams.UploadTimeout,
298315
StorageCosts: []bundlesTypes.StorageCost{

0 commit comments

Comments
 (0)