chain-registry 1.63.9 → 1.63.10

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/README.md CHANGED
@@ -5,12 +5,13 @@
5
5
  </p>
6
6
 
7
7
  <p align="center" width="100%">
8
-
9
8
  <a href="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml">
10
9
  <img height="20" src="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml/badge.svg" />
11
10
  </a>
12
- <a href="https://github.com/cosmology-tech/chain-registry/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
13
- <a href="https://www.npmjs.com/package/chain-registry"><img height="20" src="https://img.shields.io/npm/dt/chain-registry"></a>
11
+ <img height="20" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fcosmology-tech%2Flib-count%2Fmain%2Foutput%2Fbadges%2Fproducts%2Fchain-registry%2Ftotal.json" />
12
+ <img height="20" src="https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fcosmology-tech%2Flib-count%2Fmain%2Foutput%2Fbadges%2Fproducts%2Fchain-registry%2Fmonthly.json" />
13
+ <br />
14
+ <a href="https://github.com/cosmology-tech/chain-registry/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
14
15
  <a href="https://www.npmjs.com/package/chain-registry"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=packages%2Fchain-registry%2Fpackage.json"></a>
15
16
  </p>
16
17
 
@@ -231,6 +232,22 @@ git commit -am "new registry updates"
231
232
  lerna publish
232
233
  ```
233
234
 
235
+ ### Updating Submodule Data
236
+
237
+ Use the following Makefile commands to update the data in the submodules. These commands will ensure that your submodules are synchronized with their respective remote repositories.
238
+
239
+ - **update-cosmos**: Updates the submodule to the latest commits of the `cosmos/chain-registry` repository. This should be used to pull the most current production data into your local environment.
240
+
241
+ ```
242
+ make update-cosmos
243
+ ```
244
+
245
+ - **update-fixtures**: Updates the submodule to the latest commits of the `cosmology-tech/chain-registry-fixtures` repository. Use this for testing purposes to ensure that your tests are running against stable, controlled data sets.
246
+
247
+ ```
248
+ make update-fixtures
249
+ ```
250
+
234
251
  ## Related
235
252
 
236
253
  Checkout these related projects:
@@ -13,7 +13,7 @@ const info = {
13
13
  fees: {
14
14
  fee_tokens: [{
15
15
  denom: 'uakt',
16
- fixed_min_gas_price: 0,
16
+ fixed_min_gas_price: 0.00025,
17
17
  low_gas_price: 0.00025,
18
18
  average_gas_price: 0.0025,
19
19
  high_gas_price: 0.025
@@ -16,6 +16,7 @@ import * as _bandchain from './bandchain';
16
16
  import * as _beezee from './beezee';
17
17
  import * as _bitcanna from './bitcanna';
18
18
  import * as _bitsong from './bitsong';
19
+ import * as _bluechip from './bluechip';
19
20
  import * as _bluzelle from './bluzelle';
20
21
  import * as _bostrom from './bostrom';
21
22
  import * as _canto from './canto';
@@ -185,6 +186,7 @@ const assets = [
185
186
  _beezee.assets,
186
187
  _bitcanna.assets,
187
188
  _bitsong.assets,
189
+ _bluechip.assets,
188
190
  _bluzelle.assets,
189
191
  _bostrom.assets,
190
192
  _canto.assets,
@@ -0,0 +1,22 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'bluechip',
4
+ assets: [{
5
+ description: 'The native staking token of BlueChip.',
6
+ denom_units: [{
7
+ denom: 'ubluechip',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'bcp',
11
+ exponent: 6
12
+ }],
13
+ base: 'ubluechip',
14
+ name: 'blue chip',
15
+ display: 'bcp',
16
+ symbol: 'BCP',
17
+ images: [{
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
19
+ }]
20
+ }]
21
+ };
22
+ export default info;
@@ -0,0 +1,37 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'bluechip',
4
+ status: 'live',
5
+ website: 'https://www.bluechip.link',
6
+ network_type: 'mainnet',
7
+ pretty_name: 'BlueChip',
8
+ chain_id: 'bluechip_1',
9
+ bech32_prefix: 'bcp',
10
+ daemon_name: 'bluechipd',
11
+ node_home: '$HOME/.bluechip',
12
+ slip44: 118,
13
+ key_algos: ['secp256k1'],
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'ubluechip',
17
+ fixed_min_gas_price: 0,
18
+ low_gas_price: 0,
19
+ average_gas_price: 0.025,
20
+ high_gas_price: 0.04
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'ubluechip'
26
+ }]
27
+ },
28
+ description: 'Stake to the BlueChip chain, interact with the creator pools, and subscribe through the creator subscription contracts.',
29
+ codebase: {
30
+ cosmos_sdk_version: '0.46.7',
31
+ cosmwasm_enabled: true
32
+ },
33
+ images: [{
34
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
35
+ }]
36
+ };
37
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -17,6 +17,7 @@ import * as _bandchain from './bandchain';
17
17
  import * as _beezee from './beezee';
18
18
  import * as _bitcanna from './bitcanna';
19
19
  import * as _bitsong from './bitsong';
20
+ import * as _bluechip from './bluechip';
20
21
  import * as _bluzelle from './bluzelle';
21
22
  import * as _bostrom from './bostrom';
22
23
  import * as _canto from './canto';
@@ -188,6 +189,7 @@ const chains = [
188
189
  _beezee.chain,
189
190
  _bitcanna.chain,
190
191
  _bitsong.chain,
192
+ _bluechip.chain,
191
193
  _bluzelle.chain,
192
194
  _bostrom.chain,
193
195
  _canto.chain,
@@ -51,10 +51,6 @@ const info = {
51
51
  address: 'https://cosmoshub-rpc.lavenderfive.com:443',
52
52
  provider: 'Lavender.Five Nodes 🐝'
53
53
  },
54
- {
55
- address: 'https://rpc.cosmoshub.strange.love',
56
- provider: 'strangelove-ventures'
57
- },
58
54
  {
59
55
  address: 'https://rpc-cosmoshub.ecostake.com',
60
56
  provider: 'ecostake'
@@ -17,6 +17,7 @@ export * as bandchain from './bandchain';
17
17
  export * as beezee from './beezee';
18
18
  export * as bitcanna from './bitcanna';
19
19
  export * as bitsong from './bitsong';
20
+ export * as bluechip from './bluechip';
20
21
  export * as bluzelle from './bluzelle';
21
22
  export * as bostrom from './bostrom';
22
23
  export * as canto from './canto';
@@ -79,11 +79,6 @@ const info = {
79
79
  tx_page: 'https://ezstaking.app/noble/txs/${txHash}',
80
80
  account_page: 'https://ezstaking.app/noble/account/${accountAddress}'
81
81
  },
82
- {
83
- kind: 'ping.pub',
84
- url: 'https://explore.strange.love/noble-1',
85
- tx_page: 'https://explore.strange.love/noble-1/tx/${txHash}'
86
- },
87
82
  {
88
83
  kind: 'Stakeflow',
89
84
  url: 'https://stakeflow.io/noble',
@@ -15,7 +15,7 @@ const info = {
15
15
  fees: {
16
16
  fee_tokens: [{
17
17
  denom: 'uakt',
18
- fixed_min_gas_price: 0,
18
+ fixed_min_gas_price: 0.00025,
19
19
  low_gas_price: 0.00025,
20
20
  average_gas_price: 0.0025,
21
21
  high_gas_price: 0.025
package/mainnet/assets.js CHANGED
@@ -41,6 +41,7 @@ const _bandchain = __importStar(require("./bandchain"));
41
41
  const _beezee = __importStar(require("./beezee"));
42
42
  const _bitcanna = __importStar(require("./bitcanna"));
43
43
  const _bitsong = __importStar(require("./bitsong"));
44
+ const _bluechip = __importStar(require("./bluechip"));
44
45
  const _bluzelle = __importStar(require("./bluzelle"));
45
46
  const _bostrom = __importStar(require("./bostrom"));
46
47
  const _canto = __importStar(require("./canto"));
@@ -210,6 +211,7 @@ const assets = [
210
211
  _beezee.assets,
211
212
  _bitcanna.assets,
212
213
  _bitsong.assets,
214
+ _bluechip.assets,
213
215
  _bluzelle.assets,
214
216
  _bostrom.assets,
215
217
  _canto.assets,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'bluechip',
6
+ assets: [{
7
+ description: 'The native staking token of BlueChip.',
8
+ denom_units: [{
9
+ denom: 'ubluechip',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'bcp',
13
+ exponent: 6
14
+ }],
15
+ base: 'ubluechip',
16
+ name: 'blue chip',
17
+ display: 'bcp',
18
+ symbol: 'BCP',
19
+ images: [{
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
21
+ }]
22
+ }]
23
+ };
24
+ 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,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'bluechip',
6
+ status: 'live',
7
+ website: 'https://www.bluechip.link',
8
+ network_type: 'mainnet',
9
+ pretty_name: 'BlueChip',
10
+ chain_id: 'bluechip_1',
11
+ bech32_prefix: 'bcp',
12
+ daemon_name: 'bluechipd',
13
+ node_home: '$HOME/.bluechip',
14
+ slip44: 118,
15
+ key_algos: ['secp256k1'],
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'ubluechip',
19
+ fixed_min_gas_price: 0,
20
+ low_gas_price: 0,
21
+ average_gas_price: 0.025,
22
+ high_gas_price: 0.04
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'ubluechip'
28
+ }]
29
+ },
30
+ description: 'Stake to the BlueChip chain, interact with the creator pools, and subscribe through the creator subscription contracts.',
31
+ codebase: {
32
+ cosmos_sdk_version: '0.46.7',
33
+ cosmwasm_enabled: true
34
+ },
35
+ images: [{
36
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluechip/images/bluechip.png'
37
+ }]
38
+ };
39
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: 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.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
package/mainnet/chains.js CHANGED
@@ -42,6 +42,7 @@ const _bandchain = __importStar(require("./bandchain"));
42
42
  const _beezee = __importStar(require("./beezee"));
43
43
  const _bitcanna = __importStar(require("./bitcanna"));
44
44
  const _bitsong = __importStar(require("./bitsong"));
45
+ const _bluechip = __importStar(require("./bluechip"));
45
46
  const _bluzelle = __importStar(require("./bluzelle"));
46
47
  const _bostrom = __importStar(require("./bostrom"));
47
48
  const _canto = __importStar(require("./canto"));
@@ -213,6 +214,7 @@ const chains = [
213
214
  _beezee.chain,
214
215
  _bitcanna.chain,
215
216
  _bitsong.chain,
217
+ _bluechip.chain,
216
218
  _bluzelle.chain,
217
219
  _bostrom.chain,
218
220
  _canto.chain,
@@ -53,10 +53,6 @@ const info = {
53
53
  address: 'https://cosmoshub-rpc.lavenderfive.com:443',
54
54
  provider: 'Lavender.Five Nodes 🐝'
55
55
  },
56
- {
57
- address: 'https://rpc.cosmoshub.strange.love',
58
- provider: 'strangelove-ventures'
59
- },
60
56
  {
61
57
  address: 'https://rpc-cosmoshub.ecostake.com',
62
58
  provider: 'ecostake'
@@ -17,6 +17,7 @@ export * as bandchain from './bandchain';
17
17
  export * as beezee from './beezee';
18
18
  export * as bitcanna from './bitcanna';
19
19
  export * as bitsong from './bitsong';
20
+ export * as bluechip from './bluechip';
20
21
  export * as bluzelle from './bluzelle';
21
22
  export * as bostrom from './bostrom';
22
23
  export * as canto from './canto';
package/mainnet/named.js CHANGED
@@ -23,10 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.dymension = exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
27
- exports.mythos = exports.mun = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = void 0;
28
- exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = void 0;
29
- exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = void 0;
26
+ exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bluechip = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
27
+ exports.mun = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = void 0;
28
+ exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = void 0;
29
+ exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = void 0;
30
30
  exports._8ball = __importStar(require("./8ball"));
31
31
  exports.acrechain = __importStar(require("./acrechain"));
32
32
  exports.agoric = __importStar(require("./agoric"));
@@ -46,6 +46,7 @@ exports.bandchain = __importStar(require("./bandchain"));
46
46
  exports.beezee = __importStar(require("./beezee"));
47
47
  exports.bitcanna = __importStar(require("./bitcanna"));
48
48
  exports.bitsong = __importStar(require("./bitsong"));
49
+ exports.bluechip = __importStar(require("./bluechip"));
49
50
  exports.bluzelle = __importStar(require("./bluzelle"));
50
51
  exports.bostrom = __importStar(require("./bostrom"));
51
52
  exports.canto = __importStar(require("./canto"));
@@ -81,11 +81,6 @@ const info = {
81
81
  tx_page: 'https://ezstaking.app/noble/txs/${txHash}',
82
82
  account_page: 'https://ezstaking.app/noble/account/${accountAddress}'
83
83
  },
84
- {
85
- kind: 'ping.pub',
86
- url: 'https://explore.strange.love/noble-1',
87
- tx_page: 'https://explore.strange.love/noble-1/tx/${txHash}'
88
- },
89
84
  {
90
85
  kind: 'Stakeflow',
91
86
  url: 'https://stakeflow.io/noble',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.63.9",
3
+ "version": "1.63.10",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,11 +29,11 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@chain-registry/utils": "^1.46.6",
32
+ "@chain-registry/utils": "^1.46.7",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.45.6"
36
+ "@chain-registry/types": "^0.45.7"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "3a90199d3dff7035b7648fd95de4b1838307b64f"
46
+ "gitHead": "0a1767c6ad9f0f1084e152987216ca873aac496b"
47
47
  }