Skip to content

Commit

Permalink
Merge pull request #116 from Cerebellum-Network/release/0.28.2
Browse files Browse the repository at this point in the history
Release/0.28.2
  • Loading branch information
MRamanenkau authored Apr 22, 2024
2 parents c4f57df + 07d80e2 commit 28576f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## vNext
...

## 0.28.2
- Use original inflation parameters

## 0.28.1
- Update inflation parameters

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
},
"sideEffects": false,
"type": "module",
"version": "0.28.1-cere",
"version": "0.28.2-cere",
"versions": {
"git": "0.28.1-cere",
"npm": "0.28.1-cere"
"git": "0.28.2-cere",
"npm": "0.28.2-cere"
},
"workspaces": [
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/apps-config/src/api/params/inflation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const DEFAULT_PARAMS: InflationParams = {
stakeTarget: 0.5
};

const CERE_NETWORK_INFLATION_PARAMS = { ...DEFAULT_PARAMS, maxInflation: 0.1, minInflation: 0.0002, stakeTarget: 0.2 };
const CERE_NETWORK_INFLATION_PARAMS = { ...DEFAULT_PARAMS, maxInflation: 0.05, minInflation: 0.0001, stakeTarget: 0.2 };

const KNOWN_PARAMS: Record<string, InflationParams> = {
[CERE_NETWORK_GENESIS]: CERE_NETWORK_INFLATION_PARAMS,
Expand Down

0 comments on commit 28576f6

Please sign in to comment.