chain-registry 2.0.190 → 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.
@@ -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 BlueChip.',
6
- denomUnits: [{
5
+ description: 'The native staking token of the Bluechip Chain.',
6
+ denomUnits: [
7
+ {
7
8
  denom: 'ubluechip',
8
- exponent: 0
9
- }, {
10
- denom: 'bcp',
11
- exponent: 6
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: 'blue chip',
15
- display: 'bcp',
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: 'BlueChip',
6
+ prettyName: 'Bluechip',
8
7
  chainType: 'cosmos',
9
- chainId: 'bluechip-2',
10
- bech32Prefix: 'bcp',
11
- daemonName: 'bluechipd',
12
- nodeHome: '$HOME/.bluechip',
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/tree/main',
32
- recommendedVersion: 'v1',
33
- compatibleVersions: ['v1'],
34
- genesis: {
35
- genesisUrl: 'https://github.com/Bluechip23/bluechip/blob/main/genesis.json'
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
- sdk: {
38
- type: 'cosmos',
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;
@@ -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 BlueChip.',
8
- denomUnits: [{
7
+ description: 'The native staking token of the Bluechip Chain.',
8
+ denomUnits: [
9
+ {
9
10
  denom: 'ubluechip',
10
- exponent: 0
11
- }, {
12
- denom: 'bcp',
13
- exponent: 6
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: 'blue chip',
17
- display: 'bcp',
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: 'BlueChip',
8
+ prettyName: 'Bluechip',
10
9
  chainType: 'cosmos',
11
- chainId: 'bluechip-2',
12
- bech32Prefix: 'bcp',
13
- daemonName: 'bluechipd',
14
- nodeHome: '$HOME/.bluechip',
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/tree/main',
34
- recommendedVersion: 'v1',
35
- compatibleVersions: ['v1'],
36
- genesis: {
37
- genesisUrl: 'https://github.com/Bluechip23/bluechip/blob/main/genesis.json'
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
- sdk: {
40
- type: 'cosmos',
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.190",
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.190"
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": "8afffb49524362ae6c7a81c4110b4a5a86f0ecf0"
42
+ "gitHead": "521e529386901a8ce170e29cb92ee5b517aff7de"
43
43
  }