chain-registry 2.0.228 → 2.0.229

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 (39) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/chains.js +2 -0
  3. package/esm/mainnet/dydx/chain.js +8 -0
  4. package/esm/mainnet/gonka/chain.js +8 -0
  5. package/esm/mainnet/injective/asset-list.js +26 -0
  6. package/esm/mainnet/injective/chain.js +8 -0
  7. package/esm/mainnet/neutron/chain.js +8 -0
  8. package/esm/mainnet/osmosis/chain.js +8 -0
  9. package/esm/mainnet/qorechain/asset-list.js +26 -0
  10. package/esm/mainnet/qorechain/chain.js +78 -0
  11. package/esm/mainnet/qorechain/index.js +4 -0
  12. package/esm/testnet/asset-lists.js +2 -0
  13. package/esm/testnet/chains.js +2 -0
  14. package/esm/testnet/qorechaintestnet/asset-list.js +38 -0
  15. package/esm/testnet/qorechaintestnet/chain.js +75 -0
  16. package/esm/testnet/qorechaintestnet/index.js +4 -0
  17. package/mainnet/asset-lists.js +2 -0
  18. package/mainnet/chains.js +2 -0
  19. package/mainnet/dydx/chain.js +8 -0
  20. package/mainnet/gonka/chain.js +8 -0
  21. package/mainnet/injective/asset-list.js +26 -0
  22. package/mainnet/injective/chain.js +8 -0
  23. package/mainnet/neutron/chain.js +8 -0
  24. package/mainnet/osmosis/chain.js +8 -0
  25. package/mainnet/qorechain/asset-list.d.ts +3 -0
  26. package/mainnet/qorechain/asset-list.js +28 -0
  27. package/mainnet/qorechain/chain.d.ts +3 -0
  28. package/mainnet/qorechain/chain.js +80 -0
  29. package/mainnet/qorechain/index.d.ts +2 -0
  30. package/mainnet/qorechain/index.js +10 -0
  31. package/package.json +3 -3
  32. package/testnet/asset-lists.js +2 -0
  33. package/testnet/chains.js +2 -0
  34. package/testnet/qorechaintestnet/asset-list.d.ts +3 -0
  35. package/testnet/qorechaintestnet/asset-list.js +40 -0
  36. package/testnet/qorechaintestnet/chain.d.ts +3 -0
  37. package/testnet/qorechaintestnet/chain.js +77 -0
  38. package/testnet/qorechaintestnet/index.d.ts +2 -0
  39. package/testnet/qorechaintestnet/index.js +10 -0
@@ -163,6 +163,7 @@ import * as _pundix from './pundix';
163
163
  import * as _pylons from './pylons';
164
164
  import * as _qfs from './qfs';
165
165
  import * as _qie from './qie';
166
+ import * as _qorechain from './qorechain';
166
167
  import * as _quasar from './quasar';
167
168
  import * as _qubetics from './qubetics';
168
169
  import * as _quicksilver from './quicksilver';
@@ -388,6 +389,7 @@ const assetList = [
388
389
  _pylons.assetList,
389
390
  _qfs.assetList,
390
391
  _qie.assetList,
392
+ _qorechain.assetList,
391
393
  _quasar.assetList,
392
394
  _qubetics.assetList,
393
395
  _quicksilver.assetList,
@@ -163,6 +163,7 @@ import * as _pundix from './pundix';
163
163
  import * as _pylons from './pylons';
164
164
  import * as _qfs from './qfs';
165
165
  import * as _qie from './qie';
166
+ import * as _qorechain from './qorechain';
166
167
  import * as _quasar from './quasar';
167
168
  import * as _qubetics from './qubetics';
168
169
  import * as _quicksilver from './quicksilver';
@@ -388,6 +389,7 @@ const chains = [
388
389
  _pylons.chain,
389
390
  _qfs.chain,
390
391
  _qie.chain,
392
+ _qorechain.chain,
391
393
  _quasar.chain,
392
394
  _qubetics.chain,
393
395
  _quicksilver.chain,
@@ -94,6 +94,10 @@ const info = {
94
94
  {
95
95
  address: 'https://dydx-rpc.noders.services',
96
96
  provider: '[NODERS]TEAM'
97
+ },
98
+ {
99
+ address: 'https://dydx.rpc.uquad.org:443',
100
+ provider: 'QUAD'
97
101
  }
98
102
  ],
99
103
  rest: [
@@ -124,6 +128,10 @@ const info = {
124
128
  {
125
129
  address: 'https://dydx-api.noders.services',
126
130
  provider: '[NODERS]TEAM'
131
+ },
132
+ {
133
+ address: 'https://dydx.rpc.uquad.org:443',
134
+ provider: 'QUAD'
127
135
  }
128
136
  ],
129
137
  grpc: [
@@ -158,6 +158,14 @@ const info = {
158
158
  url: 'https://node2.gonka.ai:8443/dashboard',
159
159
  txPage: 'https://node2.gonka.ai:8443/dashboard/gonka/txs/${txHash}',
160
160
  accountPage: 'https://node2.gonka.ai:8443/dashboard/gonka/account/${accountAddress}'
161
+ },
162
+ {
163
+ kind: 'gnkscan',
164
+ url: 'https://www.gnkscan.com',
165
+ txPage: 'https://www.gnkscan.com/tx/${txHash}',
166
+ accountPage: 'https://www.gnkscan.com/address/${accountAddress}',
167
+ blockPage: 'https://www.gnkscan.com/blocks/${blockHeight}',
168
+ proposalPage: 'https://www.gnkscan.com/proposals/${proposalId}'
161
169
  }
162
170
  ],
163
171
  keywords: [
@@ -1265,6 +1265,32 @@ const info = {
1265
1265
  website: 'https://agora.finance'
1266
1266
  },
1267
1267
  typeAsset: 'sdk.coin'
1268
+ },
1269
+ {
1270
+ description: 'HELIXPOINT is the points token on Injective, launched on Trippy Pump (SHROOM Pad)',
1271
+ denomUnits: [{
1272
+ denom: 'factory/inj13j2rpnlwl30c02d4pzukykwfeyyhelvry9cqte/shroom_8_be9bddf36b94db69',
1273
+ exponent: 0
1274
+ }, {
1275
+ denom: 'HELIXPOINT',
1276
+ exponent: 18
1277
+ }],
1278
+ base: 'factory/inj13j2rpnlwl30c02d4pzukykwfeyyhelvry9cqte/shroom_8_be9bddf36b94db69',
1279
+ name: 'HELIXPOINT',
1280
+ display: 'HELIXPOINT',
1281
+ symbol: 'HELIXPOINT',
1282
+ logoURIs: {
1283
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/helixpoint.png'
1284
+ },
1285
+ images: [{
1286
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/helixpoint.png'
1287
+ }],
1288
+ socials: {
1289
+ website: 'https://wenpoints.xyz',
1290
+ x: 'https://x.com/helixpoints',
1291
+ telegram: 'https://t.me/helixpoints'
1292
+ },
1293
+ typeAsset: 'sdk.coin'
1268
1294
  }
1269
1295
  ]
1270
1296
  };
@@ -64,6 +64,10 @@ const info = {
64
64
  {
65
65
  address: 'https://public.stakewolle.com/cosmos/injective/rpc',
66
66
  provider: 'Stakewolle'
67
+ },
68
+ {
69
+ address: 'https://injective.rpc.uquad.org:443',
70
+ provider: 'QUAD'
67
71
  }
68
72
  ],
69
73
  rest: [
@@ -86,6 +90,10 @@ const info = {
86
90
  {
87
91
  address: 'https://public.stakewolle.com/cosmos/injective/rest',
88
92
  provider: 'Stakewolle'
93
+ },
94
+ {
95
+ address: 'https://injective.rpc.uquad.org:443',
96
+ provider: 'QUAD'
89
97
  }
90
98
  ],
91
99
  grpc: [
@@ -138,6 +138,10 @@ const info = {
138
138
  {
139
139
  address: 'https://neutron.drpc.org',
140
140
  provider: 'dRPC'
141
+ },
142
+ {
143
+ address: 'https://neutron.rpc.uquad.org:443',
144
+ provider: 'QUAD'
141
145
  }
142
146
  ],
143
147
  rest: [
@@ -189,6 +193,10 @@ const info = {
189
193
  {
190
194
  address: 'https://api.neutron.quokkastake.io',
191
195
  provider: '🐹 Quokka Stake'
196
+ },
197
+ {
198
+ address: 'https://neutron.rpc.uquad.org:443',
199
+ provider: 'QUAD'
192
200
  }
193
201
  ],
194
202
  grpc: [
@@ -638,6 +638,10 @@ const info = {
638
638
  {
639
639
  address: 'https://osmosis.api.pocket.network',
640
640
  provider: 'Pocket Network'
641
+ },
642
+ {
643
+ address: 'https://osmosis.rpc.uquad.org:443',
644
+ provider: 'QUAD'
641
645
  }
642
646
  ],
643
647
  rest: [
@@ -700,6 +704,10 @@ const info = {
700
704
  {
701
705
  address: 'https://osmosis.api.pocket.network',
702
706
  provider: 'Pocket Network'
707
+ },
708
+ {
709
+ address: 'https://osmosis.rpc.uquad.org:443',
710
+ provider: 'QUAD'
703
711
  }
704
712
  ],
705
713
  grpc: [
@@ -0,0 +1,26 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'qorechain',
4
+ assets: [{
5
+ description: 'QOR is the native staking, gas and governance token of QoreChain, a quantum-safe Layer 1 with hybrid post-quantum (ML-DSA-87 plus secp256k1) transaction signing and unified EVM/SVM execution.',
6
+ denomUnits: [{
7
+ denom: 'uqor',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'qor',
11
+ exponent: 6
12
+ }],
13
+ typeAsset: 'sdk.coin',
14
+ base: 'uqor',
15
+ name: 'QoreChain',
16
+ display: 'qor',
17
+ symbol: 'QOR',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
23
+ }]
24
+ }]
25
+ };
26
+ export default info;
@@ -0,0 +1,78 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'qorechain',
4
+ chainType: 'cosmos',
5
+ chainId: 'qorechain-vladi',
6
+ prettyName: 'QoreChain',
7
+ website: 'https://www.qorechain.io',
8
+ status: 'live',
9
+ networkType: 'mainnet',
10
+ bech32Prefix: 'qor',
11
+ daemonName: 'qorechaind',
12
+ nodeHome: '$HOME/.qorechaind',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ description: 'QoreChain is a quantum-safe Layer 1. Every transaction is signed with a hybrid post-quantum scheme (ML-DSA-87, FIPS 204, plus classical secp256k1), enforced by default, with SHAKE-256 as the default hash. Accounts use standard secp256k1 keys (coin type 118) and the hybrid post-quantum signature is carried alongside and verified on-chain. QoreChain also runs EVM (chain id 9801) and SVM execution over a single unified account: the 20-byte account is shared across VMs, so the bech32 address (qor1...) maps to the same bytes as the EVM 0x address, and the SVM address is those 20 bytes right-padded to 32 and base58-encoded. All VMs read one native bank balance (1 QOR = 1,000,000 uqor).',
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'uqor',
19
+ fixedMinGasPrice: 0.1,
20
+ lowGasPrice: 0.1,
21
+ averageGasPrice: 0.15,
22
+ highGasPrice: 0.25
23
+ }]
24
+ },
25
+ staking: {
26
+ stakingTokens: [{
27
+ denom: 'uqor'
28
+ }]
29
+ },
30
+ codebase: {
31
+ gitRepo: 'https://github.com/qorechain/qorechain-core',
32
+ recommendedVersion: 'v3.1.82',
33
+ compatibleVersions: ['v3.1.82'],
34
+ consensus: {
35
+ type: 'cometbft',
36
+ version: '0.38.19'
37
+ }
38
+ },
39
+ logoURIs: {
40
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
41
+ },
42
+ images: [{
43
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
44
+ }],
45
+ apis: {
46
+ rpc: [{
47
+ address: 'https://rpc.qore.host',
48
+ provider: 'QoreChain'
49
+ }],
50
+ rest: [{
51
+ address: 'https://api.qore.host',
52
+ provider: 'QoreChain'
53
+ }],
54
+ wss: [{
55
+ address: 'wss://rpc.qore.host/websocket',
56
+ provider: 'QoreChain'
57
+ }],
58
+ evmHttpJsonrpc: [{
59
+ address: 'https://evm.qore.host',
60
+ provider: 'QoreChain'
61
+ }]
62
+ },
63
+ explorers: [{
64
+ kind: 'QoreChain Explorer',
65
+ url: 'https://explore.qore.network',
66
+ txPage: 'https://explore.qore.network/tx/${txHash}',
67
+ accountPage: 'https://explore.qore.network/address/${accountAddress}'
68
+ }],
69
+ keywords: [
70
+ 'mainnet',
71
+ 'quantum-safe',
72
+ 'post-quantum',
73
+ 'pqc',
74
+ 'evm',
75
+ 'svm'
76
+ ]
77
+ };
78
+ 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;
@@ -97,6 +97,7 @@ import * as _planqtestnet from './planqtestnet';
97
97
  import * as _pockettestnet from './pockettestnet';
98
98
  import * as _provenancetestnet from './provenancetestnet';
99
99
  import * as _pryzmtestnet from './pryzmtestnet';
100
+ import * as _qorechaintestnet from './qorechaintestnet';
100
101
  import * as _quasartestnet from './quasartestnet';
101
102
  import * as _qubeticstestnet from './qubeticstestnet';
102
103
  import * as _quicksilvertestnet from './quicksilvertestnet';
@@ -245,6 +246,7 @@ const assetList = [
245
246
  _pockettestnet.assetList,
246
247
  _provenancetestnet.assetList,
247
248
  _pryzmtestnet.assetList,
249
+ _qorechaintestnet.assetList,
248
250
  _quasartestnet.assetList,
249
251
  _qubeticstestnet.assetList,
250
252
  _quicksilvertestnet.assetList,
@@ -97,6 +97,7 @@ import * as _planqtestnet from './planqtestnet';
97
97
  import * as _pockettestnet from './pockettestnet';
98
98
  import * as _provenancetestnet from './provenancetestnet';
99
99
  import * as _pryzmtestnet from './pryzmtestnet';
100
+ import * as _qorechaintestnet from './qorechaintestnet';
100
101
  import * as _quasartestnet from './quasartestnet';
101
102
  import * as _qubeticstestnet from './qubeticstestnet';
102
103
  import * as _quicksilvertestnet from './quicksilvertestnet';
@@ -245,6 +246,7 @@ const chains = [
245
246
  _pockettestnet.chain,
246
247
  _provenancetestnet.chain,
247
248
  _pryzmtestnet.chain,
249
+ _qorechaintestnet.chain,
248
250
  _quasartestnet.chain,
249
251
  _qubeticstestnet.chain,
250
252
  _quicksilvertestnet.chain,
@@ -0,0 +1,38 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chainName: 'qorechaintestnet',
4
+ assets: [{
5
+ description: 'Testnet QOR, the native staking, gas and governance token of the QoreChain test network (quantum-safe Layer 1 with hybrid post-quantum signing).',
6
+ denomUnits: [{
7
+ denom: 'uqor',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'qor',
11
+ exponent: 6
12
+ }],
13
+ typeAsset: 'sdk.coin',
14
+ base: 'uqor',
15
+ name: 'QoreChain',
16
+ display: 'qor',
17
+ symbol: 'QOR',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
20
+ },
21
+ images: [{
22
+ imageSync: {
23
+ chainName: 'qorechain',
24
+ baseDenom: 'uqor'
25
+ },
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
27
+ }],
28
+ traces: [{
29
+ type: 'test-mintage',
30
+ counterparty: {
31
+ chainName: 'qorechain',
32
+ baseDenom: 'uqor'
33
+ },
34
+ provider: 'QoreChain'
35
+ }]
36
+ }]
37
+ };
38
+ export default info;
@@ -0,0 +1,75 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chainName: 'qorechaintestnet',
4
+ chainType: 'cosmos',
5
+ chainId: 'qorechain-diana',
6
+ prettyName: 'QoreChain Testnet',
7
+ website: 'https://www.qorechain.io',
8
+ status: 'live',
9
+ networkType: 'testnet',
10
+ bech32Prefix: 'qor',
11
+ daemonName: 'qorechaind',
12
+ nodeHome: '$HOME/.qorechaind',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ description: 'Public test network for QoreChain, a quantum-safe Layer 1. Transactions are signed with a hybrid post-quantum scheme (ML-DSA-87 plus classical secp256k1), enforced by default, with SHAKE-256 as the default hash. Accounts use standard secp256k1 keys (coin type 118). QoreChain also runs EVM (chain id 9800) and SVM execution over a single unified 20-byte account shared across all VMs.',
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'uqor',
19
+ fixedMinGasPrice: 0.1,
20
+ lowGasPrice: 0.1,
21
+ averageGasPrice: 0.15,
22
+ highGasPrice: 0.25
23
+ }]
24
+ },
25
+ staking: {
26
+ stakingTokens: [{
27
+ denom: 'uqor'
28
+ }]
29
+ },
30
+ codebase: {
31
+ gitRepo: 'https://github.com/qorechain/qorechain-core',
32
+ recommendedVersion: 'v3.1.82',
33
+ compatibleVersions: ['v3.1.82'],
34
+ consensus: {
35
+ type: 'cometbft',
36
+ version: '0.38.19'
37
+ }
38
+ },
39
+ logoURIs: {
40
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
41
+ },
42
+ images: [{
43
+ imageSync: {
44
+ chainName: 'qorechain'
45
+ },
46
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
47
+ }],
48
+ apis: {
49
+ rpc: [{
50
+ address: 'https://rpc-testnet.qore.host',
51
+ provider: 'QoreChain'
52
+ }],
53
+ rest: [{
54
+ address: 'https://api-testnet.qore.host',
55
+ provider: 'QoreChain'
56
+ }],
57
+ wss: [{
58
+ address: 'wss://rpc-testnet.qore.host/websocket',
59
+ provider: 'QoreChain'
60
+ }],
61
+ evmHttpJsonrpc: [{
62
+ address: 'https://evm-testnet.qore.host',
63
+ provider: 'QoreChain'
64
+ }]
65
+ },
66
+ keywords: [
67
+ 'testnet',
68
+ 'quantum-safe',
69
+ 'post-quantum',
70
+ 'pqc',
71
+ 'evm',
72
+ 'svm'
73
+ ]
74
+ };
75
+ 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;
@@ -188,6 +188,7 @@ const _pundix = __importStar(require("./pundix"));
188
188
  const _pylons = __importStar(require("./pylons"));
189
189
  const _qfs = __importStar(require("./qfs"));
190
190
  const _qie = __importStar(require("./qie"));
191
+ const _qorechain = __importStar(require("./qorechain"));
191
192
  const _quasar = __importStar(require("./quasar"));
192
193
  const _qubetics = __importStar(require("./qubetics"));
193
194
  const _quicksilver = __importStar(require("./quicksilver"));
@@ -413,6 +414,7 @@ const assetList = [
413
414
  _pylons.assetList,
414
415
  _qfs.assetList,
415
416
  _qie.assetList,
417
+ _qorechain.assetList,
416
418
  _quasar.assetList,
417
419
  _qubetics.assetList,
418
420
  _quicksilver.assetList,
package/mainnet/chains.js CHANGED
@@ -188,6 +188,7 @@ const _pundix = __importStar(require("./pundix"));
188
188
  const _pylons = __importStar(require("./pylons"));
189
189
  const _qfs = __importStar(require("./qfs"));
190
190
  const _qie = __importStar(require("./qie"));
191
+ const _qorechain = __importStar(require("./qorechain"));
191
192
  const _quasar = __importStar(require("./quasar"));
192
193
  const _qubetics = __importStar(require("./qubetics"));
193
194
  const _quicksilver = __importStar(require("./quicksilver"));
@@ -413,6 +414,7 @@ const chains = [
413
414
  _pylons.chain,
414
415
  _qfs.chain,
415
416
  _qie.chain,
417
+ _qorechain.chain,
416
418
  _quasar.chain,
417
419
  _qubetics.chain,
418
420
  _quicksilver.chain,
@@ -96,6 +96,10 @@ const info = {
96
96
  {
97
97
  address: 'https://dydx-rpc.noders.services',
98
98
  provider: '[NODERS]TEAM'
99
+ },
100
+ {
101
+ address: 'https://dydx.rpc.uquad.org:443',
102
+ provider: 'QUAD'
99
103
  }
100
104
  ],
101
105
  rest: [
@@ -126,6 +130,10 @@ const info = {
126
130
  {
127
131
  address: 'https://dydx-api.noders.services',
128
132
  provider: '[NODERS]TEAM'
133
+ },
134
+ {
135
+ address: 'https://dydx.rpc.uquad.org:443',
136
+ provider: 'QUAD'
129
137
  }
130
138
  ],
131
139
  grpc: [
@@ -160,6 +160,14 @@ const info = {
160
160
  url: 'https://node2.gonka.ai:8443/dashboard',
161
161
  txPage: 'https://node2.gonka.ai:8443/dashboard/gonka/txs/${txHash}',
162
162
  accountPage: 'https://node2.gonka.ai:8443/dashboard/gonka/account/${accountAddress}'
163
+ },
164
+ {
165
+ kind: 'gnkscan',
166
+ url: 'https://www.gnkscan.com',
167
+ txPage: 'https://www.gnkscan.com/tx/${txHash}',
168
+ accountPage: 'https://www.gnkscan.com/address/${accountAddress}',
169
+ blockPage: 'https://www.gnkscan.com/blocks/${blockHeight}',
170
+ proposalPage: 'https://www.gnkscan.com/proposals/${proposalId}'
163
171
  }
164
172
  ],
165
173
  keywords: [
@@ -1267,6 +1267,32 @@ const info = {
1267
1267
  website: 'https://agora.finance'
1268
1268
  },
1269
1269
  typeAsset: 'sdk.coin'
1270
+ },
1271
+ {
1272
+ description: 'HELIXPOINT is the points token on Injective, launched on Trippy Pump (SHROOM Pad)',
1273
+ denomUnits: [{
1274
+ denom: 'factory/inj13j2rpnlwl30c02d4pzukykwfeyyhelvry9cqte/shroom_8_be9bddf36b94db69',
1275
+ exponent: 0
1276
+ }, {
1277
+ denom: 'HELIXPOINT',
1278
+ exponent: 18
1279
+ }],
1280
+ base: 'factory/inj13j2rpnlwl30c02d4pzukykwfeyyhelvry9cqte/shroom_8_be9bddf36b94db69',
1281
+ name: 'HELIXPOINT',
1282
+ display: 'HELIXPOINT',
1283
+ symbol: 'HELIXPOINT',
1284
+ logoURIs: {
1285
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/helixpoint.png'
1286
+ },
1287
+ images: [{
1288
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/helixpoint.png'
1289
+ }],
1290
+ socials: {
1291
+ website: 'https://wenpoints.xyz',
1292
+ x: 'https://x.com/helixpoints',
1293
+ telegram: 'https://t.me/helixpoints'
1294
+ },
1295
+ typeAsset: 'sdk.coin'
1270
1296
  }
1271
1297
  ]
1272
1298
  };
@@ -66,6 +66,10 @@ const info = {
66
66
  {
67
67
  address: 'https://public.stakewolle.com/cosmos/injective/rpc',
68
68
  provider: 'Stakewolle'
69
+ },
70
+ {
71
+ address: 'https://injective.rpc.uquad.org:443',
72
+ provider: 'QUAD'
69
73
  }
70
74
  ],
71
75
  rest: [
@@ -88,6 +92,10 @@ const info = {
88
92
  {
89
93
  address: 'https://public.stakewolle.com/cosmos/injective/rest',
90
94
  provider: 'Stakewolle'
95
+ },
96
+ {
97
+ address: 'https://injective.rpc.uquad.org:443',
98
+ provider: 'QUAD'
91
99
  }
92
100
  ],
93
101
  grpc: [
@@ -140,6 +140,10 @@ const info = {
140
140
  {
141
141
  address: 'https://neutron.drpc.org',
142
142
  provider: 'dRPC'
143
+ },
144
+ {
145
+ address: 'https://neutron.rpc.uquad.org:443',
146
+ provider: 'QUAD'
143
147
  }
144
148
  ],
145
149
  rest: [
@@ -191,6 +195,10 @@ const info = {
191
195
  {
192
196
  address: 'https://api.neutron.quokkastake.io',
193
197
  provider: '🐹 Quokka Stake'
198
+ },
199
+ {
200
+ address: 'https://neutron.rpc.uquad.org:443',
201
+ provider: 'QUAD'
194
202
  }
195
203
  ],
196
204
  grpc: [
@@ -640,6 +640,10 @@ const info = {
640
640
  {
641
641
  address: 'https://osmosis.api.pocket.network',
642
642
  provider: 'Pocket Network'
643
+ },
644
+ {
645
+ address: 'https://osmosis.rpc.uquad.org:443',
646
+ provider: 'QUAD'
643
647
  }
644
648
  ],
645
649
  rest: [
@@ -702,6 +706,10 @@ const info = {
702
706
  {
703
707
  address: 'https://osmosis.api.pocket.network',
704
708
  provider: 'Pocket Network'
709
+ },
710
+ {
711
+ address: 'https://osmosis.rpc.uquad.org:443',
712
+ provider: 'QUAD'
705
713
  }
706
714
  ],
707
715
  grpc: [
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'qorechain',
6
+ assets: [{
7
+ description: 'QOR is the native staking, gas and governance token of QoreChain, a quantum-safe Layer 1 with hybrid post-quantum (ML-DSA-87 plus secp256k1) transaction signing and unified EVM/SVM execution.',
8
+ denomUnits: [{
9
+ denom: 'uqor',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'qor',
13
+ exponent: 6
14
+ }],
15
+ typeAsset: 'sdk.coin',
16
+ base: 'uqor',
17
+ name: 'QoreChain',
18
+ display: 'qor',
19
+ symbol: 'QOR',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
25
+ }]
26
+ }]
27
+ };
28
+ 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,80 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'qorechain',
6
+ chainType: 'cosmos',
7
+ chainId: 'qorechain-vladi',
8
+ prettyName: 'QoreChain',
9
+ website: 'https://www.qorechain.io',
10
+ status: 'live',
11
+ networkType: 'mainnet',
12
+ bech32Prefix: 'qor',
13
+ daemonName: 'qorechaind',
14
+ nodeHome: '$HOME/.qorechaind',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 118,
17
+ description: 'QoreChain is a quantum-safe Layer 1. Every transaction is signed with a hybrid post-quantum scheme (ML-DSA-87, FIPS 204, plus classical secp256k1), enforced by default, with SHAKE-256 as the default hash. Accounts use standard secp256k1 keys (coin type 118) and the hybrid post-quantum signature is carried alongside and verified on-chain. QoreChain also runs EVM (chain id 9801) and SVM execution over a single unified account: the 20-byte account is shared across VMs, so the bech32 address (qor1...) maps to the same bytes as the EVM 0x address, and the SVM address is those 20 bytes right-padded to 32 and base58-encoded. All VMs read one native bank balance (1 QOR = 1,000,000 uqor).',
18
+ fees: {
19
+ feeTokens: [{
20
+ denom: 'uqor',
21
+ fixedMinGasPrice: 0.1,
22
+ lowGasPrice: 0.1,
23
+ averageGasPrice: 0.15,
24
+ highGasPrice: 0.25
25
+ }]
26
+ },
27
+ staking: {
28
+ stakingTokens: [{
29
+ denom: 'uqor'
30
+ }]
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/qorechain/qorechain-core',
34
+ recommendedVersion: 'v3.1.82',
35
+ compatibleVersions: ['v3.1.82'],
36
+ consensus: {
37
+ type: 'cometbft',
38
+ version: '0.38.19'
39
+ }
40
+ },
41
+ logoURIs: {
42
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
43
+ },
44
+ images: [{
45
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
46
+ }],
47
+ apis: {
48
+ rpc: [{
49
+ address: 'https://rpc.qore.host',
50
+ provider: 'QoreChain'
51
+ }],
52
+ rest: [{
53
+ address: 'https://api.qore.host',
54
+ provider: 'QoreChain'
55
+ }],
56
+ wss: [{
57
+ address: 'wss://rpc.qore.host/websocket',
58
+ provider: 'QoreChain'
59
+ }],
60
+ evmHttpJsonrpc: [{
61
+ address: 'https://evm.qore.host',
62
+ provider: 'QoreChain'
63
+ }]
64
+ },
65
+ explorers: [{
66
+ kind: 'QoreChain Explorer',
67
+ url: 'https://explore.qore.network',
68
+ txPage: 'https://explore.qore.network/tx/${txHash}',
69
+ accountPage: 'https://explore.qore.network/address/${accountAddress}'
70
+ }],
71
+ keywords: [
72
+ 'mainnet',
73
+ 'quantum-safe',
74
+ 'post-quantum',
75
+ 'pqc',
76
+ 'evm',
77
+ 'svm'
78
+ ]
79
+ };
80
+ 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.228",
3
+ "version": "2.0.229",
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.228"
32
+ "@chain-registry/types": "^2.0.229"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "60e1a15eb1bde061539fbc6229f58168b5569f09"
42
+ "gitHead": "3f1d0b346293245491d0d6280df33b8b53027226"
43
43
  }
@@ -122,6 +122,7 @@ const _planqtestnet = __importStar(require("./planqtestnet"));
122
122
  const _pockettestnet = __importStar(require("./pockettestnet"));
123
123
  const _provenancetestnet = __importStar(require("./provenancetestnet"));
124
124
  const _pryzmtestnet = __importStar(require("./pryzmtestnet"));
125
+ const _qorechaintestnet = __importStar(require("./qorechaintestnet"));
125
126
  const _quasartestnet = __importStar(require("./quasartestnet"));
126
127
  const _qubeticstestnet = __importStar(require("./qubeticstestnet"));
127
128
  const _quicksilvertestnet = __importStar(require("./quicksilvertestnet"));
@@ -270,6 +271,7 @@ const assetList = [
270
271
  _pockettestnet.assetList,
271
272
  _provenancetestnet.assetList,
272
273
  _pryzmtestnet.assetList,
274
+ _qorechaintestnet.assetList,
273
275
  _quasartestnet.assetList,
274
276
  _qubeticstestnet.assetList,
275
277
  _quicksilvertestnet.assetList,
package/testnet/chains.js CHANGED
@@ -122,6 +122,7 @@ const _planqtestnet = __importStar(require("./planqtestnet"));
122
122
  const _pockettestnet = __importStar(require("./pockettestnet"));
123
123
  const _provenancetestnet = __importStar(require("./provenancetestnet"));
124
124
  const _pryzmtestnet = __importStar(require("./pryzmtestnet"));
125
+ const _qorechaintestnet = __importStar(require("./qorechaintestnet"));
125
126
  const _quasartestnet = __importStar(require("./quasartestnet"));
126
127
  const _qubeticstestnet = __importStar(require("./qubeticstestnet"));
127
128
  const _quicksilvertestnet = __importStar(require("./quicksilvertestnet"));
@@ -270,6 +271,7 @@ const chains = [
270
271
  _pockettestnet.chain,
271
272
  _provenancetestnet.chain,
272
273
  _pryzmtestnet.chain,
274
+ _qorechaintestnet.chain,
273
275
  _quasartestnet.chain,
274
276
  _qubeticstestnet.chain,
275
277
  _quicksilvertestnet.chain,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chainName: 'qorechaintestnet',
6
+ assets: [{
7
+ description: 'Testnet QOR, the native staking, gas and governance token of the QoreChain test network (quantum-safe Layer 1 with hybrid post-quantum signing).',
8
+ denomUnits: [{
9
+ denom: 'uqor',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'qor',
13
+ exponent: 6
14
+ }],
15
+ typeAsset: 'sdk.coin',
16
+ base: 'uqor',
17
+ name: 'QoreChain',
18
+ display: 'qor',
19
+ symbol: 'QOR',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
22
+ },
23
+ images: [{
24
+ imageSync: {
25
+ chainName: 'qorechain',
26
+ baseDenom: 'uqor'
27
+ },
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
29
+ }],
30
+ traces: [{
31
+ type: 'test-mintage',
32
+ counterparty: {
33
+ chainName: 'qorechain',
34
+ baseDenom: 'uqor'
35
+ },
36
+ provider: 'QoreChain'
37
+ }]
38
+ }]
39
+ };
40
+ 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,77 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chainName: 'qorechaintestnet',
6
+ chainType: 'cosmos',
7
+ chainId: 'qorechain-diana',
8
+ prettyName: 'QoreChain Testnet',
9
+ website: 'https://www.qorechain.io',
10
+ status: 'live',
11
+ networkType: 'testnet',
12
+ bech32Prefix: 'qor',
13
+ daemonName: 'qorechaind',
14
+ nodeHome: '$HOME/.qorechaind',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 118,
17
+ description: 'Public test network for QoreChain, a quantum-safe Layer 1. Transactions are signed with a hybrid post-quantum scheme (ML-DSA-87 plus classical secp256k1), enforced by default, with SHAKE-256 as the default hash. Accounts use standard secp256k1 keys (coin type 118). QoreChain also runs EVM (chain id 9800) and SVM execution over a single unified 20-byte account shared across all VMs.',
18
+ fees: {
19
+ feeTokens: [{
20
+ denom: 'uqor',
21
+ fixedMinGasPrice: 0.1,
22
+ lowGasPrice: 0.1,
23
+ averageGasPrice: 0.15,
24
+ highGasPrice: 0.25
25
+ }]
26
+ },
27
+ staking: {
28
+ stakingTokens: [{
29
+ denom: 'uqor'
30
+ }]
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/qorechain/qorechain-core',
34
+ recommendedVersion: 'v3.1.82',
35
+ compatibleVersions: ['v3.1.82'],
36
+ consensus: {
37
+ type: 'cometbft',
38
+ version: '0.38.19'
39
+ }
40
+ },
41
+ logoURIs: {
42
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
43
+ },
44
+ images: [{
45
+ imageSync: {
46
+ chainName: 'qorechain'
47
+ },
48
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qorechain/images/qorechain.png'
49
+ }],
50
+ apis: {
51
+ rpc: [{
52
+ address: 'https://rpc-testnet.qore.host',
53
+ provider: 'QoreChain'
54
+ }],
55
+ rest: [{
56
+ address: 'https://api-testnet.qore.host',
57
+ provider: 'QoreChain'
58
+ }],
59
+ wss: [{
60
+ address: 'wss://rpc-testnet.qore.host/websocket',
61
+ provider: 'QoreChain'
62
+ }],
63
+ evmHttpJsonrpc: [{
64
+ address: 'https://evm-testnet.qore.host',
65
+ provider: 'QoreChain'
66
+ }]
67
+ },
68
+ keywords: [
69
+ 'testnet',
70
+ 'quantum-safe',
71
+ 'post-quantum',
72
+ 'pqc',
73
+ 'evm',
74
+ 'svm'
75
+ ]
76
+ };
77
+ 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;