chain-registry 1.69.86 → 1.69.88

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 (37) hide show
  1. package/esm/mainnet/beezee/assets.js +48 -0
  2. package/esm/mainnet/chihuahua/assets.js +31 -0
  3. package/esm/mainnet/cosmoshub/assets.js +37 -0
  4. package/esm/mainnet/elys/assets.js +179 -2
  5. package/esm/mainnet/elys/chain.js +8 -0
  6. package/esm/mainnet/elys/ibc.js +29 -0
  7. package/esm/mainnet/injective/assets.js +112 -0
  8. package/esm/mainnet/neutron/assets.js +41 -0
  9. package/esm/mainnet/osmosis/assets.js +43 -0
  10. package/esm/mainnet/osmosis/chain.js +12 -0
  11. package/esm/mainnet/terra2/assets.js +30 -0
  12. package/esm/mainnet/xion/ibc.js +29 -0
  13. package/esm/testnet/ibc.js +2 -0
  14. package/esm/testnet/manifesttestnet/ibc.js +29 -0
  15. package/esm/testnet/manifesttestnet/index.js +2 -0
  16. package/esm/testnet/osmosistestnet/ibc.js +28 -0
  17. package/esm/testnet/uniontestnet/chain.js +11 -44
  18. package/mainnet/beezee/assets.js +48 -0
  19. package/mainnet/chihuahua/assets.js +31 -0
  20. package/mainnet/cosmoshub/assets.js +37 -0
  21. package/mainnet/elys/assets.js +179 -2
  22. package/mainnet/elys/chain.js +8 -0
  23. package/mainnet/elys/ibc.js +29 -0
  24. package/mainnet/injective/assets.js +112 -0
  25. package/mainnet/neutron/assets.js +41 -0
  26. package/mainnet/osmosis/assets.js +43 -0
  27. package/mainnet/osmosis/chain.js +12 -0
  28. package/mainnet/terra2/assets.js +30 -0
  29. package/mainnet/xion/ibc.js +29 -0
  30. package/package.json +4 -4
  31. package/testnet/ibc.js +2 -0
  32. package/testnet/manifesttestnet/ibc.d.ts +3 -0
  33. package/testnet/manifesttestnet/ibc.js +31 -0
  34. package/testnet/manifesttestnet/index.d.ts +1 -0
  35. package/testnet/manifesttestnet/index.js +3 -1
  36. package/testnet/osmosistestnet/ibc.js +28 -0
  37. package/testnet/uniontestnet/chain.js +11 -44
@@ -1453,6 +1453,36 @@ const info = {
1453
1453
  primary_color_hex: '#1c1c1c'
1454
1454
  }
1455
1455
  }]
1456
+ },
1457
+ {
1458
+ description: 'ERIS Arbitrage LUNA',
1459
+ type_asset: 'cw20',
1460
+ address: 'terra1se7rvuerys4kd2snt6vqswh9wugu49vhyzls8ymc02wl37g2p2ms5yz490',
1461
+ denom_units: [{
1462
+ denom: 'cw20:terra1se7rvuerys4kd2snt6vqswh9wugu49vhyzls8ymc02wl37g2p2ms5yz490',
1463
+ exponent: 0
1464
+ }, {
1465
+ denom: 'arbLUNA',
1466
+ exponent: 6
1467
+ }],
1468
+ base: 'cw20:terra1se7rvuerys4kd2snt6vqswh9wugu49vhyzls8ymc02wl37g2p2ms5yz490',
1469
+ name: 'ERIS Arb LUNA',
1470
+ display: 'arbLUNA',
1471
+ symbol: 'arbLUNA',
1472
+ logo_URIs: {
1473
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/arbluna.svg'
1474
+ },
1475
+ images: [{
1476
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/arbluna.svg'
1477
+ }],
1478
+ traces: [{
1479
+ type: 'synthetic',
1480
+ counterparty: {
1481
+ chain_name: 'terra2',
1482
+ base_denom: 'uluna'
1483
+ },
1484
+ provider: 'ERIS Protocol'
1485
+ }]
1456
1486
  }
1457
1487
  ]
1458
1488
  };
@@ -28,6 +28,35 @@ const info = [
28
28
  }
29
29
  }]
30
30
  },
31
+ {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain_1: {
34
+ chain_name: 'elys',
35
+ client_id: '07-tendermint-11',
36
+ connection_id: 'connection-11'
37
+ },
38
+ chain_2: {
39
+ chain_name: 'xion',
40
+ client_id: '07-tendermint-7',
41
+ connection_id: 'connection-8'
42
+ },
43
+ channels: [{
44
+ chain_1: {
45
+ channel_id: 'channel-8',
46
+ port_id: 'transfer'
47
+ },
48
+ chain_2: {
49
+ channel_id: 'channel-9',
50
+ port_id: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ },
31
60
  {
32
61
  $schema: '../ibc_data.schema.json',
33
62
  chain_1: {
@@ -19,6 +19,7 @@ import * as _kujiratestnet from './kujiratestnet';
19
19
  import * as _kyvetestnet from './kyvetestnet';
20
20
  import * as _lavatestnet from './lavatestnet';
21
21
  import * as _likecointestnet from './likecointestnet';
22
+ import * as _manifesttestnet from './manifesttestnet';
22
23
  import * as _mantrachaintestnet from './mantrachaintestnet';
23
24
  import * as _marstestnet from './marstestnet';
24
25
  import * as _neutrontestnet from './neutrontestnet';
@@ -61,6 +62,7 @@ const ibc = [
61
62
  ..._kyvetestnet.ibc,
62
63
  ..._lavatestnet.ibc,
63
64
  ..._likecointestnet.ibc,
65
+ ..._manifesttestnet.ibc,
64
66
  ..._mantrachaintestnet.ibc,
65
67
  ..._marstestnet.ibc,
66
68
  ..._neutrontestnet.ibc,
@@ -0,0 +1,29 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'manifesttestnet',
5
+ client_id: '07-tendermint-0',
6
+ connection_id: 'connection-0'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'osmosistestnet',
10
+ client_id: '07-tendermint-4314',
11
+ connection_id: 'connection-3774'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-0',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-10016',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live'
26
+ }
27
+ }]
28
+ }];
29
+ 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;
@@ -564,6 +564,34 @@ const info = [
564
564
  }
565
565
  }]
566
566
  },
567
+ {
568
+ $schema: '../../ibc_data.schema.json',
569
+ chain_1: {
570
+ chain_name: 'manifesttestnet',
571
+ client_id: '07-tendermint-0',
572
+ connection_id: 'connection-0'
573
+ },
574
+ chain_2: {
575
+ chain_name: 'osmosistestnet',
576
+ client_id: '07-tendermint-4314',
577
+ connection_id: 'connection-3774'
578
+ },
579
+ channels: [{
580
+ chain_1: {
581
+ channel_id: 'channel-0',
582
+ port_id: 'transfer'
583
+ },
584
+ chain_2: {
585
+ channel_id: 'channel-10016',
586
+ port_id: 'transfer'
587
+ },
588
+ ordering: 'unordered',
589
+ version: 'ics20-1',
590
+ tags: {
591
+ status: 'live'
592
+ }
593
+ }]
594
+ },
567
595
  {
568
596
  $schema: '../../ibc_data.schema.json',
569
597
  chain_1: {
@@ -5,7 +5,7 @@ const info = {
5
5
  network_type: 'testnet',
6
6
  pretty_name: 'Union Testnet',
7
7
  chain_type: 'cosmos',
8
- chain_id: 'union-testnet-8',
8
+ chain_id: 'union-testnet-9',
9
9
  bech32_prefix: 'union',
10
10
  daemon_name: 'uniond',
11
11
  node_home: '$HOME/.uniond',
@@ -26,27 +26,13 @@ const info = {
26
26
  }]
27
27
  },
28
28
  apis: {
29
- rpc: [
30
- {
31
- address: 'https://rpc.testnet-8.union.build',
29
+ rpc: [{
30
+ address: 'https://rpc.testnet-9.union.build',
32
31
  provider: 'union'
33
- },
34
- {
35
- address: 'https://union-testnet-rpc.polkachu.com',
36
- provider: 'Polkachu'
37
- },
38
- {
39
- address: 'https://rpc-testnet-union.nodeist.net',
40
- provider: 'Nodeist'
41
- },
42
- {
43
- address: 'https://union-testnet-rpc.itrocket.net',
44
- provider: 'ITRocket'
45
- }
46
- ],
32
+ }],
47
33
  rest: [
48
34
  {
49
- address: 'https://rest.testnet-8.union.build',
35
+ address: 'https://rest.testnet-9.union.build',
50
36
  provider: 'union'
51
37
  },
52
38
  {
@@ -62,38 +48,19 @@ const info = {
62
48
  provider: 'ITRocket'
63
49
  }
64
50
  ],
65
- grpc: [
66
- {
67
- address: 'grpc.testnet-8.union.build',
51
+ grpc: [{
52
+ address: 'grpc.testnet-9.union.build',
68
53
  provider: 'union'
69
- },
70
- {
71
- address: 'http://union-testnet-grpc.polkachu.com:24690',
72
- provider: 'Polkachu'
73
- },
74
- {
75
- address: 'https://grpc-testnet-union.nodeist.net',
76
- provider: 'Nodeist'
77
- },
78
- {
79
- address: 'http://union-testnet-grpc.itrocket.net:23090',
80
- provider: 'ITRocket'
81
- }
82
- ]
54
+ }]
83
55
  },
84
56
  logo_URIs: {
85
57
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/uniontestnet/images/union.png'
86
58
  },
87
59
  explorers: [{
88
60
  kind: 'ping.pub',
89
- url: 'https://explorer.testnet-8.union.build/union',
90
- tx_page: 'https://explorer.testnet-8.union.build/union/tx/${txHash}',
91
- account_page: 'https://explorer.testnet-8.union.build/union/account/${accountAddress}'
92
- }, {
93
- kind: 'explorers.guru',
94
- url: 'https://testnet.union.explorers.guru',
95
- tx_page: 'https://testnet.union.explorers.guru/transaction/${txHash}',
96
- account_page: 'https://testnet.union.explorers.guru/account/${accountAddress}'
61
+ url: 'https://explorer.testnet-9.union.build/union',
62
+ tx_page: 'https://explorer.testnet-9.union.build/union/tx/${txHash}',
63
+ account_page: 'https://explorer.testnet-9.union.build/union/account/${accountAddress}'
97
64
  }],
98
65
  keywords: ['testnet'],
99
66
  images: [{
@@ -434,6 +434,54 @@ const info = {
434
434
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
435
435
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg'
436
436
  }
437
+ },
438
+ {
439
+ description: 'PHMN from Osmosis',
440
+ denom_units: [{
441
+ denom: 'ibc/12C0B8B561AFCFDA3C73DEE0F7F84AA2B860D48493C27E8E81A5D14724FAB08B',
442
+ exponent: 0,
443
+ aliases: ['cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l']
444
+ }, {
445
+ denom: 'phmn',
446
+ exponent: 6,
447
+ aliases: []
448
+ }],
449
+ type_asset: 'ics20',
450
+ base: 'ibc/12C0B8B561AFCFDA3C73DEE0F7F84AA2B860D48493C27E8E81A5D14724FAB08B',
451
+ name: 'POSTHUMAN',
452
+ display: 'phmn',
453
+ symbol: 'PHMN',
454
+ traces: [{
455
+ type: 'ibc',
456
+ counterparty: {
457
+ chain_name: 'osmosis',
458
+ base_denom: 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B',
459
+ channel_id: 'channel-340'
460
+ },
461
+ chain: {
462
+ channel_id: 'channel-0',
463
+ path: 'transfer/channel-0/transfer/channel-169/cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l'
464
+ }
465
+ }],
466
+ logo_URIs: {
467
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png',
468
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg'
469
+ },
470
+ images: [{
471
+ image_sync: {
472
+ chain_name: 'juno',
473
+ base_denom: 'cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l'
474
+ },
475
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png',
476
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg',
477
+ theme: {
478
+ primary_color_hex: '#bbc2c6'
479
+ }
480
+ }],
481
+ socials: {
482
+ website: 'https://posthuman.digital/',
483
+ twitter: 'https://twitter.com/POSTHUMAN_DVS'
484
+ }
437
485
  }
438
486
  ]
439
487
  };
@@ -421,6 +421,37 @@ const info = {
421
421
  twitter: 'https://x.com/chihuahuacoinx'
422
422
  },
423
423
  type_asset: 'sdk.coin'
424
+ },
425
+ {
426
+ description: 'WLF coin',
427
+ extended_description: '$WLF Wire Liberty Fence meme coin! Wirelibertyfence.xyz',
428
+ denom_units: [{
429
+ denom: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/wirelibertyfence',
430
+ exponent: 0
431
+ }, {
432
+ denom: 'WLF',
433
+ exponent: 6
434
+ }],
435
+ base: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/wirelibertyfence',
436
+ name: 'wirelibertyfence',
437
+ display: 'WLF',
438
+ symbol: 'WLF',
439
+ logo_URIs: {
440
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/wirelibertyfence.png'
441
+ },
442
+ images: [{
443
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/wirelibertyfence.png',
444
+ theme: {
445
+ primary_color_hex: '#BD963D',
446
+ background_color_hex: '#6C165E',
447
+ circle: true
448
+ }
449
+ }],
450
+ socials: {
451
+ website: 'https://wirelibertyfence.xyz/',
452
+ twitter: 'https://x.com/Wirelibertyfence_CTO'
453
+ },
454
+ type_asset: 'sdk.coin'
424
455
  }
425
456
  ]
426
457
  };
@@ -162,6 +162,43 @@ const info = {
162
162
  primary_color_hex: '#04fbfb'
163
163
  }
164
164
  }]
165
+ },
166
+ {
167
+ description: 'The native token of Dungeon Chain',
168
+ denom_units: [{
169
+ denom: 'ibc/7A64BFC809209157A1330CE199891B699A2C3B55C384EAFCCDD23ECDC735BA73',
170
+ exponent: 0,
171
+ aliases: ['udgn']
172
+ }, {
173
+ denom: 'dgn',
174
+ exponent: 6
175
+ }],
176
+ type_asset: 'ics20',
177
+ base: 'ibc/7A64BFC809209157A1330CE199891B699A2C3B55C384EAFCCDD23ECDC735BA73',
178
+ name: 'Dungeon',
179
+ display: 'dgn',
180
+ symbol: 'DGN',
181
+ traces: [{
182
+ type: 'ibc',
183
+ counterparty: {
184
+ chain_name: 'dungeon',
185
+ base_denom: 'udgn',
186
+ channel_id: 'channel-1'
187
+ },
188
+ chain: {
189
+ channel_id: 'channel-1200',
190
+ path: 'transfer/channel-1200/udgn'
191
+ }
192
+ }],
193
+ logo_URIs: {
194
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png'
195
+ },
196
+ images: [{
197
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png',
198
+ theme: {
199
+ primary_color_hex: '#1c1c1c'
200
+ }
201
+ }]
165
202
  }
166
203
  ]
167
204
  };
@@ -159,8 +159,7 @@ const info = {
159
159
  aliases: ['microaxl']
160
160
  }, {
161
161
  denom: 'axl',
162
- exponent: 6,
163
- aliases: []
162
+ exponent: 6
164
163
  }],
165
164
  type_asset: 'ics20',
166
165
  base: 'ibc/9463E39D230614B313B487836D13A392BD1731928713D4C8427A083627048DB3',
@@ -194,6 +193,184 @@ const info = {
194
193
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
195
194
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
196
195
  }
196
+ },
197
+ {
198
+ description: 'Akash Network Token',
199
+ denom_units: [{
200
+ denom: 'ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098',
201
+ exponent: 0,
202
+ aliases: ['uakt']
203
+ }, {
204
+ denom: 'akt',
205
+ exponent: 6
206
+ }],
207
+ type_asset: 'ics20',
208
+ base: 'ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098',
209
+ name: 'Akash',
210
+ display: 'akt',
211
+ symbol: 'AKT',
212
+ traces: [{
213
+ type: 'ibc',
214
+ counterparty: {
215
+ chain_name: 'akash',
216
+ base_denom: 'uakt',
217
+ channel_id: 'channel-129'
218
+ },
219
+ chain: {
220
+ channel_id: 'channel-5',
221
+ path: 'transfer/channel-5/uakt'
222
+ }
223
+ }],
224
+ images: [{
225
+ image_sync: {
226
+ chain_name: 'akash',
227
+ base_denom: 'uakt'
228
+ },
229
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
230
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg',
231
+ theme: {
232
+ primary_color_hex: '#bc342c'
233
+ }
234
+ }],
235
+ logo_URIs: {
236
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
237
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
238
+ }
239
+ },
240
+ {
241
+ description: 'Celestia Network Token',
242
+ denom_units: [{
243
+ denom: 'ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229',
244
+ exponent: 0,
245
+ aliases: ['utia']
246
+ }, {
247
+ denom: 'tia',
248
+ exponent: 6
249
+ }],
250
+ type_asset: 'ics20',
251
+ base: 'ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229',
252
+ name: 'Celestia',
253
+ display: 'tia',
254
+ symbol: 'TIA',
255
+ traces: [{
256
+ type: 'ibc',
257
+ counterparty: {
258
+ chain_name: 'celestia',
259
+ base_denom: 'utia',
260
+ channel_id: 'channel-50'
261
+ },
262
+ chain: {
263
+ channel_id: 'channel-4',
264
+ path: 'transfer/channel-4/utia'
265
+ }
266
+ }],
267
+ images: [{
268
+ image_sync: {
269
+ chain_name: 'celestia',
270
+ base_denom: 'utia'
271
+ },
272
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
273
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
274
+ theme: {
275
+ primary_color_hex: '#7c2cfb'
276
+ }
277
+ }],
278
+ logo_URIs: {
279
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
280
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
281
+ }
282
+ },
283
+ {
284
+ description: 'Xion Network Token',
285
+ denom_units: [{
286
+ denom: 'ibc/6BFB09FE2464A7681645610F56BBEFF555A00B8AE146339FEB4609BF40FB0F4A',
287
+ exponent: 0,
288
+ aliases: ['uxion']
289
+ }, {
290
+ denom: 'xion',
291
+ exponent: 6
292
+ }],
293
+ type_asset: 'ics20',
294
+ base: 'ibc/6BFB09FE2464A7681645610F56BBEFF555A00B8AE146339FEB4609BF40FB0F4A',
295
+ name: 'Xion',
296
+ display: 'xion',
297
+ symbol: 'XION',
298
+ traces: [{
299
+ type: 'ibc',
300
+ counterparty: {
301
+ chain_name: 'xion',
302
+ base_denom: 'uxion',
303
+ channel_id: 'channel-9'
304
+ },
305
+ chain: {
306
+ channel_id: 'channel-8',
307
+ path: 'transfer/channel-8/uxion'
308
+ }
309
+ }],
310
+ images: [{
311
+ image_sync: {
312
+ chain_name: 'xion',
313
+ base_denom: 'uxion'
314
+ },
315
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png',
316
+ theme: {
317
+ primary_color_hex: '#1c1c1c'
318
+ }
319
+ }],
320
+ logo_URIs: {
321
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
322
+ }
323
+ },
324
+ {
325
+ description: 'Saga Network Token',
326
+ denom_units: [{
327
+ denom: 'ibc/B88C39AD6C8550716DFD64C3AD28F355633554821249AC9F8BCC21341641CD18',
328
+ exponent: 0,
329
+ aliases: ['usaga']
330
+ }, {
331
+ denom: 'saga',
332
+ exponent: 6
333
+ }],
334
+ type_asset: 'ics20',
335
+ base: 'ibc/B88C39AD6C8550716DFD64C3AD28F355633554821249AC9F8BCC21341641CD18',
336
+ name: 'Saga',
337
+ display: 'saga',
338
+ symbol: 'SAGA',
339
+ traces: [{
340
+ type: 'ibc',
341
+ counterparty: {
342
+ chain_name: 'saga',
343
+ base_denom: 'usaga',
344
+ channel_id: 'channel-35'
345
+ },
346
+ chain: {
347
+ channel_id: 'channel-9',
348
+ path: 'transfer/channel-9/usaga'
349
+ }
350
+ }],
351
+ images: [{
352
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
353
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg',
354
+ theme: {
355
+ primary_color_hex: '#FFFFFF',
356
+ dark_mode: true
357
+ }
358
+ }, {
359
+ image_sync: {
360
+ chain_name: 'saga',
361
+ base_denom: 'usaga'
362
+ },
363
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
364
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
365
+ theme: {
366
+ primary_color_hex: '#000000',
367
+ dark_mode: false
368
+ }
369
+ }],
370
+ logo_URIs: {
371
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
372
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg'
373
+ }
197
374
  }
198
375
  ]
199
376
  };
@@ -65,6 +65,10 @@ const info = {
65
65
  address: 'https://elys-rpc.publicnode.com:443',
66
66
  provider: 'Allnodes ⚡️ Nodes & Staking'
67
67
  },
68
+ {
69
+ address: 'https://elys.rpc.vnodes.io:443',
70
+ provider: 'vNodes[V] > s[E]vices'
71
+ },
68
72
  {
69
73
  address: 'https://elys-mainnet-rpc.itrocket.net:443',
70
74
  provider: 'itrocket'
@@ -131,6 +135,10 @@ const info = {
131
135
  address: 'https://elys-rest.publicnode.com',
132
136
  provider: 'Allnodes ⚡️ Nodes & Staking'
133
137
  },
138
+ {
139
+ address: 'https://elys.rest.vnodes.io:443',
140
+ provider: 'vNodes[V] > s[E]vices'
141
+ },
134
142
  {
135
143
  address: 'https://elys-mainnet-api.itrocket.net',
136
144
  provider: 'itrocket'
@@ -218,6 +218,35 @@ const info = [
218
218
  preferred: true
219
219
  }
220
220
  }]
221
+ },
222
+ {
223
+ $schema: '../ibc_data.schema.json',
224
+ chain_1: {
225
+ chain_name: 'elys',
226
+ client_id: '07-tendermint-11',
227
+ connection_id: 'connection-11'
228
+ },
229
+ chain_2: {
230
+ chain_name: 'xion',
231
+ client_id: '07-tendermint-7',
232
+ connection_id: 'connection-8'
233
+ },
234
+ channels: [{
235
+ chain_1: {
236
+ channel_id: 'channel-8',
237
+ port_id: 'transfer'
238
+ },
239
+ chain_2: {
240
+ channel_id: 'channel-9',
241
+ port_id: 'transfer'
242
+ },
243
+ ordering: 'unordered',
244
+ version: 'ics20-1',
245
+ tags: {
246
+ status: 'live',
247
+ preferred: true
248
+ }
249
+ }]
221
250
  }
222
251
  ];
223
252
  exports.default = info;