chain-registry 2.0.98 → 2.0.99
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 +9 -9
- package/esm/mainnet/atomone/chain.js +18 -0
- package/esm/mainnet/dydx/chain.js +4 -4
- package/esm/mainnet/intento/asset-list.js +7 -2
- package/mainnet/agoric/chain.js +9 -9
- package/mainnet/atomone/chain.js +18 -0
- package/mainnet/dydx/chain.js +4 -4
- package/mainnet/intento/asset-list.js +7 -2
- package/package.json +3 -3
|
@@ -30,13 +30,13 @@ const info = {
|
|
|
30
30
|
genesis: {
|
|
31
31
|
genesisUrl: 'https://main.agoric.net/genesis.json'
|
|
32
32
|
},
|
|
33
|
-
recommendedVersion: 'agoric-upgrade-
|
|
34
|
-
compatibleVersions: ['agoric-upgrade-
|
|
33
|
+
recommendedVersion: 'agoric-upgrade-22',
|
|
34
|
+
compatibleVersions: ['agoric-upgrade-22'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
|
-
version: 'v0.
|
|
37
|
+
version: 'v0.38.17',
|
|
38
38
|
repo: 'https://github.com/agoric-labs/cometbft',
|
|
39
|
-
tag: 'v0.
|
|
39
|
+
tag: 'v0.38.17-alpha.agoric.1.1'
|
|
40
40
|
},
|
|
41
41
|
cosmwasm: {
|
|
42
42
|
enabled: false
|
|
@@ -48,17 +48,17 @@ const info = {
|
|
|
48
48
|
sdk: {
|
|
49
49
|
type: 'cosmos',
|
|
50
50
|
repo: 'https://github.com/agoric-labs/cosmos-sdk',
|
|
51
|
-
version: 'v0.
|
|
52
|
-
tag: 'v0.
|
|
51
|
+
version: 'v0.50.14',
|
|
52
|
+
tag: 'v0.50.14-alpha.agoric.3'
|
|
53
53
|
},
|
|
54
54
|
ibc: {
|
|
55
55
|
type: 'go',
|
|
56
|
-
version: '
|
|
56
|
+
version: 'v8.7.0',
|
|
57
57
|
repo: 'https://github.com/agoric-labs/ibc-go',
|
|
58
|
-
tag: '
|
|
58
|
+
tag: 'v8.7.0-alpha.agoric.1',
|
|
59
59
|
icsEnabled: ['ics20-1']
|
|
60
60
|
},
|
|
61
|
-
tag: 'agoric-upgrade-
|
|
61
|
+
tag: 'agoric-upgrade-22b'
|
|
62
62
|
},
|
|
63
63
|
logoURIs: {
|
|
64
64
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png',
|
|
@@ -163,6 +163,10 @@ const info = {
|
|
|
163
163
|
{
|
|
164
164
|
address: 'https://atomone-rpc.stakerhouse.com',
|
|
165
165
|
provider: 'StakerHouse'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
address: 'https://mainnet-atomone-rpc.konsortech.xyz/',
|
|
169
|
+
provider: 'KonsorTech'
|
|
166
170
|
}
|
|
167
171
|
],
|
|
168
172
|
rest: [
|
|
@@ -265,6 +269,10 @@ const info = {
|
|
|
265
269
|
{
|
|
266
270
|
address: 'https://atomone-rest.stakerhouse.com',
|
|
267
271
|
provider: 'StakerHouse'
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
address: 'https://mainnet-atomone-api.konsortech.xyz/',
|
|
275
|
+
provider: 'KonsorTech'
|
|
268
276
|
}
|
|
269
277
|
],
|
|
270
278
|
grpc: [
|
|
@@ -335,6 +343,10 @@ const info = {
|
|
|
335
343
|
{
|
|
336
344
|
address: 'atomone-grpc.kynraze.com:77',
|
|
337
345
|
provider: 'kynraze'
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
address: 'mainnet-atomone.konsortech.xyz:12090',
|
|
349
|
+
provider: 'KonsorTech'
|
|
338
350
|
}
|
|
339
351
|
]
|
|
340
352
|
},
|
|
@@ -428,6 +440,12 @@ const info = {
|
|
|
428
440
|
url: 'https://cosmotracker.com/atomone',
|
|
429
441
|
txPage: 'https://cosmotracker.com/atomone/tx/${txHash}',
|
|
430
442
|
accountPage: 'https://cosmotracker.com/atomone/account/${accountAddress}'
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
kind: 'KonsorTech',
|
|
446
|
+
url: 'https://explorer.konsortech.xyz/atomone',
|
|
447
|
+
txPage: 'https://explorer.konsortech.xyz/atomone/tx/${txHash}',
|
|
448
|
+
accountPage: 'https://explorer.konsortech.xyz/atomone/account/${accountAddress}'
|
|
431
449
|
}
|
|
432
450
|
],
|
|
433
451
|
images: [{
|
|
@@ -34,11 +34,11 @@ const info = {
|
|
|
34
34
|
},
|
|
35
35
|
codebase: {
|
|
36
36
|
gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
|
|
37
|
-
recommendedVersion: 'protocol/v9.
|
|
38
|
-
compatibleVersions: ['protocol/v9.
|
|
37
|
+
recommendedVersion: 'protocol/v9.4.0',
|
|
38
|
+
compatibleVersions: ['protocol/v9.4.0'],
|
|
39
39
|
binaries: {
|
|
40
|
-
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
41
|
-
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
40
|
+
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-amd64.tar.gz',
|
|
41
|
+
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-arm64.tar.gz'
|
|
42
42
|
},
|
|
43
43
|
consensus: {
|
|
44
44
|
type: 'cometbft',
|
|
@@ -3,7 +3,8 @@ const info = {
|
|
|
3
3
|
chainName: 'intento',
|
|
4
4
|
assets: [
|
|
5
5
|
{
|
|
6
|
-
description: 'The native token of
|
|
6
|
+
description: 'The native token of Intento',
|
|
7
|
+
extendedDescription: 'Intento is a purpose-built blockchain for orchestrating intent-driven actions across chains. It enables secure, self-custodial execution of flows using real-time inputs, and IBC — no smart contracts required. At its core is the intent engine, supported by trustless agents that execute cross-chain actions in a self-custodial manner. This design allows users to build anything from streaming tokens to complex interchain workflows, turning intent into action across the interchain.',
|
|
7
8
|
denomUnits: [{
|
|
8
9
|
denom: 'uinto',
|
|
9
10
|
exponent: 0
|
|
@@ -23,7 +24,11 @@ const info = {
|
|
|
23
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
|
|
24
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
|
|
25
26
|
}],
|
|
26
|
-
typeAsset: 'sdk.coin'
|
|
27
|
+
typeAsset: 'sdk.coin',
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://intento.zone',
|
|
30
|
+
x: 'https://x.com/intentozone'
|
|
31
|
+
}
|
|
27
32
|
},
|
|
28
33
|
{
|
|
29
34
|
description: 'The staking token of the Cosmos Hub',
|
package/mainnet/agoric/chain.js
CHANGED
|
@@ -32,13 +32,13 @@ const info = {
|
|
|
32
32
|
genesis: {
|
|
33
33
|
genesisUrl: 'https://main.agoric.net/genesis.json'
|
|
34
34
|
},
|
|
35
|
-
recommendedVersion: 'agoric-upgrade-
|
|
36
|
-
compatibleVersions: ['agoric-upgrade-
|
|
35
|
+
recommendedVersion: 'agoric-upgrade-22',
|
|
36
|
+
compatibleVersions: ['agoric-upgrade-22'],
|
|
37
37
|
consensus: {
|
|
38
38
|
type: 'cometbft',
|
|
39
|
-
version: 'v0.
|
|
39
|
+
version: 'v0.38.17',
|
|
40
40
|
repo: 'https://github.com/agoric-labs/cometbft',
|
|
41
|
-
tag: 'v0.
|
|
41
|
+
tag: 'v0.38.17-alpha.agoric.1.1'
|
|
42
42
|
},
|
|
43
43
|
cosmwasm: {
|
|
44
44
|
enabled: false
|
|
@@ -50,17 +50,17 @@ const info = {
|
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
|
52
52
|
repo: 'https://github.com/agoric-labs/cosmos-sdk',
|
|
53
|
-
version: 'v0.
|
|
54
|
-
tag: 'v0.
|
|
53
|
+
version: 'v0.50.14',
|
|
54
|
+
tag: 'v0.50.14-alpha.agoric.3'
|
|
55
55
|
},
|
|
56
56
|
ibc: {
|
|
57
57
|
type: 'go',
|
|
58
|
-
version: '
|
|
58
|
+
version: 'v8.7.0',
|
|
59
59
|
repo: 'https://github.com/agoric-labs/ibc-go',
|
|
60
|
-
tag: '
|
|
60
|
+
tag: 'v8.7.0-alpha.agoric.1',
|
|
61
61
|
icsEnabled: ['ics20-1']
|
|
62
62
|
},
|
|
63
|
-
tag: 'agoric-upgrade-
|
|
63
|
+
tag: 'agoric-upgrade-22b'
|
|
64
64
|
},
|
|
65
65
|
logoURIs: {
|
|
66
66
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png',
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -165,6 +165,10 @@ const info = {
|
|
|
165
165
|
{
|
|
166
166
|
address: 'https://atomone-rpc.stakerhouse.com',
|
|
167
167
|
provider: 'StakerHouse'
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
address: 'https://mainnet-atomone-rpc.konsortech.xyz/',
|
|
171
|
+
provider: 'KonsorTech'
|
|
168
172
|
}
|
|
169
173
|
],
|
|
170
174
|
rest: [
|
|
@@ -267,6 +271,10 @@ const info = {
|
|
|
267
271
|
{
|
|
268
272
|
address: 'https://atomone-rest.stakerhouse.com',
|
|
269
273
|
provider: 'StakerHouse'
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
address: 'https://mainnet-atomone-api.konsortech.xyz/',
|
|
277
|
+
provider: 'KonsorTech'
|
|
270
278
|
}
|
|
271
279
|
],
|
|
272
280
|
grpc: [
|
|
@@ -337,6 +345,10 @@ const info = {
|
|
|
337
345
|
{
|
|
338
346
|
address: 'atomone-grpc.kynraze.com:77',
|
|
339
347
|
provider: 'kynraze'
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
address: 'mainnet-atomone.konsortech.xyz:12090',
|
|
351
|
+
provider: 'KonsorTech'
|
|
340
352
|
}
|
|
341
353
|
]
|
|
342
354
|
},
|
|
@@ -430,6 +442,12 @@ const info = {
|
|
|
430
442
|
url: 'https://cosmotracker.com/atomone',
|
|
431
443
|
txPage: 'https://cosmotracker.com/atomone/tx/${txHash}',
|
|
432
444
|
accountPage: 'https://cosmotracker.com/atomone/account/${accountAddress}'
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
kind: 'KonsorTech',
|
|
448
|
+
url: 'https://explorer.konsortech.xyz/atomone',
|
|
449
|
+
txPage: 'https://explorer.konsortech.xyz/atomone/tx/${txHash}',
|
|
450
|
+
accountPage: 'https://explorer.konsortech.xyz/atomone/account/${accountAddress}'
|
|
433
451
|
}
|
|
434
452
|
],
|
|
435
453
|
images: [{
|
package/mainnet/dydx/chain.js
CHANGED
|
@@ -36,11 +36,11 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
|
|
39
|
-
recommendedVersion: 'protocol/v9.
|
|
40
|
-
compatibleVersions: ['protocol/v9.
|
|
39
|
+
recommendedVersion: 'protocol/v9.4.0',
|
|
40
|
+
compatibleVersions: ['protocol/v9.4.0'],
|
|
41
41
|
binaries: {
|
|
42
|
-
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
43
|
-
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
42
|
+
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-amd64.tar.gz',
|
|
43
|
+
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-arm64.tar.gz'
|
|
44
44
|
},
|
|
45
45
|
consensus: {
|
|
46
46
|
type: 'cometbft',
|
|
@@ -5,7 +5,8 @@ const info = {
|
|
|
5
5
|
chainName: 'intento',
|
|
6
6
|
assets: [
|
|
7
7
|
{
|
|
8
|
-
description: 'The native token of
|
|
8
|
+
description: 'The native token of Intento',
|
|
9
|
+
extendedDescription: 'Intento is a purpose-built blockchain for orchestrating intent-driven actions across chains. It enables secure, self-custodial execution of flows using real-time inputs, and IBC — no smart contracts required. At its core is the intent engine, supported by trustless agents that execute cross-chain actions in a self-custodial manner. This design allows users to build anything from streaming tokens to complex interchain workflows, turning intent into action across the interchain.',
|
|
9
10
|
denomUnits: [{
|
|
10
11
|
denom: 'uinto',
|
|
11
12
|
exponent: 0
|
|
@@ -25,7 +26,11 @@ const info = {
|
|
|
25
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
|
|
26
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
|
|
27
28
|
}],
|
|
28
|
-
typeAsset: 'sdk.coin'
|
|
29
|
+
typeAsset: 'sdk.coin',
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://intento.zone',
|
|
32
|
+
x: 'https://x.com/intentozone'
|
|
33
|
+
}
|
|
29
34
|
},
|
|
30
35
|
{
|
|
31
36
|
description: 'The staking token of the Cosmos Hub',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.99",
|
|
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.99"
|
|
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": "9d537592c77da77b1ea9c01471a2bb34cd546992"
|
|
43
43
|
}
|