chain-registry 1.69.118 → 1.69.120

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.
Files changed (52) hide show
  1. package/esm/mainnet/althea/chain.js +8 -3
  2. package/esm/mainnet/atomone/chain.js +8 -0
  3. package/esm/mainnet/elys/chain.js +2 -2
  4. package/esm/mainnet/shido/chain.js +30 -4
  5. package/esm/noncosmos/binancesmartchain/assets.js +0 -1
  6. package/esm/testnet/archwaytestnet/ibc.js +1 -1
  7. package/esm/testnet/assets.js +2 -0
  8. package/esm/testnet/chains.js +2 -0
  9. package/esm/testnet/cosmoshubtestnet/ibc.js +28 -0
  10. package/esm/testnet/elystestnet/assets.js +9 -1
  11. package/esm/testnet/ibc.js +2 -0
  12. package/esm/testnet/jackaltestnet/assets.js +9 -1
  13. package/esm/testnet/junotestnet/ibc.js +28 -0
  14. package/esm/testnet/named.js +1 -0
  15. package/esm/testnet/osmosistestnet/ibc.js +30 -0
  16. package/esm/testnet/stargazetestnet/ibc.js +28 -0
  17. package/esm/testnet/symphonytestnet/chain.js +7 -7
  18. package/esm/testnet/symphonytestnet/ibc.js +0 -28
  19. package/esm/testnet/symphonytestnet3/assets.js +99 -0
  20. package/esm/testnet/symphonytestnet3/chain.js +78 -0
  21. package/esm/testnet/symphonytestnet3/ibc.js +145 -0
  22. package/esm/testnet/symphonytestnet3/index.js +6 -0
  23. package/esm/testnet/ulastestnet/assets.js +0 -1
  24. package/mainnet/althea/chain.js +8 -3
  25. package/mainnet/atomone/chain.js +8 -0
  26. package/mainnet/elys/chain.js +2 -2
  27. package/mainnet/shido/chain.js +30 -4
  28. package/noncosmos/binancesmartchain/assets.js +0 -1
  29. package/package.json +4 -4
  30. package/testnet/archwaytestnet/ibc.js +1 -1
  31. package/testnet/assets.js +2 -0
  32. package/testnet/chains.js +2 -0
  33. package/testnet/cosmoshubtestnet/ibc.js +28 -0
  34. package/testnet/elystestnet/assets.js +9 -1
  35. package/testnet/ibc.js +2 -0
  36. package/testnet/jackaltestnet/assets.js +9 -1
  37. package/testnet/junotestnet/ibc.js +28 -0
  38. package/testnet/named.d.ts +1 -0
  39. package/testnet/named.js +2 -1
  40. package/testnet/osmosistestnet/ibc.js +30 -0
  41. package/testnet/stargazetestnet/ibc.js +28 -0
  42. package/testnet/symphonytestnet/chain.js +7 -7
  43. package/testnet/symphonytestnet/ibc.js +0 -28
  44. package/testnet/symphonytestnet3/assets.d.ts +3 -0
  45. package/testnet/symphonytestnet3/assets.js +101 -0
  46. package/testnet/symphonytestnet3/chain.d.ts +3 -0
  47. package/testnet/symphonytestnet3/chain.js +80 -0
  48. package/testnet/symphonytestnet3/ibc.d.ts +3 -0
  49. package/testnet/symphonytestnet3/ibc.js +147 -0
  50. package/testnet/symphonytestnet3/index.d.ts +3 -0
  51. package/testnet/symphonytestnet3/index.js +12 -0
  52. package/testnet/ulastestnet/assets.js +0 -1
@@ -0,0 +1,145 @@
1
+ const info = [
2
+ {
3
+ $schema: '../../ibc_data.schema.json',
4
+ chain_1: {
5
+ chain_name: 'archwaytestnet',
6
+ client_id: '07-tendermint-139',
7
+ connection_id: 'connection-144'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'symphonytestnet3',
11
+ client_id: '07-tendermint-25',
12
+ connection_id: 'connection-12'
13
+ },
14
+ channels: [{
15
+ chain_1: {
16
+ channel_id: 'channel-495',
17
+ port_id: 'transfer'
18
+ },
19
+ chain_2: {
20
+ channel_id: 'channel-10',
21
+ port_id: 'transfer'
22
+ },
23
+ ordering: 'unordered',
24
+ version: 'ics20-1',
25
+ tags: {
26
+ status: 'live'
27
+ }
28
+ }]
29
+ },
30
+ {
31
+ $schema: '../../ibc_data.schema.json',
32
+ chain_1: {
33
+ chain_name: 'cosmoshubtestnet',
34
+ client_id: '07-tendermint-3730',
35
+ connection_id: 'connection-3782'
36
+ },
37
+ chain_2: {
38
+ chain_name: 'symphonytestnet3',
39
+ client_id: '07-tendermint-10',
40
+ connection_id: 'connection-9'
41
+ },
42
+ channels: [{
43
+ chain_1: {
44
+ channel_id: 'channel-4300',
45
+ port_id: 'transfer'
46
+ },
47
+ chain_2: {
48
+ channel_id: 'channel-7',
49
+ port_id: 'transfer'
50
+ },
51
+ ordering: 'unordered',
52
+ version: 'ics20-1',
53
+ tags: {
54
+ status: 'live'
55
+ }
56
+ }]
57
+ },
58
+ {
59
+ $schema: '../../ibc_data.schema.json',
60
+ chain_1: {
61
+ chain_name: 'junotestnet',
62
+ client_id: '07-tendermint-789',
63
+ connection_id: 'connection-868'
64
+ },
65
+ chain_2: {
66
+ chain_name: 'symphonytestnet3',
67
+ client_id: '07-tendermint-28',
68
+ connection_id: 'connection-13'
69
+ },
70
+ channels: [{
71
+ chain_1: {
72
+ channel_id: 'channel-943',
73
+ port_id: 'transfer'
74
+ },
75
+ chain_2: {
76
+ channel_id: 'channel-11',
77
+ port_id: 'transfer'
78
+ },
79
+ ordering: 'unordered',
80
+ version: 'ics20-1',
81
+ tags: {
82
+ status: 'live'
83
+ }
84
+ }]
85
+ },
86
+ {
87
+ $schema: '../../ibc_data.schema.json',
88
+ chain_1: {
89
+ chain_name: 'osmosistestnet',
90
+ client_id: '07-tendermint-3946',
91
+ connection_id: 'connection-3419'
92
+ },
93
+ chain_2: {
94
+ chain_name: 'symphonytestnet3',
95
+ client_id: '07-tendermint-0',
96
+ connection_id: 'connection-0'
97
+ },
98
+ channels: [{
99
+ chain_1: {
100
+ channel_id: 'channel-8743',
101
+ port_id: 'transfer'
102
+ },
103
+ chain_2: {
104
+ channel_id: 'channel-0',
105
+ port_id: 'transfer'
106
+ },
107
+ ordering: 'unordered',
108
+ version: 'ics20-1',
109
+ tags: {
110
+ status: 'live',
111
+ preferred: true,
112
+ dex: 'osmosis'
113
+ }
114
+ }]
115
+ },
116
+ {
117
+ $schema: '../../ibc_data.schema.json',
118
+ chain_1: {
119
+ chain_name: 'stargazetestnet',
120
+ client_id: '07-tendermint-952',
121
+ connection_id: 'connection-947'
122
+ },
123
+ chain_2: {
124
+ chain_name: 'symphonytestnet3',
125
+ client_id: '07-tendermint-4',
126
+ connection_id: 'connection-4'
127
+ },
128
+ channels: [{
129
+ chain_1: {
130
+ channel_id: 'channel-998',
131
+ port_id: 'transfer'
132
+ },
133
+ chain_2: {
134
+ channel_id: 'channel-4',
135
+ port_id: 'transfer'
136
+ },
137
+ ordering: 'unordered',
138
+ version: 'ics20-1',
139
+ tags: {
140
+ status: 'live'
141
+ }
142
+ }]
143
+ }
144
+ ];
145
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ import _ibc from './ibc';
4
+ export const assets = _assets;
5
+ export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -17,7 +17,6 @@ const info = {
17
17
  logo_URIs: {
18
18
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png'
19
19
  },
20
- coingecko_id: 'ulas',
21
20
  images: [{
22
21
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulastestnet/images/logo.png'
23
22
  }],
@@ -40,10 +40,10 @@ const info = {
40
40
  }],
41
41
  codebase: {
42
42
  git_repo: 'https://github.com/AltheaFoundation/althea-L1',
43
- recommended_version: 'v1.3.0',
44
- compatible_versions: ['v1.3.0'],
43
+ recommended_version: 'v1.5.1',
44
+ compatible_versions: ['v1.5.1'],
45
45
  binaries: {
46
- "linux/amd64": 'https://github.com/AltheaFoundation/althea-L1/releases/download/v1.3.0/althea-linux-amd64'
46
+ "linux/amd64": 'https://github.com/AltheaFoundation/althea-L1/releases/download/v1.5.1/althea-linux-amd64'
47
47
  },
48
48
  genesis: {
49
49
  genesis_url: 'https://github.com/AltheaFoundation/althea-L1-docs/blob/main/althea-l1-mainnet-genesis.json'
@@ -88,6 +88,11 @@ const info = {
88
88
  url: 'https://staking-explorer.com/explorer/althea',
89
89
  tx_page: 'https://staking-explorer.com/transaction.php?chain=althea&tx=${txHash}',
90
90
  account_page: 'https://staking-explorer.com/account.php?chain=althea&addr=${accountAddress}'
91
+ }, {
92
+ kind: 'mintscan',
93
+ url: 'https://www.mintscan.io/althea',
94
+ tx_page: 'https://www.mintscan.io/althea/transactions/${txHash}',
95
+ account_page: 'https://www.mintscan.io/althea/accounts/${accountAddress}'
91
96
  }]
92
97
  };
93
98
  exports.default = info;
@@ -114,6 +114,10 @@ const info = {
114
114
  {
115
115
  address: 'https://atomone-mainnet-rpc.itrocket.net:443',
116
116
  provider: 'ITRocket'
117
+ },
118
+ {
119
+ address: 'https://rpc-atone.vinjan.xyz',
120
+ provider: 'Vinjan.Inc'
117
121
  }
118
122
  ],
119
123
  rest: [
@@ -172,6 +176,10 @@ const info = {
172
176
  {
173
177
  address: 'https://atomone-mainnet-api.itrocket.net',
174
178
  provider: 'ITRocket'
179
+ },
180
+ {
181
+ address: 'https://api-atone.vinjan.xyz',
182
+ provider: 'Vinjan.Inc'
175
183
  }
176
184
  ],
177
185
  grpc: [
@@ -89,7 +89,7 @@ const info = {
89
89
  },
90
90
  {
91
91
  address: 'https://elys.rpc.vnodesv.net:443',
92
- provider: 'vNodes[V] > s[E]vices'
92
+ provider: 'vNodes[V] [S]er|V|ice[S]'
93
93
  },
94
94
  {
95
95
  address: 'https://elys-mainnet-rpc.itrocket.net:443',
@@ -159,7 +159,7 @@ const info = {
159
159
  },
160
160
  {
161
161
  address: 'https://elys.rest.vnodesv.net:443',
162
- provider: 'vNodes[V] > s[E]vices'
162
+ provider: 'vNodes[V] [S]er|V|ice[S]'
163
163
  },
164
164
  {
165
165
  address: 'https://elys-mainnet-api.itrocket.net',
@@ -80,12 +80,20 @@ const info = {
80
80
  provider: 'Indonode'
81
81
  },
82
82
  {
83
- address: 'https://rpc-maverick.mavnode.io',
83
+ address: 'https://rpc.mavnode.io',
84
84
  provider: 'MavNode'
85
85
  },
86
86
  {
87
87
  address: 'https://rpc.kenseishido.com',
88
88
  provider: 'KENSEI'
89
+ },
90
+ {
91
+ address: 'https://rpc.shidoscan.net',
92
+ provider: 'Shido'
93
+ },
94
+ {
95
+ address: 'https://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/',
96
+ provider: 'Zeeve'
89
97
  }
90
98
  ],
91
99
  rest: [
@@ -106,12 +114,20 @@ const info = {
106
114
  provider: 'Indonode'
107
115
  },
108
116
  {
109
- address: 'https://api-maverick.mavnode.io',
117
+ address: 'https://rest.mavnode.io',
110
118
  provider: 'MavNode'
111
119
  },
112
120
  {
113
121
  address: 'https://api.kenseishido.com',
114
122
  provider: 'KENSEI'
123
+ },
124
+ {
125
+ address: 'https://api.shidoscan.net',
126
+ provider: 'Shido'
127
+ },
128
+ {
129
+ address: 'https://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/',
130
+ provider: 'Zeeve'
115
131
  }
116
132
  ],
117
133
  grpc: [
@@ -124,7 +140,7 @@ const info = {
124
140
  provider: 'shido.io'
125
141
  },
126
142
  {
127
- address: 'https://grpc-maverick.mavnode.io',
143
+ address: 'https://grpc.mavnode.io',
128
144
  provider: 'MavNode'
129
145
  },
130
146
  {
@@ -146,7 +162,7 @@ const info = {
146
162
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
147
163
  },
148
164
  {
149
- address: 'https://evm-maverick.mavnode.io',
165
+ address: 'https://evm.mavnode.io',
150
166
  provider: 'MavNode'
151
167
  },
152
168
  {
@@ -156,6 +172,10 @@ const info = {
156
172
  {
157
173
  address: 'https://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/rpc',
158
174
  provider: 'Zeeve'
175
+ },
176
+ {
177
+ address: 'https://evm.shidoscan.net',
178
+ provider: 'Shido'
159
179
  }
160
180
  ]
161
181
  },
@@ -189,6 +209,12 @@ const info = {
189
209
  url: 'https://explorer.indonode.net/shido',
190
210
  tx_page: 'https://explorer.indonode.net/shido/tx/${txHash}',
191
211
  account_page: 'https://explorer.indonode.net/shido/account/${accountAddress}'
212
+ },
213
+ {
214
+ kind: 'Shido',
215
+ url: 'https://native.shidoscan.net',
216
+ tx_page: 'https://native.shidoscan.net/shido/tx/${txHash}',
217
+ account_page: 'https://native.shidoscan.net/shido/account/${accountAddress}'
192
218
  }
193
219
  ],
194
220
  images: [{
@@ -177,7 +177,6 @@ const info = {
177
177
  name: 'Source Token',
178
178
  display: 'srcx',
179
179
  symbol: 'SRCX',
180
- coingecko_id: 'source-protocol',
181
180
  logo_URIs: {
182
181
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png'
183
182
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.69.118",
3
+ "version": "1.69.120",
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.67",
32
+ "@chain-registry/utils": "^1.51.69",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.50.67"
36
+ "@chain-registry/types": "^0.50.69"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "7efdcf82a4f02b979c061b4e374c9ea5fd6e5248"
46
+ "gitHead": "389b2ed44d161026e76ba890f907f0fd9150fd99"
47
47
  }
@@ -153,7 +153,7 @@ const info = [
153
153
  connection_id: 'connection-144'
154
154
  },
155
155
  chain_2: {
156
- chain_name: 'symphonytestnet',
156
+ chain_name: 'symphonytestnet3',
157
157
  client_id: '07-tendermint-25',
158
158
  connection_id: 'connection-12'
159
159
  },
package/testnet/assets.js CHANGED
@@ -128,6 +128,7 @@ const _stridetestnet = __importStar(require("./stridetestnet"));
128
128
  const _sunrisetestnet = __importStar(require("./sunrisetestnet"));
129
129
  const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
130
130
  const _symphonytestnet = __importStar(require("./symphonytestnet"));
131
+ const _symphonytestnet3 = __importStar(require("./symphonytestnet3"));
131
132
  const _synternettestnet = __importStar(require("./synternettestnet"));
132
133
  const _terpnettestnet = __importStar(require("./terpnettestnet"));
133
134
  const _terpnettestnet2 = __importStar(require("./terpnettestnet2"));
@@ -252,6 +253,7 @@ const assets = [
252
253
  _sunrisetestnet.assets,
253
254
  _swisstroniktestnet.assets,
254
255
  _symphonytestnet.assets,
256
+ _symphonytestnet3.assets,
255
257
  _synternettestnet.assets,
256
258
  _terpnettestnet.assets,
257
259
  _terpnettestnet2.assets,
package/testnet/chains.js CHANGED
@@ -128,6 +128,7 @@ const _stridetestnet = __importStar(require("./stridetestnet"));
128
128
  const _sunrisetestnet = __importStar(require("./sunrisetestnet"));
129
129
  const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
130
130
  const _symphonytestnet = __importStar(require("./symphonytestnet"));
131
+ const _symphonytestnet3 = __importStar(require("./symphonytestnet3"));
131
132
  const _synternettestnet = __importStar(require("./synternettestnet"));
132
133
  const _terpnettestnet = __importStar(require("./terpnettestnet"));
133
134
  const _terpnettestnet2 = __importStar(require("./terpnettestnet2"));
@@ -252,6 +253,7 @@ const chains = [
252
253
  _sunrisetestnet.chain,
253
254
  _swisstroniktestnet.chain,
254
255
  _symphonytestnet.chain,
256
+ _symphonytestnet3.chain,
255
257
  _synternettestnet.chain,
256
258
  _terpnettestnet.chain,
257
259
  _terpnettestnet2.chain,
@@ -228,6 +228,34 @@ const info = [
228
228
  }
229
229
  }]
230
230
  },
231
+ {
232
+ $schema: '../../ibc_data.schema.json',
233
+ chain_1: {
234
+ chain_name: 'cosmoshubtestnet',
235
+ client_id: '07-tendermint-3730',
236
+ connection_id: 'connection-3782'
237
+ },
238
+ chain_2: {
239
+ chain_name: 'symphonytestnet3',
240
+ client_id: '07-tendermint-10',
241
+ connection_id: 'connection-9'
242
+ },
243
+ channels: [{
244
+ chain_1: {
245
+ channel_id: 'channel-4300',
246
+ port_id: 'transfer'
247
+ },
248
+ chain_2: {
249
+ channel_id: 'channel-7',
250
+ port_id: 'transfer'
251
+ },
252
+ ordering: 'unordered',
253
+ version: 'ics20-1',
254
+ tags: {
255
+ status: 'live'
256
+ }
257
+ }]
258
+ },
231
259
  {
232
260
  $schema: '../../ibc_data.schema.json',
233
261
  chain_1: {
@@ -26,10 +26,18 @@ const info = {
26
26
  name: 'Elys Network',
27
27
  display: 'elys',
28
28
  symbol: 'ELYS',
29
+ traces: [{
30
+ type: 'test-mintage',
31
+ counterparty: {
32
+ chain_name: 'elys',
33
+ base_denom: 'uelys'
34
+ },
35
+ provider: 'Elys Network'
36
+ }],
29
37
  logo_URIs: {
30
38
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png'
31
39
  },
32
- coingecko_id: 'elys',
40
+ coingecko_id: 'elys-network',
33
41
  images: [{
34
42
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png'
35
43
  }],
package/testnet/ibc.js CHANGED
@@ -60,6 +60,7 @@ const _sgetestnet = __importStar(require("./sgetestnet"));
60
60
  const _stargazetestnet = __importStar(require("./stargazetestnet"));
61
61
  const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
62
62
  const _symphonytestnet = __importStar(require("./symphonytestnet"));
63
+ const _symphonytestnet3 = __importStar(require("./symphonytestnet3"));
63
64
  const _synternettestnet = __importStar(require("./synternettestnet"));
64
65
  const _terra2testnet = __importStar(require("./terra2testnet"));
65
66
  const _titannettestnet = __importStar(require("./titannettestnet"));
@@ -103,6 +104,7 @@ const ibc = [
103
104
  ..._stargazetestnet.ibc,
104
105
  ..._swisstroniktestnet.ibc,
105
106
  ..._symphonytestnet.ibc,
107
+ ..._symphonytestnet3.ibc,
106
108
  ..._synternettestnet.ibc,
107
109
  ..._terra2testnet.ibc,
108
110
  ..._titannettestnet.ibc,
@@ -16,11 +16,19 @@ const info = {
16
16
  name: 'Jackal',
17
17
  display: 'jkl',
18
18
  symbol: 'JKL',
19
+ traces: [{
20
+ type: 'test-mintage',
21
+ counterparty: {
22
+ chain_name: 'jackal',
23
+ base_denom: 'ujkl'
24
+ },
25
+ provider: 'Jackal'
26
+ }],
19
27
  logo_URIs: {
20
28
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png',
21
29
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg'
22
30
  },
23
- coingecko_id: 'jackal',
31
+ coingecko_id: 'jackal-protocol',
24
32
  images: [{
25
33
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.png',
26
34
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/jackaltestnet/images/jkl.svg'
@@ -132,6 +132,34 @@ const info = [
132
132
  status: 'live'
133
133
  }
134
134
  }]
135
+ },
136
+ {
137
+ $schema: '../../ibc_data.schema.json',
138
+ chain_1: {
139
+ chain_name: 'junotestnet',
140
+ client_id: '07-tendermint-789',
141
+ connection_id: 'connection-868'
142
+ },
143
+ chain_2: {
144
+ chain_name: 'symphonytestnet3',
145
+ client_id: '07-tendermint-28',
146
+ connection_id: 'connection-13'
147
+ },
148
+ channels: [{
149
+ chain_1: {
150
+ channel_id: 'channel-943',
151
+ port_id: 'transfer'
152
+ },
153
+ chain_2: {
154
+ channel_id: 'channel-11',
155
+ port_id: 'transfer'
156
+ },
157
+ ordering: 'unordered',
158
+ version: 'ics20-1',
159
+ tags: {
160
+ status: 'live'
161
+ }
162
+ }]
135
163
  }
136
164
  ];
137
165
  exports.default = info;
@@ -103,6 +103,7 @@ export * as stridetestnet from './stridetestnet';
103
103
  export * as sunrisetestnet from './sunrisetestnet';
104
104
  export * as swisstroniktestnet from './swisstroniktestnet';
105
105
  export * as symphonytestnet from './symphonytestnet';
106
+ export * as symphonytestnet3 from './symphonytestnet3';
106
107
  export * as synternettestnet from './synternettestnet';
107
108
  export * as terpnettestnet from './terpnettestnet';
108
109
  export * as terpnettestnet2 from './terpnettestnet2';
package/testnet/named.js CHANGED
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.jackaltestnet = exports.iopntestnet = exports.injectivetestnet = exports.imversedtestnet = exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = exports.hedgetestnet = exports.gitopiatestnet = exports.galacticatestnet = exports.finschiatestnet = exports.fiammatestnet = exports.fetchhubtestnet = exports.evmostestnet = exports.epixtestnet = exports.empowertestnet = exports.empetestnet = exports.elystestnet = exports.dymensiontestnet1 = exports.dydxtestnet = exports.doravotatestnet = exports.dhealthtestnet = exports.desmostestnet = exports.deardogetestnet = exports.cudostestnet = exports.cosstestnet = exports.cosmwasmtestnet = exports.cosmosicsprovidertestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.coolcattestnet = exports.composabletestnet = exports.chimbatestnet = exports.cheqdtestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.cascadiatestnet = exports.blockxtestnet = exports.bitcannadevnet = exports.babylontestnet = exports.axelartestnet = exports.autheotestnet = exports.auratestnet = exports.atomonetestnet = exports.artelatestnet = exports.arkeonetworktestnet = exports.archwaytestnet = exports.alloratestnet = exports.akashtestnet = exports.airchainstestnet = void 0;
27
27
  exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = exports.secretnetworktestnet = exports.sagatestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.quasartestnet = exports.pryzmtestnet = exports.pockettestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.pelltestnet = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.mantrachaintestnet = exports.manifesttestnet = exports.lumenxtestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.kimanetworktestnet = exports.kichaintestnet = exports.junotestnet = exports.jackaltestnet2 = void 0;
28
- exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = void 0;
28
+ exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet3 = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = void 0;
29
29
  exports.airchainstestnet = __importStar(require("./airchainstestnet"));
30
30
  exports.akashtestnet = __importStar(require("./akashtestnet"));
31
31
  exports.alloratestnet = __importStar(require("./alloratestnet"));
@@ -131,6 +131,7 @@ exports.stridetestnet = __importStar(require("./stridetestnet"));
131
131
  exports.sunrisetestnet = __importStar(require("./sunrisetestnet"));
132
132
  exports.swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
133
133
  exports.symphonytestnet = __importStar(require("./symphonytestnet"));
134
+ exports.symphonytestnet3 = __importStar(require("./symphonytestnet3"));
134
135
  exports.synternettestnet = __importStar(require("./synternettestnet"));
135
136
  exports.terpnettestnet = __importStar(require("./terpnettestnet"));
136
137
  exports.terpnettestnet2 = __importStar(require("./terpnettestnet2"));
@@ -981,6 +981,36 @@ const info = [
981
981
  }
982
982
  }]
983
983
  },
984
+ {
985
+ $schema: '../../ibc_data.schema.json',
986
+ chain_1: {
987
+ chain_name: 'osmosistestnet',
988
+ client_id: '07-tendermint-3946',
989
+ connection_id: 'connection-3419'
990
+ },
991
+ chain_2: {
992
+ chain_name: 'symphonytestnet3',
993
+ client_id: '07-tendermint-0',
994
+ connection_id: 'connection-0'
995
+ },
996
+ channels: [{
997
+ chain_1: {
998
+ channel_id: 'channel-8743',
999
+ port_id: 'transfer'
1000
+ },
1001
+ chain_2: {
1002
+ channel_id: 'channel-0',
1003
+ port_id: 'transfer'
1004
+ },
1005
+ ordering: 'unordered',
1006
+ version: 'ics20-1',
1007
+ tags: {
1008
+ status: 'live',
1009
+ preferred: true,
1010
+ dex: 'osmosis'
1011
+ }
1012
+ }]
1013
+ },
984
1014
  {
985
1015
  $schema: '../../ibc_data.schema.json',
986
1016
  chain_1: {
@@ -157,6 +157,34 @@ const info = [
157
157
  }
158
158
  }]
159
159
  },
160
+ {
161
+ $schema: '../../ibc_data.schema.json',
162
+ chain_1: {
163
+ chain_name: 'stargazetestnet',
164
+ client_id: '07-tendermint-952',
165
+ connection_id: 'connection-947'
166
+ },
167
+ chain_2: {
168
+ chain_name: 'symphonytestnet3',
169
+ client_id: '07-tendermint-4',
170
+ connection_id: 'connection-4'
171
+ },
172
+ channels: [{
173
+ chain_1: {
174
+ channel_id: 'channel-998',
175
+ port_id: 'transfer'
176
+ },
177
+ chain_2: {
178
+ channel_id: 'channel-4',
179
+ port_id: 'transfer'
180
+ },
181
+ ordering: 'unordered',
182
+ version: 'ics20-1',
183
+ tags: {
184
+ status: 'live'
185
+ }
186
+ }]
187
+ },
160
188
  {
161
189
  $schema: '../../ibc_data.schema.json',
162
190
  chain_1: {
@@ -29,21 +29,21 @@ const info = {
29
29
  },
30
30
  codebase: {
31
31
  git_repo: 'https://github.com/Orchestra-Labs/symphony',
32
- recommended_version: 'v23.0.5',
33
- compatible_versions: ['v23.0.5-rc1', 'v23.0.5'],
32
+ recommended_version: 'v0.4.1',
33
+ compatible_versions: ['v0.4.1'],
34
34
  consensus: {
35
- type: 'tendermint',
36
- version: '0.37.4'
35
+ type: 'cometbft',
36
+ version: '0.38.11'
37
37
  },
38
38
  genesis: {
39
- genesis_url: 'https://rpc.testnet.symphonychain.org/genesis'
39
+ genesis_url: 'https://raw.githubusercontent.com/Orchestra-Labs/symphony/refs/heads/main/networks/symphony-testnet-4/genesis.json'
40
40
  },
41
41
  sdk: {
42
42
  type: 'cosmos',
43
- version: '0.47.8'
43
+ version: '0.50.9'
44
44
  },
45
45
  cosmwasm: {
46
- version: '0.30',
46
+ version: '0.53.0',
47
47
  enabled: true
48
48
  }
49
49
  },