chain-registry 1.69.52 → 1.69.54

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 (83) hide show
  1. package/devnet/kyvedevnet/chain.js +5 -4
  2. package/esm/devnet/kyvedevnet/chain.js +5 -4
  3. package/esm/mainnet/aaronetwork/assets.js +34 -0
  4. package/esm/mainnet/aaronetwork/chain.js +44 -0
  5. package/esm/mainnet/aaronetwork/index.js +4 -0
  6. package/esm/mainnet/archway/assets.js +43 -0
  7. package/esm/mainnet/archway/ibc.js +29 -0
  8. package/esm/mainnet/assets.js +6 -0
  9. package/esm/mainnet/axelar/ibc.js +29 -0
  10. package/esm/mainnet/chains.js +6 -0
  11. package/esm/mainnet/chihuahua/assets.js +43 -0
  12. package/esm/mainnet/cosmoshub/ibc.js +29 -0
  13. package/esm/mainnet/ibc.js +4 -0
  14. package/esm/mainnet/injective/assets.js +43 -0
  15. package/esm/mainnet/injective/ibc.js +58 -0
  16. package/esm/mainnet/juno/assets.js +43 -0
  17. package/esm/mainnet/kopi/assets.js +395 -0
  18. package/esm/mainnet/kopi/chain.js +203 -0
  19. package/esm/mainnet/kopi/ibc.js +148 -0
  20. package/esm/mainnet/kopi/index.js +6 -0
  21. package/esm/mainnet/kyve/chain.js +14 -2
  22. package/esm/mainnet/migaloo/ibc.js +29 -0
  23. package/esm/mainnet/named.js +3 -0
  24. package/esm/mainnet/noble/ibc.js +58 -0
  25. package/esm/mainnet/osmosis/ibc.js +58 -0
  26. package/esm/mainnet/persistence/assets.js +12 -6
  27. package/esm/mainnet/synternet/chain.js +20 -6
  28. package/esm/mainnet/terra2/assets.js +43 -0
  29. package/esm/mainnet/terra2/ibc.js +29 -0
  30. package/esm/mainnet/xion/assets.js +34 -0
  31. package/esm/mainnet/xion/chain.js +125 -0
  32. package/esm/mainnet/xion/ibc.js +119 -0
  33. package/esm/mainnet/xion/index.js +6 -0
  34. package/esm/testnet/kyvetestnet/chain.js +7 -2
  35. package/esm/testnet/xiontestnet/assets.js +1 -0
  36. package/esm/testnet/xiontestnet/chain.js +22 -18
  37. package/mainnet/aaronetwork/assets.d.ts +3 -0
  38. package/mainnet/aaronetwork/assets.js +36 -0
  39. package/mainnet/aaronetwork/chain.d.ts +3 -0
  40. package/mainnet/aaronetwork/chain.js +46 -0
  41. package/mainnet/aaronetwork/index.d.ts +2 -0
  42. package/mainnet/aaronetwork/index.js +10 -0
  43. package/mainnet/archway/assets.js +43 -0
  44. package/mainnet/archway/ibc.js +29 -0
  45. package/mainnet/assets.js +6 -0
  46. package/mainnet/axelar/ibc.js +29 -0
  47. package/mainnet/chains.js +6 -0
  48. package/mainnet/chihuahua/assets.js +43 -0
  49. package/mainnet/cosmoshub/ibc.js +29 -0
  50. package/mainnet/ibc.js +4 -0
  51. package/mainnet/injective/assets.js +43 -0
  52. package/mainnet/injective/ibc.js +58 -0
  53. package/mainnet/juno/assets.js +43 -0
  54. package/mainnet/kopi/assets.d.ts +3 -0
  55. package/mainnet/kopi/assets.js +397 -0
  56. package/mainnet/kopi/chain.d.ts +3 -0
  57. package/mainnet/kopi/chain.js +205 -0
  58. package/mainnet/kopi/ibc.d.ts +3 -0
  59. package/mainnet/kopi/ibc.js +150 -0
  60. package/mainnet/kopi/index.d.ts +3 -0
  61. package/mainnet/kopi/index.js +12 -0
  62. package/mainnet/kyve/chain.js +14 -2
  63. package/mainnet/migaloo/ibc.js +29 -0
  64. package/mainnet/named.d.ts +3 -0
  65. package/mainnet/named.js +7 -4
  66. package/mainnet/noble/ibc.js +58 -0
  67. package/mainnet/osmosis/ibc.js +58 -0
  68. package/mainnet/persistence/assets.js +12 -6
  69. package/mainnet/synternet/chain.js +20 -6
  70. package/mainnet/terra2/assets.js +43 -0
  71. package/mainnet/terra2/ibc.js +29 -0
  72. package/mainnet/xion/assets.d.ts +3 -0
  73. package/mainnet/xion/assets.js +36 -0
  74. package/mainnet/xion/chain.d.ts +3 -0
  75. package/mainnet/xion/chain.js +127 -0
  76. package/mainnet/xion/ibc.d.ts +3 -0
  77. package/mainnet/xion/ibc.js +121 -0
  78. package/mainnet/xion/index.d.ts +3 -0
  79. package/mainnet/xion/index.js +12 -0
  80. package/package.json +4 -4
  81. package/testnet/kyvetestnet/chain.js +7 -2
  82. package/testnet/xiontestnet/assets.js +1 -0
  83. package/testnet/xiontestnet/chain.js +22 -18
@@ -9,7 +9,7 @@ const info = {
9
9
  status: 'live',
10
10
  network_type: 'devnet',
11
11
  bech32_prefix: 'kyve',
12
- daemon_name: 'chaind',
12
+ daemon_name: 'kyved',
13
13
  node_home: '$HOME/.kyve',
14
14
  key_algos: ['secp256k1'],
15
15
  slip44: 118,
@@ -31,9 +31,10 @@ const info = {
31
31
  }]
32
32
  },
33
33
  explorers: [{
34
- kind: 'explorers.guru',
35
- url: 'https://kyve.explorers.guru/',
36
- tx_page: 'https://kyve.explorers.guru/transaction/${txHash}'
34
+ kind: 'KYVE Explorer',
35
+ url: 'https://explorer.kyve.network/korellia',
36
+ tx_page: 'https://explorer.kyve.network/korellia/tx/${txHash}',
37
+ account_page: 'https://explorer.kyve.network/korellia/account/${accountAddress}'
37
38
  }]
38
39
  };
39
40
  exports.default = info;
@@ -7,7 +7,7 @@ const info = {
7
7
  status: 'live',
8
8
  network_type: 'devnet',
9
9
  bech32_prefix: 'kyve',
10
- daemon_name: 'chaind',
10
+ daemon_name: 'kyved',
11
11
  node_home: '$HOME/.kyve',
12
12
  key_algos: ['secp256k1'],
13
13
  slip44: 118,
@@ -29,9 +29,10 @@ const info = {
29
29
  }]
30
30
  },
31
31
  explorers: [{
32
- kind: 'explorers.guru',
33
- url: 'https://kyve.explorers.guru/',
34
- tx_page: 'https://kyve.explorers.guru/transaction/${txHash}'
32
+ kind: 'KYVE Explorer',
33
+ url: 'https://explorer.kyve.network/korellia',
34
+ tx_page: 'https://explorer.kyve.network/korellia/tx/${txHash}',
35
+ account_page: 'https://explorer.kyve.network/korellia/account/${accountAddress}'
35
36
  }]
36
37
  };
37
38
  export default info;
@@ -0,0 +1,34 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'aaronetwork',
4
+ assets: [{
5
+ description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently.',
6
+ extended_description: 'Aaron Network is an innovative platform for secure and private messaging, integrated into the blockchain ecosystem. We also offer a unique address reputation scoring system, ensuring that every user can interact with others confidently. One of our key tools is address scoring. This blockchain-based solution helps users assess the reliability of those they interact with. You’ll be able to better understand who is on the other end of your communication, making interactions on Aaron Network safer and more trustworthy.',
7
+ denom_units: [{
8
+ denom: 'uaaron',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'AARON',
12
+ exponent: 6
13
+ }],
14
+ base: 'uaaron',
15
+ name: 'Aaron Network',
16
+ display: 'AARON',
17
+ symbol: 'AARON',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png'
20
+ },
21
+ socials: {
22
+ website: 'https://aaronetwork.xyz',
23
+ twitter: 'https://x.com/aaronetwork'
24
+ },
25
+ images: [{
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aaronetwork/images/aaron.png',
27
+ theme: {
28
+ circle: false
29
+ }
30
+ }],
31
+ type_asset: 'sdk.coin'
32
+ }]
33
+ };
34
+ export default info;
@@ -0,0 +1,44 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'aaronetwork',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ chain_type: 'cosmos',
7
+ website: 'https://aaronetwork.xyz',
8
+ pretty_name: 'Aaron Network',
9
+ chain_id: 'aaronetwork',
10
+ bech32_prefix: 'aaron',
11
+ slip44: 118,
12
+ fees: {
13
+ fee_tokens: [{
14
+ denom: 'uaaron',
15
+ fixed_min_gas_price: 0,
16
+ low_gas_price: 0,
17
+ average_gas_price: 0,
18
+ high_gas_price: 0.001
19
+ }]
20
+ },
21
+ staking: {
22
+ staking_tokens: [{
23
+ denom: 'uaaron'
24
+ }]
25
+ },
26
+ codebase: {},
27
+ apis: {
28
+ rpc: [{
29
+ address: 'https://mainnet-rpc.aaronetwork.xyz',
30
+ provider: 'Aaron Network Foundation'
31
+ }],
32
+ rest: [{
33
+ address: 'https://mainnet-api.aaronetwork.xyz',
34
+ provider: 'Aaron Network Foundation'
35
+ }]
36
+ },
37
+ explorers: [{
38
+ kind: 'Aaron Network',
39
+ url: 'https://explorer.aaronetwork.xyz',
40
+ tx_page: 'https://explorer.aaronetwork.xyz/hash/${txHash}',
41
+ account_page: 'https://explorer.aaronetwork.xyz/address/${accountAddress}'
42
+ }]
43
+ };
44
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -342,6 +342,49 @@ const info = {
342
342
  primary_color_hex: '#000000'
343
343
  }
344
344
  }]
345
+ },
346
+ {
347
+ description: 'The native token of Migaloo Chain',
348
+ denom_units: [{
349
+ denom: 'ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518',
350
+ exponent: 0,
351
+ aliases: ['uwhale']
352
+ }, {
353
+ denom: 'whale',
354
+ exponent: 6
355
+ }],
356
+ type_asset: 'ics20',
357
+ base: 'ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518',
358
+ name: 'Migaloo',
359
+ display: 'whale',
360
+ symbol: 'WHALE',
361
+ traces: [{
362
+ type: 'ibc',
363
+ counterparty: {
364
+ chain_name: 'migaloo',
365
+ base_denom: 'uwhale',
366
+ channel_id: 'channel-141'
367
+ },
368
+ chain: {
369
+ channel_id: 'channel-184',
370
+ path: 'transfer/channel-184/uwhale'
371
+ }
372
+ }],
373
+ logo_URIs: {
374
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
375
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
376
+ },
377
+ images: [{
378
+ image_sync: {
379
+ chain_name: 'migaloo',
380
+ base_denom: 'uwhale'
381
+ },
382
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
383
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
384
+ theme: {
385
+ primary_color_hex: '#1c1c1c'
386
+ }
387
+ }]
345
388
  }
346
389
  ]
347
390
  };
@@ -471,6 +471,35 @@ const info = [
471
471
  }
472
472
  }]
473
473
  },
474
+ {
475
+ $schema: '../ibc_data.schema.json',
476
+ chain_1: {
477
+ chain_name: 'archway',
478
+ client_id: '07-tendermint-119',
479
+ connection_id: 'connection-114'
480
+ },
481
+ chain_2: {
482
+ chain_name: 'migaloo',
483
+ client_id: '07-tendermint-138',
484
+ connection_id: 'connection-108'
485
+ },
486
+ channels: [{
487
+ chain_1: {
488
+ channel_id: 'channel-184',
489
+ port_id: 'transfer'
490
+ },
491
+ chain_2: {
492
+ channel_id: 'channel-141',
493
+ port_id: 'transfer'
494
+ },
495
+ ordering: 'unordered',
496
+ version: 'ics20-1',
497
+ tags: {
498
+ status: 'live',
499
+ preferred: true
500
+ }
501
+ }]
502
+ },
474
503
  {
475
504
  $schema: '../ibc_data.schema.json',
476
505
  chain_1: {
@@ -3,6 +3,7 @@ import * as _rootstock from './rootstock';
3
3
  import * as _solana from './solana';
4
4
  import * as _ton from './ton';
5
5
  import * as _tron from './tron';
6
+ import * as _aaronetwork from './aaronetwork';
6
7
  import * as _acrechain from './acrechain';
7
8
  import * as _agoric from './agoric';
8
9
  import * as _aioz from './aioz';
@@ -86,6 +87,7 @@ import * as _kava from './kava';
86
87
  import * as _kichain from './kichain';
87
88
  import * as _kimanetwork from './kimanetwork';
88
89
  import * as _konstellation from './konstellation';
90
+ import * as _kopi from './kopi';
89
91
  import * as _kujira from './kujira';
90
92
  import * as _kyve from './kyve';
91
93
  import * as _lambda from './lambda';
@@ -181,6 +183,7 @@ import * as _unicorn from './unicorn';
181
183
  import * as _unification from './unification';
182
184
  import * as _ununifi from './ununifi';
183
185
  import * as _uptick from './uptick';
186
+ import * as _xion from './xion';
184
187
  import * as _xpla from './xpla';
185
188
  import * as _zetachain from './zetachain';
186
189
  const assets = [
@@ -189,6 +192,7 @@ const assets = [
189
192
  _solana.assets,
190
193
  _ton.assets,
191
194
  _tron.assets,
195
+ _aaronetwork.assets,
192
196
  _acrechain.assets,
193
197
  _agoric.assets,
194
198
  _aioz.assets,
@@ -272,6 +276,7 @@ const assets = [
272
276
  _kichain.assets,
273
277
  _kimanetwork.assets,
274
278
  _konstellation.assets,
279
+ _kopi.assets,
275
280
  _kujira.assets,
276
281
  _kyve.assets,
277
282
  _lambda.assets,
@@ -367,6 +372,7 @@ const assets = [
367
372
  _unification.assets,
368
373
  _ununifi.assets,
369
374
  _uptick.assets,
375
+ _xion.assets,
370
376
  _xpla.assets,
371
377
  _zetachain.assets
372
378
  ];
@@ -1238,6 +1238,35 @@ const info = [
1238
1238
  status: 'live'
1239
1239
  }
1240
1240
  }]
1241
+ },
1242
+ {
1243
+ $schema: '../ibc_data.schema.json',
1244
+ chain_1: {
1245
+ chain_name: 'axelar',
1246
+ client_id: '07-tendermint-230',
1247
+ connection_id: 'connection-221'
1248
+ },
1249
+ chain_2: {
1250
+ chain_name: 'xion',
1251
+ client_id: '07-tendermint-3',
1252
+ connection_id: 'connection-3'
1253
+ },
1254
+ channels: [{
1255
+ chain_1: {
1256
+ channel_id: 'channel-161',
1257
+ port_id: 'transfer'
1258
+ },
1259
+ chain_2: {
1260
+ channel_id: 'channel-3',
1261
+ port_id: 'transfer'
1262
+ },
1263
+ ordering: 'unordered',
1264
+ version: 'ics20-1',
1265
+ tags: {
1266
+ status: 'live',
1267
+ preferred: true
1268
+ }
1269
+ }]
1241
1270
  }
1242
1271
  ];
1243
1272
  export default info;
@@ -3,6 +3,7 @@ import * as _rootstock from './rootstock';
3
3
  import * as _solana from './solana';
4
4
  import * as _ton from './ton';
5
5
  import * as _tron from './tron';
6
+ import * as _aaronetwork from './aaronetwork';
6
7
  import * as _acrechain from './acrechain';
7
8
  import * as _agoric from './agoric';
8
9
  import * as _aioz from './aioz';
@@ -86,6 +87,7 @@ import * as _kava from './kava';
86
87
  import * as _kichain from './kichain';
87
88
  import * as _kimanetwork from './kimanetwork';
88
89
  import * as _konstellation from './konstellation';
90
+ import * as _kopi from './kopi';
89
91
  import * as _kujira from './kujira';
90
92
  import * as _kyve from './kyve';
91
93
  import * as _lambda from './lambda';
@@ -181,6 +183,7 @@ import * as _unicorn from './unicorn';
181
183
  import * as _unification from './unification';
182
184
  import * as _ununifi from './ununifi';
183
185
  import * as _uptick from './uptick';
186
+ import * as _xion from './xion';
184
187
  import * as _xpla from './xpla';
185
188
  import * as _zetachain from './zetachain';
186
189
  const chains = [
@@ -189,6 +192,7 @@ const chains = [
189
192
  _solana.chain,
190
193
  _ton.chain,
191
194
  _tron.chain,
195
+ _aaronetwork.chain,
192
196
  _acrechain.chain,
193
197
  _agoric.chain,
194
198
  _aioz.chain,
@@ -272,6 +276,7 @@ const chains = [
272
276
  _kichain.chain,
273
277
  _kimanetwork.chain,
274
278
  _konstellation.chain,
279
+ _kopi.chain,
275
280
  _kujira.chain,
276
281
  _kyve.chain,
277
282
  _lambda.chain,
@@ -367,6 +372,7 @@ const chains = [
367
372
  _unification.chain,
368
373
  _ununifi.chain,
369
374
  _uptick.chain,
375
+ _xion.chain,
370
376
  _xpla.chain,
371
377
  _zetachain.chain
372
378
  ];
@@ -345,6 +345,49 @@ const info = {
345
345
  logo_URIs: {
346
346
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png'
347
347
  }
348
+ },
349
+ {
350
+ description: 'The native token of Migaloo Chain',
351
+ denom_units: [{
352
+ denom: 'ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B',
353
+ exponent: 0,
354
+ aliases: ['uwhale']
355
+ }, {
356
+ denom: 'whale',
357
+ exponent: 6
358
+ }],
359
+ type_asset: 'ics20',
360
+ base: 'ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B',
361
+ name: 'Migaloo',
362
+ display: 'whale',
363
+ symbol: 'WHALE',
364
+ traces: [{
365
+ type: 'ibc',
366
+ counterparty: {
367
+ chain_name: 'migaloo',
368
+ base_denom: 'uwhale',
369
+ channel_id: 'channel-10'
370
+ },
371
+ chain: {
372
+ channel_id: 'channel-39',
373
+ path: 'transfer/channel-39/uwhale'
374
+ }
375
+ }],
376
+ logo_URIs: {
377
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
378
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
379
+ },
380
+ images: [{
381
+ image_sync: {
382
+ chain_name: 'migaloo',
383
+ base_denom: 'uwhale'
384
+ },
385
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
386
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
387
+ theme: {
388
+ primary_color_hex: '#1c1c1c'
389
+ }
390
+ }]
348
391
  }
349
392
  ]
350
393
  };
@@ -916,6 +916,35 @@ const info = [
916
916
  }
917
917
  }]
918
918
  },
919
+ {
920
+ $schema: '../ibc_data.schema.json',
921
+ chain_1: {
922
+ chain_name: 'cosmoshub',
923
+ client_id: '07-tendermint-1332',
924
+ connection_id: 'connection-1065'
925
+ },
926
+ chain_2: {
927
+ chain_name: 'kopi',
928
+ client_id: '07-tendermint-4',
929
+ connection_id: 'connection-8'
930
+ },
931
+ channels: [{
932
+ chain_1: {
933
+ channel_id: 'channel-1253',
934
+ port_id: 'transfer'
935
+ },
936
+ chain_2: {
937
+ channel_id: 'channel-7',
938
+ port_id: 'transfer'
939
+ },
940
+ ordering: 'unordered',
941
+ version: 'ics20-1',
942
+ tags: {
943
+ status: 'live',
944
+ preferred: true
945
+ }
946
+ }]
947
+ },
919
948
  {
920
949
  $schema: '../ibc_data.schema.json',
921
950
  chain_1: {
@@ -67,6 +67,7 @@ import * as _kava from './kava';
67
67
  import * as _kichain from './kichain';
68
68
  import * as _kimanetwork from './kimanetwork';
69
69
  import * as _konstellation from './konstellation';
70
+ import * as _kopi from './kopi';
70
71
  import * as _kujira from './kujira';
71
72
  import * as _kyve from './kyve';
72
73
  import * as _lambda from './lambda';
@@ -142,6 +143,7 @@ import * as _titan from './titan';
142
143
  import * as _umee from './umee';
143
144
  import * as _unification from './unification';
144
145
  import * as _uptick from './uptick';
146
+ import * as _xion from './xion';
145
147
  import * as _xpla from './xpla';
146
148
  const ibc = [
147
149
  ..._ethereum.ibc,
@@ -213,6 +215,7 @@ const ibc = [
213
215
  ..._kichain.ibc,
214
216
  ..._kimanetwork.ibc,
215
217
  ..._konstellation.ibc,
218
+ ..._kopi.ibc,
216
219
  ..._kujira.ibc,
217
220
  ..._kyve.ibc,
218
221
  ..._lambda.ibc,
@@ -288,6 +291,7 @@ const ibc = [
288
291
  ..._umee.ibc,
289
292
  ..._unification.ibc,
290
293
  ..._uptick.ibc,
294
+ ..._xion.ibc,
291
295
  ..._xpla.ibc
292
296
  ];
293
297
  export default ibc;
@@ -961,6 +961,49 @@ const info = {
961
961
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png'
962
962
  }],
963
963
  type_asset: 'sdk.coin'
964
+ },
965
+ {
966
+ description: 'The native token of Migaloo Chain',
967
+ denom_units: [{
968
+ denom: 'ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445',
969
+ exponent: 0,
970
+ aliases: ['uwhale']
971
+ }, {
972
+ denom: 'whale',
973
+ exponent: 6
974
+ }],
975
+ type_asset: 'ics20',
976
+ base: 'ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445',
977
+ name: 'Migaloo',
978
+ display: 'whale',
979
+ symbol: 'WHALE',
980
+ traces: [{
981
+ type: 'ibc',
982
+ counterparty: {
983
+ chain_name: 'migaloo',
984
+ base_denom: 'uwhale',
985
+ channel_id: 'channel-3'
986
+ },
987
+ chain: {
988
+ channel_id: 'channel-102',
989
+ path: 'transfer/channel-102/uwhale'
990
+ }
991
+ }],
992
+ logo_URIs: {
993
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
994
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
995
+ },
996
+ images: [{
997
+ image_sync: {
998
+ chain_name: 'migaloo',
999
+ base_denom: 'uwhale'
1000
+ },
1001
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
1002
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
1003
+ theme: {
1004
+ primary_color_hex: '#1c1c1c'
1005
+ }
1006
+ }]
964
1007
  }
965
1008
  ]
966
1009
  };
@@ -293,6 +293,35 @@ const info = [
293
293
  }
294
294
  }]
295
295
  },
296
+ {
297
+ $schema: '../ibc_data.schema.json',
298
+ chain_1: {
299
+ chain_name: 'injective',
300
+ client_id: '07-tendermint-278',
301
+ connection_id: 'connection-281'
302
+ },
303
+ chain_2: {
304
+ chain_name: 'kopi',
305
+ client_id: '07-tendermint-0',
306
+ connection_id: 'connection-0'
307
+ },
308
+ channels: [{
309
+ chain_1: {
310
+ channel_id: 'channel-376',
311
+ port_id: 'transfer'
312
+ },
313
+ chain_2: {
314
+ channel_id: 'channel-1',
315
+ port_id: 'transfer'
316
+ },
317
+ ordering: 'unordered',
318
+ version: 'ics20-1',
319
+ tags: {
320
+ status: 'live',
321
+ preferred: true
322
+ }
323
+ }]
324
+ },
296
325
  {
297
326
  $schema: '../ibc_data.schema.json',
298
327
  chain_1: {
@@ -826,6 +855,35 @@ const info = [
826
855
  }
827
856
  }]
828
857
  },
858
+ {
859
+ $schema: '../ibc_data.schema.json',
860
+ chain_1: {
861
+ chain_name: 'injective',
862
+ client_id: '07-tendermint-279',
863
+ connection_id: 'connection-282'
864
+ },
865
+ chain_2: {
866
+ chain_name: 'xion',
867
+ client_id: '07-tendermint-4',
868
+ connection_id: 'connection-4'
869
+ },
870
+ channels: [{
871
+ chain_1: {
872
+ channel_id: 'channel-387',
873
+ port_id: 'transfer'
874
+ },
875
+ chain_2: {
876
+ channel_id: 'channel-4',
877
+ port_id: 'transfer'
878
+ },
879
+ ordering: 'unordered',
880
+ version: 'ics20-1',
881
+ tags: {
882
+ status: 'live',
883
+ preferred: true
884
+ }
885
+ }]
886
+ },
829
887
  {
830
888
  $schema: '../ibc_data.schema.json',
831
889
  chain_1: {
@@ -2158,6 +2158,49 @@ const info = {
2158
2158
  primary_color_hex: '#04fbfb'
2159
2159
  }
2160
2160
  }]
2161
+ },
2162
+ {
2163
+ description: 'The native token of Migaloo Chain',
2164
+ denom_units: [{
2165
+ denom: 'ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C',
2166
+ exponent: 0,
2167
+ aliases: ['uwhale']
2168
+ }, {
2169
+ denom: 'whale',
2170
+ exponent: 6
2171
+ }],
2172
+ type_asset: 'ics20',
2173
+ base: 'ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C',
2174
+ name: 'Migaloo',
2175
+ display: 'whale',
2176
+ symbol: 'WHALE',
2177
+ traces: [{
2178
+ type: 'ibc',
2179
+ counterparty: {
2180
+ chain_name: 'migaloo',
2181
+ base_denom: 'uwhale',
2182
+ channel_id: 'channel-1'
2183
+ },
2184
+ chain: {
2185
+ channel_id: 'channel-210',
2186
+ path: 'transfer/channel-210/uwhale'
2187
+ }
2188
+ }],
2189
+ logo_URIs: {
2190
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
2191
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
2192
+ },
2193
+ images: [{
2194
+ image_sync: {
2195
+ chain_name: 'migaloo',
2196
+ base_denom: 'uwhale'
2197
+ },
2198
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
2199
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
2200
+ theme: {
2201
+ primary_color_hex: '#1c1c1c'
2202
+ }
2203
+ }]
2161
2204
  }
2162
2205
  ]
2163
2206
  };