chain-registry 2.0.192 → 2.0.194
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.
- package/esm/mainnet/archway/asset-list.js +1 -2
- package/esm/mainnet/asset-lists.js +4 -0
- package/esm/mainnet/beezee/asset-list.js +0 -1
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/hazinachain/asset-list.js +28 -0
- package/esm/mainnet/hazinachain/chain.js +60 -0
- package/esm/mainnet/hazinachain/index.js +4 -0
- package/esm/mainnet/neutron/chain.js +1 -1
- package/esm/mainnet/osmosis/asset-list.js +1 -3
- package/esm/mainnet/qie/asset-list.js +32 -0
- package/esm/mainnet/qie/chain.js +75 -0
- package/esm/mainnet/qie/index.js +4 -0
- package/esm/mainnet/terra2/chain.js +0 -4
- package/mainnet/archway/asset-list.js +1 -2
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/beezee/asset-list.js +0 -1
- package/mainnet/chains.js +4 -0
- package/mainnet/hazinachain/asset-list.d.ts +3 -0
- package/mainnet/hazinachain/asset-list.js +30 -0
- package/mainnet/hazinachain/chain.d.ts +3 -0
- package/mainnet/hazinachain/chain.js +62 -0
- package/mainnet/hazinachain/index.d.ts +2 -0
- package/mainnet/hazinachain/index.js +10 -0
- package/mainnet/neutron/chain.js +1 -1
- package/mainnet/osmosis/asset-list.js +1 -3
- package/mainnet/qie/asset-list.d.ts +3 -0
- package/mainnet/qie/asset-list.js +34 -0
- package/mainnet/qie/chain.d.ts +3 -0
- package/mainnet/qie/chain.js +77 -0
- package/mainnet/qie/index.d.ts +2 -0
- package/mainnet/qie/index.js +10 -0
- package/mainnet/terra2/chain.js +0 -4
- package/package.json +3 -3
|
@@ -150,8 +150,7 @@ const info = {
|
|
|
150
150
|
},
|
|
151
151
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
152
152
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
153
|
-
}]
|
|
154
|
-
coingeckoId: 'vidulum'
|
|
153
|
+
}]
|
|
155
154
|
},
|
|
156
155
|
{
|
|
157
156
|
description: 'Astrovault AXV',
|
|
@@ -85,6 +85,7 @@ import * as _gonka from './gonka';
|
|
|
85
85
|
import * as _govgen from './govgen';
|
|
86
86
|
import * as _gravitybridge from './gravitybridge';
|
|
87
87
|
import * as _haqq from './haqq';
|
|
88
|
+
import * as _hazinachain from './hazinachain';
|
|
88
89
|
import * as _heli from './heli';
|
|
89
90
|
import * as _highbury from './highbury';
|
|
90
91
|
import * as _hippoprotocol from './hippoprotocol';
|
|
@@ -169,6 +170,7 @@ import * as _pryzm from './pryzm';
|
|
|
169
170
|
import * as _pundix from './pundix';
|
|
170
171
|
import * as _pylons from './pylons';
|
|
171
172
|
import * as _qfs from './qfs';
|
|
173
|
+
import * as _qie from './qie';
|
|
172
174
|
import * as _quasar from './quasar';
|
|
173
175
|
import * as _qubetics from './qubetics';
|
|
174
176
|
import * as _quicksilver from './quicksilver';
|
|
@@ -317,6 +319,7 @@ const assetList = [
|
|
|
317
319
|
_govgen.assetList,
|
|
318
320
|
_gravitybridge.assetList,
|
|
319
321
|
_haqq.assetList,
|
|
322
|
+
_hazinachain.assetList,
|
|
320
323
|
_heli.assetList,
|
|
321
324
|
_highbury.assetList,
|
|
322
325
|
_hippoprotocol.assetList,
|
|
@@ -401,6 +404,7 @@ const assetList = [
|
|
|
401
404
|
_pundix.assetList,
|
|
402
405
|
_pylons.assetList,
|
|
403
406
|
_qfs.assetList,
|
|
407
|
+
_qie.assetList,
|
|
404
408
|
_quasar.assetList,
|
|
405
409
|
_qubetics.assetList,
|
|
406
410
|
_quicksilver.assetList,
|
|
@@ -49,7 +49,6 @@ const info = {
|
|
|
49
49
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
50
50
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
51
51
|
},
|
|
52
|
-
coingeckoId: 'vidulum',
|
|
53
52
|
images: [{
|
|
54
53
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
55
54
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -85,6 +85,7 @@ import * as _gonka from './gonka';
|
|
|
85
85
|
import * as _govgen from './govgen';
|
|
86
86
|
import * as _gravitybridge from './gravitybridge';
|
|
87
87
|
import * as _haqq from './haqq';
|
|
88
|
+
import * as _hazinachain from './hazinachain';
|
|
88
89
|
import * as _heli from './heli';
|
|
89
90
|
import * as _highbury from './highbury';
|
|
90
91
|
import * as _hippoprotocol from './hippoprotocol';
|
|
@@ -169,6 +170,7 @@ import * as _pryzm from './pryzm';
|
|
|
169
170
|
import * as _pundix from './pundix';
|
|
170
171
|
import * as _pylons from './pylons';
|
|
171
172
|
import * as _qfs from './qfs';
|
|
173
|
+
import * as _qie from './qie';
|
|
172
174
|
import * as _quasar from './quasar';
|
|
173
175
|
import * as _qubetics from './qubetics';
|
|
174
176
|
import * as _quicksilver from './quicksilver';
|
|
@@ -317,6 +319,7 @@ const chains = [
|
|
|
317
319
|
_govgen.chain,
|
|
318
320
|
_gravitybridge.chain,
|
|
319
321
|
_haqq.chain,
|
|
322
|
+
_hazinachain.chain,
|
|
320
323
|
_heli.chain,
|
|
321
324
|
_highbury.chain,
|
|
322
325
|
_hippoprotocol.chain,
|
|
@@ -401,6 +404,7 @@ const chains = [
|
|
|
401
404
|
_pundix.chain,
|
|
402
405
|
_pylons.chain,
|
|
403
406
|
_qfs.chain,
|
|
407
|
+
_qie.chain,
|
|
404
408
|
_quasar.chain,
|
|
405
409
|
_qubetics.chain,
|
|
406
410
|
_quicksilver.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'hazinachain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking and governance token of HazinaChain',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'uhzn',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'HZN',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
14
|
+
base: 'uhzn',
|
|
15
|
+
name: 'Hazina',
|
|
16
|
+
display: 'HZN',
|
|
17
|
+
symbol: 'HZN',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'hazinachain',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
prettyName: 'HazinaChain',
|
|
8
|
+
chainId: 'hazinachain-1',
|
|
9
|
+
bech32Prefix: 'hazina',
|
|
10
|
+
daemonName: 'hazinad',
|
|
11
|
+
nodeHome: '$HOME/.hazinachain',
|
|
12
|
+
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'uhzn',
|
|
17
|
+
fixedMinGasPrice: 0.001,
|
|
18
|
+
lowGasPrice: 0.001,
|
|
19
|
+
averageGasPrice: 0.0025,
|
|
20
|
+
highGasPrice: 0.01
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'uhzn'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
gitRepo: 'https://github.com/hazinachain/hazinachain',
|
|
30
|
+
recommendedVersion: 'v1.0.0',
|
|
31
|
+
compatibleVersions: ['v1.0.0'],
|
|
32
|
+
genesis: {
|
|
33
|
+
genesisUrl: 'https://raw.githubusercontent.com/hazinachain/hazinachain/main/genesis.json'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
apis: {
|
|
37
|
+
rpc: [{
|
|
38
|
+
address: 'https://rpc.hazinachain.com',
|
|
39
|
+
provider: 'HazinaChain'
|
|
40
|
+
}],
|
|
41
|
+
rest: [{
|
|
42
|
+
address: 'https://api.hazinachain.com',
|
|
43
|
+
provider: 'HazinaChain'
|
|
44
|
+
}]
|
|
45
|
+
},
|
|
46
|
+
explorers: [{
|
|
47
|
+
kind: 'custom',
|
|
48
|
+
url: 'https://explorer.hazinachain.com',
|
|
49
|
+
txPage: 'https://explorer.hazinachain.com/tx/${txHash}'
|
|
50
|
+
}],
|
|
51
|
+
logoURIs: {
|
|
52
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
53
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
54
|
+
},
|
|
55
|
+
images: [{
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
57
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
58
|
+
}]
|
|
59
|
+
};
|
|
60
|
+
export default info;
|
|
@@ -1758,7 +1758,6 @@ const info = {
|
|
|
1758
1758
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png',
|
|
1759
1759
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg'
|
|
1760
1760
|
}],
|
|
1761
|
-
coingeckoId: 'vidulum',
|
|
1762
1761
|
keywords: ['osmosis_unstable']
|
|
1763
1762
|
},
|
|
1764
1763
|
{
|
|
@@ -20698,8 +20697,7 @@ const info = {
|
|
|
20698
20697
|
},
|
|
20699
20698
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
20700
20699
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
20701
|
-
}]
|
|
20702
|
-
coingeckoId: 'vidulum'
|
|
20700
|
+
}]
|
|
20703
20701
|
},
|
|
20704
20702
|
{
|
|
20705
20703
|
description: 'Real power moves quietly.',
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'qie',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'QIE is the native gas and staking token of the QIE Blockchain, a high-performance Layer-1 EVM-compatible Cosmos SDK chain',
|
|
6
|
+
extendedDescription: 'QIE Blockchain V3 is a next-generation Layer 1 protocol with EVM and Cosmos interoperability. The QIE token powers transactions, smart contract execution, and network security. It can be used as both a Cosmos-native coin (denom: aqie) and as an ERC-20 token on the chain\'s EVM layer through an automatic ERC-20 conversion precompile at address 0xD4949664cD82660AaE99bEdc034a0deA8A0bd517.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'aqie',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['attoqie']
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'qie',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: 'evm-base',
|
|
16
|
+
base: 'aqie',
|
|
17
|
+
name: 'QIE',
|
|
18
|
+
display: 'qie',
|
|
19
|
+
symbol: 'QIE',
|
|
20
|
+
coingeckoId: 'qie',
|
|
21
|
+
logoURIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
26
|
+
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://qie.digital'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
export default info;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'qie',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://qie.digital',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'QIE',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'qie_1990-1',
|
|
10
|
+
bech32Prefix: 'qie',
|
|
11
|
+
daemonName: 'qied',
|
|
12
|
+
nodeHome: '$HOME/.qied',
|
|
13
|
+
keyAlgos: ['ethsecp256k1'],
|
|
14
|
+
slip44: 60,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'aqie',
|
|
18
|
+
fixedMinGasPrice: 0,
|
|
19
|
+
lowGasPrice: 20000000000,
|
|
20
|
+
averageGasPrice: 25000000000,
|
|
21
|
+
highGasPrice: 40000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'aqie'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/qieadmin/qie',
|
|
31
|
+
recommendedVersion: 'v1.0.0',
|
|
32
|
+
genesis: {
|
|
33
|
+
genesisUrl: 'https://github.com/qieadmin/qie/raw/main/genesis.json'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
apis: {
|
|
37
|
+
rpc: [{
|
|
38
|
+
address: 'https://rpc.qie.digital',
|
|
39
|
+
provider: 'QIE Foundation'
|
|
40
|
+
}, {
|
|
41
|
+
address: 'https://tendermint.qie.digital',
|
|
42
|
+
provider: 'QIE Foundation'
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
45
|
+
address: 'https://api.qie.digital',
|
|
46
|
+
provider: 'QIE Foundation'
|
|
47
|
+
}],
|
|
48
|
+
grpc: [{
|
|
49
|
+
address: 'grpc.qie.digital:443',
|
|
50
|
+
provider: 'QIE Foundation'
|
|
51
|
+
}],
|
|
52
|
+
evmHttpJsonrpc: [{
|
|
53
|
+
address: 'https://rpc1mainnet.qie.digital',
|
|
54
|
+
provider: 'QIE Foundation'
|
|
55
|
+
}, {
|
|
56
|
+
address: 'https://rpc2mainnet.qie.digital',
|
|
57
|
+
provider: 'QIE Foundation'
|
|
58
|
+
}]
|
|
59
|
+
},
|
|
60
|
+
explorers: [{
|
|
61
|
+
kind: 'qie-explorer',
|
|
62
|
+
url: 'https://mainnet.qie.digital',
|
|
63
|
+
txPage: 'https://mainnet.qie.digital/tx/${txHash}',
|
|
64
|
+
accountPage: 'https://mainnet.qie.digital/address/${accountAddress}'
|
|
65
|
+
}],
|
|
66
|
+
keywords: ['evm'],
|
|
67
|
+
extraCodecs: ['ethermint'],
|
|
68
|
+
logoURIs: {
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
70
|
+
},
|
|
71
|
+
images: [{
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
73
|
+
}]
|
|
74
|
+
};
|
|
75
|
+
export default info;
|
|
@@ -124,10 +124,6 @@ const info = {
|
|
|
124
124
|
address: 'https://api-terra-01.stakeflow.io',
|
|
125
125
|
provider: 'Stakeflow'
|
|
126
126
|
},
|
|
127
|
-
{
|
|
128
|
-
address: 'https://terra-phoenix-api.highstakes.ch',
|
|
129
|
-
provider: 'High Stakes 🇨🇭'
|
|
130
|
-
},
|
|
131
127
|
{
|
|
132
128
|
address: 'https://terra2.tdrsys.com',
|
|
133
129
|
provider: 'TdrSys'
|
|
@@ -152,8 +152,7 @@ const info = {
|
|
|
152
152
|
},
|
|
153
153
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
154
154
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
155
|
-
}]
|
|
156
|
-
coingeckoId: 'vidulum'
|
|
155
|
+
}]
|
|
157
156
|
},
|
|
158
157
|
{
|
|
159
158
|
description: 'Astrovault AXV',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -110,6 +110,7 @@ const _gonka = __importStar(require("./gonka"));
|
|
|
110
110
|
const _govgen = __importStar(require("./govgen"));
|
|
111
111
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
112
112
|
const _haqq = __importStar(require("./haqq"));
|
|
113
|
+
const _hazinachain = __importStar(require("./hazinachain"));
|
|
113
114
|
const _heli = __importStar(require("./heli"));
|
|
114
115
|
const _highbury = __importStar(require("./highbury"));
|
|
115
116
|
const _hippoprotocol = __importStar(require("./hippoprotocol"));
|
|
@@ -194,6 +195,7 @@ const _pryzm = __importStar(require("./pryzm"));
|
|
|
194
195
|
const _pundix = __importStar(require("./pundix"));
|
|
195
196
|
const _pylons = __importStar(require("./pylons"));
|
|
196
197
|
const _qfs = __importStar(require("./qfs"));
|
|
198
|
+
const _qie = __importStar(require("./qie"));
|
|
197
199
|
const _quasar = __importStar(require("./quasar"));
|
|
198
200
|
const _qubetics = __importStar(require("./qubetics"));
|
|
199
201
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
@@ -342,6 +344,7 @@ const assetList = [
|
|
|
342
344
|
_govgen.assetList,
|
|
343
345
|
_gravitybridge.assetList,
|
|
344
346
|
_haqq.assetList,
|
|
347
|
+
_hazinachain.assetList,
|
|
345
348
|
_heli.assetList,
|
|
346
349
|
_highbury.assetList,
|
|
347
350
|
_hippoprotocol.assetList,
|
|
@@ -426,6 +429,7 @@ const assetList = [
|
|
|
426
429
|
_pundix.assetList,
|
|
427
430
|
_pylons.assetList,
|
|
428
431
|
_qfs.assetList,
|
|
432
|
+
_qie.assetList,
|
|
429
433
|
_quasar.assetList,
|
|
430
434
|
_qubetics.assetList,
|
|
431
435
|
_quicksilver.assetList,
|
|
@@ -51,7 +51,6 @@ const info = {
|
|
|
51
51
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
52
52
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
53
53
|
},
|
|
54
|
-
coingeckoId: 'vidulum',
|
|
55
54
|
images: [{
|
|
56
55
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
57
56
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
package/mainnet/chains.js
CHANGED
|
@@ -110,6 +110,7 @@ const _gonka = __importStar(require("./gonka"));
|
|
|
110
110
|
const _govgen = __importStar(require("./govgen"));
|
|
111
111
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
112
112
|
const _haqq = __importStar(require("./haqq"));
|
|
113
|
+
const _hazinachain = __importStar(require("./hazinachain"));
|
|
113
114
|
const _heli = __importStar(require("./heli"));
|
|
114
115
|
const _highbury = __importStar(require("./highbury"));
|
|
115
116
|
const _hippoprotocol = __importStar(require("./hippoprotocol"));
|
|
@@ -194,6 +195,7 @@ const _pryzm = __importStar(require("./pryzm"));
|
|
|
194
195
|
const _pundix = __importStar(require("./pundix"));
|
|
195
196
|
const _pylons = __importStar(require("./pylons"));
|
|
196
197
|
const _qfs = __importStar(require("./qfs"));
|
|
198
|
+
const _qie = __importStar(require("./qie"));
|
|
197
199
|
const _quasar = __importStar(require("./quasar"));
|
|
198
200
|
const _qubetics = __importStar(require("./qubetics"));
|
|
199
201
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
@@ -342,6 +344,7 @@ const chains = [
|
|
|
342
344
|
_govgen.chain,
|
|
343
345
|
_gravitybridge.chain,
|
|
344
346
|
_haqq.chain,
|
|
347
|
+
_hazinachain.chain,
|
|
345
348
|
_heli.chain,
|
|
346
349
|
_highbury.chain,
|
|
347
350
|
_hippoprotocol.chain,
|
|
@@ -426,6 +429,7 @@ const chains = [
|
|
|
426
429
|
_pundix.chain,
|
|
427
430
|
_pylons.chain,
|
|
428
431
|
_qfs.chain,
|
|
432
|
+
_qie.chain,
|
|
429
433
|
_quasar.chain,
|
|
430
434
|
_qubetics.chain,
|
|
431
435
|
_quicksilver.chain,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'hazinachain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native staking and governance token of HazinaChain',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'uhzn',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'HZN',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: 'sdk.coin',
|
|
16
|
+
base: 'uhzn',
|
|
17
|
+
name: 'Hazina',
|
|
18
|
+
display: 'HZN',
|
|
19
|
+
symbol: 'HZN',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
27
|
+
}]
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
exports.default = info;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'hazinachain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
prettyName: 'HazinaChain',
|
|
10
|
+
chainId: 'hazinachain-1',
|
|
11
|
+
bech32Prefix: 'hazina',
|
|
12
|
+
daemonName: 'hazinad',
|
|
13
|
+
nodeHome: '$HOME/.hazinachain',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'uhzn',
|
|
19
|
+
fixedMinGasPrice: 0.001,
|
|
20
|
+
lowGasPrice: 0.001,
|
|
21
|
+
averageGasPrice: 0.0025,
|
|
22
|
+
highGasPrice: 0.01
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'uhzn'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/hazinachain/hazinachain',
|
|
32
|
+
recommendedVersion: 'v1.0.0',
|
|
33
|
+
compatibleVersions: ['v1.0.0'],
|
|
34
|
+
genesis: {
|
|
35
|
+
genesisUrl: 'https://raw.githubusercontent.com/hazinachain/hazinachain/main/genesis.json'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
apis: {
|
|
39
|
+
rpc: [{
|
|
40
|
+
address: 'https://rpc.hazinachain.com',
|
|
41
|
+
provider: 'HazinaChain'
|
|
42
|
+
}],
|
|
43
|
+
rest: [{
|
|
44
|
+
address: 'https://api.hazinachain.com',
|
|
45
|
+
provider: 'HazinaChain'
|
|
46
|
+
}]
|
|
47
|
+
},
|
|
48
|
+
explorers: [{
|
|
49
|
+
kind: 'custom',
|
|
50
|
+
url: 'https://explorer.hazinachain.com',
|
|
51
|
+
txPage: 'https://explorer.hazinachain.com/tx/${txHash}'
|
|
52
|
+
}],
|
|
53
|
+
logoURIs: {
|
|
54
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
55
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
56
|
+
},
|
|
57
|
+
images: [{
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.png',
|
|
59
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hazinachain/images/hazinachain.svg'
|
|
60
|
+
}]
|
|
61
|
+
};
|
|
62
|
+
exports.default = info;
|
|
@@ -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/mainnet/neutron/chain.js
CHANGED
|
@@ -1760,7 +1760,6 @@ const info = {
|
|
|
1760
1760
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png',
|
|
1761
1761
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg'
|
|
1762
1762
|
}],
|
|
1763
|
-
coingeckoId: 'vidulum',
|
|
1764
1763
|
keywords: ['osmosis_unstable']
|
|
1765
1764
|
},
|
|
1766
1765
|
{
|
|
@@ -20700,8 +20699,7 @@ const info = {
|
|
|
20700
20699
|
},
|
|
20701
20700
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png',
|
|
20702
20701
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg'
|
|
20703
|
-
}]
|
|
20704
|
-
coingeckoId: 'vidulum'
|
|
20702
|
+
}]
|
|
20705
20703
|
},
|
|
20706
20704
|
{
|
|
20707
20705
|
description: 'Real power moves quietly.',
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'qie',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'QIE is the native gas and staking token of the QIE Blockchain, a high-performance Layer-1 EVM-compatible Cosmos SDK chain',
|
|
8
|
+
extendedDescription: 'QIE Blockchain V3 is a next-generation Layer 1 protocol with EVM and Cosmos interoperability. The QIE token powers transactions, smart contract execution, and network security. It can be used as both a Cosmos-native coin (denom: aqie) and as an ERC-20 token on the chain\'s EVM layer through an automatic ERC-20 conversion precompile at address 0xD4949664cD82660AaE99bEdc034a0deA8A0bd517.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'aqie',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['attoqie']
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'qie',
|
|
15
|
+
exponent: 18
|
|
16
|
+
}],
|
|
17
|
+
typeAsset: 'evm-base',
|
|
18
|
+
base: 'aqie',
|
|
19
|
+
name: 'QIE',
|
|
20
|
+
display: 'qie',
|
|
21
|
+
symbol: 'QIE',
|
|
22
|
+
coingeckoId: 'qie',
|
|
23
|
+
logoURIs: {
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
25
|
+
},
|
|
26
|
+
images: [{
|
|
27
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
28
|
+
}],
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://qie.digital'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
};
|
|
34
|
+
exports.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: 'qie',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://qie.digital',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'QIE',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'qie_1990-1',
|
|
12
|
+
bech32Prefix: 'qie',
|
|
13
|
+
daemonName: 'qied',
|
|
14
|
+
nodeHome: '$HOME/.qied',
|
|
15
|
+
keyAlgos: ['ethsecp256k1'],
|
|
16
|
+
slip44: 60,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'aqie',
|
|
20
|
+
fixedMinGasPrice: 0,
|
|
21
|
+
lowGasPrice: 20000000000,
|
|
22
|
+
averageGasPrice: 25000000000,
|
|
23
|
+
highGasPrice: 40000000000
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'aqie'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/qieadmin/qie',
|
|
33
|
+
recommendedVersion: 'v1.0.0',
|
|
34
|
+
genesis: {
|
|
35
|
+
genesisUrl: 'https://github.com/qieadmin/qie/raw/main/genesis.json'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
apis: {
|
|
39
|
+
rpc: [{
|
|
40
|
+
address: 'https://rpc.qie.digital',
|
|
41
|
+
provider: 'QIE Foundation'
|
|
42
|
+
}, {
|
|
43
|
+
address: 'https://tendermint.qie.digital',
|
|
44
|
+
provider: 'QIE Foundation'
|
|
45
|
+
}],
|
|
46
|
+
rest: [{
|
|
47
|
+
address: 'https://api.qie.digital',
|
|
48
|
+
provider: 'QIE Foundation'
|
|
49
|
+
}],
|
|
50
|
+
grpc: [{
|
|
51
|
+
address: 'grpc.qie.digital:443',
|
|
52
|
+
provider: 'QIE Foundation'
|
|
53
|
+
}],
|
|
54
|
+
evmHttpJsonrpc: [{
|
|
55
|
+
address: 'https://rpc1mainnet.qie.digital',
|
|
56
|
+
provider: 'QIE Foundation'
|
|
57
|
+
}, {
|
|
58
|
+
address: 'https://rpc2mainnet.qie.digital',
|
|
59
|
+
provider: 'QIE Foundation'
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
explorers: [{
|
|
63
|
+
kind: 'qie-explorer',
|
|
64
|
+
url: 'https://mainnet.qie.digital',
|
|
65
|
+
txPage: 'https://mainnet.qie.digital/tx/${txHash}',
|
|
66
|
+
accountPage: 'https://mainnet.qie.digital/address/${accountAddress}'
|
|
67
|
+
}],
|
|
68
|
+
keywords: ['evm'],
|
|
69
|
+
extraCodecs: ['ethermint'],
|
|
70
|
+
logoURIs: {
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
72
|
+
},
|
|
73
|
+
images: [{
|
|
74
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qie/images/qie.png'
|
|
75
|
+
}]
|
|
76
|
+
};
|
|
77
|
+
exports.default = info;
|
|
@@ -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/mainnet/terra2/chain.js
CHANGED
|
@@ -126,10 +126,6 @@ const info = {
|
|
|
126
126
|
address: 'https://api-terra-01.stakeflow.io',
|
|
127
127
|
provider: 'Stakeflow'
|
|
128
128
|
},
|
|
129
|
-
{
|
|
130
|
-
address: 'https://terra-phoenix-api.highstakes.ch',
|
|
131
|
-
provider: 'High Stakes 🇨🇭'
|
|
132
|
-
},
|
|
133
129
|
{
|
|
134
130
|
address: 'https://terra2.tdrsys.com',
|
|
135
131
|
provider: 'TdrSys'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.194",
|
|
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.
|
|
32
|
+
"@chain-registry/types": "^2.0.194"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f5508942c017d1d9ea588b45be31dfaa9241020b"
|
|
43
43
|
}
|