chain-registry 2.0.118 → 2.0.120

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 (49) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/chains.js +2 -0
  3. package/esm/mainnet/cosmoshub/chain.js +21 -0
  4. package/esm/mainnet/dydx/chain.js +4 -4
  5. package/esm/mainnet/epix/ibc-data.js +32 -0
  6. package/esm/mainnet/epix/index.js +2 -0
  7. package/esm/mainnet/ibc-data.js +2 -0
  8. package/esm/mainnet/injective/chain.js +5 -1
  9. package/esm/mainnet/lava/chain.js +12 -0
  10. package/esm/mainnet/optio/chain.js +4 -1
  11. package/esm/mainnet/osmosis/asset-list.js +40 -0
  12. package/esm/mainnet/osmosis/ibc-data.js +31 -0
  13. package/esm/mainnet/stoc/asset-list.js +28 -0
  14. package/esm/mainnet/stoc/chain.js +77 -0
  15. package/esm/mainnet/stoc/index.js +4 -0
  16. package/esm/testnet/asset-lists.js +2 -0
  17. package/esm/testnet/chains.js +2 -0
  18. package/esm/testnet/tstoctestnet/asset-list.js +39 -0
  19. package/esm/testnet/tstoctestnet/chain.js +80 -0
  20. package/esm/testnet/tstoctestnet/index.js +4 -0
  21. package/mainnet/asset-lists.js +2 -0
  22. package/mainnet/chains.js +2 -0
  23. package/mainnet/cosmoshub/chain.js +21 -0
  24. package/mainnet/dydx/chain.js +4 -4
  25. package/mainnet/epix/ibc-data.d.ts +3 -0
  26. package/mainnet/epix/ibc-data.js +34 -0
  27. package/mainnet/epix/index.d.ts +1 -0
  28. package/mainnet/epix/index.js +3 -1
  29. package/mainnet/ibc-data.js +2 -0
  30. package/mainnet/injective/chain.js +5 -1
  31. package/mainnet/lava/chain.js +12 -0
  32. package/mainnet/optio/chain.js +4 -1
  33. package/mainnet/osmosis/asset-list.js +40 -0
  34. package/mainnet/osmosis/ibc-data.js +31 -0
  35. package/mainnet/stoc/asset-list.d.ts +3 -0
  36. package/mainnet/stoc/asset-list.js +30 -0
  37. package/mainnet/stoc/chain.d.ts +3 -0
  38. package/mainnet/stoc/chain.js +79 -0
  39. package/mainnet/stoc/index.d.ts +2 -0
  40. package/mainnet/stoc/index.js +10 -0
  41. package/package.json +3 -3
  42. package/testnet/asset-lists.js +2 -0
  43. package/testnet/chains.js +2 -0
  44. package/testnet/tstoctestnet/asset-list.d.ts +3 -0
  45. package/testnet/tstoctestnet/asset-list.js +41 -0
  46. package/testnet/tstoctestnet/chain.d.ts +3 -0
  47. package/testnet/tstoctestnet/chain.js +82 -0
  48. package/testnet/tstoctestnet/index.d.ts +2 -0
  49. package/testnet/tstoctestnet/index.js +10 -0
@@ -190,6 +190,7 @@ import * as _source from './source';
190
190
  import * as _stafihub from './stafihub';
191
191
  import * as _stargaze from './stargaze';
192
192
  import * as _starname from './starname';
193
+ import * as _stoc from './stoc';
193
194
  import * as _stratos from './stratos';
194
195
  import * as _stride from './stride';
195
196
  import * as _sunrise from './sunrise';
@@ -412,6 +413,7 @@ const assetList = [
412
413
  _stafihub.assetList,
413
414
  _stargaze.assetList,
414
415
  _starname.assetList,
416
+ _stoc.assetList,
415
417
  _stratos.assetList,
416
418
  _stride.assetList,
417
419
  _sunrise.assetList,
@@ -190,6 +190,7 @@ import * as _source from './source';
190
190
  import * as _stafihub from './stafihub';
191
191
  import * as _stargaze from './stargaze';
192
192
  import * as _starname from './starname';
193
+ import * as _stoc from './stoc';
193
194
  import * as _stratos from './stratos';
194
195
  import * as _stride from './stride';
195
196
  import * as _sunrise from './sunrise';
@@ -412,6 +413,7 @@ const chains = [
412
413
  _stafihub.chain,
413
414
  _stargaze.chain,
414
415
  _starname.chain,
416
+ _stoc.chain,
415
417
  _stratos.chain,
416
418
  _stride.chain,
417
419
  _sunrise.chain,
@@ -229,6 +229,10 @@ const info = {
229
229
  {
230
230
  address: 'https://rpc.cosmoshub-4-archive.citizenweb3.com:443',
231
231
  provider: 'Citizen Web3'
232
+ },
233
+ {
234
+ address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
235
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
232
236
  }
233
237
  ],
234
238
  rest: [
@@ -368,6 +372,10 @@ const info = {
368
372
  {
369
373
  address: 'https://api.cosmoshub-4.citizenweb3.com:443',
370
374
  provider: 'Citizen Web3'
375
+ },
376
+ {
377
+ address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
378
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
371
379
  }
372
380
  ],
373
381
  grpc: [
@@ -467,6 +475,10 @@ const info = {
467
475
  {
468
476
  address: 'grpc.cosmoshub-4.citizenweb3.com:443',
469
477
  provider: 'Citizen Web3'
478
+ },
479
+ {
480
+ address: 'cosmoshub-mainnet.chain.whenmoonwhenlambo.money:443',
481
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
470
482
  }
471
483
  ]
472
484
  },
@@ -590,6 +602,15 @@ const info = {
590
602
  url: 'https://validatorinfo.com/networks/cosmoshub/overview',
591
603
  validatorPage: 'https://validatorinfo.com/networks/cosmoshub/validators',
592
604
  proposalPage: 'https://validatorinfo.com/networks/cosmoshub/governance'
605
+ },
606
+ {
607
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
608
+ url: 'https://explorer.whenmoonwhenlambo.money/cosmos',
609
+ txPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/tx/${txHash}',
610
+ accountPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/account/${accountAddress}',
611
+ validatorPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/staking/${validatorAddress}',
612
+ proposalPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/gov/${proposalId}',
613
+ blockPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/block/${blockHeight}'
593
614
  }
594
615
  ],
595
616
  images: [{
@@ -34,11 +34,11 @@ const info = {
34
34
  },
35
35
  codebase: {
36
36
  gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
37
- recommendedVersion: 'protocol/v9.4.0',
38
- compatibleVersions: ['protocol/v9.4.0'],
37
+ recommendedVersion: 'protocol/v9.5.0',
38
+ compatibleVersions: ['protocol/v9.5.0'],
39
39
  binaries: {
40
- "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-amd64.tar.gz',
41
- "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-arm64.tar.gz'
40
+ "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-amd64.tar.gz',
41
+ "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-arm64.tar.gz'
42
42
  },
43
43
  consensus: {
44
44
  type: 'cometbft',
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'epix',
5
+ chainId: 'epix_1916-1',
6
+ clientId: '07-tendermint-0',
7
+ connectionId: 'connection-1'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosis',
11
+ chainId: 'osmosis-1',
12
+ clientId: '07-tendermint-3641',
13
+ connectionId: 'connection-10988'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-108456',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'ACTIVE',
28
+ preferred: true
29
+ }
30
+ }]
31
+ }];
32
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -52,6 +52,7 @@ import * as _echelon from './echelon';
52
52
  import * as _elys from './elys';
53
53
  import * as _emoney from './emoney';
54
54
  import * as _empowerchain from './empowerchain';
55
+ import * as _epix from './epix';
55
56
  import * as _evmos from './evmos';
56
57
  import * as _fandomchain from './fandomchain';
57
58
  import * as _fetchhub from './fetchhub';
@@ -226,6 +227,7 @@ const ibcData = [
226
227
  ..._elys.ibcData,
227
228
  ..._emoney.ibcData,
228
229
  ..._empowerchain.ibcData,
230
+ ..._epix.ibcData,
229
231
  ..._evmos.ibcData,
230
232
  ..._fandomchain.ibcData,
231
233
  ..._fetchhub.ibcData,
@@ -217,7 +217,11 @@ const info = {
217
217
  address: 'injective-grpc.noders.services:33090',
218
218
  provider: '[NODERS]TEAM'
219
219
  }
220
- ]
220
+ ],
221
+ evmHttpJsonrpc: [{
222
+ address: 'https://injective.json-rpc.decentrio.ventures',
223
+ provider: 'Decentrio'
224
+ }]
221
225
  },
222
226
  explorers: [
223
227
  {
@@ -143,6 +143,10 @@ const info = {
143
143
  {
144
144
  address: 'https://rpc-lava.winnode.xyz',
145
145
  provider: 'Winnode'
146
+ },
147
+ {
148
+ address: 'https://rpc-lava.vinjan.xyz',
149
+ provider: 'Vinjan.Inc'
146
150
  }
147
151
  ],
148
152
  rest: [
@@ -213,6 +217,10 @@ const info = {
213
217
  {
214
218
  address: 'https://api-lava.winnode.xyz',
215
219
  provider: 'Winnode'
220
+ },
221
+ {
222
+ address: 'https://api-lava.vinjan.xyz',
223
+ provider: 'Vinjan.Inc'
216
224
  }
217
225
  ],
218
226
  grpc: [
@@ -263,6 +271,10 @@ const info = {
263
271
  {
264
272
  address: 'grpc-lava.winnode.xyz:443',
265
273
  provider: 'Winnode'
274
+ },
275
+ {
276
+ address: 'grpc-lava.vinjan.xyz:29990',
277
+ provider: 'Vinjan.Inc'
266
278
  }
267
279
  ]
268
280
  },
@@ -15,7 +15,10 @@ const info = {
15
15
  fees: {
16
16
  feeTokens: [{
17
17
  denom: 'uOPT',
18
- fixedMinGasPrice: 1
18
+ fixedMinGasPrice: 1,
19
+ lowGasPrice: 1,
20
+ averageGasPrice: 1.5,
21
+ highGasPrice: 2
19
22
  }]
20
23
  },
21
24
  staking: {
@@ -22740,6 +22740,46 @@ const info = {
22740
22740
  images: [{
22741
22741
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/NINEDOLLERS.png'
22742
22742
  }]
22743
+ },
22744
+ {
22745
+ description: 'The native token of EpixChain',
22746
+ denomUnits: [{
22747
+ denom: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
22748
+ exponent: 0,
22749
+ aliases: ['aepix']
22750
+ }, {
22751
+ denom: 'epix',
22752
+ exponent: 18
22753
+ }],
22754
+ typeAsset: 'ics20',
22755
+ base: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
22756
+ name: 'Epix',
22757
+ display: 'epix',
22758
+ symbol: 'EPIX',
22759
+ traces: [{
22760
+ type: 'ibc',
22761
+ counterparty: {
22762
+ chainName: 'epix',
22763
+ baseDenom: 'aepix',
22764
+ channelId: 'channel-0'
22765
+ },
22766
+ chain: {
22767
+ channelId: 'channel-108456',
22768
+ path: 'transfer/channel-108456/aepix'
22769
+ }
22770
+ }],
22771
+ logoURIs: {
22772
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
22773
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
22774
+ },
22775
+ images: [{
22776
+ imageSync: {
22777
+ chainName: 'epix',
22778
+ baseDenom: 'aepix'
22779
+ },
22780
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
22781
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
22782
+ }]
22743
22783
  }
22744
22784
  ]
22745
22785
  };
@@ -1671,6 +1671,37 @@ const info = [
1671
1671
  }
1672
1672
  }]
1673
1673
  },
1674
+ {
1675
+ $schema: '../ibc_data.schema.json',
1676
+ chain1: {
1677
+ chainName: 'epix',
1678
+ chainId: 'epix_1916-1',
1679
+ clientId: '07-tendermint-0',
1680
+ connectionId: 'connection-1'
1681
+ },
1682
+ chain2: {
1683
+ chainName: 'osmosis',
1684
+ chainId: 'osmosis-1',
1685
+ clientId: '07-tendermint-3641',
1686
+ connectionId: 'connection-10988'
1687
+ },
1688
+ channels: [{
1689
+ chain1: {
1690
+ channelId: 'channel-0',
1691
+ portId: 'transfer'
1692
+ },
1693
+ chain2: {
1694
+ channelId: 'channel-108456',
1695
+ portId: 'transfer'
1696
+ },
1697
+ ordering: 'unordered',
1698
+ version: 'ics20-1',
1699
+ tags: {
1700
+ status: 'ACTIVE',
1701
+ preferred: true
1702
+ }
1703
+ }]
1704
+ },
1674
1705
  {
1675
1706
  $schema: '../ibc_data.schema.json',
1676
1707
  chain1: {
@@ -0,0 +1,28 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'stoc',
4
+ assets: [{
5
+ description: 'STO Chain is an institutional-grade permissioned blockchain built specifically for regulated assets.',
6
+ extendedDescription: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
7
+ denomUnits: [{
8
+ denom: 'ustoc',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'stoc',
12
+ exponent: 6
13
+ }],
14
+ base: 'ustoc',
15
+ name: 'STO Chain',
16
+ display: 'stoc',
17
+ symbol: 'STOC',
18
+ typeAsset: 'sdk.coin',
19
+ coingeckoId: 'sto-chain',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
25
+ }]
26
+ }]
27
+ };
28
+ export default info;
@@ -0,0 +1,77 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'stoc',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ website: 'https://www.stochain.io/',
7
+ prettyName: 'STO Chain',
8
+ chainType: 'cosmos',
9
+ chainId: 'stoc',
10
+ bech32Prefix: 'stoc',
11
+ daemonName: 'stocd',
12
+ nodeHome: '$HOME/.stoc',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 60,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'ustoc',
18
+ fixedMinGasPrice: 0.01,
19
+ lowGasPrice: 0.01,
20
+ averageGasPrice: 0.015,
21
+ highGasPrice: 0.02
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'ustoc'
27
+ }]
28
+ },
29
+ codebase: {
30
+ gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
31
+ recommendedVersion: 'latest-a2d23f37',
32
+ compatibleVersions: ['latest-a2d23f37'],
33
+ consensus: {
34
+ type: 'cometbft',
35
+ version: 'v0.38.19'
36
+ },
37
+ genesis: {
38
+ genesisUrl: 'https://rpc-stoc-mainnet.stochainscan.io/genesis'
39
+ },
40
+ sdk: {
41
+ type: 'cosmos',
42
+ version: 'v0.53.3'
43
+ },
44
+ ibc: {
45
+ type: 'go',
46
+ version: 'v8.7.0'
47
+ }
48
+ },
49
+ description: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
50
+ logoURIs: {
51
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
52
+ },
53
+ apis: {
54
+ rpc: [{
55
+ address: 'https://rpc-stoc-mainnet.stochainscan.io/',
56
+ provider: 'STO Chain'
57
+ }],
58
+ rest: [{
59
+ address: 'https://api-stoc-mainnet.stochainscan.io/',
60
+ provider: 'STO Chain'
61
+ }],
62
+ grpc: [{
63
+ address: 'grpc-stoc-mainnet.stochainscan.io:443',
64
+ provider: 'STO Chain'
65
+ }]
66
+ },
67
+ explorers: [{
68
+ kind: 'stochainscan',
69
+ url: 'https://stochainscan.io/en',
70
+ txPage: 'https://stochainscan.io/en/transaction/${txHash}',
71
+ accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
72
+ }],
73
+ images: [{
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
75
+ }]
76
+ };
77
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -122,6 +122,7 @@ import * as _terra2testnet from './terra2testnet';
122
122
  import * as _terratestnet from './terratestnet';
123
123
  import * as _titannettestnet from './titannettestnet';
124
124
  import * as _titantestnet from './titantestnet';
125
+ import * as _tstoctestnet from './tstoctestnet';
125
126
  import * as _tucanatestnet from './tucanatestnet';
126
127
  import * as _ulastestnet from './ulastestnet';
127
128
  import * as _unificationtestnet from './unificationtestnet';
@@ -261,6 +262,7 @@ const assetList = [
261
262
  _terratestnet.assetList,
262
263
  _titannettestnet.assetList,
263
264
  _titantestnet.assetList,
265
+ _tstoctestnet.assetList,
264
266
  _tucanatestnet.assetList,
265
267
  _ulastestnet.assetList,
266
268
  _unificationtestnet.assetList,
@@ -122,6 +122,7 @@ import * as _terra2testnet from './terra2testnet';
122
122
  import * as _terratestnet from './terratestnet';
123
123
  import * as _titannettestnet from './titannettestnet';
124
124
  import * as _titantestnet from './titantestnet';
125
+ import * as _tstoctestnet from './tstoctestnet';
125
126
  import * as _tucanatestnet from './tucanatestnet';
126
127
  import * as _ulastestnet from './ulastestnet';
127
128
  import * as _unificationtestnet from './unificationtestnet';
@@ -261,6 +262,7 @@ const chains = [
261
262
  _terratestnet.chain,
262
263
  _titannettestnet.chain,
263
264
  _titantestnet.chain,
265
+ _tstoctestnet.chain,
264
266
  _tucanatestnet.chain,
265
267
  _ulastestnet.chain,
266
268
  _unificationtestnet.chain,
@@ -0,0 +1,39 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chainName: 'tstoctestnet',
4
+ assets: [{
5
+ description: 'STO Chain Testnet is an institutional-grade permissioned blockchain built specifically for regulated assets.',
6
+ extendedDescription: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
7
+ denomUnits: [{
8
+ denom: 'utstoc',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'tstoc',
12
+ exponent: 6
13
+ }],
14
+ base: 'utstoc',
15
+ name: 'STO Chain Testnet',
16
+ display: 'tstoc',
17
+ symbol: 'TSTOC',
18
+ typeAsset: 'sdk.coin',
19
+ traces: [{
20
+ type: 'test-mintage',
21
+ counterparty: {
22
+ chainName: 'stoc',
23
+ baseDenom: 'ustoc'
24
+ },
25
+ provider: 'STO Chain'
26
+ }],
27
+ logoURIs: {
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
29
+ },
30
+ images: [{
31
+ imageSync: {
32
+ chainName: 'stoc',
33
+ baseDenom: 'ustoc'
34
+ },
35
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
36
+ }]
37
+ }]
38
+ };
39
+ export default info;
@@ -0,0 +1,80 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chainName: 'tstoctestnet',
4
+ status: 'live',
5
+ networkType: 'testnet',
6
+ website: 'https://www.stochain.io/',
7
+ prettyName: 'STO Chain Testnet',
8
+ chainType: 'cosmos',
9
+ chainId: 'tstoc',
10
+ bech32Prefix: 'stoc',
11
+ daemonName: 'stocd',
12
+ nodeHome: '$HOME/.stoc',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 60,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'utstoc',
18
+ fixedMinGasPrice: 0.01,
19
+ lowGasPrice: 0.01,
20
+ averageGasPrice: 0.015,
21
+ highGasPrice: 0.02
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'utstoc'
27
+ }]
28
+ },
29
+ codebase: {
30
+ gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
31
+ recommendedVersion: 'latest-2525d3e6',
32
+ compatibleVersions: ['latest-2525d3e6'],
33
+ consensus: {
34
+ type: 'cometbft',
35
+ version: 'v0.38.17'
36
+ },
37
+ genesis: {
38
+ genesisUrl: 'https://rpc-stoc-testnet.stochainscan.io/genesis'
39
+ },
40
+ sdk: {
41
+ type: 'cosmos',
42
+ version: 'v0.53.0'
43
+ },
44
+ ibc: {
45
+ type: 'go',
46
+ version: 'v8.7.0'
47
+ }
48
+ },
49
+ description: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
50
+ logoURIs: {
51
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
52
+ },
53
+ apis: {
54
+ rpc: [{
55
+ address: 'https://rpc-stoc-testnet.stochainscan.io/',
56
+ provider: 'STO Chain'
57
+ }],
58
+ rest: [{
59
+ address: 'https://api-stoc-testnet.stochainscan.io/',
60
+ provider: 'STO Chain'
61
+ }],
62
+ grpc: [{
63
+ address: 'grpc-stoc-testnet.stochainscan.io:443',
64
+ provider: 'STO Chain'
65
+ }]
66
+ },
67
+ explorers: [{
68
+ kind: 'stochainscan',
69
+ url: 'https://stochainscan.io/en',
70
+ txPage: 'https://stochainscan.io/en/transaction/${txHash}',
71
+ accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
72
+ }],
73
+ images: [{
74
+ imageSync: {
75
+ chainName: 'stoc'
76
+ },
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
78
+ }]
79
+ };
80
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -215,6 +215,7 @@ const _source = __importStar(require("./source"));
215
215
  const _stafihub = __importStar(require("./stafihub"));
216
216
  const _stargaze = __importStar(require("./stargaze"));
217
217
  const _starname = __importStar(require("./starname"));
218
+ const _stoc = __importStar(require("./stoc"));
218
219
  const _stratos = __importStar(require("./stratos"));
219
220
  const _stride = __importStar(require("./stride"));
220
221
  const _sunrise = __importStar(require("./sunrise"));
@@ -437,6 +438,7 @@ const assetList = [
437
438
  _stafihub.assetList,
438
439
  _stargaze.assetList,
439
440
  _starname.assetList,
441
+ _stoc.assetList,
440
442
  _stratos.assetList,
441
443
  _stride.assetList,
442
444
  _sunrise.assetList,
package/mainnet/chains.js CHANGED
@@ -215,6 +215,7 @@ const _source = __importStar(require("./source"));
215
215
  const _stafihub = __importStar(require("./stafihub"));
216
216
  const _stargaze = __importStar(require("./stargaze"));
217
217
  const _starname = __importStar(require("./starname"));
218
+ const _stoc = __importStar(require("./stoc"));
218
219
  const _stratos = __importStar(require("./stratos"));
219
220
  const _stride = __importStar(require("./stride"));
220
221
  const _sunrise = __importStar(require("./sunrise"));
@@ -437,6 +438,7 @@ const chains = [
437
438
  _stafihub.chain,
438
439
  _stargaze.chain,
439
440
  _starname.chain,
441
+ _stoc.chain,
440
442
  _stratos.chain,
441
443
  _stride.chain,
442
444
  _sunrise.chain,
@@ -231,6 +231,10 @@ const info = {
231
231
  {
232
232
  address: 'https://rpc.cosmoshub-4-archive.citizenweb3.com:443',
233
233
  provider: 'Citizen Web3'
234
+ },
235
+ {
236
+ address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
237
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
234
238
  }
235
239
  ],
236
240
  rest: [
@@ -370,6 +374,10 @@ const info = {
370
374
  {
371
375
  address: 'https://api.cosmoshub-4.citizenweb3.com:443',
372
376
  provider: 'Citizen Web3'
377
+ },
378
+ {
379
+ address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
380
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
373
381
  }
374
382
  ],
375
383
  grpc: [
@@ -469,6 +477,10 @@ const info = {
469
477
  {
470
478
  address: 'grpc.cosmoshub-4.citizenweb3.com:443',
471
479
  provider: 'Citizen Web3'
480
+ },
481
+ {
482
+ address: 'cosmoshub-mainnet.chain.whenmoonwhenlambo.money:443',
483
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
472
484
  }
473
485
  ]
474
486
  },
@@ -592,6 +604,15 @@ const info = {
592
604
  url: 'https://validatorinfo.com/networks/cosmoshub/overview',
593
605
  validatorPage: 'https://validatorinfo.com/networks/cosmoshub/validators',
594
606
  proposalPage: 'https://validatorinfo.com/networks/cosmoshub/governance'
607
+ },
608
+ {
609
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
610
+ url: 'https://explorer.whenmoonwhenlambo.money/cosmos',
611
+ txPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/tx/${txHash}',
612
+ accountPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/account/${accountAddress}',
613
+ validatorPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/staking/${validatorAddress}',
614
+ proposalPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/gov/${proposalId}',
615
+ blockPage: 'https://explorer.whenmoonwhenlambo.money/cosmos/block/${blockHeight}'
595
616
  }
596
617
  ],
597
618
  images: [{
@@ -36,11 +36,11 @@ const info = {
36
36
  },
37
37
  codebase: {
38
38
  gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
39
- recommendedVersion: 'protocol/v9.4.0',
40
- compatibleVersions: ['protocol/v9.4.0'],
39
+ recommendedVersion: 'protocol/v9.5.0',
40
+ compatibleVersions: ['protocol/v9.5.0'],
41
41
  binaries: {
42
- "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-amd64.tar.gz',
43
- "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-arm64.tar.gz'
42
+ "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-amd64.tar.gz',
43
+ "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-arm64.tar.gz'
44
44
  },
45
45
  consensus: {
46
46
  type: 'cometbft',
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'epix',
7
+ chainId: 'epix_1916-1',
8
+ clientId: '07-tendermint-0',
9
+ connectionId: 'connection-1'
10
+ },
11
+ chain2: {
12
+ chainName: 'osmosis',
13
+ chainId: 'osmosis-1',
14
+ clientId: '07-tendermint-3641',
15
+ connectionId: 'connection-10988'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-0',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-108456',
24
+ portId: 'transfer'
25
+ },
26
+ ordering: 'unordered',
27
+ version: 'ics20-1',
28
+ tags: {
29
+ status: 'ACTIVE',
30
+ preferred: true
31
+ }
32
+ }]
33
+ }];
34
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -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.assetList = void 0;
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
7
  const asset_list_1 = __importDefault(require("./asset-list"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
9
10
  exports.assetList = asset_list_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -77,6 +77,7 @@ const _echelon = __importStar(require("./echelon"));
77
77
  const _elys = __importStar(require("./elys"));
78
78
  const _emoney = __importStar(require("./emoney"));
79
79
  const _empowerchain = __importStar(require("./empowerchain"));
80
+ const _epix = __importStar(require("./epix"));
80
81
  const _evmos = __importStar(require("./evmos"));
81
82
  const _fandomchain = __importStar(require("./fandomchain"));
82
83
  const _fetchhub = __importStar(require("./fetchhub"));
@@ -251,6 +252,7 @@ const ibcData = [
251
252
  ..._elys.ibcData,
252
253
  ..._emoney.ibcData,
253
254
  ..._empowerchain.ibcData,
255
+ ..._epix.ibcData,
254
256
  ..._evmos.ibcData,
255
257
  ..._fandomchain.ibcData,
256
258
  ..._fetchhub.ibcData,
@@ -219,7 +219,11 @@ const info = {
219
219
  address: 'injective-grpc.noders.services:33090',
220
220
  provider: '[NODERS]TEAM'
221
221
  }
222
- ]
222
+ ],
223
+ evmHttpJsonrpc: [{
224
+ address: 'https://injective.json-rpc.decentrio.ventures',
225
+ provider: 'Decentrio'
226
+ }]
223
227
  },
224
228
  explorers: [
225
229
  {
@@ -145,6 +145,10 @@ const info = {
145
145
  {
146
146
  address: 'https://rpc-lava.winnode.xyz',
147
147
  provider: 'Winnode'
148
+ },
149
+ {
150
+ address: 'https://rpc-lava.vinjan.xyz',
151
+ provider: 'Vinjan.Inc'
148
152
  }
149
153
  ],
150
154
  rest: [
@@ -215,6 +219,10 @@ const info = {
215
219
  {
216
220
  address: 'https://api-lava.winnode.xyz',
217
221
  provider: 'Winnode'
222
+ },
223
+ {
224
+ address: 'https://api-lava.vinjan.xyz',
225
+ provider: 'Vinjan.Inc'
218
226
  }
219
227
  ],
220
228
  grpc: [
@@ -265,6 +273,10 @@ const info = {
265
273
  {
266
274
  address: 'grpc-lava.winnode.xyz:443',
267
275
  provider: 'Winnode'
276
+ },
277
+ {
278
+ address: 'grpc-lava.vinjan.xyz:29990',
279
+ provider: 'Vinjan.Inc'
268
280
  }
269
281
  ]
270
282
  },
@@ -17,7 +17,10 @@ const info = {
17
17
  fees: {
18
18
  feeTokens: [{
19
19
  denom: 'uOPT',
20
- fixedMinGasPrice: 1
20
+ fixedMinGasPrice: 1,
21
+ lowGasPrice: 1,
22
+ averageGasPrice: 1.5,
23
+ highGasPrice: 2
21
24
  }]
22
25
  },
23
26
  staking: {
@@ -22742,6 +22742,46 @@ const info = {
22742
22742
  images: [{
22743
22743
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/NINEDOLLERS.png'
22744
22744
  }]
22745
+ },
22746
+ {
22747
+ description: 'The native token of EpixChain',
22748
+ denomUnits: [{
22749
+ denom: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
22750
+ exponent: 0,
22751
+ aliases: ['aepix']
22752
+ }, {
22753
+ denom: 'epix',
22754
+ exponent: 18
22755
+ }],
22756
+ typeAsset: 'ics20',
22757
+ base: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
22758
+ name: 'Epix',
22759
+ display: 'epix',
22760
+ symbol: 'EPIX',
22761
+ traces: [{
22762
+ type: 'ibc',
22763
+ counterparty: {
22764
+ chainName: 'epix',
22765
+ baseDenom: 'aepix',
22766
+ channelId: 'channel-0'
22767
+ },
22768
+ chain: {
22769
+ channelId: 'channel-108456',
22770
+ path: 'transfer/channel-108456/aepix'
22771
+ }
22772
+ }],
22773
+ logoURIs: {
22774
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
22775
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
22776
+ },
22777
+ images: [{
22778
+ imageSync: {
22779
+ chainName: 'epix',
22780
+ baseDenom: 'aepix'
22781
+ },
22782
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
22783
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
22784
+ }]
22745
22785
  }
22746
22786
  ]
22747
22787
  };
@@ -1673,6 +1673,37 @@ const info = [
1673
1673
  }
1674
1674
  }]
1675
1675
  },
1676
+ {
1677
+ $schema: '../ibc_data.schema.json',
1678
+ chain1: {
1679
+ chainName: 'epix',
1680
+ chainId: 'epix_1916-1',
1681
+ clientId: '07-tendermint-0',
1682
+ connectionId: 'connection-1'
1683
+ },
1684
+ chain2: {
1685
+ chainName: 'osmosis',
1686
+ chainId: 'osmosis-1',
1687
+ clientId: '07-tendermint-3641',
1688
+ connectionId: 'connection-10988'
1689
+ },
1690
+ channels: [{
1691
+ chain1: {
1692
+ channelId: 'channel-0',
1693
+ portId: 'transfer'
1694
+ },
1695
+ chain2: {
1696
+ channelId: 'channel-108456',
1697
+ portId: 'transfer'
1698
+ },
1699
+ ordering: 'unordered',
1700
+ version: 'ics20-1',
1701
+ tags: {
1702
+ status: 'ACTIVE',
1703
+ preferred: true
1704
+ }
1705
+ }]
1706
+ },
1676
1707
  {
1677
1708
  $schema: '../ibc_data.schema.json',
1678
1709
  chain1: {
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'stoc',
6
+ assets: [{
7
+ description: 'STO Chain is an institutional-grade permissioned blockchain built specifically for regulated assets.',
8
+ extendedDescription: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
9
+ denomUnits: [{
10
+ denom: 'ustoc',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'stoc',
14
+ exponent: 6
15
+ }],
16
+ base: 'ustoc',
17
+ name: 'STO Chain',
18
+ display: 'stoc',
19
+ symbol: 'STOC',
20
+ typeAsset: 'sdk.coin',
21
+ coingeckoId: 'sto-chain',
22
+ logoURIs: {
23
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
24
+ },
25
+ images: [{
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
27
+ }]
28
+ }]
29
+ };
30
+ 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,79 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'stoc',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ website: 'https://www.stochain.io/',
9
+ prettyName: 'STO Chain',
10
+ chainType: 'cosmos',
11
+ chainId: 'stoc',
12
+ bech32Prefix: 'stoc',
13
+ daemonName: 'stocd',
14
+ nodeHome: '$HOME/.stoc',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 60,
17
+ fees: {
18
+ feeTokens: [{
19
+ denom: 'ustoc',
20
+ fixedMinGasPrice: 0.01,
21
+ lowGasPrice: 0.01,
22
+ averageGasPrice: 0.015,
23
+ highGasPrice: 0.02
24
+ }]
25
+ },
26
+ staking: {
27
+ stakingTokens: [{
28
+ denom: 'ustoc'
29
+ }]
30
+ },
31
+ codebase: {
32
+ gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
33
+ recommendedVersion: 'latest-a2d23f37',
34
+ compatibleVersions: ['latest-a2d23f37'],
35
+ consensus: {
36
+ type: 'cometbft',
37
+ version: 'v0.38.19'
38
+ },
39
+ genesis: {
40
+ genesisUrl: 'https://rpc-stoc-mainnet.stochainscan.io/genesis'
41
+ },
42
+ sdk: {
43
+ type: 'cosmos',
44
+ version: 'v0.53.3'
45
+ },
46
+ ibc: {
47
+ type: 'go',
48
+ version: 'v8.7.0'
49
+ }
50
+ },
51
+ description: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
52
+ logoURIs: {
53
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
54
+ },
55
+ apis: {
56
+ rpc: [{
57
+ address: 'https://rpc-stoc-mainnet.stochainscan.io/',
58
+ provider: 'STO Chain'
59
+ }],
60
+ rest: [{
61
+ address: 'https://api-stoc-mainnet.stochainscan.io/',
62
+ provider: 'STO Chain'
63
+ }],
64
+ grpc: [{
65
+ address: 'grpc-stoc-mainnet.stochainscan.io:443',
66
+ provider: 'STO Chain'
67
+ }]
68
+ },
69
+ explorers: [{
70
+ kind: 'stochainscan',
71
+ url: 'https://stochainscan.io/en',
72
+ txPage: 'https://stochainscan.io/en/transaction/${txHash}',
73
+ accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
74
+ }],
75
+ images: [{
76
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
77
+ }]
78
+ };
79
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: 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.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.118",
3
+ "version": "2.0.120",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,7 +29,7 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@chain-registry/types": "^2.0.118"
32
+ "@chain-registry/types": "^2.0.120"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "9de19845debf5c15e89e19e219bafd453caea6da"
42
+ "gitHead": "eb66b31d16135c619bae5afc37bf15ed26c2e5d8"
43
43
  }
@@ -147,6 +147,7 @@ const _terra2testnet = __importStar(require("./terra2testnet"));
147
147
  const _terratestnet = __importStar(require("./terratestnet"));
148
148
  const _titannettestnet = __importStar(require("./titannettestnet"));
149
149
  const _titantestnet = __importStar(require("./titantestnet"));
150
+ const _tstoctestnet = __importStar(require("./tstoctestnet"));
150
151
  const _tucanatestnet = __importStar(require("./tucanatestnet"));
151
152
  const _ulastestnet = __importStar(require("./ulastestnet"));
152
153
  const _unificationtestnet = __importStar(require("./unificationtestnet"));
@@ -286,6 +287,7 @@ const assetList = [
286
287
  _terratestnet.assetList,
287
288
  _titannettestnet.assetList,
288
289
  _titantestnet.assetList,
290
+ _tstoctestnet.assetList,
289
291
  _tucanatestnet.assetList,
290
292
  _ulastestnet.assetList,
291
293
  _unificationtestnet.assetList,
package/testnet/chains.js CHANGED
@@ -147,6 +147,7 @@ const _terra2testnet = __importStar(require("./terra2testnet"));
147
147
  const _terratestnet = __importStar(require("./terratestnet"));
148
148
  const _titannettestnet = __importStar(require("./titannettestnet"));
149
149
  const _titantestnet = __importStar(require("./titantestnet"));
150
+ const _tstoctestnet = __importStar(require("./tstoctestnet"));
150
151
  const _tucanatestnet = __importStar(require("./tucanatestnet"));
151
152
  const _ulastestnet = __importStar(require("./ulastestnet"));
152
153
  const _unificationtestnet = __importStar(require("./unificationtestnet"));
@@ -286,6 +287,7 @@ const chains = [
286
287
  _terratestnet.chain,
287
288
  _titannettestnet.chain,
288
289
  _titantestnet.chain,
290
+ _tstoctestnet.chain,
289
291
  _tucanatestnet.chain,
290
292
  _ulastestnet.chain,
291
293
  _unificationtestnet.chain,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chainName: 'tstoctestnet',
6
+ assets: [{
7
+ description: 'STO Chain Testnet is an institutional-grade permissioned blockchain built specifically for regulated assets.',
8
+ extendedDescription: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
9
+ denomUnits: [{
10
+ denom: 'utstoc',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'tstoc',
14
+ exponent: 6
15
+ }],
16
+ base: 'utstoc',
17
+ name: 'STO Chain Testnet',
18
+ display: 'tstoc',
19
+ symbol: 'TSTOC',
20
+ typeAsset: 'sdk.coin',
21
+ traces: [{
22
+ type: 'test-mintage',
23
+ counterparty: {
24
+ chainName: 'stoc',
25
+ baseDenom: 'ustoc'
26
+ },
27
+ provider: 'STO Chain'
28
+ }],
29
+ logoURIs: {
30
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
31
+ },
32
+ images: [{
33
+ imageSync: {
34
+ chainName: 'stoc',
35
+ baseDenom: 'ustoc'
36
+ },
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
38
+ }]
39
+ }]
40
+ };
41
+ 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,82 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chainName: 'tstoctestnet',
6
+ status: 'live',
7
+ networkType: 'testnet',
8
+ website: 'https://www.stochain.io/',
9
+ prettyName: 'STO Chain Testnet',
10
+ chainType: 'cosmos',
11
+ chainId: 'tstoc',
12
+ bech32Prefix: 'stoc',
13
+ daemonName: 'stocd',
14
+ nodeHome: '$HOME/.stoc',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 60,
17
+ fees: {
18
+ feeTokens: [{
19
+ denom: 'utstoc',
20
+ fixedMinGasPrice: 0.01,
21
+ lowGasPrice: 0.01,
22
+ averageGasPrice: 0.015,
23
+ highGasPrice: 0.02
24
+ }]
25
+ },
26
+ staking: {
27
+ stakingTokens: [{
28
+ denom: 'utstoc'
29
+ }]
30
+ },
31
+ codebase: {
32
+ gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
33
+ recommendedVersion: 'latest-2525d3e6',
34
+ compatibleVersions: ['latest-2525d3e6'],
35
+ consensus: {
36
+ type: 'cometbft',
37
+ version: 'v0.38.17'
38
+ },
39
+ genesis: {
40
+ genesisUrl: 'https://rpc-stoc-testnet.stochainscan.io/genesis'
41
+ },
42
+ sdk: {
43
+ type: 'cosmos',
44
+ version: 'v0.53.0'
45
+ },
46
+ ibc: {
47
+ type: 'go',
48
+ version: 'v8.7.0'
49
+ }
50
+ },
51
+ description: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
52
+ logoURIs: {
53
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
54
+ },
55
+ apis: {
56
+ rpc: [{
57
+ address: 'https://rpc-stoc-testnet.stochainscan.io/',
58
+ provider: 'STO Chain'
59
+ }],
60
+ rest: [{
61
+ address: 'https://api-stoc-testnet.stochainscan.io/',
62
+ provider: 'STO Chain'
63
+ }],
64
+ grpc: [{
65
+ address: 'grpc-stoc-testnet.stochainscan.io:443',
66
+ provider: 'STO Chain'
67
+ }]
68
+ },
69
+ explorers: [{
70
+ kind: 'stochainscan',
71
+ url: 'https://stochainscan.io/en',
72
+ txPage: 'https://stochainscan.io/en/transaction/${txHash}',
73
+ accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
74
+ }],
75
+ images: [{
76
+ imageSync: {
77
+ chainName: 'stoc'
78
+ },
79
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
80
+ }]
81
+ };
82
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: 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.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;