chain-registry 1.63.11 → 1.63.13

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 (95) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +6 -2
  3. package/esm/mainnet/akash/assets.js +8 -1
  4. package/esm/mainnet/assets.js +2 -0
  5. package/esm/mainnet/canto/assets.js +8 -1
  6. package/esm/mainnet/celestia/chain.js +18 -0
  7. package/esm/mainnet/chains.js +2 -0
  8. package/esm/mainnet/composable/assets.js +21 -3
  9. package/esm/mainnet/cosmoshub/assets.js +8 -1
  10. package/esm/mainnet/cronos/assets.js +8 -1
  11. package/esm/mainnet/evmos/assets.js +8 -1
  12. package/esm/mainnet/gateway/assets.js +8 -1
  13. package/esm/mainnet/gravitybridge/assets.js +8 -1
  14. package/esm/mainnet/heli/assets.js +24 -0
  15. package/esm/mainnet/heli/chain.js +57 -0
  16. package/esm/mainnet/heli/index.js +4 -0
  17. package/esm/mainnet/injective/assets.js +8 -1
  18. package/esm/mainnet/kava/assets.js +8 -1
  19. package/esm/mainnet/kujira/assets.js +10 -1
  20. package/esm/mainnet/lava/chain.js +2 -10
  21. package/esm/mainnet/loop/chain.js +1 -2
  22. package/esm/mainnet/migaloo/assets.js +13 -2
  23. package/esm/mainnet/named.js +1 -0
  24. package/esm/mainnet/nomic/chain.js +8 -4
  25. package/esm/mainnet/omniflixhub/assets.js +6 -1
  26. package/esm/mainnet/osmosis/assets.js +97 -17
  27. package/esm/mainnet/osmosis/chain.js +6 -10
  28. package/esm/mainnet/osmosis/ibc.js +16 -0
  29. package/esm/mainnet/persistence/assets.js +8 -1
  30. package/esm/mainnet/sunrise/assets.js +34 -8
  31. package/esm/mainnet/sunrise/chain.js +3 -3
  32. package/esm/mainnet/terra/ibc.js +16 -0
  33. package/esm/mainnet/terra2/assets.js +8 -1
  34. package/esm/noncosmos/ethereum/assets.js +18 -3
  35. package/esm/noncosmos/solana/assets.js +7 -1
  36. package/esm/testnet/assets.js +2 -0
  37. package/esm/testnet/celestiatestnet3/chain.js +18 -0
  38. package/esm/testnet/chains.js +2 -0
  39. package/esm/testnet/mantrachaintestnet/chain.js +0 -1
  40. package/esm/testnet/named.js +1 -0
  41. package/esm/testnet/sgetestnet4/assets.js +6 -1
  42. package/esm/testnet/sunrisetestnet/assets.js +58 -0
  43. package/esm/testnet/sunrisetestnet/chain.js +54 -0
  44. package/esm/testnet/sunrisetestnet/index.js +4 -0
  45. package/mainnet/akash/assets.js +8 -1
  46. package/mainnet/assets.js +2 -0
  47. package/mainnet/canto/assets.js +8 -1
  48. package/mainnet/celestia/chain.js +18 -0
  49. package/mainnet/chains.js +2 -0
  50. package/mainnet/composable/assets.js +21 -3
  51. package/mainnet/cosmoshub/assets.js +8 -1
  52. package/mainnet/cronos/assets.js +8 -1
  53. package/mainnet/evmos/assets.js +8 -1
  54. package/mainnet/gateway/assets.js +8 -1
  55. package/mainnet/gravitybridge/assets.js +8 -1
  56. package/mainnet/heli/assets.d.ts +3 -0
  57. package/mainnet/heli/assets.js +26 -0
  58. package/mainnet/heli/chain.d.ts +3 -0
  59. package/mainnet/heli/chain.js +59 -0
  60. package/mainnet/heli/index.d.ts +2 -0
  61. package/mainnet/heli/index.js +10 -0
  62. package/mainnet/injective/assets.js +8 -1
  63. package/mainnet/kava/assets.js +8 -1
  64. package/mainnet/kujira/assets.js +10 -1
  65. package/mainnet/lava/chain.js +2 -10
  66. package/mainnet/loop/chain.js +1 -2
  67. package/mainnet/migaloo/assets.js +13 -2
  68. package/mainnet/named.d.ts +1 -0
  69. package/mainnet/named.js +4 -3
  70. package/mainnet/nomic/chain.js +8 -4
  71. package/mainnet/omniflixhub/assets.js +6 -1
  72. package/mainnet/osmosis/assets.js +97 -17
  73. package/mainnet/osmosis/chain.js +6 -10
  74. package/mainnet/osmosis/ibc.js +16 -0
  75. package/mainnet/persistence/assets.js +8 -1
  76. package/mainnet/sunrise/assets.js +34 -8
  77. package/mainnet/sunrise/chain.js +3 -3
  78. package/mainnet/terra/ibc.js +16 -0
  79. package/mainnet/terra2/assets.js +8 -1
  80. package/noncosmos/ethereum/assets.js +18 -3
  81. package/noncosmos/solana/assets.js +7 -1
  82. package/package.json +4 -4
  83. package/testnet/assets.js +2 -0
  84. package/testnet/celestiatestnet3/chain.js +18 -0
  85. package/testnet/chains.js +2 -0
  86. package/testnet/mantrachaintestnet/chain.js +0 -1
  87. package/testnet/named.d.ts +1 -0
  88. package/testnet/named.js +3 -2
  89. package/testnet/sgetestnet4/assets.js +6 -1
  90. package/testnet/sunrisetestnet/assets.d.ts +3 -0
  91. package/testnet/sunrisetestnet/assets.js +60 -0
  92. package/testnet/sunrisetestnet/chain.d.ts +3 -0
  93. package/testnet/sunrisetestnet/chain.js +56 -0
  94. package/testnet/sunrisetestnet/index.d.ts +2 -0
  95. package/testnet/sunrisetestnet/index.js +10 -0
package/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  The MIT License (MIT)
2
2
 
3
3
  Copyright (c) 2022 Dan Lynch <pyramation@gmail.com>
4
+ Copyright (c) 2024 Interweb, Inc. <developers@cosmology.zone>
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,11 +8,15 @@
8
8
  <a href="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml">
9
9
  <img height="20" src="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml/badge.svg" />
10
10
  </a>
11
+ <a href="https://github.com/cosmology-tech/lib-count">
11
12
  <img height="20" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fcosmology-tech%2Flib-count%2Fmain%2Foutput%2Fbadges%2Fproducts%2Fchain-registry%2Ftotal.json" />
13
+ </a>
14
+ <a href="https://github.com/cosmology-tech/lib-count">
12
15
  <img height="20" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fcosmology-tech%2Flib-count%2Fmain%2Foutput%2Fbadges%2Fproducts%2Fchain-registry%2Fmonthly.json" />
13
- <br />
16
+ </a>
17
+ <br />
14
18
  <a href="https://github.com/cosmology-tech/chain-registry/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
15
- <a href="https://www.npmjs.com/package/chain-registry"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=packages%2Fchain-registry%2Fpackage.json"></a>
19
+ <a href="https://www.npmjs.com/package/chain-registry"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=packages%2Fchain-registry%2Fpackage.json"></a>
16
20
  </p>
17
21
 
18
22
  The npm package for the Official Cosmos [chain registry](https://github.com/cosmos/chain-registry)
@@ -58,9 +58,16 @@ const info = {
58
58
  chain_name: 'kava',
59
59
  base_denom: 'erc20/tether/usdt'
60
60
  },
61
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
61
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
63
+ theme: {
64
+ circle: true,
65
+ primary_color_hex: '#009393',
66
+ background_color_hex: '#009393'
67
+ }
62
68
  }],
63
69
  logo_URIs: {
70
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
64
71
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
65
72
  }
66
73
  }]
@@ -66,6 +66,7 @@ import * as _gitopia from './gitopia';
66
66
  import * as _govgen from './govgen';
67
67
  import * as _gravitybridge from './gravitybridge';
68
68
  import * as _haqq from './haqq';
69
+ import * as _heli from './heli';
69
70
  import * as _highbury from './highbury';
70
71
  import * as _humans from './humans';
71
72
  import * as _idep from './idep';
@@ -237,6 +238,7 @@ const assets = [
237
238
  _govgen.assets,
238
239
  _gravitybridge.assets,
239
240
  _haqq.assets,
241
+ _heli.assets,
240
242
  _highbury.assets,
241
243
  _humans.assets,
242
244
  _idep.assets,
@@ -58,9 +58,16 @@ const info = {
58
58
  chain_name: 'kava',
59
59
  base_denom: 'erc20/tether/usdt'
60
60
  },
61
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
61
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
63
+ theme: {
64
+ circle: true,
65
+ primary_color_hex: '#009393',
66
+ background_color_hex: '#009393'
67
+ }
62
68
  }],
63
69
  logo_URIs: {
70
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
64
71
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
65
72
  }
66
73
  }]
@@ -142,6 +142,10 @@ const info = {
142
142
  {
143
143
  address: 'https://celestia-mainnet-rpc.itrocket.net',
144
144
  provider: '🚀 itrocket 🚀'
145
+ },
146
+ {
147
+ address: 'https://rpc.celestia.mainnet.dteam.tech:443',
148
+ provider: 'DTEAM'
145
149
  }
146
150
  ],
147
151
  rest: [
@@ -240,6 +244,10 @@ const info = {
240
244
  {
241
245
  address: 'https://celestia-mainnet-api.itrocket.net',
242
246
  provider: '🚀 itrocket 🚀'
247
+ },
248
+ {
249
+ address: 'https://api.celestia.mainnet.dteam.tech:443',
250
+ provider: 'DTEAM'
243
251
  }
244
252
  ],
245
253
  grpc: [
@@ -322,6 +330,10 @@ const info = {
322
330
  {
323
331
  address: 'celestia-mainnet-grpc.itrocket.net:40090',
324
332
  provider: '🚀 itrocket 🚀'
333
+ },
334
+ {
335
+ address: 'grpc.celestia.mainnet.dteam.tech:28090',
336
+ provider: 'DTEAM'
325
337
  }
326
338
  ]
327
339
  },
@@ -372,6 +384,12 @@ const info = {
372
384
  url: 'https://mainnet.itrocket.net/celestia',
373
385
  tx_page: 'https://mainnet.itrocket.net/celestia/transaction/${txHash}',
374
386
  account_page: 'https://mainnet.itrocket.net/celestia/account/${accountAddress}'
387
+ },
388
+ {
389
+ kind: 'DTEAM | Explorer',
390
+ url: 'https://explorer.mainnet.dteam.tech/celestia',
391
+ tx_page: 'https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}',
392
+ account_page: 'https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}'
375
393
  }
376
394
  ],
377
395
  images: [{
@@ -67,6 +67,7 @@ import * as _gitopia from './gitopia';
67
67
  import * as _govgen from './govgen';
68
68
  import * as _gravitybridge from './gravitybridge';
69
69
  import * as _haqq from './haqq';
70
+ import * as _heli from './heli';
70
71
  import * as _highbury from './highbury';
71
72
  import * as _humans from './humans';
72
73
  import * as _idep from './idep';
@@ -240,6 +241,7 @@ const chains = [
240
241
  _govgen.chain,
241
242
  _gravitybridge.chain,
242
243
  _haqq.chain,
244
+ _heli.chain,
243
245
  _highbury.chain,
244
246
  _humans.chain,
245
247
  _idep.chain,
@@ -527,6 +527,7 @@ const info = {
527
527
  }
528
528
  }],
529
529
  logo_URIs: {
530
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
530
531
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
531
532
  },
532
533
  images: [{
@@ -534,7 +535,13 @@ const info = {
534
535
  chain_name: 'ethereum',
535
536
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
536
537
  },
537
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
538
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
539
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
540
+ theme: {
541
+ circle: true,
542
+ primary_color_hex: '#009393',
543
+ background_color_hex: '#009393'
544
+ }
538
545
  }],
539
546
  socials: {
540
547
  website: 'https://www.tether.to/',
@@ -1295,7 +1302,13 @@ const info = {
1295
1302
  chain_name: 'solana',
1296
1303
  base_denom: 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
1297
1304
  },
1298
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
1305
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
1306
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
1307
+ theme: {
1308
+ circle: true,
1309
+ primary_color_hex: '#009393',
1310
+ background_color_hex: '#009393'
1311
+ }
1299
1312
  }]
1300
1313
  },
1301
1314
  {
@@ -1330,7 +1343,12 @@ const info = {
1330
1343
  chain_name: 'solana',
1331
1344
  base_denom: 'ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump'
1332
1345
  },
1333
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png'
1346
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png',
1347
+ theme: {
1348
+ primary_color_hex: '#FFFFFF',
1349
+ background_color_hex: '#FFFFFF',
1350
+ circle: false
1351
+ }
1334
1352
  }]
1335
1353
  }
1336
1354
  ]
@@ -60,9 +60,16 @@ const info = {
60
60
  chain_name: 'kava',
61
61
  base_denom: 'erc20/tether/usdt'
62
62
  },
63
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
64
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
65
+ theme: {
66
+ circle: true,
67
+ primary_color_hex: '#009393',
68
+ background_color_hex: '#009393'
69
+ }
64
70
  }],
65
71
  logo_URIs: {
72
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
66
73
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
67
74
  }
68
75
  },
@@ -63,9 +63,16 @@ const info = {
63
63
  chain_name: 'kava',
64
64
  base_denom: 'erc20/tether/usdt'
65
65
  },
66
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
66
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
67
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
68
+ theme: {
69
+ circle: true,
70
+ primary_color_hex: '#009393',
71
+ background_color_hex: '#009393'
72
+ }
67
73
  }],
68
74
  logo_URIs: {
75
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
69
76
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
70
77
  }
71
78
  }]
@@ -60,9 +60,16 @@ const info = {
60
60
  chain_name: 'kava',
61
61
  base_denom: 'erc20/tether/usdt'
62
62
  },
63
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
64
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
65
+ theme: {
66
+ circle: true,
67
+ primary_color_hex: '#009393',
68
+ background_color_hex: '#009393'
69
+ }
64
70
  }],
65
71
  logo_URIs: {
72
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
66
73
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
67
74
  }
68
75
  },
@@ -189,9 +189,16 @@ const info = {
189
189
  chain_name: 'ethereum',
190
190
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
191
191
  },
192
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
192
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
193
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
194
+ theme: {
195
+ circle: true,
196
+ primary_color_hex: '#009393',
197
+ background_color_hex: '#009393'
198
+ }
193
199
  }],
194
200
  logo_URIs: {
201
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
195
202
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
196
203
  }
197
204
  },
@@ -163,6 +163,7 @@ const info = {
163
163
  display: 'gusdt',
164
164
  symbol: 'USDT',
165
165
  logo_URIs: {
166
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
166
167
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
167
168
  },
168
169
  traces: [{
@@ -185,7 +186,13 @@ const info = {
185
186
  chain_name: 'ethereum',
186
187
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
187
188
  },
188
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
189
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
190
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
191
+ theme: {
192
+ circle: true,
193
+ primary_color_hex: '#009393',
194
+ background_color_hex: '#009393'
195
+ }
189
196
  }]
190
197
  },
191
198
  {
@@ -0,0 +1,24 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'heli',
4
+ assets: [{
5
+ description: 'The native token of HeliChain',
6
+ denom_units: [{
7
+ denom: 'uheli',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'heli',
11
+ exponent: 6
12
+ }],
13
+ base: 'uheli',
14
+ name: 'Heli',
15
+ display: 'heli',
16
+ symbol: 'HELI',
17
+ coingecko_id: 'helichain',
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.svg'
21
+ }]
22
+ }]
23
+ };
24
+ export default info;
@@ -0,0 +1,57 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'heli',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ website: 'https://helichain.com/',
7
+ pretty_name: 'HeliChain',
8
+ chain_id: 'helichain',
9
+ bech32_prefix: 'heli',
10
+ daemon_name: 'helichaind',
11
+ node_home: '$HOME/.helichain',
12
+ key_algos: ['secp256k1'],
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'uheli',
17
+ fixed_min_gas_price: 0.001,
18
+ low_gas_price: 0.001,
19
+ average_gas_price: 0.002,
20
+ high_gas_price: 0.0025
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'uheli'
26
+ }],
27
+ lock_duration: {
28
+ time: '1209600s'
29
+ }
30
+ },
31
+ codebase: {
32
+ cosmos_sdk_version: '0.47.4',
33
+ cosmwasm_enabled: true,
34
+ cosmwasm_version: '0.41.0'
35
+ },
36
+ apis: {
37
+ rpc: [{
38
+ address: 'https://rpc.helichain.com/',
39
+ provider: 'HeliChain'
40
+ }],
41
+ rest: [{
42
+ address: 'https://lcd.helichain.com/',
43
+ provider: 'HeliChain'
44
+ }]
45
+ },
46
+ explorers: [{
47
+ kind: 'ping.pub',
48
+ url: 'https://explorer.helichain.com/Helichain',
49
+ tx_page: 'https://explorer.helichain.com/Helichain/tx/${txHash}',
50
+ account_page: 'https://explorer.helichain.com/Helichain/account/${accountAddress}'
51
+ }],
52
+ images: [{
53
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.png',
54
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.svg'
55
+ }]
56
+ };
57
+ 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;
@@ -60,9 +60,16 @@ const info = {
60
60
  chain_name: 'kava',
61
61
  base_denom: 'erc20/tether/usdt'
62
62
  },
63
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
64
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
65
+ theme: {
66
+ circle: true,
67
+ primary_color_hex: '#009393',
68
+ background_color_hex: '#009393'
69
+ }
64
70
  }],
65
71
  logo_URIs: {
72
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
66
73
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
67
74
  }
68
75
  },
@@ -125,9 +125,16 @@ const info = {
125
125
  chain_name: 'ethereum',
126
126
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
127
127
  },
128
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
128
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
129
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
130
+ theme: {
131
+ circle: true,
132
+ primary_color_hex: '#009393',
133
+ background_color_hex: '#009393'
134
+ }
129
135
  }],
130
136
  logo_URIs: {
137
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
131
138
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
132
139
  }
133
140
  }
@@ -230,9 +230,16 @@ const info = {
230
230
  chain_name: 'kava',
231
231
  base_denom: 'erc20/tether/usdt'
232
232
  },
233
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
233
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
234
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
235
+ theme: {
236
+ circle: true,
237
+ primary_color_hex: '#009393',
238
+ background_color_hex: '#009393'
239
+ }
234
240
  }],
235
241
  logo_URIs: {
242
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
236
243
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
237
244
  }
238
245
  },
@@ -249,6 +256,7 @@ const info = {
249
256
  name: 'Fuzion',
250
257
  display: 'fuzn',
251
258
  symbol: 'FUZN',
259
+ coingecko_id: 'fuzion',
252
260
  logo_URIs: {
253
261
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png',
254
262
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg'
@@ -362,6 +370,7 @@ const info = {
362
370
  name: 'AQLA',
363
371
  display: 'AQLA',
364
372
  symbol: 'AQLA',
373
+ coingecko_id: 'aqualibre',
365
374
  logo_URIs: {
366
375
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg'
367
376
  },
@@ -34,18 +34,10 @@ const info = {
34
34
  cosmwasm_enabled: false
35
35
  },
36
36
  images: [{
37
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png',
38
- theme: {
39
- primary_color_hex: '#FF3900'
40
- },
41
- layout: 'logo',
42
- text_position: 'right'
43
- }, {
44
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png',
45
- layout: 'logomark'
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png'
46
38
  }],
47
39
  logo_URIs: {
48
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png'
40
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png'
49
41
  },
50
42
  description: 'Lava (LAVA) is the data access layer of the modular stack. developers and ecosystems permissionlessly add services to be served or accessed through lava. featuring a fully decentralized open source sdk integrable in frontends and a battle tested fully scalable open source server kit and can be used locally or through managed endpoints. Lava features rpc data access, indexing services, debug apis, archive access and more. Service providers can join the network, earn rewards either in the native token of the chain via token bought subscriptions on chain or through any ibc transferred token via incentive pools created and funded by ecosystems and DAOs. Developers can use the abstraction and go multi chain in seconds, not needing to choose what tools to use, having the access aggregated for them. Build whatever, wherever.',
51
43
  apis: {
@@ -30,8 +30,7 @@ const info = {
30
30
  },
31
31
  images: [{
32
32
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png',
33
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg',
34
- layout: 'logomark'
33
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg'
35
34
  }],
36
35
  logo_URIs: {
37
36
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png',
@@ -195,9 +195,16 @@ const info = {
195
195
  chain_name: 'kava',
196
196
  base_denom: 'erc20/tether/usdt'
197
197
  },
198
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
198
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
199
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
200
+ theme: {
201
+ circle: true,
202
+ primary_color_hex: '#009393',
203
+ background_color_hex: '#009393'
204
+ }
199
205
  }],
200
206
  logo_URIs: {
207
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
201
208
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
202
209
  }
203
210
  },
@@ -563,7 +570,11 @@ const info = {
563
570
  base_denom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos'
564
571
  },
565
572
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png',
566
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg'
573
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg',
574
+ theme: {
575
+ primary_color_hex: '#639BFF',
576
+ circle: true
577
+ }
567
578
  }],
568
579
  logo_URIs: {
569
580
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png',
@@ -67,6 +67,7 @@ export * as gitopia from './gitopia';
67
67
  export * as govgen from './govgen';
68
68
  export * as gravitybridge from './gravitybridge';
69
69
  export * as haqq from './haqq';
70
+ export * as heli from './heli';
70
71
  export * as highbury from './highbury';
71
72
  export * as humans from './humans';
72
73
  export * as idep from './idep';
@@ -29,8 +29,8 @@ const info = {
29
29
  },
30
30
  codebase: {},
31
31
  logo_URIs: {
32
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png',
33
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg'
32
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
33
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
34
34
  },
35
35
  description: 'The superior way to use Bitcoin in Cosmos DeFi. Use IBC to securely and efficiently bridge your BTC to Osmosis and more.',
36
36
  apis: {
@@ -82,8 +82,12 @@ const info = {
82
82
  }
83
83
  ],
84
84
  images: [{
85
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.png',
86
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nomic.svg'
85
+ image_sync: {
86
+ chain_name: 'nomic',
87
+ base_denom: 'unom'
88
+ },
89
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png',
90
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg'
87
91
  }],
88
92
  bech32_config: {
89
93
  bech32PrefixAccAddr: 'nomic',
@@ -255,7 +255,12 @@ const info = {
255
255
  chain_name: 'osmosis',
256
256
  base_denom: 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7'
257
257
  },
258
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
258
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
259
+ theme: {
260
+ primary_color_hex: '#F7E3C0',
261
+ background_color_hex: '#F7E3C0',
262
+ circle: true
263
+ }
259
264
  }, {
260
265
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
261
266
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.svg'