chain-registry 1.63.12 → 1.63.14

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 (52) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +6 -2
  3. package/esm/mainnet/assets.js +2 -0
  4. package/esm/mainnet/celestia/chain.js +18 -0
  5. package/esm/mainnet/chains.js +2 -0
  6. package/esm/mainnet/heli/assets.js +24 -0
  7. package/esm/mainnet/heli/chain.js +57 -0
  8. package/esm/mainnet/heli/index.js +4 -0
  9. package/esm/mainnet/named.js +1 -0
  10. package/esm/noncosmos/arbitrum/assets.js +15 -3
  11. package/esm/noncosmos/assets.js +4 -0
  12. package/esm/noncosmos/dogecoin/assets.js +25 -0
  13. package/esm/noncosmos/dogecoin/index.js +2 -0
  14. package/esm/noncosmos/named.js +2 -0
  15. package/esm/noncosmos/optimism/assets.js +47 -0
  16. package/esm/noncosmos/optimism/index.js +2 -0
  17. package/esm/testnet/celestiatestnet3/chain.js +18 -0
  18. package/esm/testnet/ibc.js +2 -0
  19. package/esm/testnet/osmosistestnet/ibc.js +30 -0
  20. package/esm/testnet/swisstroniktestnet/ibc.js +31 -0
  21. package/esm/testnet/swisstroniktestnet/index.js +2 -0
  22. package/mainnet/assets.js +2 -0
  23. package/mainnet/celestia/chain.js +18 -0
  24. package/mainnet/chains.js +2 -0
  25. package/mainnet/heli/assets.d.ts +3 -0
  26. package/mainnet/heli/assets.js +26 -0
  27. package/mainnet/heli/chain.d.ts +3 -0
  28. package/mainnet/heli/chain.js +59 -0
  29. package/mainnet/heli/index.d.ts +2 -0
  30. package/mainnet/heli/index.js +10 -0
  31. package/mainnet/named.d.ts +1 -0
  32. package/mainnet/named.js +4 -3
  33. package/noncosmos/arbitrum/assets.js +15 -3
  34. package/noncosmos/assets.js +4 -0
  35. package/noncosmos/dogecoin/assets.d.ts +3 -0
  36. package/noncosmos/dogecoin/assets.js +27 -0
  37. package/noncosmos/dogecoin/index.d.ts +1 -0
  38. package/noncosmos/dogecoin/index.js +8 -0
  39. package/noncosmos/named.d.ts +2 -0
  40. package/noncosmos/named.js +3 -1
  41. package/noncosmos/optimism/assets.d.ts +3 -0
  42. package/noncosmos/optimism/assets.js +49 -0
  43. package/noncosmos/optimism/index.d.ts +1 -0
  44. package/noncosmos/optimism/index.js +8 -0
  45. package/package.json +4 -4
  46. package/testnet/celestiatestnet3/chain.js +18 -0
  47. package/testnet/ibc.js +2 -0
  48. package/testnet/osmosistestnet/ibc.js +30 -0
  49. package/testnet/swisstroniktestnet/ibc.d.ts +3 -0
  50. package/testnet/swisstroniktestnet/ibc.js +33 -0
  51. package/testnet/swisstroniktestnet/index.d.ts +1 -0
  52. package/testnet/swisstroniktestnet/index.js +3 -1
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)
@@ -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,
@@ -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,
@@ -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;
@@ -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';
@@ -1,9 +1,10 @@
1
1
  const info = {
2
- $schema: '../assetlist.schema.json',
2
+ $schema: '../../assetlist.schema.json',
3
3
  chain_name: 'arbitrum',
4
4
  assets: [
5
5
  {
6
6
  description: 'The governance token of Arbitrum',
7
+ extended_description: 'Arbitrum is a Layer 2 scaling solution for Ethereum, enhancing transaction speed and reducing costs. Built to support smart contracts and decentralized applications (dApps), Arbitrum aims to improve scalability while maintaining compatibility with Ethereum\'s ecosystem.',
7
8
  type_asset: 'erc20',
8
9
  address: '0x912CE59144191C1204E64559FE8253a0e49E6548',
9
10
  denom_units: [{
@@ -33,11 +34,22 @@ const info = {
33
34
  denom_units: [{
34
35
  denom: 'wei',
35
36
  exponent: 0
37
+ }, {
38
+ denom: 'eth',
39
+ exponent: 18
36
40
  }],
37
41
  base: 'wei',
38
- display: 'wei',
42
+ display: 'eth',
39
43
  name: 'Ether',
40
- symbol: 'ETH'
44
+ symbol: 'ETH',
45
+ traces: [{
46
+ type: 'additional-mintage',
47
+ counterparty: {
48
+ chain_name: 'ethereum',
49
+ base_denom: 'wei'
50
+ },
51
+ provider: 'Arbitrum'
52
+ }]
41
53
  },
42
54
  {
43
55
  type_asset: 'erc20',
@@ -9,12 +9,14 @@ import * as _avalanche from './avalanche';
9
9
  import * as _binancesmartchain from './binancesmartchain';
10
10
  import * as _bitcoin from './bitcoin';
11
11
  import * as _comex from './comex';
12
+ import * as _dogecoin from './dogecoin';
12
13
  import * as _fantom from './fantom';
13
14
  import * as _filecoin from './filecoin';
14
15
  import * as _forex from './forex';
15
16
  import * as _kusama from './kusama';
16
17
  import * as _moonbeam from './moonbeam';
17
18
  import * as _neo from './neo';
19
+ import * as _optimism from './optimism';
18
20
  import * as _penumbra from './penumbra';
19
21
  import * as _polkadot from './polkadot';
20
22
  import * as _polygon from './polygon';
@@ -51,12 +53,14 @@ const assets = [
51
53
  _binancesmartchain.assets,
52
54
  _bitcoin.assets,
53
55
  _comex.assets,
56
+ _dogecoin.assets,
54
57
  _fantom.assets,
55
58
  _filecoin.assets,
56
59
  _forex.assets,
57
60
  _kusama.assets,
58
61
  _moonbeam.assets,
59
62
  _neo.assets,
63
+ _optimism.assets,
60
64
  _penumbra.assets,
61
65
  _polkadot.assets,
62
66
  _polygon.assets,
@@ -0,0 +1,25 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'dogecoin',
4
+ assets: [{
5
+ description: 'The native token of Dogecoin.',
6
+ extended_description: 'Dogecoin (DOGE) is a cryptocurrency created as a playful homage, known for its friendly community, Shiba Inu meme origins, and accessible, fast transactions.',
7
+ denom_units: [{
8
+ denom: 'shibe',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'doge',
12
+ exponent: 8
13
+ }],
14
+ type_asset: 'bitcoin-like',
15
+ base: 'shibe',
16
+ name: 'Dogecoin',
17
+ display: 'doge',
18
+ symbol: 'DOGE',
19
+ coingecko_id: 'dogecoin',
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png'
22
+ }]
23
+ }]
24
+ };
25
+ export default info;
@@ -0,0 +1,2 @@
1
+ import _assets from './assets';
2
+ export const assets = _assets;
@@ -9,12 +9,14 @@ export * as avalanche from './avalanche';
9
9
  export * as binancesmartchain from './binancesmartchain';
10
10
  export * as bitcoin from './bitcoin';
11
11
  export * as comex from './comex';
12
+ export * as dogecoin from './dogecoin';
12
13
  export * as fantom from './fantom';
13
14
  export * as filecoin from './filecoin';
14
15
  export * as forex from './forex';
15
16
  export * as kusama from './kusama';
16
17
  export * as moonbeam from './moonbeam';
17
18
  export * as neo from './neo';
19
+ export * as optimism from './optimism';
18
20
  export * as penumbra from './penumbra';
19
21
  export * as polkadot from './polkadot';
20
22
  export * as polygon from './polygon';
@@ -0,0 +1,47 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'optimism',
4
+ assets: [{
5
+ description: 'The governance token of Optimism',
6
+ type_asset: 'erc20',
7
+ address: '0x4200000000000000000000000000000000000042',
8
+ denom_units: [{
9
+ denom: '0x4200000000000000000000000000000000000042',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'op',
13
+ exponent: 18
14
+ }],
15
+ base: '0x4200000000000000000000000000000000000042',
16
+ name: 'Optimism',
17
+ display: 'op',
18
+ symbol: 'OP',
19
+ coingecko_id: 'optimism',
20
+ images: [{
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg',
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png'
23
+ }]
24
+ }, {
25
+ type_asset: 'evm-base',
26
+ denom_units: [{
27
+ denom: 'wei',
28
+ exponent: 0
29
+ }, {
30
+ denom: 'eth',
31
+ exponent: 18
32
+ }],
33
+ base: 'wei',
34
+ display: 'eth',
35
+ name: 'Ether',
36
+ symbol: 'ETH',
37
+ traces: [{
38
+ type: 'additional-mintage',
39
+ counterparty: {
40
+ chain_name: 'ethereum',
41
+ base_denom: 'wei'
42
+ },
43
+ provider: 'Optimism'
44
+ }]
45
+ }]
46
+ };
47
+ export default info;
@@ -0,0 +1,2 @@
1
+ import _assets from './assets';
2
+ export const assets = _assets;
@@ -41,6 +41,10 @@ const info = {
41
41
  {
42
42
  address: 'https://rpc-celestia-testnet.cryptech.com.ua',
43
43
  provider: 'CrypTech'
44
+ },
45
+ {
46
+ address: 'https://rpc.celestia.testnet.dteam.tech:443',
47
+ provider: 'DTEAM'
44
48
  }
45
49
  ],
46
50
  rest: [
@@ -63,6 +67,10 @@ const info = {
63
67
  {
64
68
  address: 'https://api-celestia-testnet.cryptech.com.ua',
65
69
  provider: 'CrypTech'
70
+ },
71
+ {
72
+ address: 'https://api.celestia.testnet.dteam.tech:443',
73
+ provider: 'DTEAM'
66
74
  }
67
75
  ],
68
76
  grpc: [
@@ -81,6 +89,10 @@ const info = {
81
89
  {
82
90
  address: 'https://grpc-celestia-testnet.cryptech.com.ua',
83
91
  provider: 'CrypTech'
92
+ },
93
+ {
94
+ address: 'grpc.celestia.testnet.dteam.tech:27090',
95
+ provider: 'DTEAM'
84
96
  }
85
97
  ]
86
98
  },
@@ -101,6 +113,12 @@ const info = {
101
113
  url: 'https://explorers.cryptech.com.ua/Celestia-Testnet',
102
114
  tx_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}',
103
115
  account_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}'
116
+ },
117
+ {
118
+ kind: 'DTEAM | Explorer',
119
+ url: 'https://explorer.testnet.dteam.tech/celestia',
120
+ tx_page: 'https://explorer.testnet.dteam.tech/celestia/tx/${txHash}',
121
+ account_page: 'https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}'
104
122
  }
105
123
  ]
106
124
  };
@@ -32,6 +32,7 @@ import * as _quicksilvertestnet from './quicksilvertestnet';
32
32
  import * as _sagatestnet from './sagatestnet';
33
33
  import * as _sgetestnet from './sgetestnet';
34
34
  import * as _stargazetestnet from './stargazetestnet';
35
+ import * as _swisstroniktestnet from './swisstroniktestnet';
35
36
  import * as _terra2testnet from './terra2testnet';
36
37
  import * as _titantestnet from './titantestnet';
37
38
  import * as _xiontestnet from './xiontestnet';
@@ -70,6 +71,7 @@ const ibc = [
70
71
  ..._sagatestnet.ibc,
71
72
  ..._sgetestnet.ibc,
72
73
  ..._stargazetestnet.ibc,
74
+ ..._swisstroniktestnet.ibc,
73
75
  ..._terra2testnet.ibc,
74
76
  ..._titantestnet.ibc,
75
77
  ..._xiontestnet.ibc
@@ -799,6 +799,36 @@ const info = [
799
799
  }
800
800
  }]
801
801
  },
802
+ {
803
+ $schema: '../ibc_data.schema.json',
804
+ chain_1: {
805
+ chain_name: 'osmosistestnet',
806
+ client_id: '07-tendermint-3714',
807
+ connection_id: 'connection-3238'
808
+ },
809
+ chain_2: {
810
+ chain_name: 'swisstroniktestnet',
811
+ client_id: '07-tendermint-31',
812
+ connection_id: 'connection-18'
813
+ },
814
+ channels: [{
815
+ chain_1: {
816
+ channel_id: 'channel-8295',
817
+ port_id: 'transfer'
818
+ },
819
+ chain_2: {
820
+ channel_id: 'channel-2',
821
+ port_id: 'transfer'
822
+ },
823
+ ordering: 'unordered',
824
+ version: 'ics20-1',
825
+ tags: {
826
+ status: 'live',
827
+ preferred: true,
828
+ dex: 'osmosis'
829
+ }
830
+ }]
831
+ },
802
832
  {
803
833
  $schema: '../../ibc_data.schema.json',
804
834
  chain_1: {
@@ -0,0 +1,31 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'osmosistestnet',
5
+ client_id: '07-tendermint-3714',
6
+ connection_id: 'connection-3238'
7
+ },
8
+ chain_2: {
9
+ chain_name: 'swisstroniktestnet',
10
+ client_id: '07-tendermint-31',
11
+ connection_id: 'connection-18'
12
+ },
13
+ channels: [{
14
+ chain_1: {
15
+ channel_id: 'channel-8295',
16
+ port_id: 'transfer'
17
+ },
18
+ chain_2: {
19
+ channel_id: 'channel-2',
20
+ port_id: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true,
27
+ dex: 'osmosis'
28
+ }
29
+ }]
30
+ }];
31
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assets from './assets';
2
2
  import _chain from './chain';
3
+ import _ibc from './ibc';
3
4
  export const assets = _assets;
4
5
  export const chain = _chain;
6
+ export const ibc = _ibc;
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,
@@ -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,
@@ -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;
@@ -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';
package/mainnet/named.js CHANGED
@@ -24,9 +24,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bluechip = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
27
- exports.mun = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = void 0;
28
- exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = void 0;
29
- exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = void 0;
27
+ exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = void 0;
28
+ exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = void 0;
29
+ exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = void 0;
30
30
  exports._8ball = __importStar(require("./8ball"));
31
31
  exports.acrechain = __importStar(require("./acrechain"));
32
32
  exports.agoric = __importStar(require("./agoric"));
@@ -96,6 +96,7 @@ exports.gitopia = __importStar(require("./gitopia"));
96
96
  exports.govgen = __importStar(require("./govgen"));
97
97
  exports.gravitybridge = __importStar(require("./gravitybridge"));
98
98
  exports.haqq = __importStar(require("./haqq"));
99
+ exports.heli = __importStar(require("./heli"));
99
100
  exports.highbury = __importStar(require("./highbury"));
100
101
  exports.humans = __importStar(require("./humans"));
101
102
  exports.idep = __importStar(require("./idep"));
@@ -1,11 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const info = {
4
- $schema: '../assetlist.schema.json',
4
+ $schema: '../../assetlist.schema.json',
5
5
  chain_name: 'arbitrum',
6
6
  assets: [
7
7
  {
8
8
  description: 'The governance token of Arbitrum',
9
+ extended_description: 'Arbitrum is a Layer 2 scaling solution for Ethereum, enhancing transaction speed and reducing costs. Built to support smart contracts and decentralized applications (dApps), Arbitrum aims to improve scalability while maintaining compatibility with Ethereum\'s ecosystem.',
9
10
  type_asset: 'erc20',
10
11
  address: '0x912CE59144191C1204E64559FE8253a0e49E6548',
11
12
  denom_units: [{
@@ -35,11 +36,22 @@ const info = {
35
36
  denom_units: [{
36
37
  denom: 'wei',
37
38
  exponent: 0
39
+ }, {
40
+ denom: 'eth',
41
+ exponent: 18
38
42
  }],
39
43
  base: 'wei',
40
- display: 'wei',
44
+ display: 'eth',
41
45
  name: 'Ether',
42
- symbol: 'ETH'
46
+ symbol: 'ETH',
47
+ traces: [{
48
+ type: 'additional-mintage',
49
+ counterparty: {
50
+ chain_name: 'ethereum',
51
+ base_denom: 'wei'
52
+ },
53
+ provider: 'Arbitrum'
54
+ }]
43
55
  },
44
56
  {
45
57
  type_asset: 'erc20',
@@ -34,12 +34,14 @@ const _avalanche = __importStar(require("./avalanche"));
34
34
  const _binancesmartchain = __importStar(require("./binancesmartchain"));
35
35
  const _bitcoin = __importStar(require("./bitcoin"));
36
36
  const _comex = __importStar(require("./comex"));
37
+ const _dogecoin = __importStar(require("./dogecoin"));
37
38
  const _fantom = __importStar(require("./fantom"));
38
39
  const _filecoin = __importStar(require("./filecoin"));
39
40
  const _forex = __importStar(require("./forex"));
40
41
  const _kusama = __importStar(require("./kusama"));
41
42
  const _moonbeam = __importStar(require("./moonbeam"));
42
43
  const _neo = __importStar(require("./neo"));
44
+ const _optimism = __importStar(require("./optimism"));
43
45
  const _penumbra = __importStar(require("./penumbra"));
44
46
  const _polkadot = __importStar(require("./polkadot"));
45
47
  const _polygon = __importStar(require("./polygon"));
@@ -76,12 +78,14 @@ const assets = [
76
78
  _binancesmartchain.assets,
77
79
  _bitcoin.assets,
78
80
  _comex.assets,
81
+ _dogecoin.assets,
79
82
  _fantom.assets,
80
83
  _filecoin.assets,
81
84
  _forex.assets,
82
85
  _kusama.assets,
83
86
  _moonbeam.assets,
84
87
  _neo.assets,
88
+ _optimism.assets,
85
89
  _penumbra.assets,
86
90
  _polkadot.assets,
87
91
  _polygon.assets,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chain_name: 'dogecoin',
6
+ assets: [{
7
+ description: 'The native token of Dogecoin.',
8
+ extended_description: 'Dogecoin (DOGE) is a cryptocurrency created as a playful homage, known for its friendly community, Shiba Inu meme origins, and accessible, fast transactions.',
9
+ denom_units: [{
10
+ denom: 'shibe',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'doge',
14
+ exponent: 8
15
+ }],
16
+ type_asset: 'bitcoin-like',
17
+ base: 'shibe',
18
+ name: 'Dogecoin',
19
+ display: 'doge',
20
+ symbol: 'DOGE',
21
+ coingecko_id: 'dogecoin',
22
+ images: [{
23
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png'
24
+ }]
25
+ }]
26
+ };
27
+ exports.default = info;
@@ -0,0 +1 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
@@ -0,0 +1,8 @@
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.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ exports.assets = assets_1.default;
@@ -9,12 +9,14 @@ export * as avalanche from './avalanche';
9
9
  export * as binancesmartchain from './binancesmartchain';
10
10
  export * as bitcoin from './bitcoin';
11
11
  export * as comex from './comex';
12
+ export * as dogecoin from './dogecoin';
12
13
  export * as fantom from './fantom';
13
14
  export * as filecoin from './filecoin';
14
15
  export * as forex from './forex';
15
16
  export * as kusama from './kusama';
16
17
  export * as moonbeam from './moonbeam';
17
18
  export * as neo from './neo';
19
+ export * as optimism from './optimism';
18
20
  export * as penumbra from './penumbra';
19
21
  export * as polkadot from './polkadot';
20
22
  export * as polygon from './polygon';
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.ojotestnet = exports.polygontestnet = exports.polkadottestnet = exports.moonbeamtestnet = exports.fantomtestnet = exports.ethereumtestnet = exports.binancesmartchaintestnet = exports.avalanchetestnet = exports.prysm = exports.namada = exports.movement = exports.mantrachain = exports.initia = exports.hall = exports.berachain = exports.zilliqa = exports.xrpl = exports.tinkernet = exports.sui = exports.stellar = exports.statemine = exports.polygon = exports.polkadot = exports.penumbra = exports.neo = exports.moonbeam = exports.kusama = exports.forex = exports.filecoin = exports.fantom = exports.comex = exports.bitcoin = exports.binancesmartchain = exports.avalanche = exports.arbitrum = exports.aptos = exports._0l = exports.composablepolkadot = exports.solana = exports.picasso = exports.ethereum = void 0;
26
+ exports.ojotestnet = exports.polygontestnet = exports.polkadottestnet = exports.moonbeamtestnet = exports.fantomtestnet = exports.ethereumtestnet = exports.binancesmartchaintestnet = exports.avalanchetestnet = exports.prysm = exports.namada = exports.movement = exports.mantrachain = exports.initia = exports.hall = exports.berachain = exports.zilliqa = exports.xrpl = exports.tinkernet = exports.sui = exports.stellar = exports.statemine = exports.polygon = exports.polkadot = exports.penumbra = exports.optimism = exports.neo = exports.moonbeam = exports.kusama = exports.forex = exports.filecoin = exports.fantom = exports.dogecoin = exports.comex = exports.bitcoin = exports.binancesmartchain = exports.avalanche = exports.arbitrum = exports.aptos = exports._0l = exports.composablepolkadot = exports.solana = exports.picasso = exports.ethereum = void 0;
27
27
  exports.ethereum = __importStar(require("./ethereum"));
28
28
  exports.picasso = __importStar(require("./picasso"));
29
29
  exports.solana = __importStar(require("./solana"));
@@ -35,12 +35,14 @@ exports.avalanche = __importStar(require("./avalanche"));
35
35
  exports.binancesmartchain = __importStar(require("./binancesmartchain"));
36
36
  exports.bitcoin = __importStar(require("./bitcoin"));
37
37
  exports.comex = __importStar(require("./comex"));
38
+ exports.dogecoin = __importStar(require("./dogecoin"));
38
39
  exports.fantom = __importStar(require("./fantom"));
39
40
  exports.filecoin = __importStar(require("./filecoin"));
40
41
  exports.forex = __importStar(require("./forex"));
41
42
  exports.kusama = __importStar(require("./kusama"));
42
43
  exports.moonbeam = __importStar(require("./moonbeam"));
43
44
  exports.neo = __importStar(require("./neo"));
45
+ exports.optimism = __importStar(require("./optimism"));
44
46
  exports.penumbra = __importStar(require("./penumbra"));
45
47
  exports.polkadot = __importStar(require("./polkadot"));
46
48
  exports.polygon = __importStar(require("./polygon"));
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chain_name: 'optimism',
6
+ assets: [{
7
+ description: 'The governance token of Optimism',
8
+ type_asset: 'erc20',
9
+ address: '0x4200000000000000000000000000000000000042',
10
+ denom_units: [{
11
+ denom: '0x4200000000000000000000000000000000000042',
12
+ exponent: 0
13
+ }, {
14
+ denom: 'op',
15
+ exponent: 18
16
+ }],
17
+ base: '0x4200000000000000000000000000000000000042',
18
+ name: 'Optimism',
19
+ display: 'op',
20
+ symbol: 'OP',
21
+ coingecko_id: 'optimism',
22
+ images: [{
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg',
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png'
25
+ }]
26
+ }, {
27
+ type_asset: 'evm-base',
28
+ denom_units: [{
29
+ denom: 'wei',
30
+ exponent: 0
31
+ }, {
32
+ denom: 'eth',
33
+ exponent: 18
34
+ }],
35
+ base: 'wei',
36
+ display: 'eth',
37
+ name: 'Ether',
38
+ symbol: 'ETH',
39
+ traces: [{
40
+ type: 'additional-mintage',
41
+ counterparty: {
42
+ chain_name: 'ethereum',
43
+ base_denom: 'wei'
44
+ },
45
+ provider: 'Optimism'
46
+ }]
47
+ }]
48
+ };
49
+ exports.default = info;
@@ -0,0 +1 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
@@ -0,0 +1,8 @@
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.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ exports.assets = assets_1.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.63.12",
3
+ "version": "1.63.14",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,11 +29,11 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@chain-registry/utils": "^1.46.9",
32
+ "@chain-registry/utils": "^1.46.11",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.45.9"
36
+ "@chain-registry/types": "^0.45.11"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "822c755b60f551fe9684c6c37c376cd6244926bc"
46
+ "gitHead": "6d437b1f01f0369789ec6b196d226a46090d65cc"
47
47
  }
@@ -43,6 +43,10 @@ const info = {
43
43
  {
44
44
  address: 'https://rpc-celestia-testnet.cryptech.com.ua',
45
45
  provider: 'CrypTech'
46
+ },
47
+ {
48
+ address: 'https://rpc.celestia.testnet.dteam.tech:443',
49
+ provider: 'DTEAM'
46
50
  }
47
51
  ],
48
52
  rest: [
@@ -65,6 +69,10 @@ const info = {
65
69
  {
66
70
  address: 'https://api-celestia-testnet.cryptech.com.ua',
67
71
  provider: 'CrypTech'
72
+ },
73
+ {
74
+ address: 'https://api.celestia.testnet.dteam.tech:443',
75
+ provider: 'DTEAM'
68
76
  }
69
77
  ],
70
78
  grpc: [
@@ -83,6 +91,10 @@ const info = {
83
91
  {
84
92
  address: 'https://grpc-celestia-testnet.cryptech.com.ua',
85
93
  provider: 'CrypTech'
94
+ },
95
+ {
96
+ address: 'grpc.celestia.testnet.dteam.tech:27090',
97
+ provider: 'DTEAM'
86
98
  }
87
99
  ]
88
100
  },
@@ -103,6 +115,12 @@ const info = {
103
115
  url: 'https://explorers.cryptech.com.ua/Celestia-Testnet',
104
116
  tx_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}',
105
117
  account_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}'
118
+ },
119
+ {
120
+ kind: 'DTEAM | Explorer',
121
+ url: 'https://explorer.testnet.dteam.tech/celestia',
122
+ tx_page: 'https://explorer.testnet.dteam.tech/celestia/tx/${txHash}',
123
+ account_page: 'https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}'
106
124
  }
107
125
  ]
108
126
  };
package/testnet/ibc.js CHANGED
@@ -57,6 +57,7 @@ const _quicksilvertestnet = __importStar(require("./quicksilvertestnet"));
57
57
  const _sagatestnet = __importStar(require("./sagatestnet"));
58
58
  const _sgetestnet = __importStar(require("./sgetestnet"));
59
59
  const _stargazetestnet = __importStar(require("./stargazetestnet"));
60
+ const _swisstroniktestnet = __importStar(require("./swisstroniktestnet"));
60
61
  const _terra2testnet = __importStar(require("./terra2testnet"));
61
62
  const _titantestnet = __importStar(require("./titantestnet"));
62
63
  const _xiontestnet = __importStar(require("./xiontestnet"));
@@ -95,6 +96,7 @@ const ibc = [
95
96
  ..._sagatestnet.ibc,
96
97
  ..._sgetestnet.ibc,
97
98
  ..._stargazetestnet.ibc,
99
+ ..._swisstroniktestnet.ibc,
98
100
  ..._terra2testnet.ibc,
99
101
  ..._titantestnet.ibc,
100
102
  ..._xiontestnet.ibc
@@ -801,6 +801,36 @@ const info = [
801
801
  }
802
802
  }]
803
803
  },
804
+ {
805
+ $schema: '../ibc_data.schema.json',
806
+ chain_1: {
807
+ chain_name: 'osmosistestnet',
808
+ client_id: '07-tendermint-3714',
809
+ connection_id: 'connection-3238'
810
+ },
811
+ chain_2: {
812
+ chain_name: 'swisstroniktestnet',
813
+ client_id: '07-tendermint-31',
814
+ connection_id: 'connection-18'
815
+ },
816
+ channels: [{
817
+ chain_1: {
818
+ channel_id: 'channel-8295',
819
+ port_id: 'transfer'
820
+ },
821
+ chain_2: {
822
+ channel_id: 'channel-2',
823
+ port_id: 'transfer'
824
+ },
825
+ ordering: 'unordered',
826
+ version: 'ics20-1',
827
+ tags: {
828
+ status: 'live',
829
+ preferred: true,
830
+ dex: 'osmosis'
831
+ }
832
+ }]
833
+ },
804
834
  {
805
835
  $schema: '../../ibc_data.schema.json',
806
836
  chain_1: {
@@ -0,0 +1,3 @@
1
+ import { IBCInfo } from '@chain-registry/types';
2
+ declare const info: IBCInfo[];
3
+ export default info;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain_1: {
6
+ chain_name: 'osmosistestnet',
7
+ client_id: '07-tendermint-3714',
8
+ connection_id: 'connection-3238'
9
+ },
10
+ chain_2: {
11
+ chain_name: 'swisstroniktestnet',
12
+ client_id: '07-tendermint-31',
13
+ connection_id: 'connection-18'
14
+ },
15
+ channels: [{
16
+ chain_1: {
17
+ channel_id: 'channel-8295',
18
+ port_id: 'transfer'
19
+ },
20
+ chain_2: {
21
+ channel_id: 'channel-2',
22
+ port_id: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live',
28
+ preferred: true,
29
+ dex: 'osmosis'
30
+ }
31
+ }]
32
+ }];
33
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assets: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibc: import("@chain-registry/types").IBCInfo[];
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.chain = exports.assets = void 0;
6
+ exports.ibc = exports.chain = exports.assets = void 0;
7
7
  const assets_1 = __importDefault(require("./assets"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_1 = __importDefault(require("./ibc"));
9
10
  exports.assets = assets_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibc = ibc_1.default;