chain-registry 2.0.229 → 2.0.230
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/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/hipercapital/asset-list.js +27 -0
- package/esm/mainnet/hipercapital/chain.js +65 -0
- package/esm/mainnet/hipercapital/index.js +4 -0
- package/esm/mainnet/safrochain/asset-list.js +24 -3
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/hipercapital/asset-list.d.ts +3 -0
- package/mainnet/hipercapital/asset-list.js +29 -0
- package/mainnet/hipercapital/chain.d.ts +3 -0
- package/mainnet/hipercapital/chain.js +67 -0
- package/mainnet/hipercapital/index.d.ts +2 -0
- package/mainnet/hipercapital/index.js +10 -0
- package/mainnet/safrochain/asset-list.js +24 -3
- package/package.json +3 -3
|
@@ -86,6 +86,7 @@ import * as _haqq from './haqq';
|
|
|
86
86
|
import * as _hazinachain from './hazinachain';
|
|
87
87
|
import * as _heli from './heli';
|
|
88
88
|
import * as _highbury from './highbury';
|
|
89
|
+
import * as _hipercapital from './hipercapital';
|
|
89
90
|
import * as _hippoprotocol from './hippoprotocol';
|
|
90
91
|
import * as _humans from './humans';
|
|
91
92
|
import * as _idep from './idep';
|
|
@@ -312,6 +313,7 @@ const assetList = [
|
|
|
312
313
|
_hazinachain.assetList,
|
|
313
314
|
_heli.assetList,
|
|
314
315
|
_highbury.assetList,
|
|
316
|
+
_hipercapital.assetList,
|
|
315
317
|
_hippoprotocol.assetList,
|
|
316
318
|
_humans.assetList,
|
|
317
319
|
_idep.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -86,6 +86,7 @@ import * as _haqq from './haqq';
|
|
|
86
86
|
import * as _hazinachain from './hazinachain';
|
|
87
87
|
import * as _heli from './heli';
|
|
88
88
|
import * as _highbury from './highbury';
|
|
89
|
+
import * as _hipercapital from './hipercapital';
|
|
89
90
|
import * as _hippoprotocol from './hippoprotocol';
|
|
90
91
|
import * as _humans from './humans';
|
|
91
92
|
import * as _idep from './idep';
|
|
@@ -312,6 +313,7 @@ const chains = [
|
|
|
312
313
|
_hazinachain.chain,
|
|
313
314
|
_heli.chain,
|
|
314
315
|
_highbury.chain,
|
|
316
|
+
_hipercapital.chain,
|
|
315
317
|
_hippoprotocol.chain,
|
|
316
318
|
_humans.chain,
|
|
317
319
|
_idep.chain,
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'hipercapital',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'HIP is the native governance and gas token of the HiperCapital sovereign chain (hipcf_7777-1).',
|
|
6
|
+
typeAsset: 'sdk.coin',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'ahip',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['attoahip']
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'hip',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'ahip',
|
|
16
|
+
name: 'HiperCapital Governance',
|
|
17
|
+
display: 'hip',
|
|
18
|
+
symbol: 'HIP',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
24
|
+
}]
|
|
25
|
+
}]
|
|
26
|
+
};
|
|
27
|
+
export default info;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'hipercapital',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
prettyName: 'Hipercapital Finance',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
chainId: 'hipcf_7777-1',
|
|
9
|
+
bech32Prefix: 'cosmos',
|
|
10
|
+
daemonName: 'evmd',
|
|
11
|
+
nodeHome: '$HOME/.evmd-mainnet',
|
|
12
|
+
keyAlgos: ['ethsecp256k1'],
|
|
13
|
+
slip44: 60,
|
|
14
|
+
logoURIs: {
|
|
15
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
16
|
+
},
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'ahip',
|
|
20
|
+
fixedMinGasPrice: 0,
|
|
21
|
+
lowGasPrice: 1000000000,
|
|
22
|
+
averageGasPrice: 5000000000,
|
|
23
|
+
highGasPrice: 10000000000
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'ahip'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/hipercapital/evm',
|
|
33
|
+
recommendedVersion: 'v0.7.0',
|
|
34
|
+
consensus: {
|
|
35
|
+
type: 'cometbft'
|
|
36
|
+
},
|
|
37
|
+
genesis: {
|
|
38
|
+
genesisUrl: 'https://rpc-cosmos.hipercapitalfinance.com/genesis.json'
|
|
39
|
+
},
|
|
40
|
+
compatibleVersions: ['v0.7.0']
|
|
41
|
+
},
|
|
42
|
+
apis: {
|
|
43
|
+
rpc: [{
|
|
44
|
+
address: 'https://rpc-cosmos.hipercapitalfinance.com',
|
|
45
|
+
provider: 'HiperCapital Finance'
|
|
46
|
+
}],
|
|
47
|
+
rest: [{
|
|
48
|
+
address: 'https://api-cosmos.hipercapitalfinance.com',
|
|
49
|
+
provider: 'HiperCapital Finance'
|
|
50
|
+
}],
|
|
51
|
+
evmHttpJsonrpc: [{
|
|
52
|
+
address: 'https://evm-cosmos.hipercapitalfinance.com',
|
|
53
|
+
provider: 'HiperCapital Finance'
|
|
54
|
+
}]
|
|
55
|
+
},
|
|
56
|
+
explorers: [{
|
|
57
|
+
kind: 'HiperCapital Explorer',
|
|
58
|
+
url: 'https://explorer.hipercapitalfinance.com'
|
|
59
|
+
}],
|
|
60
|
+
images: [{
|
|
61
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
62
|
+
}],
|
|
63
|
+
website: 'https://hipercapitalfinance.com'
|
|
64
|
+
};
|
|
65
|
+
export default info;
|
|
@@ -53,9 +53,21 @@ const info = {
|
|
|
53
53
|
}
|
|
54
54
|
}],
|
|
55
55
|
logoURIs: {
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
56
57
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
57
58
|
},
|
|
58
|
-
typeAsset: 'ics20'
|
|
59
|
+
typeAsset: 'ics20',
|
|
60
|
+
images: [{
|
|
61
|
+
imageSync: {
|
|
62
|
+
chainName: 'noble',
|
|
63
|
+
baseDenom: 'uusdc'
|
|
64
|
+
},
|
|
65
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
66
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
67
|
+
theme: {
|
|
68
|
+
circle: true
|
|
69
|
+
}
|
|
70
|
+
}]
|
|
59
71
|
},
|
|
60
72
|
{
|
|
61
73
|
description: 'Osmosis OSMO bridged over IBC channel-1.',
|
|
@@ -84,9 +96,18 @@ const info = {
|
|
|
84
96
|
}
|
|
85
97
|
}],
|
|
86
98
|
logoURIs: {
|
|
87
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
|
|
99
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
100
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
88
101
|
},
|
|
89
|
-
typeAsset: 'ics20'
|
|
102
|
+
typeAsset: 'ics20',
|
|
103
|
+
images: [{
|
|
104
|
+
imageSync: {
|
|
105
|
+
chainName: 'osmosis',
|
|
106
|
+
baseDenom: 'uosmo'
|
|
107
|
+
},
|
|
108
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
109
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
110
|
+
}]
|
|
90
111
|
}
|
|
91
112
|
]
|
|
92
113
|
};
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -111,6 +111,7 @@ const _haqq = __importStar(require("./haqq"));
|
|
|
111
111
|
const _hazinachain = __importStar(require("./hazinachain"));
|
|
112
112
|
const _heli = __importStar(require("./heli"));
|
|
113
113
|
const _highbury = __importStar(require("./highbury"));
|
|
114
|
+
const _hipercapital = __importStar(require("./hipercapital"));
|
|
114
115
|
const _hippoprotocol = __importStar(require("./hippoprotocol"));
|
|
115
116
|
const _humans = __importStar(require("./humans"));
|
|
116
117
|
const _idep = __importStar(require("./idep"));
|
|
@@ -337,6 +338,7 @@ const assetList = [
|
|
|
337
338
|
_hazinachain.assetList,
|
|
338
339
|
_heli.assetList,
|
|
339
340
|
_highbury.assetList,
|
|
341
|
+
_hipercapital.assetList,
|
|
340
342
|
_hippoprotocol.assetList,
|
|
341
343
|
_humans.assetList,
|
|
342
344
|
_idep.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -111,6 +111,7 @@ const _haqq = __importStar(require("./haqq"));
|
|
|
111
111
|
const _hazinachain = __importStar(require("./hazinachain"));
|
|
112
112
|
const _heli = __importStar(require("./heli"));
|
|
113
113
|
const _highbury = __importStar(require("./highbury"));
|
|
114
|
+
const _hipercapital = __importStar(require("./hipercapital"));
|
|
114
115
|
const _hippoprotocol = __importStar(require("./hippoprotocol"));
|
|
115
116
|
const _humans = __importStar(require("./humans"));
|
|
116
117
|
const _idep = __importStar(require("./idep"));
|
|
@@ -337,6 +338,7 @@ const chains = [
|
|
|
337
338
|
_hazinachain.chain,
|
|
338
339
|
_heli.chain,
|
|
339
340
|
_highbury.chain,
|
|
341
|
+
_hipercapital.chain,
|
|
340
342
|
_hippoprotocol.chain,
|
|
341
343
|
_humans.chain,
|
|
342
344
|
_idep.chain,
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'hipercapital',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'HIP is the native governance and gas token of the HiperCapital sovereign chain (hipcf_7777-1).',
|
|
8
|
+
typeAsset: 'sdk.coin',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'ahip',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['attoahip']
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'hip',
|
|
15
|
+
exponent: 18
|
|
16
|
+
}],
|
|
17
|
+
base: 'ahip',
|
|
18
|
+
name: 'HiperCapital Governance',
|
|
19
|
+
display: 'hip',
|
|
20
|
+
symbol: 'HIP',
|
|
21
|
+
logoURIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
26
|
+
}]
|
|
27
|
+
}]
|
|
28
|
+
};
|
|
29
|
+
exports.default = info;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'hipercapital',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
prettyName: 'Hipercapital Finance',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'hipcf_7777-1',
|
|
11
|
+
bech32Prefix: 'cosmos',
|
|
12
|
+
daemonName: 'evmd',
|
|
13
|
+
nodeHome: '$HOME/.evmd-mainnet',
|
|
14
|
+
keyAlgos: ['ethsecp256k1'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
logoURIs: {
|
|
17
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
18
|
+
},
|
|
19
|
+
fees: {
|
|
20
|
+
feeTokens: [{
|
|
21
|
+
denom: 'ahip',
|
|
22
|
+
fixedMinGasPrice: 0,
|
|
23
|
+
lowGasPrice: 1000000000,
|
|
24
|
+
averageGasPrice: 5000000000,
|
|
25
|
+
highGasPrice: 10000000000
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
staking: {
|
|
29
|
+
stakingTokens: [{
|
|
30
|
+
denom: 'ahip'
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
codebase: {
|
|
34
|
+
gitRepo: 'https://github.com/hipercapital/evm',
|
|
35
|
+
recommendedVersion: 'v0.7.0',
|
|
36
|
+
consensus: {
|
|
37
|
+
type: 'cometbft'
|
|
38
|
+
},
|
|
39
|
+
genesis: {
|
|
40
|
+
genesisUrl: 'https://rpc-cosmos.hipercapitalfinance.com/genesis.json'
|
|
41
|
+
},
|
|
42
|
+
compatibleVersions: ['v0.7.0']
|
|
43
|
+
},
|
|
44
|
+
apis: {
|
|
45
|
+
rpc: [{
|
|
46
|
+
address: 'https://rpc-cosmos.hipercapitalfinance.com',
|
|
47
|
+
provider: 'HiperCapital Finance'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://api-cosmos.hipercapitalfinance.com',
|
|
51
|
+
provider: 'HiperCapital Finance'
|
|
52
|
+
}],
|
|
53
|
+
evmHttpJsonrpc: [{
|
|
54
|
+
address: 'https://evm-cosmos.hipercapitalfinance.com',
|
|
55
|
+
provider: 'HiperCapital Finance'
|
|
56
|
+
}]
|
|
57
|
+
},
|
|
58
|
+
explorers: [{
|
|
59
|
+
kind: 'HiperCapital Explorer',
|
|
60
|
+
url: 'https://explorer.hipercapitalfinance.com'
|
|
61
|
+
}],
|
|
62
|
+
images: [{
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hipercapital/images/hip.png'
|
|
64
|
+
}],
|
|
65
|
+
website: 'https://hipercapitalfinance.com'
|
|
66
|
+
};
|
|
67
|
+
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;
|
|
@@ -55,9 +55,21 @@ const info = {
|
|
|
55
55
|
}
|
|
56
56
|
}],
|
|
57
57
|
logoURIs: {
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
58
59
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
59
60
|
},
|
|
60
|
-
typeAsset: 'ics20'
|
|
61
|
+
typeAsset: 'ics20',
|
|
62
|
+
images: [{
|
|
63
|
+
imageSync: {
|
|
64
|
+
chainName: 'noble',
|
|
65
|
+
baseDenom: 'uusdc'
|
|
66
|
+
},
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
69
|
+
theme: {
|
|
70
|
+
circle: true
|
|
71
|
+
}
|
|
72
|
+
}]
|
|
61
73
|
},
|
|
62
74
|
{
|
|
63
75
|
description: 'Osmosis OSMO bridged over IBC channel-1.',
|
|
@@ -86,9 +98,18 @@ const info = {
|
|
|
86
98
|
}
|
|
87
99
|
}],
|
|
88
100
|
logoURIs: {
|
|
89
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
|
|
101
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
102
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
90
103
|
},
|
|
91
|
-
typeAsset: 'ics20'
|
|
104
|
+
typeAsset: 'ics20',
|
|
105
|
+
images: [{
|
|
106
|
+
imageSync: {
|
|
107
|
+
chainName: 'osmosis',
|
|
108
|
+
baseDenom: 'uosmo'
|
|
109
|
+
},
|
|
110
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
111
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
112
|
+
}]
|
|
92
113
|
}
|
|
93
114
|
]
|
|
94
115
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.230",
|
|
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.230"
|
|
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": "b81237ee4a31506f064587cf4611d406f3142f04"
|
|
43
43
|
}
|