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
package/mainnet/chains.js CHANGED
@@ -28,6 +28,7 @@ const _rootstock = __importStar(require("./rootstock"));
28
28
  const _solana = __importStar(require("./solana"));
29
29
  const _ton = __importStar(require("./ton"));
30
30
  const _tron = __importStar(require("./tron"));
31
+ const _aaronetwork = __importStar(require("./aaronetwork"));
31
32
  const _acrechain = __importStar(require("./acrechain"));
32
33
  const _agoric = __importStar(require("./agoric"));
33
34
  const _aioz = __importStar(require("./aioz"));
@@ -111,6 +112,7 @@ const _kava = __importStar(require("./kava"));
111
112
  const _kichain = __importStar(require("./kichain"));
112
113
  const _kimanetwork = __importStar(require("./kimanetwork"));
113
114
  const _konstellation = __importStar(require("./konstellation"));
115
+ const _kopi = __importStar(require("./kopi"));
114
116
  const _kujira = __importStar(require("./kujira"));
115
117
  const _kyve = __importStar(require("./kyve"));
116
118
  const _lambda = __importStar(require("./lambda"));
@@ -206,6 +208,7 @@ const _unicorn = __importStar(require("./unicorn"));
206
208
  const _unification = __importStar(require("./unification"));
207
209
  const _ununifi = __importStar(require("./ununifi"));
208
210
  const _uptick = __importStar(require("./uptick"));
211
+ const _xion = __importStar(require("./xion"));
209
212
  const _xpla = __importStar(require("./xpla"));
210
213
  const _zetachain = __importStar(require("./zetachain"));
211
214
  const chains = [
@@ -214,6 +217,7 @@ const chains = [
214
217
  _solana.chain,
215
218
  _ton.chain,
216
219
  _tron.chain,
220
+ _aaronetwork.chain,
217
221
  _acrechain.chain,
218
222
  _agoric.chain,
219
223
  _aioz.chain,
@@ -297,6 +301,7 @@ const chains = [
297
301
  _kichain.chain,
298
302
  _kimanetwork.chain,
299
303
  _konstellation.chain,
304
+ _kopi.chain,
300
305
  _kujira.chain,
301
306
  _kyve.chain,
302
307
  _lambda.chain,
@@ -392,6 +397,7 @@ const chains = [
392
397
  _unification.chain,
393
398
  _ununifi.chain,
394
399
  _uptick.chain,
400
+ _xion.chain,
395
401
  _xpla.chain,
396
402
  _zetachain.chain
397
403
  ];
@@ -347,6 +347,49 @@ const info = {
347
347
  logo_URIs: {
348
348
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png'
349
349
  }
350
+ },
351
+ {
352
+ description: 'The native token of Migaloo Chain',
353
+ denom_units: [{
354
+ denom: 'ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B',
355
+ exponent: 0,
356
+ aliases: ['uwhale']
357
+ }, {
358
+ denom: 'whale',
359
+ exponent: 6
360
+ }],
361
+ type_asset: 'ics20',
362
+ base: 'ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B',
363
+ name: 'Migaloo',
364
+ display: 'whale',
365
+ symbol: 'WHALE',
366
+ traces: [{
367
+ type: 'ibc',
368
+ counterparty: {
369
+ chain_name: 'migaloo',
370
+ base_denom: 'uwhale',
371
+ channel_id: 'channel-10'
372
+ },
373
+ chain: {
374
+ channel_id: 'channel-39',
375
+ path: 'transfer/channel-39/uwhale'
376
+ }
377
+ }],
378
+ logo_URIs: {
379
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
380
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
381
+ },
382
+ images: [{
383
+ image_sync: {
384
+ chain_name: 'migaloo',
385
+ base_denom: 'uwhale'
386
+ },
387
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
388
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
389
+ theme: {
390
+ primary_color_hex: '#1c1c1c'
391
+ }
392
+ }]
350
393
  }
351
394
  ]
352
395
  };
@@ -918,6 +918,35 @@ const info = [
918
918
  }
919
919
  }]
920
920
  },
921
+ {
922
+ $schema: '../ibc_data.schema.json',
923
+ chain_1: {
924
+ chain_name: 'cosmoshub',
925
+ client_id: '07-tendermint-1332',
926
+ connection_id: 'connection-1065'
927
+ },
928
+ chain_2: {
929
+ chain_name: 'kopi',
930
+ client_id: '07-tendermint-4',
931
+ connection_id: 'connection-8'
932
+ },
933
+ channels: [{
934
+ chain_1: {
935
+ channel_id: 'channel-1253',
936
+ port_id: 'transfer'
937
+ },
938
+ chain_2: {
939
+ channel_id: 'channel-7',
940
+ port_id: 'transfer'
941
+ },
942
+ ordering: 'unordered',
943
+ version: 'ics20-1',
944
+ tags: {
945
+ status: 'live',
946
+ preferred: true
947
+ }
948
+ }]
949
+ },
921
950
  {
922
951
  $schema: '../ibc_data.schema.json',
923
952
  chain_1: {
package/mainnet/ibc.js CHANGED
@@ -92,6 +92,7 @@ const _kava = __importStar(require("./kava"));
92
92
  const _kichain = __importStar(require("./kichain"));
93
93
  const _kimanetwork = __importStar(require("./kimanetwork"));
94
94
  const _konstellation = __importStar(require("./konstellation"));
95
+ const _kopi = __importStar(require("./kopi"));
95
96
  const _kujira = __importStar(require("./kujira"));
96
97
  const _kyve = __importStar(require("./kyve"));
97
98
  const _lambda = __importStar(require("./lambda"));
@@ -167,6 +168,7 @@ const _titan = __importStar(require("./titan"));
167
168
  const _umee = __importStar(require("./umee"));
168
169
  const _unification = __importStar(require("./unification"));
169
170
  const _uptick = __importStar(require("./uptick"));
171
+ const _xion = __importStar(require("./xion"));
170
172
  const _xpla = __importStar(require("./xpla"));
171
173
  const ibc = [
172
174
  ..._ethereum.ibc,
@@ -238,6 +240,7 @@ const ibc = [
238
240
  ..._kichain.ibc,
239
241
  ..._kimanetwork.ibc,
240
242
  ..._konstellation.ibc,
243
+ ..._kopi.ibc,
241
244
  ..._kujira.ibc,
242
245
  ..._kyve.ibc,
243
246
  ..._lambda.ibc,
@@ -313,6 +316,7 @@ const ibc = [
313
316
  ..._umee.ibc,
314
317
  ..._unification.ibc,
315
318
  ..._uptick.ibc,
319
+ ..._xion.ibc,
316
320
  ..._xpla.ibc
317
321
  ];
318
322
  exports.default = ibc;
@@ -963,6 +963,49 @@ const info = {
963
963
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png'
964
964
  }],
965
965
  type_asset: 'sdk.coin'
966
+ },
967
+ {
968
+ description: 'The native token of Migaloo Chain',
969
+ denom_units: [{
970
+ denom: 'ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445',
971
+ exponent: 0,
972
+ aliases: ['uwhale']
973
+ }, {
974
+ denom: 'whale',
975
+ exponent: 6
976
+ }],
977
+ type_asset: 'ics20',
978
+ base: 'ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445',
979
+ name: 'Migaloo',
980
+ display: 'whale',
981
+ symbol: 'WHALE',
982
+ traces: [{
983
+ type: 'ibc',
984
+ counterparty: {
985
+ chain_name: 'migaloo',
986
+ base_denom: 'uwhale',
987
+ channel_id: 'channel-3'
988
+ },
989
+ chain: {
990
+ channel_id: 'channel-102',
991
+ path: 'transfer/channel-102/uwhale'
992
+ }
993
+ }],
994
+ logo_URIs: {
995
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
996
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
997
+ },
998
+ images: [{
999
+ image_sync: {
1000
+ chain_name: 'migaloo',
1001
+ base_denom: 'uwhale'
1002
+ },
1003
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
1004
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
1005
+ theme: {
1006
+ primary_color_hex: '#1c1c1c'
1007
+ }
1008
+ }]
966
1009
  }
967
1010
  ]
968
1011
  };
@@ -295,6 +295,35 @@ const info = [
295
295
  }
296
296
  }]
297
297
  },
298
+ {
299
+ $schema: '../ibc_data.schema.json',
300
+ chain_1: {
301
+ chain_name: 'injective',
302
+ client_id: '07-tendermint-278',
303
+ connection_id: 'connection-281'
304
+ },
305
+ chain_2: {
306
+ chain_name: 'kopi',
307
+ client_id: '07-tendermint-0',
308
+ connection_id: 'connection-0'
309
+ },
310
+ channels: [{
311
+ chain_1: {
312
+ channel_id: 'channel-376',
313
+ port_id: 'transfer'
314
+ },
315
+ chain_2: {
316
+ channel_id: 'channel-1',
317
+ port_id: 'transfer'
318
+ },
319
+ ordering: 'unordered',
320
+ version: 'ics20-1',
321
+ tags: {
322
+ status: 'live',
323
+ preferred: true
324
+ }
325
+ }]
326
+ },
298
327
  {
299
328
  $schema: '../ibc_data.schema.json',
300
329
  chain_1: {
@@ -828,6 +857,35 @@ const info = [
828
857
  }
829
858
  }]
830
859
  },
860
+ {
861
+ $schema: '../ibc_data.schema.json',
862
+ chain_1: {
863
+ chain_name: 'injective',
864
+ client_id: '07-tendermint-279',
865
+ connection_id: 'connection-282'
866
+ },
867
+ chain_2: {
868
+ chain_name: 'xion',
869
+ client_id: '07-tendermint-4',
870
+ connection_id: 'connection-4'
871
+ },
872
+ channels: [{
873
+ chain_1: {
874
+ channel_id: 'channel-387',
875
+ port_id: 'transfer'
876
+ },
877
+ chain_2: {
878
+ channel_id: 'channel-4',
879
+ port_id: 'transfer'
880
+ },
881
+ ordering: 'unordered',
882
+ version: 'ics20-1',
883
+ tags: {
884
+ status: 'live',
885
+ preferred: true
886
+ }
887
+ }]
888
+ },
831
889
  {
832
890
  $schema: '../ibc_data.schema.json',
833
891
  chain_1: {
@@ -2160,6 +2160,49 @@ const info = {
2160
2160
  primary_color_hex: '#04fbfb'
2161
2161
  }
2162
2162
  }]
2163
+ },
2164
+ {
2165
+ description: 'The native token of Migaloo Chain',
2166
+ denom_units: [{
2167
+ denom: 'ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C',
2168
+ exponent: 0,
2169
+ aliases: ['uwhale']
2170
+ }, {
2171
+ denom: 'whale',
2172
+ exponent: 6
2173
+ }],
2174
+ type_asset: 'ics20',
2175
+ base: 'ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C',
2176
+ name: 'Migaloo',
2177
+ display: 'whale',
2178
+ symbol: 'WHALE',
2179
+ traces: [{
2180
+ type: 'ibc',
2181
+ counterparty: {
2182
+ chain_name: 'migaloo',
2183
+ base_denom: 'uwhale',
2184
+ channel_id: 'channel-1'
2185
+ },
2186
+ chain: {
2187
+ channel_id: 'channel-210',
2188
+ path: 'transfer/channel-210/uwhale'
2189
+ }
2190
+ }],
2191
+ logo_URIs: {
2192
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
2193
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
2194
+ },
2195
+ images: [{
2196
+ image_sync: {
2197
+ chain_name: 'migaloo',
2198
+ base_denom: 'uwhale'
2199
+ },
2200
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
2201
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg',
2202
+ theme: {
2203
+ primary_color_hex: '#1c1c1c'
2204
+ }
2205
+ }]
2163
2206
  }
2164
2207
  ]
2165
2208
  };
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;