@chain-registry/juno 1.3.1 → 1.4.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 +120 -0
- package/main/chain.js +23 -6
- package/main/testnet.js +4 -6
- package/package.json +3 -3
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.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.3.1...@chain-registry/juno@1.4.0) (2022-11-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/juno
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.3.0...@chain-registry/juno@1.3.1) (2022-10-27)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/juno
|
package/main/asset_list.js
CHANGED
|
@@ -1282,6 +1282,126 @@ var asset_list = {
|
|
|
1282
1282
|
channel_id: 'channel-9'
|
|
1283
1283
|
}
|
|
1284
1284
|
}]
|
|
1285
|
+
}, {
|
|
1286
|
+
description: 'e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.',
|
|
1287
|
+
denom_units: [{
|
|
1288
|
+
denom: 'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1289
|
+
exponent: 0,
|
|
1290
|
+
aliases: ['echf']
|
|
1291
|
+
}, {
|
|
1292
|
+
denom: 'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1293
|
+
exponent: 6,
|
|
1294
|
+
aliases: ['echf']
|
|
1295
|
+
}],
|
|
1296
|
+
base: 'ibc/B70EF98FDC157B72A6C9165C61156B66D5E47B3C0F99C6B22D3A2AF692C06C90',
|
|
1297
|
+
name: 'e-Money CHF',
|
|
1298
|
+
display: 'chf',
|
|
1299
|
+
symbol: 'ECHF',
|
|
1300
|
+
logo_URIs: {
|
|
1301
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png'
|
|
1302
|
+
},
|
|
1303
|
+
coingecko_id: '',
|
|
1304
|
+
traces: [{
|
|
1305
|
+
type: 'ibc',
|
|
1306
|
+
counterparty: {
|
|
1307
|
+
channel_id: 'channel-15',
|
|
1308
|
+
base_denom: 'echf',
|
|
1309
|
+
chain_name: 'emoney'
|
|
1310
|
+
},
|
|
1311
|
+
chain: {
|
|
1312
|
+
channel_id: 'channel-9'
|
|
1313
|
+
}
|
|
1314
|
+
}]
|
|
1315
|
+
}, {
|
|
1316
|
+
description: 'e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.',
|
|
1317
|
+
denom_units: [{
|
|
1318
|
+
denom: 'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1319
|
+
exponent: 0,
|
|
1320
|
+
aliases: ['enok']
|
|
1321
|
+
}, {
|
|
1322
|
+
denom: 'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1323
|
+
exponent: 6,
|
|
1324
|
+
aliases: ['enok']
|
|
1325
|
+
}],
|
|
1326
|
+
base: 'ibc/9BE96C01CFAF0AF7AF505AEF9E70C6F3DA04C79DAD4480722B1F537D6B6E04A5',
|
|
1327
|
+
name: 'e-Money NOK',
|
|
1328
|
+
display: 'nok',
|
|
1329
|
+
symbol: 'ENOK',
|
|
1330
|
+
logo_URIs: {
|
|
1331
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png'
|
|
1332
|
+
},
|
|
1333
|
+
coingecko_id: '',
|
|
1334
|
+
traces: [{
|
|
1335
|
+
type: 'ibc',
|
|
1336
|
+
counterparty: {
|
|
1337
|
+
channel_id: 'channel-15',
|
|
1338
|
+
base_denom: 'enok',
|
|
1339
|
+
chain_name: 'emoney'
|
|
1340
|
+
},
|
|
1341
|
+
chain: {
|
|
1342
|
+
channel_id: 'channel-9'
|
|
1343
|
+
}
|
|
1344
|
+
}]
|
|
1345
|
+
}, {
|
|
1346
|
+
description: 'e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.',
|
|
1347
|
+
denom_units: [{
|
|
1348
|
+
denom: 'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1349
|
+
exponent: 0,
|
|
1350
|
+
aliases: ['edkk']
|
|
1351
|
+
}, {
|
|
1352
|
+
denom: 'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1353
|
+
exponent: 6,
|
|
1354
|
+
aliases: ['edkk']
|
|
1355
|
+
}],
|
|
1356
|
+
base: 'ibc/FD7935608ED5FF20F07FD029342E49B1EBD7265FCD4CC5BFC2AE17BF845B336D',
|
|
1357
|
+
name: 'e-Money DKK',
|
|
1358
|
+
display: 'dkk',
|
|
1359
|
+
symbol: 'EDKK',
|
|
1360
|
+
logo_URIs: {
|
|
1361
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png'
|
|
1362
|
+
},
|
|
1363
|
+
coingecko_id: '',
|
|
1364
|
+
traces: [{
|
|
1365
|
+
type: 'ibc',
|
|
1366
|
+
counterparty: {
|
|
1367
|
+
channel_id: 'channel-15',
|
|
1368
|
+
base_denom: 'edkk',
|
|
1369
|
+
chain_name: 'emoney'
|
|
1370
|
+
},
|
|
1371
|
+
chain: {
|
|
1372
|
+
channel_id: 'channel-9'
|
|
1373
|
+
}
|
|
1374
|
+
}]
|
|
1375
|
+
}, {
|
|
1376
|
+
description: 'e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.',
|
|
1377
|
+
denom_units: [{
|
|
1378
|
+
denom: 'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1379
|
+
exponent: 0,
|
|
1380
|
+
aliases: ['esek']
|
|
1381
|
+
}, {
|
|
1382
|
+
denom: 'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1383
|
+
exponent: 6,
|
|
1384
|
+
aliases: ['esek']
|
|
1385
|
+
}],
|
|
1386
|
+
base: 'ibc/A62F3F3A9D4C91BA3853659411944619A456361CE78EAFC8E6F4C49E52561F08',
|
|
1387
|
+
name: 'e-Money SEK',
|
|
1388
|
+
display: 'sek',
|
|
1389
|
+
symbol: 'ESEK',
|
|
1390
|
+
logo_URIs: {
|
|
1391
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png'
|
|
1392
|
+
},
|
|
1393
|
+
coingecko_id: '',
|
|
1394
|
+
traces: [{
|
|
1395
|
+
type: 'ibc',
|
|
1396
|
+
counterparty: {
|
|
1397
|
+
channel_id: 'channel-15',
|
|
1398
|
+
base_denom: 'esek',
|
|
1399
|
+
chain_name: 'emoney'
|
|
1400
|
+
},
|
|
1401
|
+
chain: {
|
|
1402
|
+
channel_id: 'channel-9'
|
|
1403
|
+
}
|
|
1404
|
+
}]
|
|
1285
1405
|
}, {
|
|
1286
1406
|
description: 'The native token of Osmosis',
|
|
1287
1407
|
denom_units: [{
|
package/main/chain.js
CHANGED
|
@@ -62,6 +62,10 @@ var chain = {
|
|
|
62
62
|
id: '20e1000e88125698264454a884812746c2eb4807',
|
|
63
63
|
address: 'seeds.lavenderfive.com:12656',
|
|
64
64
|
provider: 'Lavender.Five Nodes 🐝'
|
|
65
|
+
}, {
|
|
66
|
+
id: 'ea67180befe4d9ca71142d21ada8ff58cc08f71c',
|
|
67
|
+
address: 'seeds.goldenratiostaking.net:1627',
|
|
68
|
+
provider: 'Golden Ratio Staking'
|
|
65
69
|
}],
|
|
66
70
|
persistent_peers: [{
|
|
67
71
|
id: 'b1f46f1a1955fc773d3b73180179b0e0a07adce1',
|
|
@@ -114,9 +118,6 @@ var chain = {
|
|
|
114
118
|
}, {
|
|
115
119
|
address: 'https://rpc.juno.pupmos.network',
|
|
116
120
|
provider: 'PUPMØS'
|
|
117
|
-
}, {
|
|
118
|
-
address: 'https://rpc.junomint.com',
|
|
119
|
-
provider: 'EZStaking.io'
|
|
120
121
|
}, {
|
|
121
122
|
address: 'https://rpc-juno-ia.cosmosia.notional.ventures/',
|
|
122
123
|
provider: 'Notional'
|
|
@@ -135,6 +136,15 @@ var chain = {
|
|
|
135
136
|
}, {
|
|
136
137
|
address: 'https://juno.nodejumper.io',
|
|
137
138
|
provider: 'Nodejumper 🚀'
|
|
139
|
+
}, {
|
|
140
|
+
address: 'https://juno.rpc.stakin.com',
|
|
141
|
+
provider: 'Stakin'
|
|
142
|
+
}, {
|
|
143
|
+
address: 'https://juno-rpc.icycro.org',
|
|
144
|
+
provider: 'IcyCRO 🧊'
|
|
145
|
+
}, {
|
|
146
|
+
address: 'https://rpc-juno.goldenratiostaking.net',
|
|
147
|
+
provider: 'Golden Ratio Staking'
|
|
138
148
|
}],
|
|
139
149
|
rest: [{
|
|
140
150
|
address: 'https://lcd-juno.whispernode.com',
|
|
@@ -151,9 +161,6 @@ var chain = {
|
|
|
151
161
|
}, {
|
|
152
162
|
address: 'https://api.juno.pupmos.network',
|
|
153
163
|
provider: 'PUPMØS'
|
|
154
|
-
}, {
|
|
155
|
-
address: 'https://lcd.junomint.com',
|
|
156
|
-
provider: 'EZStaking.io'
|
|
157
164
|
}, {
|
|
158
165
|
address: 'https://api-juno-ia.cosmosia.notional.ventures/',
|
|
159
166
|
provider: 'Notional'
|
|
@@ -175,6 +182,9 @@ var chain = {
|
|
|
175
182
|
}, {
|
|
176
183
|
address: 'https://juno.nodejumper.io:1317',
|
|
177
184
|
provider: 'Nodejumper 🚀'
|
|
185
|
+
}, {
|
|
186
|
+
address: 'https://juno.rest.stakin.com',
|
|
187
|
+
provider: 'Stakin'
|
|
178
188
|
}],
|
|
179
189
|
grpc: [{
|
|
180
190
|
address: '35.243.205.230:9090',
|
|
@@ -197,9 +207,16 @@ var chain = {
|
|
|
197
207
|
}, {
|
|
198
208
|
address: 'https://juno.nodejumper.io:9090',
|
|
199
209
|
provider: 'Nodejumper 🚀'
|
|
210
|
+
}, {
|
|
211
|
+
address: 'juno.grpc.stakin.com:443',
|
|
212
|
+
provider: 'Stakin'
|
|
200
213
|
}]
|
|
201
214
|
},
|
|
202
215
|
explorers: [{
|
|
216
|
+
kind: 'EZStaking Tools',
|
|
217
|
+
url: 'https://ezstaking.tools/juno',
|
|
218
|
+
tx_page: 'https://ezstaking.tools/juno/txs/${txHash}'
|
|
219
|
+
}, {
|
|
203
220
|
kind: 'ping.pub',
|
|
204
221
|
url: 'https://ping.pub/juno',
|
|
205
222
|
tx_page: 'https://ping.pub/juno/tx/${txHash}'
|
package/main/testnet.js
CHANGED
|
@@ -51,9 +51,6 @@ var testnet = {
|
|
|
51
51
|
},
|
|
52
52
|
apis: {
|
|
53
53
|
rpc: [{
|
|
54
|
-
address: 'https://rpc.uni.junomint.com',
|
|
55
|
-
provider: 'EZStaking.io'
|
|
56
|
-
}, {
|
|
57
54
|
address: 'https://rpc.uni.junonetwork.io',
|
|
58
55
|
provider: 'Juno'
|
|
59
56
|
}, {
|
|
@@ -61,9 +58,6 @@ var testnet = {
|
|
|
61
58
|
provider: 'Polkachu'
|
|
62
59
|
}],
|
|
63
60
|
rest: [{
|
|
64
|
-
address: 'https://lcd.uni.junomint.com',
|
|
65
|
-
provider: 'EZStaking.io'
|
|
66
|
-
}, {
|
|
67
61
|
address: 'https://api.uni.junonetwork.io',
|
|
68
62
|
provider: 'Juno'
|
|
69
63
|
}, {
|
|
@@ -76,6 +70,10 @@ var testnet = {
|
|
|
76
70
|
}]
|
|
77
71
|
},
|
|
78
72
|
explorers: [{
|
|
73
|
+
kind: 'EZStaking Tools',
|
|
74
|
+
url: 'https://testnet.ezstaking.tools/juno-testnet',
|
|
75
|
+
tx_page: 'https://testnet.ezstaking.tools/juno-testnet/txs/${txHash}'
|
|
76
|
+
}, {
|
|
79
77
|
kind: 'Mintscan',
|
|
80
78
|
url: 'https://testnet.mintscan.io/juno-testnet',
|
|
81
79
|
tx_page: 'https://testnet.mintscan.io/juno-testnet/txs/${txHash}'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.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",
|
|
@@ -57,7 +57,7 @@
|
|
|
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.4.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.25.0",
|
|
63
63
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"@babel/runtime": "^7.19.4",
|
|
76
76
|
"@chain-registry/types": "^0.13.1"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "92a7812148b27e5694178dad79077a129d06fae1"
|
|
79
79
|
}
|