chain-registry 2.0.59 → 2.0.60
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 +14 -0
- package/mainnet/atomone/chain.js +14 -0
- package/package.json +3 -3
|
@@ -158,6 +158,10 @@ const info = {
|
|
|
158
158
|
{
|
|
159
159
|
address: 'https://atomone-rpc.kynraze.com:443',
|
|
160
160
|
provider: 'kynraze'
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
address: 'https://atomone-rpc.stakerhouse.com',
|
|
164
|
+
provider: 'StakerHouse'
|
|
161
165
|
}
|
|
162
166
|
],
|
|
163
167
|
rest: [
|
|
@@ -256,6 +260,10 @@ const info = {
|
|
|
256
260
|
{
|
|
257
261
|
address: 'https://atomone-api.kynraze.com:443',
|
|
258
262
|
provider: 'kynraze'
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
address: 'https://atomone-rest.stakerhouse.com',
|
|
266
|
+
provider: 'StakerHouse'
|
|
259
267
|
}
|
|
260
268
|
],
|
|
261
269
|
grpc: [
|
|
@@ -413,6 +421,12 @@ const info = {
|
|
|
413
421
|
url: 'https://explorer.kynraze.com/atomone',
|
|
414
422
|
txPage: 'https://explorer.kynraze.com/atomone/tx/${txHash}',
|
|
415
423
|
accountPage: 'https://explorer.kynraze.com/atomone/account/${accountAddress}'
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
kind: 'Cosmotracker',
|
|
427
|
+
url: 'https://cosmotracker.com/atomone',
|
|
428
|
+
txPage: 'https://cosmotracker.com/atomone/tx/${txHash}',
|
|
429
|
+
accountPage: 'https://cosmotracker.com/atomone/account/${accountAddress}'
|
|
416
430
|
}
|
|
417
431
|
],
|
|
418
432
|
images: [{
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -160,6 +160,10 @@ const info = {
|
|
|
160
160
|
{
|
|
161
161
|
address: 'https://atomone-rpc.kynraze.com:443',
|
|
162
162
|
provider: 'kynraze'
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
address: 'https://atomone-rpc.stakerhouse.com',
|
|
166
|
+
provider: 'StakerHouse'
|
|
163
167
|
}
|
|
164
168
|
],
|
|
165
169
|
rest: [
|
|
@@ -258,6 +262,10 @@ const info = {
|
|
|
258
262
|
{
|
|
259
263
|
address: 'https://atomone-api.kynraze.com:443',
|
|
260
264
|
provider: 'kynraze'
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
address: 'https://atomone-rest.stakerhouse.com',
|
|
268
|
+
provider: 'StakerHouse'
|
|
261
269
|
}
|
|
262
270
|
],
|
|
263
271
|
grpc: [
|
|
@@ -415,6 +423,12 @@ const info = {
|
|
|
415
423
|
url: 'https://explorer.kynraze.com/atomone',
|
|
416
424
|
txPage: 'https://explorer.kynraze.com/atomone/tx/${txHash}',
|
|
417
425
|
accountPage: 'https://explorer.kynraze.com/atomone/account/${accountAddress}'
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
kind: 'Cosmotracker',
|
|
429
|
+
url: 'https://cosmotracker.com/atomone',
|
|
430
|
+
txPage: 'https://cosmotracker.com/atomone/tx/${txHash}',
|
|
431
|
+
accountPage: 'https://cosmotracker.com/atomone/account/${accountAddress}'
|
|
418
432
|
}
|
|
419
433
|
],
|
|
420
434
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.60",
|
|
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.60"
|
|
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": "05c47b6aa9479f303d7297d2ae388c9b84996936"
|
|
43
43
|
}
|