chain-registry 1.69.106 → 1.69.108

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 (68) hide show
  1. package/README.md +15 -12
  2. package/esm/mainnet/agoric/ibc.js +29 -0
  3. package/esm/mainnet/archway/ibc.js +2 -1
  4. package/esm/mainnet/axelar/ibc.js +6 -6
  5. package/esm/mainnet/celestia/ibc.js +29 -0
  6. package/esm/mainnet/cosmoshub/ibc.js +5 -1
  7. package/esm/mainnet/dydx/ibc.js +29 -0
  8. package/esm/mainnet/fetchhub/chain.js +12 -0
  9. package/esm/mainnet/injective/assets.js +113 -0
  10. package/esm/mainnet/injective/ibc.js +29 -0
  11. package/esm/mainnet/int3face/ibc.js +28 -0
  12. package/esm/mainnet/jackal/ibc.js +6 -6
  13. package/esm/mainnet/juno/ibc.js +5 -1
  14. package/esm/mainnet/kopi/assets.js +12 -12
  15. package/esm/mainnet/milkyway/assets.js +74 -0
  16. package/esm/mainnet/milkyway/chain.js +24 -17
  17. package/esm/mainnet/neutron/ibc.js +29 -0
  18. package/esm/mainnet/omniflixhub/ibc.js +29 -0
  19. package/esm/mainnet/osmosis/assets.js +599 -8
  20. package/esm/mainnet/quicksilver/assets.js +224 -8
  21. package/esm/mainnet/quicksilver/chain.js +31 -163
  22. package/esm/mainnet/quicksilver/ibc.js +293 -7
  23. package/esm/mainnet/regen/ibc.js +5 -1
  24. package/esm/mainnet/saga/ibc.js +29 -0
  25. package/esm/mainnet/secretnetwork/ibc.js +5 -1
  26. package/esm/mainnet/sommelier/ibc.js +29 -0
  27. package/esm/mainnet/stargaze/ibc.js +5 -1
  28. package/esm/mainnet/terra2/assets.js +19 -0
  29. package/esm/mainnet/terra2/ibc.js +29 -0
  30. package/esm/mainnet/umee/ibc.js +5 -1
  31. package/esm/mainnet/xion/ibc.js +29 -0
  32. package/esm/testnet/axelartestnet/assets.js +39 -0
  33. package/esm/testnet/axelartestnet/ibc.js +28 -0
  34. package/esm/testnet/manifesttestnet/ibc.js +27 -0
  35. package/mainnet/agoric/ibc.js +29 -0
  36. package/mainnet/archway/ibc.js +2 -1
  37. package/mainnet/axelar/ibc.js +6 -6
  38. package/mainnet/celestia/ibc.js +29 -0
  39. package/mainnet/cosmoshub/ibc.js +5 -1
  40. package/mainnet/dydx/ibc.js +29 -0
  41. package/mainnet/fetchhub/chain.js +12 -0
  42. package/mainnet/injective/assets.js +113 -0
  43. package/mainnet/injective/ibc.js +29 -0
  44. package/mainnet/int3face/ibc.js +28 -0
  45. package/mainnet/jackal/ibc.js +6 -6
  46. package/mainnet/juno/ibc.js +5 -1
  47. package/mainnet/kopi/assets.js +12 -12
  48. package/mainnet/milkyway/assets.js +74 -0
  49. package/mainnet/milkyway/chain.js +24 -17
  50. package/mainnet/neutron/ibc.js +29 -0
  51. package/mainnet/omniflixhub/ibc.js +29 -0
  52. package/mainnet/osmosis/assets.js +599 -8
  53. package/mainnet/quicksilver/assets.js +224 -8
  54. package/mainnet/quicksilver/chain.js +31 -163
  55. package/mainnet/quicksilver/ibc.js +293 -7
  56. package/mainnet/regen/ibc.js +5 -1
  57. package/mainnet/saga/ibc.js +29 -0
  58. package/mainnet/secretnetwork/ibc.js +5 -1
  59. package/mainnet/sommelier/ibc.js +29 -0
  60. package/mainnet/stargaze/ibc.js +5 -1
  61. package/mainnet/terra2/assets.js +19 -0
  62. package/mainnet/terra2/ibc.js +29 -0
  63. package/mainnet/umee/ibc.js +5 -1
  64. package/mainnet/xion/ibc.js +29 -0
  65. package/package.json +4 -4
  66. package/testnet/axelartestnet/assets.js +39 -0
  67. package/testnet/axelartestnet/ibc.js +28 -0
  68. package/testnet/manifesttestnet/ibc.js +27 -0
@@ -1,4 +1,33 @@
1
1
  const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain_1: {
5
+ chain_name: 'agoric',
6
+ client_id: '07-tendermint-85',
7
+ connection_id: 'connection-85'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'quicksilver',
11
+ client_id: '07-tendermint-84',
12
+ connection_id: 'connection-60'
13
+ },
14
+ channels: [{
15
+ chain_1: {
16
+ channel_id: 'channel-68',
17
+ port_id: 'transfer'
18
+ },
19
+ chain_2: {
20
+ channel_id: 'channel-125',
21
+ port_id: 'transfer'
22
+ },
23
+ ordering: 'unordered',
24
+ version: 'ics20-1',
25
+ tags: {
26
+ status: 'live',
27
+ preferred: true
28
+ }
29
+ }]
30
+ },
2
31
  {
3
32
  $schema: '../ibc_data.schema.json',
4
33
  chain_1: {
@@ -23,7 +52,37 @@ const info = [
23
52
  ordering: 'unordered',
24
53
  version: 'ics20-1',
25
54
  tags: {
26
- status: 'live'
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ },
60
+ {
61
+ $schema: '../ibc_data.schema.json',
62
+ chain_1: {
63
+ chain_name: 'celestia',
64
+ client_id: '07-tendermint-92',
65
+ connection_id: 'connection-60'
66
+ },
67
+ chain_2: {
68
+ chain_name: 'quicksilver',
69
+ client_id: '07-tendermint-97',
70
+ connection_id: 'connection-65'
71
+ },
72
+ channels: [{
73
+ chain_1: {
74
+ channel_id: 'channel-36',
75
+ port_id: 'transfer'
76
+ },
77
+ chain_2: {
78
+ channel_id: 'channel-207',
79
+ port_id: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
27
86
  }
28
87
  }]
29
88
  },
@@ -78,7 +137,69 @@ const info = [
78
137
  port_id: 'transfer'
79
138
  },
80
139
  ordering: 'unordered',
81
- version: 'ics20-1'
140
+ version: 'ics20-1',
141
+ tags: {
142
+ status: 'live',
143
+ preferred: true
144
+ }
145
+ }]
146
+ },
147
+ {
148
+ $schema: '../ibc_data.schema.json',
149
+ chain_1: {
150
+ chain_name: 'dydx',
151
+ client_id: '07-tendermint-20',
152
+ connection_id: 'connection-25'
153
+ },
154
+ chain_2: {
155
+ chain_name: 'quicksilver',
156
+ client_id: '07-tendermint-90',
157
+ connection_id: 'connection-62'
158
+ },
159
+ channels: [{
160
+ chain_1: {
161
+ channel_id: 'channel-32',
162
+ port_id: 'transfer'
163
+ },
164
+ chain_2: {
165
+ channel_id: 'channel-164',
166
+ port_id: 'transfer'
167
+ },
168
+ ordering: 'unordered',
169
+ version: 'ics20-1',
170
+ tags: {
171
+ status: 'live',
172
+ preferred: true
173
+ }
174
+ }]
175
+ },
176
+ {
177
+ $schema: '../ibc_data.schema.json',
178
+ chain_1: {
179
+ chain_name: 'injective',
180
+ client_id: '07-tendermint-282',
181
+ connection_id: 'connection-286'
182
+ },
183
+ chain_2: {
184
+ chain_name: 'quicksilver',
185
+ client_id: '07-tendermint-105',
186
+ connection_id: 'connection-68'
187
+ },
188
+ channels: [{
189
+ chain_1: {
190
+ channel_id: 'channel-394',
191
+ port_id: 'transfer'
192
+ },
193
+ chain_2: {
194
+ channel_id: 'channel-234',
195
+ port_id: 'transfer'
196
+ },
197
+ ordering: 'unordered',
198
+ version: 'ics20-1',
199
+ tags: {
200
+ status: 'live',
201
+ preferred: true
202
+ }
82
203
  }]
83
204
  },
84
205
  {
@@ -103,7 +224,40 @@ const info = [
103
224
  port_id: 'transfer'
104
225
  },
105
226
  ordering: 'unordered',
106
- version: 'ics20-1'
227
+ version: 'ics20-1',
228
+ tags: {
229
+ status: 'live',
230
+ preferred: true
231
+ }
232
+ }]
233
+ },
234
+ {
235
+ $schema: '../ibc_data.schema.json',
236
+ chain_1: {
237
+ chain_name: 'omniflixhub',
238
+ client_id: '07-tendermint-76',
239
+ connection_id: 'connection-57'
240
+ },
241
+ chain_2: {
242
+ chain_name: 'quicksilver',
243
+ client_id: '07-tendermint-101',
244
+ connection_id: 'connection-66'
245
+ },
246
+ channels: [{
247
+ chain_1: {
248
+ channel_id: 'channel-51',
249
+ port_id: 'transfer'
250
+ },
251
+ chain_2: {
252
+ channel_id: 'channel-228',
253
+ port_id: 'transfer'
254
+ },
255
+ ordering: 'unordered',
256
+ version: 'ics20-1',
257
+ tags: {
258
+ status: 'live',
259
+ preferred: true
260
+ }
107
261
  }]
108
262
  },
109
263
  {
@@ -184,7 +338,40 @@ const info = [
184
338
  port_id: 'transfer'
185
339
  },
186
340
  ordering: 'unordered',
187
- version: 'ics20-1'
341
+ version: 'ics20-1',
342
+ tags: {
343
+ status: 'live',
344
+ preferred: true
345
+ }
346
+ }]
347
+ },
348
+ {
349
+ $schema: '../ibc_data.schema.json',
350
+ chain_1: {
351
+ chain_name: 'quicksilver',
352
+ client_id: '07-tendermint-91',
353
+ connection_id: 'connection-63'
354
+ },
355
+ chain_2: {
356
+ chain_name: 'saga',
357
+ client_id: '07-tendermint-8',
358
+ connection_id: 'connection-8'
359
+ },
360
+ channels: [{
361
+ chain_1: {
362
+ channel_id: 'channel-170',
363
+ port_id: 'transfer'
364
+ },
365
+ chain_2: {
366
+ channel_id: 'channel-18',
367
+ port_id: 'transfer'
368
+ },
369
+ ordering: 'unordered',
370
+ version: 'ics20-1',
371
+ tags: {
372
+ status: 'live',
373
+ preferred: true
374
+ }
188
375
  }]
189
376
  },
190
377
  {
@@ -209,7 +396,40 @@ const info = [
209
396
  port_id: 'transfer'
210
397
  },
211
398
  ordering: 'unordered',
212
- version: 'ics20-1'
399
+ version: 'ics20-1',
400
+ tags: {
401
+ status: 'live',
402
+ preferred: true
403
+ }
404
+ }]
405
+ },
406
+ {
407
+ $schema: '../ibc_data.schema.json',
408
+ chain_1: {
409
+ chain_name: 'quicksilver',
410
+ client_id: '07-tendermint-79',
411
+ connection_id: 'connection-54'
412
+ },
413
+ chain_2: {
414
+ chain_name: 'sommelier',
415
+ client_id: '07-tendermint-57',
416
+ connection_id: 'connection-59'
417
+ },
418
+ channels: [{
419
+ chain_1: {
420
+ channel_id: 'channel-101',
421
+ port_id: 'transfer'
422
+ },
423
+ chain_2: {
424
+ channel_id: 'channel-59',
425
+ port_id: 'transfer'
426
+ },
427
+ ordering: 'unordered',
428
+ version: 'ics20-1',
429
+ tags: {
430
+ status: 'live',
431
+ preferred: true
432
+ }
213
433
  }]
214
434
  },
215
435
  {
@@ -234,7 +454,40 @@ const info = [
234
454
  port_id: 'transfer'
235
455
  },
236
456
  ordering: 'unordered',
237
- version: 'ics20-1'
457
+ version: 'ics20-1',
458
+ tags: {
459
+ status: 'live',
460
+ preferred: true
461
+ }
462
+ }]
463
+ },
464
+ {
465
+ $schema: '../ibc_data.schema.json',
466
+ chain_1: {
467
+ chain_name: 'quicksilver',
468
+ client_id: '07-tendermint-108',
469
+ connection_id: 'connection-69'
470
+ },
471
+ chain_2: {
472
+ chain_name: 'terra2',
473
+ client_id: '07-tendermint-430',
474
+ connection_id: 'connection-442'
475
+ },
476
+ channels: [{
477
+ chain_1: {
478
+ channel_id: 'channel-244',
479
+ port_id: 'transfer'
480
+ },
481
+ chain_2: {
482
+ channel_id: 'channel-604',
483
+ port_id: 'transfer'
484
+ },
485
+ ordering: 'unordered',
486
+ version: 'ics20-1',
487
+ tags: {
488
+ status: 'live',
489
+ preferred: true
490
+ }
238
491
  }]
239
492
  },
240
493
  {
@@ -259,7 +512,40 @@ const info = [
259
512
  port_id: 'transfer'
260
513
  },
261
514
  ordering: 'unordered',
262
- version: 'ics20-1'
515
+ version: 'ics20-1',
516
+ tags: {
517
+ status: 'live',
518
+ preferred: true
519
+ }
520
+ }]
521
+ },
522
+ {
523
+ $schema: '../ibc_data.schema.json',
524
+ chain_1: {
525
+ chain_name: 'quicksilver',
526
+ client_id: '07-tendermint-102',
527
+ connection_id: 'connection-67'
528
+ },
529
+ chain_2: {
530
+ chain_name: 'xion',
531
+ client_id: '07-tendermint-6',
532
+ connection_id: 'connection-7'
533
+ },
534
+ channels: [{
535
+ chain_1: {
536
+ channel_id: 'channel-229',
537
+ port_id: 'transfer'
538
+ },
539
+ chain_2: {
540
+ channel_id: 'channel-8',
541
+ port_id: 'transfer'
542
+ },
543
+ ordering: 'unordered',
544
+ version: 'ics20-1',
545
+ tags: {
546
+ status: 'live',
547
+ preferred: true
548
+ }
263
549
  }]
264
550
  }
265
551
  ];
@@ -236,7 +236,11 @@ const info = [
236
236
  port_id: 'transfer'
237
237
  },
238
238
  ordering: 'unordered',
239
- version: 'ics20-1'
239
+ version: 'ics20-1',
240
+ tags: {
241
+ status: 'live',
242
+ preferred: true
243
+ }
240
244
  }]
241
245
  },
242
246
  {
@@ -115,6 +115,35 @@ const info = [
115
115
  }
116
116
  }]
117
117
  },
118
+ {
119
+ $schema: '../ibc_data.schema.json',
120
+ chain_1: {
121
+ chain_name: 'quicksilver',
122
+ client_id: '07-tendermint-91',
123
+ connection_id: 'connection-63'
124
+ },
125
+ chain_2: {
126
+ chain_name: 'saga',
127
+ client_id: '07-tendermint-8',
128
+ connection_id: 'connection-8'
129
+ },
130
+ channels: [{
131
+ chain_1: {
132
+ channel_id: 'channel-170',
133
+ port_id: 'transfer'
134
+ },
135
+ chain_2: {
136
+ channel_id: 'channel-18',
137
+ port_id: 'transfer'
138
+ },
139
+ ordering: 'unordered',
140
+ version: 'ics20-1',
141
+ tags: {
142
+ status: 'live',
143
+ preferred: true
144
+ }
145
+ }]
146
+ },
118
147
  {
119
148
  $schema: '../ibc_data.schema.json',
120
149
  chain_1: {
@@ -1016,7 +1016,11 @@ const info = [
1016
1016
  port_id: 'transfer'
1017
1017
  },
1018
1018
  ordering: 'unordered',
1019
- version: 'ics20-1'
1019
+ version: 'ics20-1',
1020
+ tags: {
1021
+ status: 'live',
1022
+ preferred: true
1023
+ }
1020
1024
  }]
1021
1025
  },
1022
1026
  {
@@ -142,6 +142,35 @@ const info = [
142
142
  }
143
143
  }]
144
144
  },
145
+ {
146
+ $schema: '../ibc_data.schema.json',
147
+ chain_1: {
148
+ chain_name: 'quicksilver',
149
+ client_id: '07-tendermint-79',
150
+ connection_id: 'connection-54'
151
+ },
152
+ chain_2: {
153
+ chain_name: 'sommelier',
154
+ client_id: '07-tendermint-57',
155
+ connection_id: 'connection-59'
156
+ },
157
+ channels: [{
158
+ chain_1: {
159
+ channel_id: 'channel-101',
160
+ port_id: 'transfer'
161
+ },
162
+ chain_2: {
163
+ channel_id: 'channel-59',
164
+ port_id: 'transfer'
165
+ },
166
+ ordering: 'unordered',
167
+ version: 'ics20-1',
168
+ tags: {
169
+ status: 'live',
170
+ preferred: true
171
+ }
172
+ }]
173
+ },
145
174
  {
146
175
  $schema: '../ibc_data.schema.json',
147
176
  chain_1: {
@@ -696,7 +696,11 @@ const info = [
696
696
  port_id: 'transfer'
697
697
  },
698
698
  ordering: 'unordered',
699
- version: 'ics20-1'
699
+ version: 'ics20-1',
700
+ tags: {
701
+ status: 'live',
702
+ preferred: true
703
+ }
700
704
  }]
701
705
  },
702
706
  {
@@ -1513,6 +1513,25 @@ const info = {
1513
1513
  name: 'Eris Protocol bWHALE/WHALE ampLP',
1514
1514
  display: 'amplp',
1515
1515
  symbol: 'bWHALE-ampLP'
1516
+ },
1517
+ {
1518
+ base: 'factory/terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m/rise',
1519
+ name: 'Rise',
1520
+ symbol: 'RISE',
1521
+ display: 'rise',
1522
+ description: 'PhoenixRiseMeme',
1523
+ type_asset: 'sdk.coin',
1524
+ address: 'terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m',
1525
+ denom_units: [{
1526
+ denom: 'factory/terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m/rise',
1527
+ exponent: 0
1528
+ }, {
1529
+ denom: 'rise',
1530
+ exponent: 6
1531
+ }],
1532
+ logo_URIs: {
1533
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/RISE.png'
1534
+ }
1516
1535
  }
1517
1536
  ]
1518
1537
  };
@@ -969,6 +969,35 @@ const info = [
969
969
  }
970
970
  ]
971
971
  },
972
+ {
973
+ $schema: '../ibc_data.schema.json',
974
+ chain_1: {
975
+ chain_name: 'quicksilver',
976
+ client_id: '07-tendermint-108',
977
+ connection_id: 'connection-69'
978
+ },
979
+ chain_2: {
980
+ chain_name: 'terra2',
981
+ client_id: '07-tendermint-430',
982
+ connection_id: 'connection-442'
983
+ },
984
+ channels: [{
985
+ chain_1: {
986
+ channel_id: 'channel-244',
987
+ port_id: 'transfer'
988
+ },
989
+ chain_2: {
990
+ channel_id: 'channel-604',
991
+ port_id: 'transfer'
992
+ },
993
+ ordering: 'unordered',
994
+ version: 'ics20-1',
995
+ tags: {
996
+ status: 'live',
997
+ preferred: true
998
+ }
999
+ }]
1000
+ },
972
1001
  {
973
1002
  $schema: '../ibc_data.schema.json',
974
1003
  chain_1: {
@@ -393,7 +393,11 @@ const info = [
393
393
  port_id: 'transfer'
394
394
  },
395
395
  ordering: 'unordered',
396
- version: 'ics20-1'
396
+ version: 'ics20-1',
397
+ tags: {
398
+ status: 'live',
399
+ preferred: true
400
+ }
397
401
  }]
398
402
  },
399
403
  {
@@ -143,6 +143,35 @@ const info = [
143
143
  preferred: true
144
144
  }
145
145
  }]
146
+ },
147
+ {
148
+ $schema: '../ibc_data.schema.json',
149
+ chain_1: {
150
+ chain_name: 'quicksilver',
151
+ client_id: '07-tendermint-102',
152
+ connection_id: 'connection-67'
153
+ },
154
+ chain_2: {
155
+ chain_name: 'xion',
156
+ client_id: '07-tendermint-6',
157
+ connection_id: 'connection-7'
158
+ },
159
+ channels: [{
160
+ chain_1: {
161
+ channel_id: 'channel-229',
162
+ port_id: 'transfer'
163
+ },
164
+ chain_2: {
165
+ channel_id: 'channel-8',
166
+ port_id: 'transfer'
167
+ },
168
+ ordering: 'unordered',
169
+ version: 'ics20-1',
170
+ tags: {
171
+ status: 'live',
172
+ preferred: true
173
+ }
174
+ }]
146
175
  }
147
176
  ];
148
177
  export default info;
@@ -258,6 +258,45 @@ const info = {
258
258
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png'
259
259
  },
260
260
  type_asset: 'sdk.coin'
261
+ },
262
+ {
263
+ description: 'The native token of Manifest Ledger',
264
+ denom_units: [{
265
+ denom: 'ibc/EAC654CC560CC03D82AE4BAA808BD0B6E06E9F29F62194B46C0502D967349E24',
266
+ exponent: 0
267
+ }, {
268
+ denom: 'mfx',
269
+ exponent: 6
270
+ }],
271
+ type_asset: 'ics20',
272
+ base: 'ibc/EAC654CC560CC03D82AE4BAA808BD0B6E06E9F29F62194B46C0502D967349E24',
273
+ name: 'Manifest',
274
+ display: 'mfx',
275
+ symbol: 'MFX',
276
+ traces: [{
277
+ type: 'ibc',
278
+ counterparty: {
279
+ chain_name: 'manifesttestnet',
280
+ base_denom: 'umfx',
281
+ channel_id: 'channel-3'
282
+ },
283
+ chain: {
284
+ channel_id: 'channel-590',
285
+ path: 'transfer/channel-590/umfx'
286
+ }
287
+ }],
288
+ images: [{
289
+ image_sync: {
290
+ chain_name: 'manifesttestnet',
291
+ base_denom: 'umfx'
292
+ },
293
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png',
294
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
295
+ }],
296
+ logo_URIs: {
297
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png',
298
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
299
+ }
261
300
  }
262
301
  ]
263
302
  };
@@ -85,6 +85,34 @@ const info = [
85
85
  }
86
86
  }]
87
87
  },
88
+ {
89
+ $schema: '../../ibc_data.schema.json',
90
+ chain_1: {
91
+ chain_name: 'axelartestnet',
92
+ client_id: '07-tendermint-1083',
93
+ connection_id: 'connection-843'
94
+ },
95
+ chain_2: {
96
+ chain_name: 'manifesttestnet',
97
+ client_id: '07-tendermint-7',
98
+ connection_id: 'connection-8'
99
+ },
100
+ channels: [{
101
+ chain_1: {
102
+ channel_id: 'channel-590',
103
+ port_id: 'transfer'
104
+ },
105
+ chain_2: {
106
+ channel_id: 'channel-3',
107
+ port_id: 'transfer'
108
+ },
109
+ ordering: 'unordered',
110
+ version: 'ics20-1',
111
+ tags: {
112
+ status: 'live'
113
+ }
114
+ }]
115
+ },
88
116
  {
89
117
  $schema: '../../ibc_data.schema.json',
90
118
  chain_1: {
@@ -1,4 +1,31 @@
1
1
  const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'axelartestnet',
5
+ client_id: '07-tendermint-1083',
6
+ connection_id: 'connection-843'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'manifesttestnet',
10
+ client_id: '07-tendermint-7',
11
+ connection_id: 'connection-8'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-590',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-3',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live'
26
+ }
27
+ }]
28
+ }, {
2
29
  $schema: '../../ibc_data.schema.json',
3
30
  chain_1: {
4
31
  chain_name: 'manifesttestnet',