@chain-registry/juno 1.70.47 → 1.70.49
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/chain.js +18 -0
- package/esm/chain.js +18 -0
- package/package.json +4 -4
package/chain.js
CHANGED
|
@@ -149,6 +149,10 @@ const chain = {
|
|
|
149
149
|
{
|
|
150
150
|
address: 'https://juno.rpc.nodeshub.online:443',
|
|
151
151
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
address: 'https://juno-rpc.chainroot.io',
|
|
155
|
+
provider: 'Chainroot'
|
|
152
156
|
}
|
|
153
157
|
],
|
|
154
158
|
rest: [
|
|
@@ -247,6 +251,10 @@ const chain = {
|
|
|
247
251
|
{
|
|
248
252
|
address: 'https://juno.api.nodeshub.online:443',
|
|
249
253
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅'
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
address: 'https://juno-api.chainroot.io',
|
|
257
|
+
provider: 'Chainroot'
|
|
250
258
|
}
|
|
251
259
|
],
|
|
252
260
|
grpc: [
|
|
@@ -333,6 +341,10 @@ const chain = {
|
|
|
333
341
|
{
|
|
334
342
|
address: 'https://juno.grpc.nodeshub.online',
|
|
335
343
|
provider: 'Nodes Hub'
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
address: 'juno-grpc.chainroot.io:443',
|
|
347
|
+
provider: 'Chainroot'
|
|
336
348
|
}
|
|
337
349
|
]
|
|
338
350
|
},
|
|
@@ -403,6 +415,12 @@ const chain = {
|
|
|
403
415
|
url: 'https://mainnet.whispernode.com/juno',
|
|
404
416
|
tx_page: 'https://mainnet.whispernode.com/juno/tx/${txHash}',
|
|
405
417
|
account_page: 'https://mainnet.whispernode.com/juno/account/${accountAddress}'
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
kind: 'Chainroot',
|
|
421
|
+
url: 'https://explorer.chainroot.io/juno',
|
|
422
|
+
tx_page: 'https://explorer.chainroot.io/juno/transactions/${txHash}',
|
|
423
|
+
account_page: 'https://explorer.chainroot.io/juno/accounts/${accountAddress}'
|
|
406
424
|
}
|
|
407
425
|
],
|
|
408
426
|
images: [{
|
package/esm/chain.js
CHANGED
|
@@ -147,6 +147,10 @@ const chain = {
|
|
|
147
147
|
{
|
|
148
148
|
address: 'https://juno.rpc.nodeshub.online:443',
|
|
149
149
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://juno-rpc.chainroot.io',
|
|
153
|
+
provider: 'Chainroot'
|
|
150
154
|
}
|
|
151
155
|
],
|
|
152
156
|
rest: [
|
|
@@ -245,6 +249,10 @@ const chain = {
|
|
|
245
249
|
{
|
|
246
250
|
address: 'https://juno.api.nodeshub.online:443',
|
|
247
251
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️ | Restake ✅'
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
address: 'https://juno-api.chainroot.io',
|
|
255
|
+
provider: 'Chainroot'
|
|
248
256
|
}
|
|
249
257
|
],
|
|
250
258
|
grpc: [
|
|
@@ -331,6 +339,10 @@ const chain = {
|
|
|
331
339
|
{
|
|
332
340
|
address: 'https://juno.grpc.nodeshub.online',
|
|
333
341
|
provider: 'Nodes Hub'
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
address: 'juno-grpc.chainroot.io:443',
|
|
345
|
+
provider: 'Chainroot'
|
|
334
346
|
}
|
|
335
347
|
]
|
|
336
348
|
},
|
|
@@ -401,6 +413,12 @@ const chain = {
|
|
|
401
413
|
url: 'https://mainnet.whispernode.com/juno',
|
|
402
414
|
tx_page: 'https://mainnet.whispernode.com/juno/tx/${txHash}',
|
|
403
415
|
account_page: 'https://mainnet.whispernode.com/juno/account/${accountAddress}'
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
kind: 'Chainroot',
|
|
419
|
+
url: 'https://explorer.chainroot.io/juno',
|
|
420
|
+
tx_page: 'https://explorer.chainroot.io/juno/transactions/${txHash}',
|
|
421
|
+
account_page: 'https://explorer.chainroot.io/juno/accounts/${accountAddress}'
|
|
404
422
|
}
|
|
405
423
|
],
|
|
406
424
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.70.
|
|
3
|
+
"version": "1.70.49",
|
|
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",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"chain-registry": "^1.69.
|
|
32
|
+
"chain-registry": "^1.69.49"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@chain-registry/types": "^0.50.
|
|
35
|
+
"@chain-registry/types": "^0.50.25"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"tokens",
|
|
44
44
|
"juno"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "af5a7b27e6a65fc54359544ff0246b702dae256c"
|
|
47
47
|
}
|