chain-registry 1.63.27 → 1.63.29

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.
@@ -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 _blockx from './blockx';
19
20
  import * as _bluechip from './bluechip';
20
21
  import * as _bluzelle from './bluzelle';
21
22
  import * as _bostrom from './bostrom';
@@ -192,6 +193,7 @@ const assets = [
192
193
  _beezee.assets,
193
194
  _bitcanna.assets,
194
195
  _bitsong.assets,
196
+ _blockx.assets,
195
197
  _bluechip.assets,
196
198
  _bluzelle.assets,
197
199
  _bostrom.assets,
@@ -292,10 +292,22 @@ const info = {
292
292
  }
293
293
  ],
294
294
  images: [{
295
+ image_sync: {
296
+ chain_name: 'axelar',
297
+ base_denom: 'uaxl'
298
+ },
299
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
300
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg',
301
+ theme: {
302
+ primary_color_hex: '#040404',
303
+ circle: true
304
+ }
305
+ }, {
295
306
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png',
296
307
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg',
297
308
  theme: {
298
- primary_color_hex: '#040404'
309
+ primary_color_hex: '#040404',
310
+ circle: false
299
311
  }
300
312
  }]
301
313
  };
@@ -0,0 +1,26 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'blockx',
4
+ assets: [{
5
+ description: 'BlockX Native Token',
6
+ denom_units: [{
7
+ denom: 'abcx',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'bcx',
11
+ exponent: 18
12
+ }],
13
+ base: 'abcx',
14
+ name: 'BCX',
15
+ display: 'bcx',
16
+ symbol: 'BCX',
17
+ type_asset: 'sdk.coin',
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/blockx/images/blockx.png'
20
+ }],
21
+ socials: {
22
+ website: 'https://www.blockxnet.com/'
23
+ }
24
+ }]
25
+ };
26
+ export default info;
@@ -0,0 +1,23 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'blockx',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ website: 'https://www.blockxnet.com/',
7
+ pretty_name: 'BlockX',
8
+ chain_id: 'blockx_19191-1',
9
+ bech32_prefix: 'blockx',
10
+ node_home: '$HOME/.blockxd',
11
+ daemon_name: 'blockxd',
12
+ key_algos: ['ethsecp256k1'],
13
+ staking: {
14
+ staking_tokens: [{
15
+ denom: 'abcx'
16
+ }]
17
+ },
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/blockx/images/blockx.png'
20
+ }],
21
+ slip44: 118
22
+ };
23
+ 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 _blockx from './blockx';
20
21
  import * as _bluechip from './bluechip';
21
22
  import * as _bluzelle from './bluzelle';
22
23
  import * as _bostrom from './bostrom';
@@ -195,6 +196,7 @@ const chains = [
195
196
  _beezee.chain,
196
197
  _bitcanna.chain,
197
198
  _bitsong.chain,
199
+ _blockx.chain,
198
200
  _bluechip.chain,
199
201
  _bluzelle.chain,
200
202
  _bostrom.chain,
@@ -227,6 +227,25 @@ const info = {
227
227
  tx_page: 'https://mainnet.whispernode.com/empowerchain/tx/${txHash}',
228
228
  account_page: 'https://mainnet.whispernode.com/empowerchain/account/${accountAddress}'
229
229
  }
230
- ]
230
+ ],
231
+ images: [{
232
+ image_sync: {
233
+ chain_name: 'empowerchain',
234
+ base_denom: 'umpwr'
235
+ },
236
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg',
237
+ theme: {
238
+ primary_color_hex: '#00e33a',
239
+ background_color_hex: '#00e33a',
240
+ circle: true
241
+ }
242
+ }, {
243
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.png',
244
+ theme: {
245
+ primary_color_hex: '#00e33a',
246
+ background_color_hex: '#00e33a',
247
+ circle: false
248
+ }
249
+ }]
231
250
  };
232
251
  export default info;
@@ -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 blockx from './blockx';
20
21
  export * as bluechip from './bluechip';
21
22
  export * as bluzelle from './bluzelle';
22
23
  export * as bostrom from './bostrom';
@@ -379,14 +379,18 @@ const info = {
379
379
  }
380
380
  ],
381
381
  logo_URIs: {
382
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png',
382
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
383
383
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg'
384
384
  },
385
385
  images: [{
386
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png',
386
+ image_sync: {
387
+ chain_name: 'stride',
388
+ base_denom: 'ustrd'
389
+ },
390
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
387
391
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg',
388
392
  theme: {
389
- primary_color_hex: '#242424'
393
+ primary_color_hex: '#e4047c'
390
394
  }
391
395
  }]
392
396
  };
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 _blockx = __importStar(require("./blockx"));
44
45
  const _bluechip = __importStar(require("./bluechip"));
45
46
  const _bluzelle = __importStar(require("./bluzelle"));
46
47
  const _bostrom = __importStar(require("./bostrom"));
@@ -217,6 +218,7 @@ const assets = [
217
218
  _beezee.assets,
218
219
  _bitcanna.assets,
219
220
  _bitsong.assets,
221
+ _blockx.assets,
220
222
  _bluechip.assets,
221
223
  _bluzelle.assets,
222
224
  _bostrom.assets,
@@ -294,10 +294,22 @@ const info = {
294
294
  }
295
295
  ],
296
296
  images: [{
297
+ image_sync: {
298
+ chain_name: 'axelar',
299
+ base_denom: 'uaxl'
300
+ },
301
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
302
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg',
303
+ theme: {
304
+ primary_color_hex: '#040404',
305
+ circle: true
306
+ }
307
+ }, {
297
308
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png',
298
309
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg',
299
310
  theme: {
300
- primary_color_hex: '#040404'
311
+ primary_color_hex: '#040404',
312
+ circle: false
301
313
  }
302
314
  }]
303
315
  };
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'blockx',
6
+ assets: [{
7
+ description: 'BlockX Native Token',
8
+ denom_units: [{
9
+ denom: 'abcx',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'bcx',
13
+ exponent: 18
14
+ }],
15
+ base: 'abcx',
16
+ name: 'BCX',
17
+ display: 'bcx',
18
+ symbol: 'BCX',
19
+ type_asset: 'sdk.coin',
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/blockx/images/blockx.png'
22
+ }],
23
+ socials: {
24
+ website: 'https://www.blockxnet.com/'
25
+ }
26
+ }]
27
+ };
28
+ 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,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'blockx',
6
+ status: 'live',
7
+ network_type: 'mainnet',
8
+ website: 'https://www.blockxnet.com/',
9
+ pretty_name: 'BlockX',
10
+ chain_id: 'blockx_19191-1',
11
+ bech32_prefix: 'blockx',
12
+ node_home: '$HOME/.blockxd',
13
+ daemon_name: 'blockxd',
14
+ key_algos: ['ethsecp256k1'],
15
+ staking: {
16
+ staking_tokens: [{
17
+ denom: 'abcx'
18
+ }]
19
+ },
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/blockx/images/blockx.png'
22
+ }],
23
+ slip44: 118
24
+ };
25
+ 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 _blockx = __importStar(require("./blockx"));
45
46
  const _bluechip = __importStar(require("./bluechip"));
46
47
  const _bluzelle = __importStar(require("./bluzelle"));
47
48
  const _bostrom = __importStar(require("./bostrom"));
@@ -220,6 +221,7 @@ const chains = [
220
221
  _beezee.chain,
221
222
  _bitcanna.chain,
222
223
  _bitsong.chain,
224
+ _blockx.chain,
223
225
  _bluechip.chain,
224
226
  _bluzelle.chain,
225
227
  _bostrom.chain,
@@ -229,6 +229,25 @@ const info = {
229
229
  tx_page: 'https://mainnet.whispernode.com/empowerchain/tx/${txHash}',
230
230
  account_page: 'https://mainnet.whispernode.com/empowerchain/account/${accountAddress}'
231
231
  }
232
- ]
232
+ ],
233
+ images: [{
234
+ image_sync: {
235
+ chain_name: 'empowerchain',
236
+ base_denom: 'umpwr'
237
+ },
238
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg',
239
+ theme: {
240
+ primary_color_hex: '#00e33a',
241
+ background_color_hex: '#00e33a',
242
+ circle: true
243
+ }
244
+ }, {
245
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.png',
246
+ theme: {
247
+ primary_color_hex: '#00e33a',
248
+ background_color_hex: '#00e33a',
249
+ circle: false
250
+ }
251
+ }]
233
252
  };
234
253
  exports.default = info;
@@ -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 blockx from './blockx';
20
21
  export * as bluechip from './bluechip';
21
22
  export * as bluzelle from './bluzelle';
22
23
  export * as bostrom from './bostrom';
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.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.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mande = 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.heli = 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.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = 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.qfs = 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 = exports.mun = exports.mtgbp = exports.mises = 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.taketitan = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = void 0;
26
+ 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.blockx = 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.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mande = 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.heli = 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 = exports.dydx = void 0;
28
+ exports.shareledger = exports.sge = exports.sentinel = exports.self = 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.qfs = 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 = exports.mun = exports.mtgbp = exports.mises = exports.migaloo = 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.taketitan = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = 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.blockx = __importStar(require("./blockx"));
49
50
  exports.bluechip = __importStar(require("./bluechip"));
50
51
  exports.bluzelle = __importStar(require("./bluzelle"));
51
52
  exports.bostrom = __importStar(require("./bostrom"));
@@ -381,14 +381,18 @@ const info = {
381
381
  }
382
382
  ],
383
383
  logo_URIs: {
384
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png',
384
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
385
385
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg'
386
386
  },
387
387
  images: [{
388
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png',
388
+ image_sync: {
389
+ chain_name: 'stride',
390
+ base_denom: 'ustrd'
391
+ },
392
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png',
389
393
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg',
390
394
  theme: {
391
- primary_color_hex: '#242424'
395
+ primary_color_hex: '#e4047c'
392
396
  }
393
397
  }]
394
398
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.63.27",
3
+ "version": "1.63.29",
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.23",
32
+ "@chain-registry/utils": "^1.46.24",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.45.23"
36
+ "@chain-registry/types": "^0.45.24"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "12a4d3208647b42433ba59b80c78ec7472af41b2"
46
+ "gitHead": "df9139e7c854f3f3c3aae0e681cc78cbae0dacc1"
47
47
  }