@chain-registry/juno 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/main/asset_list.js +30 -0
- package/main/chain.js +22 -4
- package/package.json +5 -5
- package/types/index.d.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.5.0...@chain-registry/juno@1.6.0) (2022-12-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/juno
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.4.0...@chain-registry/juno@1.5.0) (2022-11-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/juno
|
package/main/asset_list.js
CHANGED
|
@@ -1494,6 +1494,36 @@ var asset_list = {
|
|
|
1494
1494
|
channel_id: 'channel-33'
|
|
1495
1495
|
}
|
|
1496
1496
|
}]
|
|
1497
|
+
}, {
|
|
1498
|
+
description: 'PSTAKE Liquid-Staked ATOM',
|
|
1499
|
+
denom_units: [{
|
|
1500
|
+
denom: 'ibc/436673B3C7C0923C904EEA4AC97AB0DD7DC5627751AE7E2F8CFF489A3D43D805',
|
|
1501
|
+
exponent: 0,
|
|
1502
|
+
aliases: ['stk/uatom']
|
|
1503
|
+
}, {
|
|
1504
|
+
denom: 'stkatom',
|
|
1505
|
+
exponent: 6,
|
|
1506
|
+
aliases: ['stk/atom']
|
|
1507
|
+
}],
|
|
1508
|
+
base: 'ibc/436673B3C7C0923C904EEA4AC97AB0DD7DC5627751AE7E2F8CFF489A3D43D805',
|
|
1509
|
+
name: 'PSTAKE staked ATOM',
|
|
1510
|
+
display: 'stkatom',
|
|
1511
|
+
symbol: 'stkATOM',
|
|
1512
|
+
logo_URIs: {
|
|
1513
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png',
|
|
1514
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg'
|
|
1515
|
+
},
|
|
1516
|
+
traces: [{
|
|
1517
|
+
type: 'ibc',
|
|
1518
|
+
counterparty: {
|
|
1519
|
+
channel_id: 'channel-37',
|
|
1520
|
+
base_denom: 'stk/uatom',
|
|
1521
|
+
chain_name: 'persistence'
|
|
1522
|
+
},
|
|
1523
|
+
chain: {
|
|
1524
|
+
channel_id: 'channel-33'
|
|
1525
|
+
}
|
|
1526
|
+
}]
|
|
1497
1527
|
}, {
|
|
1498
1528
|
description: 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.',
|
|
1499
1529
|
denom_units: [{
|
package/main/chain.js
CHANGED
|
@@ -33,8 +33,8 @@ var chain = {
|
|
|
33
33
|
},
|
|
34
34
|
codebase: {
|
|
35
35
|
git_repo: 'https://github.com/CosmosContracts/juno',
|
|
36
|
-
recommended_version: '
|
|
37
|
-
compatible_versions: ['
|
|
36
|
+
recommended_version: 'v11.0.0',
|
|
37
|
+
compatible_versions: ['v11.0.0'],
|
|
38
38
|
cosmos_sdk_version: '0.45',
|
|
39
39
|
tendermint_version: '0.34',
|
|
40
40
|
cosmwasm_version: '0.28',
|
|
@@ -112,6 +112,9 @@ var chain = {
|
|
|
112
112
|
}, {
|
|
113
113
|
address: 'https://juno-rpc.polkachu.com',
|
|
114
114
|
provider: 'Polkachu'
|
|
115
|
+
}, {
|
|
116
|
+
address: 'https://juno.rpc.interchain.ivaldilabs.xyz',
|
|
117
|
+
provider: 'Ivaldi Labs'
|
|
115
118
|
}, {
|
|
116
119
|
address: 'https://juno-rpc.lavenderfive.com:443',
|
|
117
120
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -128,7 +131,7 @@ var chain = {
|
|
|
128
131
|
address: 'https://rpc.juno.silknodes.io/',
|
|
129
132
|
provider: 'Silk Nodes'
|
|
130
133
|
}, {
|
|
131
|
-
address: 'https://juno-rpc.
|
|
134
|
+
address: 'https://juno-rpc.kleomedes.network',
|
|
132
135
|
provider: 'Kleomedes'
|
|
133
136
|
}, {
|
|
134
137
|
address: 'https://rpc.juno.interbloc.org',
|
|
@@ -145,6 +148,9 @@ var chain = {
|
|
|
145
148
|
}, {
|
|
146
149
|
address: 'https://rpc-juno.goldenratiostaking.net',
|
|
147
150
|
provider: 'Golden Ratio Staking'
|
|
151
|
+
}, {
|
|
152
|
+
address: 'https://rpc.juno.bh.rocks',
|
|
153
|
+
provider: 'BlockHunters 🎯'
|
|
148
154
|
}],
|
|
149
155
|
rest: [{
|
|
150
156
|
address: 'https://lcd-juno.whispernode.com',
|
|
@@ -152,6 +158,9 @@ var chain = {
|
|
|
152
158
|
}, {
|
|
153
159
|
address: 'https://lcd-juno.itastakers.com',
|
|
154
160
|
provider: 'itastakers'
|
|
161
|
+
}, {
|
|
162
|
+
address: 'https://juno.rest.interchain.ivaldilabs.xyz',
|
|
163
|
+
provider: 'Ivaldi Labs'
|
|
155
164
|
}, {
|
|
156
165
|
address: 'https://rest-juno.ecostake.com',
|
|
157
166
|
provider: 'ecostake'
|
|
@@ -174,7 +183,7 @@ var chain = {
|
|
|
174
183
|
address: 'https://api.juno.silknodes.io/',
|
|
175
184
|
provider: 'Silk Nodes'
|
|
176
185
|
}, {
|
|
177
|
-
address: 'https://juno-api.
|
|
186
|
+
address: 'https://juno-api.kleomedes.network',
|
|
178
187
|
provider: 'Kleomedes'
|
|
179
188
|
}, {
|
|
180
189
|
address: 'https://api.juno.interbloc.org',
|
|
@@ -185,6 +194,9 @@ var chain = {
|
|
|
185
194
|
}, {
|
|
186
195
|
address: 'https://juno.rest.stakin.com',
|
|
187
196
|
provider: 'Stakin'
|
|
197
|
+
}, {
|
|
198
|
+
address: 'https://api.juno.bh.rocks',
|
|
199
|
+
provider: 'BlockHunters 🎯'
|
|
188
200
|
}],
|
|
189
201
|
grpc: [{
|
|
190
202
|
address: '35.243.205.230:9090',
|
|
@@ -204,12 +216,18 @@ var chain = {
|
|
|
204
216
|
}, {
|
|
205
217
|
address: 'https://grpc.juno.silknodes.io/',
|
|
206
218
|
provider: 'Silk Nodes'
|
|
219
|
+
}, {
|
|
220
|
+
address: 'juno.grpc.interchain.ivaldilabs.xyz:443',
|
|
221
|
+
provider: 'Ivaldi Labs'
|
|
207
222
|
}, {
|
|
208
223
|
address: 'https://juno.nodejumper.io:9090',
|
|
209
224
|
provider: 'Nodejumper 🚀'
|
|
210
225
|
}, {
|
|
211
226
|
address: 'juno.grpc.stakin.com:443',
|
|
212
227
|
provider: 'Stakin'
|
|
228
|
+
}, {
|
|
229
|
+
address: 'https://grpc.juno.bh.rocks:443',
|
|
230
|
+
provider: 'BlockHunters 🎯'
|
|
213
231
|
}]
|
|
214
232
|
},
|
|
215
233
|
explorers: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.19.6",
|
|
51
51
|
"@babel/preset-env": "7.19.4",
|
|
52
52
|
"@babel/preset-typescript": "^7.17.12",
|
|
53
|
-
"@chain-registry/utils": "^1.
|
|
53
|
+
"@chain-registry/utils": "^1.4.0",
|
|
54
54
|
"@types/jest": "^29.2.0",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "5.40.1",
|
|
56
56
|
"@typescript-eslint/parser": "5.40.1",
|
|
57
57
|
"babel-core": "7.0.0-bridge.0",
|
|
58
58
|
"babel-jest": "29.2.1",
|
|
59
59
|
"babel-watch": "^7.0.0",
|
|
60
|
-
"chain-registry": "^1.
|
|
60
|
+
"chain-registry": "^1.6.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.25.0",
|
|
63
63
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@babel/runtime": "^7.19.4",
|
|
76
|
-
"@chain-registry/types": "^0.
|
|
76
|
+
"@chain-registry/types": "^0.14.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "ad0a582adf079e3d5bf899ef18e0f7c605b09579"
|
|
79
79
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import chain from './chain';
|
|
|
4
4
|
import testnet from './testnet';
|
|
5
5
|
import testnet_assets from './testnet_assets';
|
|
6
6
|
declare const _default: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
chain: import("@chain-registry/types").Chain;
|
|
8
|
+
assets: import("@chain-registry/types").AssetList;
|
|
9
|
+
asset_list: import("@chain-registry/types").AssetList;
|
|
10
|
+
testnet: import("@chain-registry/types").Chain;
|
|
11
|
+
testnet_assets: import("@chain-registry/types").AssetList;
|
|
12
12
|
};
|
|
13
13
|
export default _default;
|
|
14
14
|
export { asset_list, assets, chain, testnet, testnet_assets };
|