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
@@ -0,0 +1,58 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'sunrisetestnet',
4
+ assets: [{
5
+ description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
6
+ denom_units: [{
7
+ denom: 'uvrise',
8
+ exponent: 0,
9
+ aliases: ['microvRISE', 'microvrise']
10
+ }, {
11
+ denom: 'vrise',
12
+ exponent: 6
13
+ }],
14
+ base: 'uvrise',
15
+ name: 'Sunrise vRISE',
16
+ display: 'vrise',
17
+ symbol: 'vRISE',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg'
21
+ },
22
+ images: [{
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg',
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png'
25
+ }],
26
+ socials: {
27
+ website: 'https://sunriselayer.io/',
28
+ twitter: 'https://twitter.com/SunriseLayer'
29
+ }
30
+ }, {
31
+ description: 'The native token of the Sunrise network for fees.',
32
+ denom_units: [{
33
+ denom: 'urise',
34
+ exponent: 0,
35
+ aliases: ['microRISE', 'microrise']
36
+ }, {
37
+ denom: 'rise',
38
+ exponent: 6
39
+ }],
40
+ base: 'urise',
41
+ name: 'Sunrise RISE',
42
+ display: 'rise',
43
+ symbol: 'RISE',
44
+ logo_URIs: {
45
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
46
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
47
+ },
48
+ images: [{
49
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
50
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
51
+ }],
52
+ socials: {
53
+ website: 'https://sunriselayer.io/',
54
+ twitter: 'https://twitter.com/SunriseLayer'
55
+ }
56
+ }]
57
+ };
58
+ export default info;
@@ -0,0 +1,54 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'sunrisetestnet',
4
+ status: 'live',
5
+ network_type: 'testnet',
6
+ pretty_name: 'Sunrise Testnet',
7
+ chain_id: 'sunrise-test',
8
+ bech32_prefix: 'sunrise',
9
+ daemon_name: 'sunrised',
10
+ node_home: '$HOME/.sunrise',
11
+ key_algos: ['secp256k1'],
12
+ slip44: 118,
13
+ fees: {
14
+ fee_tokens: [{
15
+ denom: 'urise',
16
+ fixed_min_gas_price: 0,
17
+ low_gas_price: 0.0025,
18
+ average_gas_price: 0.025,
19
+ high_gas_price: 0.04
20
+ }]
21
+ },
22
+ staking: {
23
+ staking_tokens: [{
24
+ denom: 'uvrise'
25
+ }]
26
+ },
27
+ codebase: {
28
+ cosmos_sdk_version: '0.50.2'
29
+ },
30
+ logo_URIs: {
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
32
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
33
+ },
34
+ apis: {
35
+ rpc: [{
36
+ address: 'https://sunrise-test-1.cauchye.net/',
37
+ provider: 'CauchyE'
38
+ }],
39
+ rest: [{
40
+ address: 'https://sunrise-test-1.cauchye.net:1318',
41
+ provider: 'CauchyE'
42
+ }],
43
+ grpc: [{
44
+ address: 'https://sunrise-test-1.cauchye.net:9092',
45
+ provider: 'CauchyE'
46
+ }]
47
+ },
48
+ explorers: [],
49
+ images: [{
50
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
51
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
52
+ }]
53
+ };
54
+ 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
  }]
package/mainnet/assets.js CHANGED
@@ -91,6 +91,7 @@ const _gitopia = __importStar(require("./gitopia"));
91
91
  const _govgen = __importStar(require("./govgen"));
92
92
  const _gravitybridge = __importStar(require("./gravitybridge"));
93
93
  const _haqq = __importStar(require("./haqq"));
94
+ const _heli = __importStar(require("./heli"));
94
95
  const _highbury = __importStar(require("./highbury"));
95
96
  const _humans = __importStar(require("./humans"));
96
97
  const _idep = __importStar(require("./idep"));
@@ -262,6 +263,7 @@ const assets = [
262
263
  _govgen.assets,
263
264
  _gravitybridge.assets,
264
265
  _haqq.assets,
266
+ _heli.assets,
265
267
  _highbury.assets,
266
268
  _humans.assets,
267
269
  _idep.assets,
@@ -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
  }]
@@ -144,6 +144,10 @@ const info = {
144
144
  {
145
145
  address: 'https://celestia-mainnet-rpc.itrocket.net',
146
146
  provider: '🚀 itrocket 🚀'
147
+ },
148
+ {
149
+ address: 'https://rpc.celestia.mainnet.dteam.tech:443',
150
+ provider: 'DTEAM'
147
151
  }
148
152
  ],
149
153
  rest: [
@@ -242,6 +246,10 @@ const info = {
242
246
  {
243
247
  address: 'https://celestia-mainnet-api.itrocket.net',
244
248
  provider: '🚀 itrocket 🚀'
249
+ },
250
+ {
251
+ address: 'https://api.celestia.mainnet.dteam.tech:443',
252
+ provider: 'DTEAM'
245
253
  }
246
254
  ],
247
255
  grpc: [
@@ -324,6 +332,10 @@ const info = {
324
332
  {
325
333
  address: 'celestia-mainnet-grpc.itrocket.net:40090',
326
334
  provider: '🚀 itrocket 🚀'
335
+ },
336
+ {
337
+ address: 'grpc.celestia.mainnet.dteam.tech:28090',
338
+ provider: 'DTEAM'
327
339
  }
328
340
  ]
329
341
  },
@@ -374,6 +386,12 @@ const info = {
374
386
  url: 'https://mainnet.itrocket.net/celestia',
375
387
  tx_page: 'https://mainnet.itrocket.net/celestia/transaction/${txHash}',
376
388
  account_page: 'https://mainnet.itrocket.net/celestia/account/${accountAddress}'
389
+ },
390
+ {
391
+ kind: 'DTEAM | Explorer',
392
+ url: 'https://explorer.mainnet.dteam.tech/celestia',
393
+ tx_page: 'https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}',
394
+ account_page: 'https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}'
377
395
  }
378
396
  ],
379
397
  images: [{
package/mainnet/chains.js CHANGED
@@ -92,6 +92,7 @@ const _gitopia = __importStar(require("./gitopia"));
92
92
  const _govgen = __importStar(require("./govgen"));
93
93
  const _gravitybridge = __importStar(require("./gravitybridge"));
94
94
  const _haqq = __importStar(require("./haqq"));
95
+ const _heli = __importStar(require("./heli"));
95
96
  const _highbury = __importStar(require("./highbury"));
96
97
  const _humans = __importStar(require("./humans"));
97
98
  const _idep = __importStar(require("./idep"));
@@ -265,6 +266,7 @@ const chains = [
265
266
  _govgen.chain,
266
267
  _gravitybridge.chain,
267
268
  _haqq.chain,
269
+ _heli.chain,
268
270
  _highbury.chain,
269
271
  _humans.chain,
270
272
  _idep.chain,
@@ -529,6 +529,7 @@ const info = {
529
529
  }
530
530
  }],
531
531
  logo_URIs: {
532
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
532
533
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
533
534
  },
534
535
  images: [{
@@ -536,7 +537,13 @@ const info = {
536
537
  chain_name: 'ethereum',
537
538
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
538
539
  },
539
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
540
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
541
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
542
+ theme: {
543
+ circle: true,
544
+ primary_color_hex: '#009393',
545
+ background_color_hex: '#009393'
546
+ }
540
547
  }],
541
548
  socials: {
542
549
  website: 'https://www.tether.to/',
@@ -1297,7 +1304,13 @@ const info = {
1297
1304
  chain_name: 'solana',
1298
1305
  base_denom: 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
1299
1306
  },
1300
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
1307
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
1308
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
1309
+ theme: {
1310
+ circle: true,
1311
+ primary_color_hex: '#009393',
1312
+ background_color_hex: '#009393'
1313
+ }
1301
1314
  }]
1302
1315
  },
1303
1316
  {
@@ -1332,7 +1345,12 @@ const info = {
1332
1345
  chain_name: 'solana',
1333
1346
  base_denom: 'ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump'
1334
1347
  },
1335
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png'
1348
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png',
1349
+ theme: {
1350
+ primary_color_hex: '#FFFFFF',
1351
+ background_color_hex: '#FFFFFF',
1352
+ circle: false
1353
+ }
1336
1354
  }]
1337
1355
  }
1338
1356
  ]
@@ -62,9 +62,16 @@ const info = {
62
62
  chain_name: 'kava',
63
63
  base_denom: 'erc20/tether/usdt'
64
64
  },
65
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
67
+ theme: {
68
+ circle: true,
69
+ primary_color_hex: '#009393',
70
+ background_color_hex: '#009393'
71
+ }
66
72
  }],
67
73
  logo_URIs: {
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
68
75
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
69
76
  }
70
77
  },
@@ -65,9 +65,16 @@ const info = {
65
65
  chain_name: 'kava',
66
66
  base_denom: 'erc20/tether/usdt'
67
67
  },
68
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
68
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
69
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
70
+ theme: {
71
+ circle: true,
72
+ primary_color_hex: '#009393',
73
+ background_color_hex: '#009393'
74
+ }
69
75
  }],
70
76
  logo_URIs: {
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
71
78
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
72
79
  }
73
80
  }]
@@ -62,9 +62,16 @@ const info = {
62
62
  chain_name: 'kava',
63
63
  base_denom: 'erc20/tether/usdt'
64
64
  },
65
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
67
+ theme: {
68
+ circle: true,
69
+ primary_color_hex: '#009393',
70
+ background_color_hex: '#009393'
71
+ }
66
72
  }],
67
73
  logo_URIs: {
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
68
75
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
69
76
  }
70
77
  },
@@ -191,9 +191,16 @@ const info = {
191
191
  chain_name: 'ethereum',
192
192
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
193
193
  },
194
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
194
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
195
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
196
+ theme: {
197
+ circle: true,
198
+ primary_color_hex: '#009393',
199
+ background_color_hex: '#009393'
200
+ }
195
201
  }],
196
202
  logo_URIs: {
203
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
197
204
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
198
205
  }
199
206
  },
@@ -165,6 +165,7 @@ const info = {
165
165
  display: 'gusdt',
166
166
  symbol: 'USDT',
167
167
  logo_URIs: {
168
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
168
169
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
169
170
  },
170
171
  traces: [{
@@ -187,7 +188,13 @@ const info = {
187
188
  chain_name: 'ethereum',
188
189
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
189
190
  },
190
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
191
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
192
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
193
+ theme: {
194
+ circle: true,
195
+ primary_color_hex: '#009393',
196
+ background_color_hex: '#009393'
197
+ }
191
198
  }]
192
199
  },
193
200
  {
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'heli',
6
+ assets: [{
7
+ description: 'The native token of HeliChain',
8
+ denom_units: [{
9
+ denom: 'uheli',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'heli',
13
+ exponent: 6
14
+ }],
15
+ base: 'uheli',
16
+ name: 'Heli',
17
+ display: 'heli',
18
+ symbol: 'HELI',
19
+ coingecko_id: 'helichain',
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.png',
22
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.svg'
23
+ }]
24
+ }]
25
+ };
26
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'heli',
6
+ status: 'live',
7
+ network_type: 'mainnet',
8
+ website: 'https://helichain.com/',
9
+ pretty_name: 'HeliChain',
10
+ chain_id: 'helichain',
11
+ bech32_prefix: 'heli',
12
+ daemon_name: 'helichaind',
13
+ node_home: '$HOME/.helichain',
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'uheli',
19
+ fixed_min_gas_price: 0.001,
20
+ low_gas_price: 0.001,
21
+ average_gas_price: 0.002,
22
+ high_gas_price: 0.0025
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'uheli'
28
+ }],
29
+ lock_duration: {
30
+ time: '1209600s'
31
+ }
32
+ },
33
+ codebase: {
34
+ cosmos_sdk_version: '0.47.4',
35
+ cosmwasm_enabled: true,
36
+ cosmwasm_version: '0.41.0'
37
+ },
38
+ apis: {
39
+ rpc: [{
40
+ address: 'https://rpc.helichain.com/',
41
+ provider: 'HeliChain'
42
+ }],
43
+ rest: [{
44
+ address: 'https://lcd.helichain.com/',
45
+ provider: 'HeliChain'
46
+ }]
47
+ },
48
+ explorers: [{
49
+ kind: 'ping.pub',
50
+ url: 'https://explorer.helichain.com/Helichain',
51
+ tx_page: 'https://explorer.helichain.com/Helichain/tx/${txHash}',
52
+ account_page: 'https://explorer.helichain.com/Helichain/account/${accountAddress}'
53
+ }],
54
+ images: [{
55
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.png',
56
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/heli/images/heli.svg'
57
+ }]
58
+ };
59
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
@@ -62,9 +62,16 @@ const info = {
62
62
  chain_name: 'kava',
63
63
  base_denom: 'erc20/tether/usdt'
64
64
  },
65
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
67
+ theme: {
68
+ circle: true,
69
+ primary_color_hex: '#009393',
70
+ background_color_hex: '#009393'
71
+ }
66
72
  }],
67
73
  logo_URIs: {
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
68
75
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
69
76
  }
70
77
  },
@@ -127,9 +127,16 @@ const info = {
127
127
  chain_name: 'ethereum',
128
128
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
129
129
  },
130
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
130
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
131
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
132
+ theme: {
133
+ circle: true,
134
+ primary_color_hex: '#009393',
135
+ background_color_hex: '#009393'
136
+ }
131
137
  }],
132
138
  logo_URIs: {
139
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
133
140
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
134
141
  }
135
142
  }
@@ -232,9 +232,16 @@ const info = {
232
232
  chain_name: 'kava',
233
233
  base_denom: 'erc20/tether/usdt'
234
234
  },
235
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
235
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
236
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
237
+ theme: {
238
+ circle: true,
239
+ primary_color_hex: '#009393',
240
+ background_color_hex: '#009393'
241
+ }
236
242
  }],
237
243
  logo_URIs: {
244
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
238
245
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
239
246
  }
240
247
  },
@@ -251,6 +258,7 @@ const info = {
251
258
  name: 'Fuzion',
252
259
  display: 'fuzn',
253
260
  symbol: 'FUZN',
261
+ coingecko_id: 'fuzion',
254
262
  logo_URIs: {
255
263
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png',
256
264
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg'
@@ -364,6 +372,7 @@ const info = {
364
372
  name: 'AQLA',
365
373
  display: 'AQLA',
366
374
  symbol: 'AQLA',
375
+ coingecko_id: 'aqualibre',
367
376
  logo_URIs: {
368
377
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg'
369
378
  },
@@ -36,18 +36,10 @@ const info = {
36
36
  cosmwasm_enabled: false
37
37
  },
38
38
  images: [{
39
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png',
40
- theme: {
41
- primary_color_hex: '#FF3900'
42
- },
43
- layout: 'logo',
44
- text_position: 'right'
45
- }, {
46
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png',
47
- layout: 'logomark'
39
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png'
48
40
  }],
49
41
  logo_URIs: {
50
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png'
42
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png'
51
43
  },
52
44
  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.',
53
45
  apis: {
@@ -32,8 +32,7 @@ const info = {
32
32
  },
33
33
  images: [{
34
34
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png',
35
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg',
36
- layout: 'logomark'
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.svg'
37
36
  }],
38
37
  logo_URIs: {
39
38
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/loop/images/loop.png',
@@ -197,9 +197,16 @@ const info = {
197
197
  chain_name: 'kava',
198
198
  base_denom: 'erc20/tether/usdt'
199
199
  },
200
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
200
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
201
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
202
+ theme: {
203
+ circle: true,
204
+ primary_color_hex: '#009393',
205
+ background_color_hex: '#009393'
206
+ }
201
207
  }],
202
208
  logo_URIs: {
209
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
203
210
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
204
211
  }
205
212
  },
@@ -565,7 +572,11 @@ const info = {
565
572
  base_denom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos'
566
573
  },
567
574
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png',
568
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg'
575
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg',
576
+ theme: {
577
+ primary_color_hex: '#639BFF',
578
+ circle: true
579
+ }
569
580
  }],
570
581
  logo_URIs: {
571
582
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png',