chain-registry 1.69.121 → 1.69.122
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/devnet/manifestdevnet/chain.js +1 -1
- package/esm/devnet/manifestdevnet/chain.js +1 -1
- package/esm/mainnet/atomone/chain.js +9 -9
- package/esm/mainnet/kopi/assets.js +5 -5
- package/esm/mainnet/kopi/ibc.js +6 -6
- package/esm/mainnet/osmosis/ibc.js +6 -6
- package/esm/testnet/atomonetestnet/chain.js +9 -9
- package/esm/testnet/manifesttestnet/chain.js +1 -1
- package/mainnet/atomone/chain.js +9 -9
- package/mainnet/kopi/assets.js +5 -5
- package/mainnet/kopi/ibc.js +6 -6
- package/mainnet/osmosis/ibc.js +6 -6
- package/package.json +4 -4
- package/testnet/atomonetestnet/chain.js +9 -9
- package/testnet/manifesttestnet/chain.js +1 -1
|
@@ -28,22 +28,22 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
git_repo: 'https://github.com/atomone-hub/atomone',
|
|
31
|
-
recommended_version: 'v1.0.
|
|
32
|
-
compatible_versions: ['v1.0.0'],
|
|
31
|
+
recommended_version: 'v1.0.1',
|
|
32
|
+
compatible_versions: ['v1.0.0', 'v1.0.1'],
|
|
33
33
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
35
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
36
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
37
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
38
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
39
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
34
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
|
|
35
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
|
|
36
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
|
|
37
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
|
|
38
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
|
|
39
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
43
43
|
},
|
|
44
44
|
consensus: {
|
|
45
45
|
type: 'cometbft',
|
|
46
|
-
version: 'v0.37.
|
|
46
|
+
version: 'v0.37.15'
|
|
47
47
|
},
|
|
48
48
|
sdk: {
|
|
49
49
|
type: 'cosmos',
|
|
@@ -281,13 +281,13 @@ const info = {
|
|
|
281
281
|
{
|
|
282
282
|
description: 'Osmosis from Osmosis Chain',
|
|
283
283
|
denom_units: [{
|
|
284
|
-
denom: 'ibc/
|
|
284
|
+
denom: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
|
|
285
285
|
exponent: 0
|
|
286
286
|
}, {
|
|
287
287
|
denom: 'osmo',
|
|
288
288
|
exponent: 6
|
|
289
289
|
}],
|
|
290
|
-
base: 'ibc/
|
|
290
|
+
base: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
|
|
291
291
|
name: 'OSMO',
|
|
292
292
|
display: 'osmo',
|
|
293
293
|
symbol: 'OSMO',
|
|
@@ -304,11 +304,11 @@ const info = {
|
|
|
304
304
|
counterparty: {
|
|
305
305
|
chain_name: 'osmosis',
|
|
306
306
|
base_denom: 'uosmo',
|
|
307
|
-
channel_id: 'channel-
|
|
307
|
+
channel_id: 'channel-97998'
|
|
308
308
|
},
|
|
309
309
|
chain: {
|
|
310
|
-
channel_id: 'channel-
|
|
311
|
-
path: 'transfer/channel-
|
|
310
|
+
channel_id: 'channel-10',
|
|
311
|
+
path: 'transfer/channel-10/uosmo'
|
|
312
312
|
}
|
|
313
313
|
}]
|
|
314
314
|
},
|
package/esm/mainnet/kopi/ibc.js
CHANGED
|
@@ -90,21 +90,21 @@ const info = [
|
|
|
90
90
|
$schema: '../ibc_data.schema.json',
|
|
91
91
|
chain_1: {
|
|
92
92
|
chain_name: 'kopi',
|
|
93
|
-
client_id: '07-tendermint-
|
|
94
|
-
connection_id: 'connection-
|
|
93
|
+
client_id: '07-tendermint-12',
|
|
94
|
+
connection_id: 'connection-36'
|
|
95
95
|
},
|
|
96
96
|
chain_2: {
|
|
97
97
|
chain_name: 'osmosis',
|
|
98
|
-
client_id: '07-tendermint-
|
|
99
|
-
connection_id: 'connection-
|
|
98
|
+
client_id: '07-tendermint-3422',
|
|
99
|
+
connection_id: 'connection-10584'
|
|
100
100
|
},
|
|
101
101
|
channels: [{
|
|
102
102
|
chain_1: {
|
|
103
|
-
channel_id: 'channel-
|
|
103
|
+
channel_id: 'channel-10',
|
|
104
104
|
port_id: 'transfer'
|
|
105
105
|
},
|
|
106
106
|
chain_2: {
|
|
107
|
-
channel_id: 'channel-
|
|
107
|
+
channel_id: 'channel-97998',
|
|
108
108
|
port_id: 'transfer'
|
|
109
109
|
},
|
|
110
110
|
ordering: 'unordered',
|
|
@@ -2196,21 +2196,21 @@ const info = [
|
|
|
2196
2196
|
$schema: '../ibc_data.schema.json',
|
|
2197
2197
|
chain_1: {
|
|
2198
2198
|
chain_name: 'kopi',
|
|
2199
|
-
client_id: '07-tendermint-
|
|
2200
|
-
connection_id: 'connection-
|
|
2199
|
+
client_id: '07-tendermint-12',
|
|
2200
|
+
connection_id: 'connection-36'
|
|
2201
2201
|
},
|
|
2202
2202
|
chain_2: {
|
|
2203
2203
|
chain_name: 'osmosis',
|
|
2204
|
-
client_id: '07-tendermint-
|
|
2205
|
-
connection_id: 'connection-
|
|
2204
|
+
client_id: '07-tendermint-3422',
|
|
2205
|
+
connection_id: 'connection-10584'
|
|
2206
2206
|
},
|
|
2207
2207
|
channels: [{
|
|
2208
2208
|
chain_1: {
|
|
2209
|
-
channel_id: 'channel-
|
|
2209
|
+
channel_id: 'channel-10',
|
|
2210
2210
|
port_id: 'transfer'
|
|
2211
2211
|
},
|
|
2212
2212
|
chain_2: {
|
|
2213
|
-
channel_id: 'channel-
|
|
2213
|
+
channel_id: 'channel-97998',
|
|
2214
2214
|
port_id: 'transfer'
|
|
2215
2215
|
},
|
|
2216
2216
|
ordering: 'unordered',
|
|
@@ -28,22 +28,22 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
git_repo: 'https://github.com/atomone-hub/atomone',
|
|
31
|
-
recommended_version: 'v1.0.
|
|
32
|
-
compatible_versions: ['v1.0.0'],
|
|
31
|
+
recommended_version: 'v1.0.1',
|
|
32
|
+
compatible_versions: ['v1.0.0', 'v1.0.1'],
|
|
33
33
|
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
35
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
36
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
37
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
38
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
39
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
34
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
|
|
35
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
|
|
36
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
|
|
37
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
|
|
38
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
|
|
39
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
|
|
43
43
|
},
|
|
44
44
|
consensus: {
|
|
45
45
|
type: 'cometbft',
|
|
46
|
-
version: 'v0.37.
|
|
46
|
+
version: 'v0.37.15'
|
|
47
47
|
},
|
|
48
48
|
sdk: {
|
|
49
49
|
type: 'cosmos',
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -30,22 +30,22 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
git_repo: 'https://github.com/atomone-hub/atomone',
|
|
33
|
-
recommended_version: 'v1.0.
|
|
34
|
-
compatible_versions: ['v1.0.0'],
|
|
33
|
+
recommended_version: 'v1.0.1',
|
|
34
|
+
compatible_versions: ['v1.0.0', 'v1.0.1'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
37
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
38
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
39
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
40
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
41
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
36
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
|
|
37
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
|
|
38
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
|
|
39
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
|
|
40
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
|
|
41
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-1/genesis.json'
|
|
45
45
|
},
|
|
46
46
|
consensus: {
|
|
47
47
|
type: 'cometbft',
|
|
48
|
-
version: 'v0.37.
|
|
48
|
+
version: 'v0.37.15'
|
|
49
49
|
},
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
package/mainnet/kopi/assets.js
CHANGED
|
@@ -283,13 +283,13 @@ const info = {
|
|
|
283
283
|
{
|
|
284
284
|
description: 'Osmosis from Osmosis Chain',
|
|
285
285
|
denom_units: [{
|
|
286
|
-
denom: 'ibc/
|
|
286
|
+
denom: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
|
|
287
287
|
exponent: 0
|
|
288
288
|
}, {
|
|
289
289
|
denom: 'osmo',
|
|
290
290
|
exponent: 6
|
|
291
291
|
}],
|
|
292
|
-
base: 'ibc/
|
|
292
|
+
base: 'ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955',
|
|
293
293
|
name: 'OSMO',
|
|
294
294
|
display: 'osmo',
|
|
295
295
|
symbol: 'OSMO',
|
|
@@ -306,11 +306,11 @@ const info = {
|
|
|
306
306
|
counterparty: {
|
|
307
307
|
chain_name: 'osmosis',
|
|
308
308
|
base_denom: 'uosmo',
|
|
309
|
-
channel_id: 'channel-
|
|
309
|
+
channel_id: 'channel-97998'
|
|
310
310
|
},
|
|
311
311
|
chain: {
|
|
312
|
-
channel_id: 'channel-
|
|
313
|
-
path: 'transfer/channel-
|
|
312
|
+
channel_id: 'channel-10',
|
|
313
|
+
path: 'transfer/channel-10/uosmo'
|
|
314
314
|
}
|
|
315
315
|
}]
|
|
316
316
|
},
|
package/mainnet/kopi/ibc.js
CHANGED
|
@@ -92,21 +92,21 @@ const info = [
|
|
|
92
92
|
$schema: '../ibc_data.schema.json',
|
|
93
93
|
chain_1: {
|
|
94
94
|
chain_name: 'kopi',
|
|
95
|
-
client_id: '07-tendermint-
|
|
96
|
-
connection_id: 'connection-
|
|
95
|
+
client_id: '07-tendermint-12',
|
|
96
|
+
connection_id: 'connection-36'
|
|
97
97
|
},
|
|
98
98
|
chain_2: {
|
|
99
99
|
chain_name: 'osmosis',
|
|
100
|
-
client_id: '07-tendermint-
|
|
101
|
-
connection_id: 'connection-
|
|
100
|
+
client_id: '07-tendermint-3422',
|
|
101
|
+
connection_id: 'connection-10584'
|
|
102
102
|
},
|
|
103
103
|
channels: [{
|
|
104
104
|
chain_1: {
|
|
105
|
-
channel_id: 'channel-
|
|
105
|
+
channel_id: 'channel-10',
|
|
106
106
|
port_id: 'transfer'
|
|
107
107
|
},
|
|
108
108
|
chain_2: {
|
|
109
|
-
channel_id: 'channel-
|
|
109
|
+
channel_id: 'channel-97998',
|
|
110
110
|
port_id: 'transfer'
|
|
111
111
|
},
|
|
112
112
|
ordering: 'unordered',
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -2198,21 +2198,21 @@ const info = [
|
|
|
2198
2198
|
$schema: '../ibc_data.schema.json',
|
|
2199
2199
|
chain_1: {
|
|
2200
2200
|
chain_name: 'kopi',
|
|
2201
|
-
client_id: '07-tendermint-
|
|
2202
|
-
connection_id: 'connection-
|
|
2201
|
+
client_id: '07-tendermint-12',
|
|
2202
|
+
connection_id: 'connection-36'
|
|
2203
2203
|
},
|
|
2204
2204
|
chain_2: {
|
|
2205
2205
|
chain_name: 'osmosis',
|
|
2206
|
-
client_id: '07-tendermint-
|
|
2207
|
-
connection_id: 'connection-
|
|
2206
|
+
client_id: '07-tendermint-3422',
|
|
2207
|
+
connection_id: 'connection-10584'
|
|
2208
2208
|
},
|
|
2209
2209
|
channels: [{
|
|
2210
2210
|
chain_1: {
|
|
2211
|
-
channel_id: 'channel-
|
|
2211
|
+
channel_id: 'channel-10',
|
|
2212
2212
|
port_id: 'transfer'
|
|
2213
2213
|
},
|
|
2214
2214
|
chain_2: {
|
|
2215
|
-
channel_id: 'channel-
|
|
2215
|
+
channel_id: 'channel-97998',
|
|
2216
2216
|
port_id: 'transfer'
|
|
2217
2217
|
},
|
|
2218
2218
|
ordering: 'unordered',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.122",
|
|
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.71",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.71"
|
|
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": "716c6065ce25c738cb4da5eaf2bb9c65ede73881"
|
|
47
47
|
}
|
|
@@ -30,22 +30,22 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
git_repo: 'https://github.com/atomone-hub/atomone',
|
|
33
|
-
recommended_version: 'v1.0.
|
|
34
|
-
compatible_versions: ['v1.0.0'],
|
|
33
|
+
recommended_version: 'v1.0.1',
|
|
34
|
+
compatible_versions: ['v1.0.0', 'v1.0.1'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
37
|
-
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
38
|
-
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
39
|
-
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
40
|
-
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
41
|
-
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.
|
|
36
|
+
"linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-amd64',
|
|
37
|
+
"linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-linux-arm64',
|
|
38
|
+
"darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-amd64',
|
|
39
|
+
"darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-darwin-arm64',
|
|
40
|
+
"windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-amd64.exe',
|
|
41
|
+
"windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.1/atomoned-v1.0.1-windows-arm64.exe'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
|
|
45
45
|
},
|
|
46
46
|
consensus: {
|
|
47
47
|
type: 'cometbft',
|
|
48
|
-
version: 'v0.37.
|
|
48
|
+
version: 'v0.37.15'
|
|
49
49
|
},
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|