chain-registry 1.69.66 → 1.69.67

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 (65) hide show
  1. package/esm/mainnet/akash/ibc.js +29 -0
  2. package/esm/mainnet/axelar/ibc.js +29 -0
  3. package/esm/mainnet/beezee/assets.js +37 -0
  4. package/esm/mainnet/celestia/ibc.js +29 -0
  5. package/esm/mainnet/chihuahua/assets.js +31 -0
  6. package/esm/mainnet/cosmoshub/chain.js +8 -0
  7. package/esm/mainnet/cosmoshub/ibc.js +44 -0
  8. package/esm/mainnet/elys/chain.js +54 -0
  9. package/esm/mainnet/elys/ibc.js +192 -0
  10. package/esm/mainnet/elys/index.js +2 -0
  11. package/esm/mainnet/ibc.js +2 -0
  12. package/esm/mainnet/neutron/chain.js +8 -0
  13. package/esm/mainnet/noble/ibc.js +29 -0
  14. package/esm/mainnet/osmosis/ibc.js +29 -0
  15. package/esm/mainnet/pryzm/assets.js +375 -7
  16. package/esm/mainnet/titan/chain.js +2 -2
  17. package/esm/testnet/assets.js +2 -0
  18. package/esm/testnet/chains.js +2 -0
  19. package/esm/testnet/cosmoshubtestnet/ibc.js +19 -47
  20. package/esm/testnet/dymensiontestnet1/assets.js +62 -0
  21. package/esm/testnet/dymensiontestnet1/chain.js +46 -0
  22. package/esm/testnet/dymensiontestnet1/index.js +4 -0
  23. package/esm/testnet/elystestnet/ibc.js +2 -2
  24. package/esm/testnet/manifesttestnet/chain.js +9 -15
  25. package/esm/testnet/named.js +1 -0
  26. package/esm/testnet/nobletestnet/ibc.js +1 -1
  27. package/esm/testnet/sourcetestnet/chain.js +0 -11
  28. package/esm/testnet/symphonytestnet/ibc.js +0 -28
  29. package/esm/testnet/titantestnet/assets.js +42 -3
  30. package/mainnet/akash/ibc.js +29 -0
  31. package/mainnet/axelar/ibc.js +29 -0
  32. package/mainnet/beezee/assets.js +37 -0
  33. package/mainnet/celestia/ibc.js +29 -0
  34. package/mainnet/chihuahua/assets.js +31 -0
  35. package/mainnet/cosmoshub/chain.js +8 -0
  36. package/mainnet/cosmoshub/ibc.js +44 -0
  37. package/mainnet/elys/chain.js +54 -0
  38. package/mainnet/elys/ibc.d.ts +3 -0
  39. package/mainnet/elys/ibc.js +194 -0
  40. package/mainnet/elys/index.d.ts +1 -0
  41. package/mainnet/elys/index.js +3 -1
  42. package/mainnet/ibc.js +2 -0
  43. package/mainnet/neutron/chain.js +8 -0
  44. package/mainnet/noble/ibc.js +29 -0
  45. package/mainnet/osmosis/ibc.js +29 -0
  46. package/mainnet/pryzm/assets.js +375 -7
  47. package/mainnet/titan/chain.js +2 -2
  48. package/package.json +4 -4
  49. package/testnet/assets.js +2 -0
  50. package/testnet/chains.js +2 -0
  51. package/testnet/cosmoshubtestnet/ibc.js +19 -47
  52. package/testnet/dymensiontestnet1/assets.d.ts +3 -0
  53. package/testnet/dymensiontestnet1/assets.js +64 -0
  54. package/testnet/dymensiontestnet1/chain.d.ts +3 -0
  55. package/testnet/dymensiontestnet1/chain.js +48 -0
  56. package/testnet/dymensiontestnet1/index.d.ts +2 -0
  57. package/testnet/dymensiontestnet1/index.js +10 -0
  58. package/testnet/elystestnet/ibc.js +2 -2
  59. package/testnet/manifesttestnet/chain.js +9 -15
  60. package/testnet/named.d.ts +1 -0
  61. package/testnet/named.js +4 -3
  62. package/testnet/nobletestnet/ibc.js +1 -1
  63. package/testnet/sourcetestnet/chain.js +0 -11
  64. package/testnet/symphonytestnet/ibc.js +0 -28
  65. package/testnet/titantestnet/assets.js +42 -3
@@ -136,6 +136,35 @@ const info = [
136
136
  }
137
137
  }]
138
138
  },
139
+ {
140
+ $schema: '../ibc_data.schema.json',
141
+ chain_1: {
142
+ chain_name: 'akash',
143
+ client_id: '07-tendermint-191',
144
+ connection_id: 'connection-177'
145
+ },
146
+ chain_2: {
147
+ chain_name: 'elys',
148
+ client_id: '07-tendermint-6',
149
+ connection_id: 'connection-5'
150
+ },
151
+ channels: [{
152
+ chain_1: {
153
+ channel_id: 'channel-129',
154
+ port_id: 'transfer'
155
+ },
156
+ chain_2: {
157
+ channel_id: 'channel-5',
158
+ port_id: 'transfer'
159
+ },
160
+ ordering: 'unordered',
161
+ version: 'ics20-1',
162
+ tags: {
163
+ status: 'live',
164
+ preferred: true
165
+ }
166
+ }]
167
+ },
139
168
  {
140
169
  $schema: '../ibc_data.schema.json',
141
170
  chain_1: {
@@ -348,6 +348,35 @@ const info = [
348
348
  }
349
349
  }]
350
350
  },
351
+ {
352
+ $schema: '../ibc_data.schema.json',
353
+ chain_1: {
354
+ chain_name: 'axelar',
355
+ client_id: '07-tendermint-231',
356
+ connection_id: 'connection-222'
357
+ },
358
+ chain_2: {
359
+ chain_name: 'elys',
360
+ client_id: '07-tendermint-4',
361
+ connection_id: 'connection-3'
362
+ },
363
+ channels: [{
364
+ chain_1: {
365
+ channel_id: 'channel-163',
366
+ port_id: 'transfer'
367
+ },
368
+ chain_2: {
369
+ channel_id: 'channel-3',
370
+ port_id: 'transfer'
371
+ },
372
+ ordering: 'unordered',
373
+ version: 'ics20-1',
374
+ tags: {
375
+ status: 'live',
376
+ preferred: true
377
+ }
378
+ }]
379
+ },
351
380
  {
352
381
  $schema: '../ibc_data.schema.json',
353
382
  chain_1: {
@@ -354,6 +354,43 @@ const info = {
354
354
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
355
355
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
356
356
  }
357
+ },
358
+ {
359
+ description: 'The Sherpa memecoin',
360
+ denom_units: [{
361
+ denom: 'ibc/02EE50AB3A4B7540FA001B24CB75E688016F65547CABE885EA184338440080B2',
362
+ exponent: 0
363
+ }, {
364
+ denom: 'Sherpa',
365
+ exponent: 6
366
+ }],
367
+ type_asset: 'ics20',
368
+ base: 'ibc/02EE50AB3A4B7540FA001B24CB75E688016F65547CABE885EA184338440080B2',
369
+ name: 'Sherpa',
370
+ display: 'Sherpa',
371
+ symbol: 'SHERPA',
372
+ logo_URIs: {
373
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sherpa.png'
374
+ },
375
+ images: [{
376
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sherpa.png',
377
+ theme: {
378
+ primary_color_hex: '#fe9cdf'
379
+ }
380
+ }],
381
+ keywords: ['meme'],
382
+ traces: [{
383
+ type: 'ibc',
384
+ counterparty: {
385
+ chain_name: 'osmosis',
386
+ base_denom: 'factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa',
387
+ channel_id: 'channel-340'
388
+ },
389
+ chain: {
390
+ channel_id: 'channel-0',
391
+ path: 'transfer/channel-0/factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa'
392
+ }
393
+ }]
357
394
  }
358
395
  ]
359
396
  };
@@ -86,6 +86,35 @@ const info = [
86
86
  }
87
87
  }]
88
88
  },
89
+ {
90
+ $schema: '../ibc_data.schema.json',
91
+ chain_1: {
92
+ chain_name: 'celestia',
93
+ client_id: '07-tendermint-95',
94
+ connection_id: 'connection-65'
95
+ },
96
+ chain_2: {
97
+ chain_name: 'elys',
98
+ client_id: '07-tendermint-5',
99
+ connection_id: 'connection-4'
100
+ },
101
+ channels: [{
102
+ chain_1: {
103
+ channel_id: 'channel-50',
104
+ port_id: 'transfer'
105
+ },
106
+ chain_2: {
107
+ channel_id: 'channel-4',
108
+ port_id: 'transfer'
109
+ },
110
+ ordering: 'unordered',
111
+ version: 'ics20-1',
112
+ tags: {
113
+ status: 'live',
114
+ preferred: true
115
+ }
116
+ }]
117
+ },
89
118
  {
90
119
  $schema: '../ibc_data.schema.json',
91
120
  chain_1: {
@@ -388,6 +388,37 @@ const info = {
388
388
  primary_color_hex: '#1c1c1c'
389
389
  }
390
390
  }]
391
+ },
392
+ {
393
+ description: 'Chihuahua coin',
394
+ extended_description: 'Chihuahua.baby! Chihuahuas may be small, but they possess a mighty spirit and strong energy. These little dogs are known for their boldness. They are confident, sassy, and full of spunk. They are not afraid to take on much larger adversaries when their loved ones are at stake. Chihuahuas thrive on human companionship and enjoy cuddling up with their owners, providing an abundance of love and affection! Woof woof woof...',
395
+ denom_units: [{
396
+ denom: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/Chihuahua',
397
+ exponent: 0
398
+ }, {
399
+ denom: 'Chihuahua',
400
+ exponent: 6
401
+ }],
402
+ base: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/Chihuahua',
403
+ name: 'Chihuahua',
404
+ display: 'Chihuahua',
405
+ symbol: 'CHIHUAHUA',
406
+ logo_URIs: {
407
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/chihuahua.png'
408
+ },
409
+ images: [{
410
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/chihuahua.png',
411
+ theme: {
412
+ primary_color_hex: '#444444',
413
+ background_color_hex: '#FFBF38',
414
+ circle: true
415
+ }
416
+ }],
417
+ socials: {
418
+ website: 'https://chihuahua.baby/',
419
+ twitter: 'https://x.com/chihuahuacoinx'
420
+ },
421
+ type_asset: 'sdk.coin'
391
422
  }
392
423
  ]
393
424
  };
@@ -189,6 +189,10 @@ const info = {
189
189
  {
190
190
  address: 'https://cosmoshub.rpc.quasarstaking.ai',
191
191
  provider: 'Quasar'
192
+ },
193
+ {
194
+ address: 'https://cosmos-rpc.ibs.team',
195
+ provider: 'Inter Blockchain Services'
192
196
  }
193
197
  ],
194
198
  rest: [
@@ -315,6 +319,10 @@ const info = {
315
319
  {
316
320
  address: 'https://cosmoshub.api.quasarstaking.ai',
317
321
  provider: 'Quasar'
322
+ },
323
+ {
324
+ address: 'https://cosmos-api.ibs.team',
325
+ provider: 'Inter Blockchain Services'
318
326
  }
319
327
  ],
320
328
  grpc: [
@@ -576,6 +576,50 @@ const info = [
576
576
  }
577
577
  }]
578
578
  },
579
+ {
580
+ $schema: '../ibc_data.schema.json',
581
+ chain_1: {
582
+ chain_name: 'cosmoshub',
583
+ client_id: '07-tendermint-1339',
584
+ connection_id: 'connection-1073'
585
+ },
586
+ chain_2: {
587
+ chain_name: 'elys',
588
+ client_id: '07-tendermint-0',
589
+ connection_id: 'connection-1'
590
+ },
591
+ channels: [{
592
+ chain_1: {
593
+ channel_id: 'channel-1265',
594
+ port_id: 'provider'
595
+ },
596
+ chain_2: {
597
+ channel_id: 'channel-0',
598
+ port_id: 'consumer'
599
+ },
600
+ ordering: 'unordered',
601
+ version: 'ics20-1',
602
+ tags: {
603
+ status: 'live',
604
+ preferred: true
605
+ }
606
+ }, {
607
+ chain_1: {
608
+ channel_id: 'channel-1266',
609
+ port_id: 'transfer'
610
+ },
611
+ chain_2: {
612
+ channel_id: 'channel-1',
613
+ port_id: 'transfer'
614
+ },
615
+ ordering: 'unordered',
616
+ version: 'ics20-1',
617
+ tags: {
618
+ status: 'live',
619
+ preferred: true
620
+ }
621
+ }]
622
+ },
579
623
  {
580
624
  $schema: '../ibc_data.schema.json',
581
625
  chain_1: {
@@ -74,6 +74,26 @@ const info = {
74
74
  {
75
75
  address: 'https://community.nuxian-node.ch:6797/elys/trpc',
76
76
  provider: 'PRO Delegators'
77
+ },
78
+ {
79
+ address: 'https://elys-rpc.highstakes.ch',
80
+ provider: 'High Stakes'
81
+ },
82
+ {
83
+ address: 'https://elys-rpc.stake-town.com:443',
84
+ provider: 'StakeTown'
85
+ },
86
+ {
87
+ address: 'https://elys.rpc.m.stavr.tech:443',
88
+ provider: '🔥STAVR🔥'
89
+ },
90
+ {
91
+ address: 'https://elys-rpc.ibs.team',
92
+ provider: 'Inter Blockchain Services'
93
+ },
94
+ {
95
+ address: 'https://elys-rpc.cogwheel.zone:443',
96
+ provider: 'Cogwheel ⚙️'
77
97
  }
78
98
  ],
79
99
  rest: [
@@ -104,6 +124,26 @@ const info = {
104
124
  {
105
125
  address: 'https://community.nuxian-node.ch:6797/elys/crpc',
106
126
  provider: 'PRO Delegators'
127
+ },
128
+ {
129
+ address: 'https://elys-api.highstakes.ch',
130
+ provider: 'High Stakes'
131
+ },
132
+ {
133
+ address: 'https://elys-api.stake-town.com:443',
134
+ provider: 'StakeTown'
135
+ },
136
+ {
137
+ address: 'https://elys.api.m.stavr.tech',
138
+ provider: '🔥STAVR🔥'
139
+ },
140
+ {
141
+ address: 'https://elys-api.ibs.team',
142
+ provider: 'Inter Blockchain Services'
143
+ },
144
+ {
145
+ address: 'https://elys-api.cogwheel.zone:443',
146
+ provider: 'Cogwheel ⚙️'
107
147
  }
108
148
  ],
109
149
  grpc: [
@@ -130,6 +170,14 @@ const info = {
130
170
  {
131
171
  address: 'elys.grpc.liveraven.net:443',
132
172
  provider: 'LiveRaveN'
173
+ },
174
+ {
175
+ address: 'elys-grpc.stake-town.com:443',
176
+ provider: 'StakeTown'
177
+ },
178
+ {
179
+ address: 'elys-grpc.cogwheel.zone:443',
180
+ provider: 'Cogwheel ⚙️'
133
181
  }
134
182
  ]
135
183
  },
@@ -157,6 +205,12 @@ const info = {
157
205
  url: 'https://mainnet.itrocket.net/elys',
158
206
  tx_page: 'https://mainnet.itrocket.net/elys/staking/tx/${txHash}',
159
207
  account_page: 'https://mainnet.itrocket.net/elys/account/${accountAddress}'
208
+ },
209
+ {
210
+ kind: '🔥STAVR🔥',
211
+ url: 'https://explorer.stavr.tech/Elys-Mainnet',
212
+ tx_page: 'https://explorer.stavr.tech/Elys-Mainnet/tx/${txHash}',
213
+ account_page: 'https://explorer.stavr.tech/Elys-Mainnet/account/${accountAddress}'
160
214
  }
161
215
  ]
162
216
  };
@@ -0,0 +1,192 @@
1
+ const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain_1: {
5
+ chain_name: 'akash',
6
+ client_id: '07-tendermint-191',
7
+ connection_id: 'connection-177'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'elys',
11
+ client_id: '07-tendermint-6',
12
+ connection_id: 'connection-5'
13
+ },
14
+ channels: [{
15
+ chain_1: {
16
+ channel_id: 'channel-129',
17
+ port_id: 'transfer'
18
+ },
19
+ chain_2: {
20
+ channel_id: 'channel-5',
21
+ port_id: 'transfer'
22
+ },
23
+ ordering: 'unordered',
24
+ version: 'ics20-1',
25
+ tags: {
26
+ status: 'live',
27
+ preferred: true
28
+ }
29
+ }]
30
+ },
31
+ {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain_1: {
34
+ chain_name: 'axelar',
35
+ client_id: '07-tendermint-231',
36
+ connection_id: 'connection-222'
37
+ },
38
+ chain_2: {
39
+ chain_name: 'elys',
40
+ client_id: '07-tendermint-4',
41
+ connection_id: 'connection-3'
42
+ },
43
+ channels: [{
44
+ chain_1: {
45
+ channel_id: 'channel-163',
46
+ port_id: 'transfer'
47
+ },
48
+ chain_2: {
49
+ channel_id: 'channel-3',
50
+ port_id: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
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-95',
65
+ connection_id: 'connection-65'
66
+ },
67
+ chain_2: {
68
+ chain_name: 'elys',
69
+ client_id: '07-tendermint-5',
70
+ connection_id: 'connection-4'
71
+ },
72
+ channels: [{
73
+ chain_1: {
74
+ channel_id: 'channel-50',
75
+ port_id: 'transfer'
76
+ },
77
+ chain_2: {
78
+ channel_id: 'channel-4',
79
+ port_id: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
86
+ }
87
+ }]
88
+ },
89
+ {
90
+ $schema: '../ibc_data.schema.json',
91
+ chain_1: {
92
+ chain_name: 'cosmoshub',
93
+ client_id: '07-tendermint-1339',
94
+ connection_id: 'connection-1073'
95
+ },
96
+ chain_2: {
97
+ chain_name: 'elys',
98
+ client_id: '07-tendermint-0',
99
+ connection_id: 'connection-1'
100
+ },
101
+ channels: [{
102
+ chain_1: {
103
+ channel_id: 'channel-1265',
104
+ port_id: 'provider'
105
+ },
106
+ chain_2: {
107
+ channel_id: 'channel-0',
108
+ port_id: 'consumer'
109
+ },
110
+ ordering: 'unordered',
111
+ version: 'ics20-1',
112
+ tags: {
113
+ status: 'live',
114
+ preferred: true
115
+ }
116
+ }, {
117
+ chain_1: {
118
+ channel_id: 'channel-1266',
119
+ port_id: 'transfer'
120
+ },
121
+ chain_2: {
122
+ channel_id: 'channel-1',
123
+ port_id: 'transfer'
124
+ },
125
+ ordering: 'unordered',
126
+ version: 'ics20-1',
127
+ tags: {
128
+ status: 'live',
129
+ preferred: true
130
+ }
131
+ }]
132
+ },
133
+ {
134
+ $schema: '../ibc_data.schema.json',
135
+ chain_1: {
136
+ chain_name: 'elys',
137
+ client_id: '07-tendermint-3',
138
+ connection_id: 'connection-2'
139
+ },
140
+ chain_2: {
141
+ chain_name: 'noble',
142
+ client_id: '07-tendermint-133',
143
+ connection_id: 'connection-130'
144
+ },
145
+ channels: [{
146
+ chain_1: {
147
+ channel_id: 'channel-2',
148
+ port_id: 'transfer'
149
+ },
150
+ chain_2: {
151
+ channel_id: 'channel-117',
152
+ port_id: 'transfer'
153
+ },
154
+ ordering: 'unordered',
155
+ version: 'ics20-1',
156
+ tags: {
157
+ status: 'live',
158
+ preferred: true
159
+ }
160
+ }]
161
+ },
162
+ {
163
+ $schema: '../ibc_data.schema.json',
164
+ chain_1: {
165
+ chain_name: 'elys',
166
+ client_id: '07-tendermint-9',
167
+ connection_id: 'connection-9'
168
+ },
169
+ chain_2: {
170
+ chain_name: 'osmosis',
171
+ client_id: '07-tendermint-3385',
172
+ connection_id: 'connection-2839'
173
+ },
174
+ channels: [{
175
+ chain_1: {
176
+ channel_id: 'channel-6',
177
+ port_id: 'transfer'
178
+ },
179
+ chain_2: {
180
+ channel_id: 'channel-91017',
181
+ port_id: 'transfer'
182
+ },
183
+ ordering: 'unordered',
184
+ version: 'ics20-1',
185
+ tags: {
186
+ status: 'live',
187
+ preferred: true
188
+ }
189
+ }]
190
+ }
191
+ ];
192
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assets from './assets';
2
2
  import _chain from './chain';
3
+ import _ibc from './ibc';
3
4
  export const assets = _assets;
4
5
  export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -41,6 +41,7 @@ import * as _dydx from './dydx';
41
41
  import * as _dymension from './dymension';
42
42
  import * as _dyson from './dyson';
43
43
  import * as _echelon from './echelon';
44
+ import * as _elys from './elys';
44
45
  import * as _emoney from './emoney';
45
46
  import * as _empowerchain from './empowerchain';
46
47
  import * as _evmos from './evmos';
@@ -189,6 +190,7 @@ const ibc = [
189
190
  ..._dymension.ibc,
190
191
  ..._dyson.ibc,
191
192
  ..._echelon.ibc,
193
+ ..._elys.ibc,
192
194
  ..._emoney.ibc,
193
195
  ..._empowerchain.ibc,
194
196
  ..._evmos.ibc,
@@ -112,6 +112,10 @@ const info = {
112
112
  {
113
113
  address: 'https://neutron.drpc.org',
114
114
  provider: 'dRPC'
115
+ },
116
+ {
117
+ address: 'https://neutron-rpc.ibs.team',
118
+ provider: 'Inter Blockchain Services'
115
119
  }
116
120
  ],
117
121
  rest: [
@@ -150,6 +154,10 @@ const info = {
150
154
  {
151
155
  address: 'https://api.neutron.quokkastake.io',
152
156
  provider: '🐹 Quokka Stake'
157
+ },
158
+ {
159
+ address: 'https://neutron-api.ibs.team',
160
+ provider: 'Inter Blockchain Services'
153
161
  }
154
162
  ],
155
163
  grpc: [
@@ -288,6 +288,35 @@ const info = [
288
288
  }
289
289
  }]
290
290
  },
291
+ {
292
+ $schema: '../ibc_data.schema.json',
293
+ chain_1: {
294
+ chain_name: 'elys',
295
+ client_id: '07-tendermint-3',
296
+ connection_id: 'connection-2'
297
+ },
298
+ chain_2: {
299
+ chain_name: 'noble',
300
+ client_id: '07-tendermint-133',
301
+ connection_id: 'connection-130'
302
+ },
303
+ channels: [{
304
+ chain_1: {
305
+ channel_id: 'channel-2',
306
+ port_id: 'transfer'
307
+ },
308
+ chain_2: {
309
+ channel_id: 'channel-117',
310
+ port_id: 'transfer'
311
+ },
312
+ ordering: 'unordered',
313
+ version: 'ics20-1',
314
+ tags: {
315
+ status: 'live',
316
+ preferred: true
317
+ }
318
+ }]
319
+ },
291
320
  {
292
321
  $schema: '../ibc_data.schema.json',
293
322
  chain_1: {
@@ -1355,6 +1355,35 @@ const info = [
1355
1355
  }
1356
1356
  }]
1357
1357
  },
1358
+ {
1359
+ $schema: '../ibc_data.schema.json',
1360
+ chain_1: {
1361
+ chain_name: 'elys',
1362
+ client_id: '07-tendermint-9',
1363
+ connection_id: 'connection-9'
1364
+ },
1365
+ chain_2: {
1366
+ chain_name: 'osmosis',
1367
+ client_id: '07-tendermint-3385',
1368
+ connection_id: 'connection-2839'
1369
+ },
1370
+ channels: [{
1371
+ chain_1: {
1372
+ channel_id: 'channel-6',
1373
+ port_id: 'transfer'
1374
+ },
1375
+ chain_2: {
1376
+ channel_id: 'channel-91017',
1377
+ port_id: 'transfer'
1378
+ },
1379
+ ordering: 'unordered',
1380
+ version: 'ics20-1',
1381
+ tags: {
1382
+ status: 'live',
1383
+ preferred: true
1384
+ }
1385
+ }]
1386
+ },
1358
1387
  {
1359
1388
  $schema: '../ibc_data.schema.json',
1360
1389
  chain_1: {