Skip to content

Commit

Permalink
feat: migrate decimals and korellia-2 (#98)
Browse files Browse the repository at this point in the history
* feat: migrate decimals and korellia-2
  • Loading branch information
troykessler authored Nov 10, 2023
1 parent 38508c5 commit 75f0626
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion common/protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@bundlr-network/client": "^0.8.9",
"@cosmjs/proto-signing": "^0.27.1",
"@cosmjs/stargate": "^0.27.1",
"@kyvejs/sdk": "1.1.0-rc0",
"@kyvejs/sdk": "1.1.0-rc1",
"@kyvejs/types": "1.2.0-rc0",
"@types/cli-progress": "^3.9.2",
"@types/jsonfile": "^6.0.1",
Expand Down
2 changes: 1 addition & 1 deletion common/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kyvejs/sdk",
"version": "1.1.0-rc0",
"version": "1.1.0-rc1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
14 changes: 7 additions & 7 deletions common/sdk/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ export const SUPPORTED_CHAIN_CONFIGS = {
coinDecimals: 6,
gasPrice: 0.02,
},
korellia: {
"korellia-2": {
chainId: "korellia-2",
chainName: "KYVE Korellia",
rpc: "https://rpc-eu-1.korellia.kyve.network",
rest: "https://api-eu-1.korellia.kyve.network",
coin: "KYVE",
coinDenom: "tkyve",
coinDecimals: 6,
gasPrice: 1,
gasPrice: 0.02,
},
"kyve-beta": {
chainId: "kyve-beta",
Expand All @@ -57,8 +57,8 @@ export const SUPPORTED_CHAIN_CONFIGS = {
rest: "https://api.beta.kyve.network",
coin: "KYVE",
coinDenom: "tkyve",
coinDecimals: 9,
gasPrice: 1,
coinDecimals: 6,
gasPrice: 0.02,
},
"kyve-alpha": {
chainId: "kyve-alpha",
Expand All @@ -67,8 +67,8 @@ export const SUPPORTED_CHAIN_CONFIGS = {
rest: "https://api.alpha.kyve.network",
coin: "KYVE",
coinDenom: "tkyve",
coinDecimals: 9,
gasPrice: 1,
coinDecimals: 6,
gasPrice: 0.02,
},
"kyve-local": {
chainId: "kyve-local",
Expand All @@ -78,7 +78,7 @@ export const SUPPORTED_CHAIN_CONFIGS = {
coin: "KYVE",
coinDenom: "tkyve",
coinDecimals: 6,
gasPrice: 1,
gasPrice: 0.02,
},
};

Expand Down
2 changes: 1 addition & 1 deletion tools/kysor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@kyvejs/sdk": "1.1.0-rc0",
"@kyvejs/sdk": "1.1.0-rc1",
"@kyvejs/types": "1.2.0-rc0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
Expand Down

0 comments on commit 75f0626

Please sign in to comment.