chain-registry 1.69.200 → 1.69.201
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/agoric/chain.js +6 -0
- package/esm/mainnet/elys/chain.js +7 -7
- package/esm/mainnet/milkyway/chain.js +6 -1
- package/esm/mainnet/secretnetwork/chain.js +6 -0
- package/mainnet/agoric/chain.js +6 -0
- package/mainnet/elys/chain.js +7 -7
- package/mainnet/milkyway/chain.js +6 -1
- package/mainnet/secretnetwork/chain.js +6 -0
- package/package.json +4 -4
|
@@ -240,6 +240,12 @@ const info = {
|
|
|
240
240
|
url: 'https://explorer.stavr.tech/Agoric',
|
|
241
241
|
tx_page: 'https://explorer.stavr.tech/Agoric/tx/${txHash}',
|
|
242
242
|
account_page: 'https://explorer.stavr.tech/Agoric/account/${accountAddress}'
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
kind: 'Valopers',
|
|
246
|
+
url: 'https://agoric.valopers.com/',
|
|
247
|
+
tx_page: 'https://agoric.valopers.com/transactions/${txHash}',
|
|
248
|
+
account_page: 'https://agoric.valopers.com/account/${accountAddress}'
|
|
243
249
|
}
|
|
244
250
|
],
|
|
245
251
|
images: [{
|
|
@@ -146,12 +146,12 @@ const info = {
|
|
|
146
146
|
provider: 'Node39'
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
|
-
address: 'https://elys.rpc.vnodesv.net:443',
|
|
150
|
-
provider: 'vNodes[V]
|
|
149
|
+
address: 'https://elys.rpc.mtl.vnodesv.net:443',
|
|
150
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
address: 'https://elys.rpc.fr.vnodesv.net:443',
|
|
154
|
-
provider: 'vNodes[V]
|
|
154
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
address: 'https://elys-rpc.kleomedes.network/',
|
|
@@ -236,12 +236,12 @@ const info = {
|
|
|
236
236
|
provider: 'Node39'
|
|
237
237
|
},
|
|
238
238
|
{
|
|
239
|
-
address: 'https://elys.rest.vnodesv.net:443',
|
|
240
|
-
provider: 'vNodes[V]
|
|
239
|
+
address: 'https://elys.rest.mtl.vnodesv.net:443',
|
|
240
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
241
241
|
},
|
|
242
242
|
{
|
|
243
243
|
address: 'https://elys.rest.fr.vnodesv.net:443',
|
|
244
|
-
provider: 'vNodes[V]
|
|
244
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
247
|
address: 'https://elys-api.kleomedes.network/',
|
|
@@ -315,7 +315,7 @@ const info = {
|
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
address: 'https://elys.grpc.fr.vnodesv.net:443',
|
|
318
|
-
provider: 'vNodes[V]
|
|
318
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
319
319
|
}
|
|
320
320
|
]
|
|
321
321
|
},
|
|
@@ -154,7 +154,12 @@ const info = {
|
|
|
154
154
|
provider: 'MilkyWay Labs'
|
|
155
155
|
}]
|
|
156
156
|
},
|
|
157
|
-
explorers: [
|
|
157
|
+
explorers: [{
|
|
158
|
+
kind: 'Valopers',
|
|
159
|
+
url: 'https://milkyway.valopers.com/',
|
|
160
|
+
tx_page: 'https://milkyway.valopers.com/transactions/${txHash}',
|
|
161
|
+
account_page: 'https://milkyway.valopers.com/account/${accountAddress}'
|
|
162
|
+
}],
|
|
158
163
|
keywords: ['liquid staking', 'restaking']
|
|
159
164
|
};
|
|
160
165
|
export default info;
|
|
@@ -151,6 +151,12 @@ const info = {
|
|
|
151
151
|
url: 'https://mainnet.whispernode.com/secret',
|
|
152
152
|
tx_page: 'https://mainnet.whispernode.com/secret/tx/${txHash}',
|
|
153
153
|
account_page: 'https://mainnet.whispernode.com/secret/account/${accountAddress}'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
kind: 'Valopers',
|
|
157
|
+
url: 'https://secret.valopers.com/',
|
|
158
|
+
tx_page: 'https://secret.valopers.com/transactions/${txHash}',
|
|
159
|
+
account_page: 'https://secret.valopers.com/account/${accountAddress}'
|
|
154
160
|
}
|
|
155
161
|
],
|
|
156
162
|
images: [{
|
package/mainnet/agoric/chain.js
CHANGED
|
@@ -242,6 +242,12 @@ const info = {
|
|
|
242
242
|
url: 'https://explorer.stavr.tech/Agoric',
|
|
243
243
|
tx_page: 'https://explorer.stavr.tech/Agoric/tx/${txHash}',
|
|
244
244
|
account_page: 'https://explorer.stavr.tech/Agoric/account/${accountAddress}'
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
kind: 'Valopers',
|
|
248
|
+
url: 'https://agoric.valopers.com/',
|
|
249
|
+
tx_page: 'https://agoric.valopers.com/transactions/${txHash}',
|
|
250
|
+
account_page: 'https://agoric.valopers.com/account/${accountAddress}'
|
|
245
251
|
}
|
|
246
252
|
],
|
|
247
253
|
images: [{
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -148,12 +148,12 @@ const info = {
|
|
|
148
148
|
provider: 'Node39'
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
|
-
address: 'https://elys.rpc.vnodesv.net:443',
|
|
152
|
-
provider: 'vNodes[V]
|
|
151
|
+
address: 'https://elys.rpc.mtl.vnodesv.net:443',
|
|
152
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
address: 'https://elys.rpc.fr.vnodesv.net:443',
|
|
156
|
-
provider: 'vNodes[V]
|
|
156
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
address: 'https://elys-rpc.kleomedes.network/',
|
|
@@ -238,12 +238,12 @@ const info = {
|
|
|
238
238
|
provider: 'Node39'
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
|
-
address: 'https://elys.rest.vnodesv.net:443',
|
|
242
|
-
provider: 'vNodes[V]
|
|
241
|
+
address: 'https://elys.rest.mtl.vnodesv.net:443',
|
|
242
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
address: 'https://elys.rest.fr.vnodesv.net:443',
|
|
246
|
-
provider: 'vNodes[V]
|
|
246
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
address: 'https://elys-api.kleomedes.network/',
|
|
@@ -317,7 +317,7 @@ const info = {
|
|
|
317
317
|
},
|
|
318
318
|
{
|
|
319
319
|
address: 'https://elys.grpc.fr.vnodesv.net:443',
|
|
320
|
-
provider: 'vNodes[V]
|
|
320
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
321
321
|
}
|
|
322
322
|
]
|
|
323
323
|
},
|
|
@@ -156,7 +156,12 @@ const info = {
|
|
|
156
156
|
provider: 'MilkyWay Labs'
|
|
157
157
|
}]
|
|
158
158
|
},
|
|
159
|
-
explorers: [
|
|
159
|
+
explorers: [{
|
|
160
|
+
kind: 'Valopers',
|
|
161
|
+
url: 'https://milkyway.valopers.com/',
|
|
162
|
+
tx_page: 'https://milkyway.valopers.com/transactions/${txHash}',
|
|
163
|
+
account_page: 'https://milkyway.valopers.com/account/${accountAddress}'
|
|
164
|
+
}],
|
|
160
165
|
keywords: ['liquid staking', 'restaking']
|
|
161
166
|
};
|
|
162
167
|
exports.default = info;
|
|
@@ -153,6 +153,12 @@ const info = {
|
|
|
153
153
|
url: 'https://mainnet.whispernode.com/secret',
|
|
154
154
|
tx_page: 'https://mainnet.whispernode.com/secret/tx/${txHash}',
|
|
155
155
|
account_page: 'https://mainnet.whispernode.com/secret/account/${accountAddress}'
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
kind: 'Valopers',
|
|
159
|
+
url: 'https://secret.valopers.com/',
|
|
160
|
+
tx_page: 'https://secret.valopers.com/transactions/${txHash}',
|
|
161
|
+
account_page: 'https://secret.valopers.com/account/${accountAddress}'
|
|
156
162
|
}
|
|
157
163
|
],
|
|
158
164
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.201",
|
|
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,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.128",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.128"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "251d2141c244a69dc5ae0252f0addfeee9e7a165"
|
|
47
47
|
}
|