chain-registry 2.0.189 → 2.0.191
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/bluechip/asset-list.js +28 -10
- package/esm/mainnet/bluechip/chain.js +33 -21
- package/esm/mainnet/terra2/asset-list.js +1 -2
- package/esm/mainnet/zigchain/asset-list.js +51 -0
- package/mainnet/bluechip/asset-list.js +28 -10
- package/mainnet/bluechip/chain.js +33 -21
- package/mainnet/terra2/asset-list.js +1 -2
- package/mainnet/zigchain/asset-list.js +51 -0
- package/package.json +3 -3
|
@@ -2,22 +2,40 @@ const info = {
|
|
|
2
2
|
$schema: '../assetlist.schema.json',
|
|
3
3
|
chainName: 'bluechip',
|
|
4
4
|
assets: [{
|
|
5
|
-
description: 'The native staking token of
|
|
6
|
-
denomUnits: [
|
|
5
|
+
description: 'The native staking token of the Bluechip Chain.',
|
|
6
|
+
denomUnits: [
|
|
7
|
+
{
|
|
7
8
|
denom: 'ubluechip',
|
|
8
|
-
exponent: 0
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['microbluechip']
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
denom: 'mbluechip',
|
|
14
|
+
exponent: 3,
|
|
15
|
+
aliases: ['millibluechip']
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
denom: 'bluechip',
|
|
19
|
+
exponent: 6,
|
|
20
|
+
aliases: []
|
|
21
|
+
}
|
|
22
|
+
],
|
|
13
23
|
base: 'ubluechip',
|
|
14
|
-
name: '
|
|
15
|
-
display: '
|
|
24
|
+
name: 'Bluechip',
|
|
25
|
+
display: 'bluechip',
|
|
16
26
|
symbol: 'BCP',
|
|
27
|
+
logoURIs: {
|
|
28
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
29
|
+
},
|
|
17
30
|
images: [{
|
|
18
31
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
19
32
|
}],
|
|
20
|
-
typeAsset: 'sdk.coin'
|
|
33
|
+
typeAsset: 'sdk.coin',
|
|
34
|
+
keywords: [
|
|
35
|
+
'staking',
|
|
36
|
+
'defi',
|
|
37
|
+
'creator-economy'
|
|
38
|
+
]
|
|
21
39
|
}]
|
|
22
40
|
};
|
|
23
41
|
export default info;
|
|
@@ -2,21 +2,20 @@ const info = {
|
|
|
2
2
|
$schema: '../chain.schema.json',
|
|
3
3
|
chainName: 'bluechip',
|
|
4
4
|
status: 'live',
|
|
5
|
-
website: 'https://www.bluechip.link',
|
|
6
5
|
networkType: 'mainnet',
|
|
7
|
-
prettyName: '
|
|
6
|
+
prettyName: 'Bluechip',
|
|
8
7
|
chainType: 'cosmos',
|
|
9
|
-
chainId: 'bluechip-
|
|
10
|
-
bech32Prefix: '
|
|
11
|
-
daemonName: '
|
|
12
|
-
nodeHome: '$HOME/.
|
|
13
|
-
slip44: 118,
|
|
8
|
+
chainId: 'bluechip-3',
|
|
9
|
+
bech32Prefix: 'bluechip',
|
|
10
|
+
daemonName: 'bluechipchaind',
|
|
11
|
+
nodeHome: '$HOME/.bluechipChain',
|
|
14
12
|
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
15
14
|
fees: {
|
|
16
15
|
feeTokens: [{
|
|
17
16
|
denom: 'ubluechip',
|
|
18
17
|
fixedMinGasPrice: 0,
|
|
19
|
-
lowGasPrice: 0,
|
|
18
|
+
lowGasPrice: 0.01,
|
|
20
19
|
averageGasPrice: 0.025,
|
|
21
20
|
highGasPrice: 0.04
|
|
22
21
|
}]
|
|
@@ -26,24 +25,37 @@ const info = {
|
|
|
26
25
|
denom: 'ubluechip'
|
|
27
26
|
}]
|
|
28
27
|
},
|
|
29
|
-
description: 'Stake to the BlueChip chain, interact with the creator pools, and subscribe through the creator subscription contracts.',
|
|
30
28
|
codebase: {
|
|
31
|
-
gitRepo: 'https://github.com/Bluechip23/bluechip
|
|
32
|
-
recommendedVersion: 'v1',
|
|
33
|
-
compatibleVersions: ['v1'],
|
|
34
|
-
|
|
35
|
-
|
|
29
|
+
gitRepo: 'https://github.com/Bluechip23/bluechip-chain-official.git',
|
|
30
|
+
recommendedVersion: 'v1.0.0',
|
|
31
|
+
compatibleVersions: ['v1.0.0'],
|
|
32
|
+
consensus: {
|
|
33
|
+
type: 'cometbft'
|
|
36
34
|
},
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
version: '0.47.11'
|
|
40
|
-
},
|
|
41
|
-
cosmwasm: {
|
|
42
|
-
enabled: true
|
|
35
|
+
genesis: {
|
|
36
|
+
genesisUrl: 'https://raw.githubusercontent.com/Bluechip23/bluechip-chain-official/main/genesis.json'
|
|
43
37
|
}
|
|
44
38
|
},
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://bluechip.rpc.bluechip.link',
|
|
42
|
+
provider: 'BluechipNode'
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
45
|
+
address: 'https://bluechip.api.bluechip.link',
|
|
46
|
+
provider: 'BluechipNode'
|
|
47
|
+
}],
|
|
48
|
+
grpc: []
|
|
49
|
+
},
|
|
50
|
+
explorers: [{
|
|
51
|
+
kind: 'custom',
|
|
52
|
+
url: 'https://bluechipsblockexplorer.com/frontpage',
|
|
53
|
+
txPage: 'https://bluechipsblockexplorer.com/tx/${txHash}',
|
|
54
|
+
accountPage: 'https://bluechipsblockexplorer.com/account/${accountAddress}'
|
|
55
|
+
}],
|
|
45
56
|
images: [{
|
|
46
57
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
47
|
-
}]
|
|
58
|
+
}],
|
|
59
|
+
website: 'https://www.bluechip.link/home'
|
|
48
60
|
};
|
|
49
61
|
export default info;
|
|
@@ -1487,8 +1487,7 @@ const info = {
|
|
|
1487
1487
|
},
|
|
1488
1488
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg',
|
|
1489
1489
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png'
|
|
1490
|
-
}]
|
|
1491
|
-
coingeckoId: 'eureka-bridged-pax-gold-terra'
|
|
1490
|
+
}]
|
|
1492
1491
|
},
|
|
1493
1492
|
{
|
|
1494
1493
|
description: 'Tether Gold bridged via Eureka on Cosmos Hub and relayed to Terra (phoenix-1) over IBC.',
|
|
@@ -478,6 +478,57 @@ const info = {
|
|
|
478
478
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg'
|
|
479
479
|
}],
|
|
480
480
|
coingeckoId: 'stride-staked-atom'
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
description: 'SolvBTC on ZIGChain',
|
|
484
|
+
denomUnits: [{
|
|
485
|
+
denom: 'ibc/F1E29C7A6E0A3782CD87D279722AC11FEDE1BAAB9BD5A25A2A7EAE44ED02ADD5',
|
|
486
|
+
exponent: 0
|
|
487
|
+
}, {
|
|
488
|
+
denom: 'solvbtc',
|
|
489
|
+
exponent: 18
|
|
490
|
+
}],
|
|
491
|
+
base: 'ibc/F1E29C7A6E0A3782CD87D279722AC11FEDE1BAAB9BD5A25A2A7EAE44ED02ADD5',
|
|
492
|
+
name: 'SolvBTC on ZIGChain',
|
|
493
|
+
display: 'solvbtc',
|
|
494
|
+
symbol: 'SolvBTC',
|
|
495
|
+
traces: [{
|
|
496
|
+
type: 'ibc-bridge',
|
|
497
|
+
counterparty: {
|
|
498
|
+
chainName: 'ethereum',
|
|
499
|
+
baseDenom: '0x7a56e1c57c7475ccf742a1832b028f0456652f97',
|
|
500
|
+
channelId: 'channel-0'
|
|
501
|
+
},
|
|
502
|
+
chain: {
|
|
503
|
+
channelId: '08-wasm-1369',
|
|
504
|
+
path: 'transfer/08-wasm-1369/0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
505
|
+
},
|
|
506
|
+
provider: 'Eureka'
|
|
507
|
+
}, {
|
|
508
|
+
type: 'ibc',
|
|
509
|
+
counterparty: {
|
|
510
|
+
chainName: 'cosmoshub',
|
|
511
|
+
baseDenom: 'ibc/0C4417F123459B47B6933939BF6F128C362B0C1F9EDA6A6EBC08860E4672AF7E',
|
|
512
|
+
channelId: 'channel-1555'
|
|
513
|
+
},
|
|
514
|
+
chain: {
|
|
515
|
+
channelId: 'channel-4',
|
|
516
|
+
path: 'transfer/channel-4/transfer/08-wasm-1369/0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
517
|
+
}
|
|
518
|
+
}],
|
|
519
|
+
typeAsset: 'ics20',
|
|
520
|
+
logoURIs: {
|
|
521
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.png',
|
|
522
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.svg'
|
|
523
|
+
},
|
|
524
|
+
images: [{
|
|
525
|
+
imageSync: {
|
|
526
|
+
chainName: 'ethereum',
|
|
527
|
+
baseDenom: '0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
528
|
+
},
|
|
529
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.png',
|
|
530
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.svg'
|
|
531
|
+
}]
|
|
481
532
|
}
|
|
482
533
|
]
|
|
483
534
|
};
|
|
@@ -4,22 +4,40 @@ const info = {
|
|
|
4
4
|
$schema: '../assetlist.schema.json',
|
|
5
5
|
chainName: 'bluechip',
|
|
6
6
|
assets: [{
|
|
7
|
-
description: 'The native staking token of
|
|
8
|
-
denomUnits: [
|
|
7
|
+
description: 'The native staking token of the Bluechip Chain.',
|
|
8
|
+
denomUnits: [
|
|
9
|
+
{
|
|
9
10
|
denom: 'ubluechip',
|
|
10
|
-
exponent: 0
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microbluechip']
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
denom: 'mbluechip',
|
|
16
|
+
exponent: 3,
|
|
17
|
+
aliases: ['millibluechip']
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
denom: 'bluechip',
|
|
21
|
+
exponent: 6,
|
|
22
|
+
aliases: []
|
|
23
|
+
}
|
|
24
|
+
],
|
|
15
25
|
base: 'ubluechip',
|
|
16
|
-
name: '
|
|
17
|
-
display: '
|
|
26
|
+
name: 'Bluechip',
|
|
27
|
+
display: 'bluechip',
|
|
18
28
|
symbol: 'BCP',
|
|
29
|
+
logoURIs: {
|
|
30
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
31
|
+
},
|
|
19
32
|
images: [{
|
|
20
33
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
21
34
|
}],
|
|
22
|
-
typeAsset: 'sdk.coin'
|
|
35
|
+
typeAsset: 'sdk.coin',
|
|
36
|
+
keywords: [
|
|
37
|
+
'staking',
|
|
38
|
+
'defi',
|
|
39
|
+
'creator-economy'
|
|
40
|
+
]
|
|
23
41
|
}]
|
|
24
42
|
};
|
|
25
43
|
exports.default = info;
|
|
@@ -4,21 +4,20 @@ const info = {
|
|
|
4
4
|
$schema: '../chain.schema.json',
|
|
5
5
|
chainName: 'bluechip',
|
|
6
6
|
status: 'live',
|
|
7
|
-
website: 'https://www.bluechip.link',
|
|
8
7
|
networkType: 'mainnet',
|
|
9
|
-
prettyName: '
|
|
8
|
+
prettyName: 'Bluechip',
|
|
10
9
|
chainType: 'cosmos',
|
|
11
|
-
chainId: 'bluechip-
|
|
12
|
-
bech32Prefix: '
|
|
13
|
-
daemonName: '
|
|
14
|
-
nodeHome: '$HOME/.
|
|
15
|
-
slip44: 118,
|
|
10
|
+
chainId: 'bluechip-3',
|
|
11
|
+
bech32Prefix: 'bluechip',
|
|
12
|
+
daemonName: 'bluechipchaind',
|
|
13
|
+
nodeHome: '$HOME/.bluechipChain',
|
|
16
14
|
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
17
16
|
fees: {
|
|
18
17
|
feeTokens: [{
|
|
19
18
|
denom: 'ubluechip',
|
|
20
19
|
fixedMinGasPrice: 0,
|
|
21
|
-
lowGasPrice: 0,
|
|
20
|
+
lowGasPrice: 0.01,
|
|
22
21
|
averageGasPrice: 0.025,
|
|
23
22
|
highGasPrice: 0.04
|
|
24
23
|
}]
|
|
@@ -28,24 +27,37 @@ const info = {
|
|
|
28
27
|
denom: 'ubluechip'
|
|
29
28
|
}]
|
|
30
29
|
},
|
|
31
|
-
description: 'Stake to the BlueChip chain, interact with the creator pools, and subscribe through the creator subscription contracts.',
|
|
32
30
|
codebase: {
|
|
33
|
-
gitRepo: 'https://github.com/Bluechip23/bluechip
|
|
34
|
-
recommendedVersion: 'v1',
|
|
35
|
-
compatibleVersions: ['v1'],
|
|
36
|
-
|
|
37
|
-
|
|
31
|
+
gitRepo: 'https://github.com/Bluechip23/bluechip-chain-official.git',
|
|
32
|
+
recommendedVersion: 'v1.0.0',
|
|
33
|
+
compatibleVersions: ['v1.0.0'],
|
|
34
|
+
consensus: {
|
|
35
|
+
type: 'cometbft'
|
|
38
36
|
},
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
version: '0.47.11'
|
|
42
|
-
},
|
|
43
|
-
cosmwasm: {
|
|
44
|
-
enabled: true
|
|
37
|
+
genesis: {
|
|
38
|
+
genesisUrl: 'https://raw.githubusercontent.com/Bluechip23/bluechip-chain-official/main/genesis.json'
|
|
45
39
|
}
|
|
46
40
|
},
|
|
41
|
+
apis: {
|
|
42
|
+
rpc: [{
|
|
43
|
+
address: 'https://bluechip.rpc.bluechip.link',
|
|
44
|
+
provider: 'BluechipNode'
|
|
45
|
+
}],
|
|
46
|
+
rest: [{
|
|
47
|
+
address: 'https://bluechip.api.bluechip.link',
|
|
48
|
+
provider: 'BluechipNode'
|
|
49
|
+
}],
|
|
50
|
+
grpc: []
|
|
51
|
+
},
|
|
52
|
+
explorers: [{
|
|
53
|
+
kind: 'custom',
|
|
54
|
+
url: 'https://bluechipsblockexplorer.com/frontpage',
|
|
55
|
+
txPage: 'https://bluechipsblockexplorer.com/tx/${txHash}',
|
|
56
|
+
accountPage: 'https://bluechipsblockexplorer.com/account/${accountAddress}'
|
|
57
|
+
}],
|
|
47
58
|
images: [{
|
|
48
59
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
|
|
49
|
-
}]
|
|
60
|
+
}],
|
|
61
|
+
website: 'https://www.bluechip.link/home'
|
|
50
62
|
};
|
|
51
63
|
exports.default = info;
|
|
@@ -1489,8 +1489,7 @@ const info = {
|
|
|
1489
1489
|
},
|
|
1490
1490
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg',
|
|
1491
1491
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png'
|
|
1492
|
-
}]
|
|
1493
|
-
coingeckoId: 'eureka-bridged-pax-gold-terra'
|
|
1492
|
+
}]
|
|
1494
1493
|
},
|
|
1495
1494
|
{
|
|
1496
1495
|
description: 'Tether Gold bridged via Eureka on Cosmos Hub and relayed to Terra (phoenix-1) over IBC.',
|
|
@@ -480,6 +480,57 @@ const info = {
|
|
|
480
480
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg'
|
|
481
481
|
}],
|
|
482
482
|
coingeckoId: 'stride-staked-atom'
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
description: 'SolvBTC on ZIGChain',
|
|
486
|
+
denomUnits: [{
|
|
487
|
+
denom: 'ibc/F1E29C7A6E0A3782CD87D279722AC11FEDE1BAAB9BD5A25A2A7EAE44ED02ADD5',
|
|
488
|
+
exponent: 0
|
|
489
|
+
}, {
|
|
490
|
+
denom: 'solvbtc',
|
|
491
|
+
exponent: 18
|
|
492
|
+
}],
|
|
493
|
+
base: 'ibc/F1E29C7A6E0A3782CD87D279722AC11FEDE1BAAB9BD5A25A2A7EAE44ED02ADD5',
|
|
494
|
+
name: 'SolvBTC on ZIGChain',
|
|
495
|
+
display: 'solvbtc',
|
|
496
|
+
symbol: 'SolvBTC',
|
|
497
|
+
traces: [{
|
|
498
|
+
type: 'ibc-bridge',
|
|
499
|
+
counterparty: {
|
|
500
|
+
chainName: 'ethereum',
|
|
501
|
+
baseDenom: '0x7a56e1c57c7475ccf742a1832b028f0456652f97',
|
|
502
|
+
channelId: 'channel-0'
|
|
503
|
+
},
|
|
504
|
+
chain: {
|
|
505
|
+
channelId: '08-wasm-1369',
|
|
506
|
+
path: 'transfer/08-wasm-1369/0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
507
|
+
},
|
|
508
|
+
provider: 'Eureka'
|
|
509
|
+
}, {
|
|
510
|
+
type: 'ibc',
|
|
511
|
+
counterparty: {
|
|
512
|
+
chainName: 'cosmoshub',
|
|
513
|
+
baseDenom: 'ibc/0C4417F123459B47B6933939BF6F128C362B0C1F9EDA6A6EBC08860E4672AF7E',
|
|
514
|
+
channelId: 'channel-1555'
|
|
515
|
+
},
|
|
516
|
+
chain: {
|
|
517
|
+
channelId: 'channel-4',
|
|
518
|
+
path: 'transfer/channel-4/transfer/08-wasm-1369/0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
519
|
+
}
|
|
520
|
+
}],
|
|
521
|
+
typeAsset: 'ics20',
|
|
522
|
+
logoURIs: {
|
|
523
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.png',
|
|
524
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.svg'
|
|
525
|
+
},
|
|
526
|
+
images: [{
|
|
527
|
+
imageSync: {
|
|
528
|
+
chainName: 'ethereum',
|
|
529
|
+
baseDenom: '0x7a56e1c57c7475ccf742a1832b028f0456652f97'
|
|
530
|
+
},
|
|
531
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.png',
|
|
532
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/solvBTC.svg'
|
|
533
|
+
}]
|
|
483
534
|
}
|
|
484
535
|
]
|
|
485
536
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.191",
|
|
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.191"
|
|
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": "521e529386901a8ce170e29cb92ee5b517aff7de"
|
|
43
43
|
}
|