chain-registry 2.0.110 → 2.0.111
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/esm/mainnet/atomone/chain.js +18 -0
- package/mainnet/atomone/chain.js +18 -0
- package/package.json +3 -3
|
@@ -175,6 +175,10 @@ const info = {
|
|
|
175
175
|
{
|
|
176
176
|
address: 'https://rpc.atomone.indonode.net:443',
|
|
177
177
|
provider: 'Indonode'
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
address: 'https://atomone-rpc.nyan-cat.net',
|
|
181
|
+
provider: 'NyanCat'
|
|
178
182
|
}
|
|
179
183
|
],
|
|
180
184
|
rest: [
|
|
@@ -289,6 +293,10 @@ const info = {
|
|
|
289
293
|
{
|
|
290
294
|
address: 'https://api.atomone.indonode.net',
|
|
291
295
|
provider: 'Indonode'
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
address: 'https://atomone-api.nyan-cat.net',
|
|
299
|
+
provider: 'NyanCat'
|
|
292
300
|
}
|
|
293
301
|
],
|
|
294
302
|
grpc: [
|
|
@@ -367,6 +375,10 @@ const info = {
|
|
|
367
375
|
{
|
|
368
376
|
address: 'grpc.atomone-archive.citizenweb3.com:443',
|
|
369
377
|
provider: 'Citizen Web3'
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
address: 'atomone-grpc.nyan-cat.net',
|
|
381
|
+
provider: 'NyanCat'
|
|
370
382
|
}
|
|
371
383
|
]
|
|
372
384
|
},
|
|
@@ -478,6 +490,12 @@ const info = {
|
|
|
478
490
|
url: 'https://explorer.indonode.net/atomone/staking',
|
|
479
491
|
txPage: 'https://explorer.indonode.net/atomone/tx/${txHash}',
|
|
480
492
|
accountPage: 'https://explorer.indonode.net/atomone/account/${accountAddress}'
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
kind: 'NyanCat',
|
|
496
|
+
url: 'https://explorer.nyan-cat.net/atomone',
|
|
497
|
+
txPage: 'https://explorer.nyan-cat.net/atomone/tx/${txHash}',
|
|
498
|
+
accountPage: 'https://explorer.nyan-cat.net/atomone/account/${accountAddress}'
|
|
481
499
|
}
|
|
482
500
|
],
|
|
483
501
|
images: [{
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -177,6 +177,10 @@ const info = {
|
|
|
177
177
|
{
|
|
178
178
|
address: 'https://rpc.atomone.indonode.net:443',
|
|
179
179
|
provider: 'Indonode'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
address: 'https://atomone-rpc.nyan-cat.net',
|
|
183
|
+
provider: 'NyanCat'
|
|
180
184
|
}
|
|
181
185
|
],
|
|
182
186
|
rest: [
|
|
@@ -291,6 +295,10 @@ const info = {
|
|
|
291
295
|
{
|
|
292
296
|
address: 'https://api.atomone.indonode.net',
|
|
293
297
|
provider: 'Indonode'
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
address: 'https://atomone-api.nyan-cat.net',
|
|
301
|
+
provider: 'NyanCat'
|
|
294
302
|
}
|
|
295
303
|
],
|
|
296
304
|
grpc: [
|
|
@@ -369,6 +377,10 @@ const info = {
|
|
|
369
377
|
{
|
|
370
378
|
address: 'grpc.atomone-archive.citizenweb3.com:443',
|
|
371
379
|
provider: 'Citizen Web3'
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
address: 'atomone-grpc.nyan-cat.net',
|
|
383
|
+
provider: 'NyanCat'
|
|
372
384
|
}
|
|
373
385
|
]
|
|
374
386
|
},
|
|
@@ -480,6 +492,12 @@ const info = {
|
|
|
480
492
|
url: 'https://explorer.indonode.net/atomone/staking',
|
|
481
493
|
txPage: 'https://explorer.indonode.net/atomone/tx/${txHash}',
|
|
482
494
|
accountPage: 'https://explorer.indonode.net/atomone/account/${accountAddress}'
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
kind: 'NyanCat',
|
|
498
|
+
url: 'https://explorer.nyan-cat.net/atomone',
|
|
499
|
+
txPage: 'https://explorer.nyan-cat.net/atomone/tx/${txHash}',
|
|
500
|
+
accountPage: 'https://explorer.nyan-cat.net/atomone/account/${accountAddress}'
|
|
483
501
|
}
|
|
484
502
|
],
|
|
485
503
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.111",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.111"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "7a840333b76567d256a9fdbdddef3311efd3c039"
|
|
43
43
|
}
|