chain-registry 1.69.158 → 1.69.160

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.
@@ -119,6 +119,7 @@ import * as _neura from './neura';
119
119
  import * as _neutaro from './neutaro';
120
120
  import * as _neutron from './neutron';
121
121
  import * as _nibiru from './nibiru';
122
+ import * as _nillion from './nillion';
122
123
  import * as _nim from './nim';
123
124
  import * as _noble from './noble';
124
125
  import * as _nolus from './nolus';
@@ -316,6 +317,7 @@ const assets = [
316
317
  _neutaro.assets,
317
318
  _neutron.assets,
318
319
  _nibiru.assets,
320
+ _nillion.assets,
319
321
  _nim.assets,
320
322
  _noble.assets,
321
323
  _nolus.assets,
@@ -119,6 +119,7 @@ import * as _neura from './neura';
119
119
  import * as _neutaro from './neutaro';
120
120
  import * as _neutron from './neutron';
121
121
  import * as _nibiru from './nibiru';
122
+ import * as _nillion from './nillion';
122
123
  import * as _nim from './nim';
123
124
  import * as _noble from './noble';
124
125
  import * as _nolus from './nolus';
@@ -316,6 +317,7 @@ const chains = [
316
317
  _neutaro.chain,
317
318
  _neutron.chain,
318
319
  _nibiru.chain,
320
+ _nillion.chain,
319
321
  _nim.chain,
320
322
  _noble.chain,
321
323
  _nolus.chain,
@@ -119,6 +119,7 @@ export * as neura from './neura';
119
119
  export * as neutaro from './neutaro';
120
120
  export * as neutron from './neutron';
121
121
  export * as nibiru from './nibiru';
122
+ export * as nillion from './nillion';
122
123
  export * as nim from './nim';
123
124
  export * as noble from './noble';
124
125
  export * as nolus from './nolus';
@@ -0,0 +1,24 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'nillion',
4
+ assets: [{
5
+ description: 'NIL - the native token of Nillion',
6
+ denom_units: [{
7
+ denom: 'unil',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'nil',
11
+ exponent: 6
12
+ }],
13
+ base: 'unil',
14
+ name: 'Nillion',
15
+ display: 'nil',
16
+ symbol: 'NIL',
17
+ images: [{
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg'
20
+ }],
21
+ type_asset: 'sdk.coin'
22
+ }]
23
+ };
24
+ export default info;
@@ -0,0 +1,78 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'nillion',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ pretty_name: 'Nillion',
7
+ chain_type: 'cosmos',
8
+ chain_id: 'nillion-1',
9
+ bech32_prefix: 'nillion',
10
+ daemon_name: 'nilchaind',
11
+ node_home: '$HOME/.nillionapp',
12
+ key_algos: ['ed25519'],
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'unil',
17
+ low_gas_price: 0.0001,
18
+ average_gas_price: 0.0001,
19
+ high_gas_price: 0.00025
20
+ }]
21
+ },
22
+ staking: {
23
+ staking_tokens: [{
24
+ denom: 'unil'
25
+ }]
26
+ },
27
+ codebase: {
28
+ git_repo: 'https://github.com/NillionNetwork/nilchain',
29
+ recommended_version: 'v0.2.5',
30
+ compatible_versions: ['v0.2.5'],
31
+ consensus: {
32
+ type: 'cometbft',
33
+ version: 'v0.38.12'
34
+ },
35
+ genesis: {
36
+ genesis_url: 'https://raw.githubusercontent.com/NillionNetwork/networks/main/nillion-1/genesis.json.xz'
37
+ },
38
+ sdk: {
39
+ type: 'cosmos',
40
+ version: 'v0.50.11'
41
+ },
42
+ ibc: {
43
+ type: 'go',
44
+ version: '8.2.1'
45
+ },
46
+ cosmwasm: {
47
+ enabled: false
48
+ }
49
+ },
50
+ apis: {
51
+ rpc: [{
52
+ address: 'https://nillion-rpc.lavenderfive.com',
53
+ provider: 'lavenderfive'
54
+ }],
55
+ rest: [{
56
+ address: 'https://nillion-api.lavenderfive.com',
57
+ provider: 'lavenderfive'
58
+ }],
59
+ grpc: [{
60
+ address: 'https://nillion-grpc.lavenderfive.com',
61
+ provider: 'lavenderfive'
62
+ }]
63
+ },
64
+ explorers: [{
65
+ url: 'https://nillion.explorers.guru',
66
+ tx_page: 'https://nillion.explorers.guru/transaction/${txHash}',
67
+ account_page: 'https://nillion.explorers.guru/account/${accountAddress}'
68
+ }, {
69
+ url: 'https://www.mintscan.io/nillion',
70
+ tx_page: 'https://www.mintscan.io/nillion/tx/${txHash}',
71
+ account_page: 'https://www.mintscan.io/nillion/address/${accountAddress}'
72
+ }],
73
+ images: [{
74
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg',
75
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png'
76
+ }]
77
+ };
78
+ 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;
package/mainnet/assets.js CHANGED
@@ -144,6 +144,7 @@ const _neura = __importStar(require("./neura"));
144
144
  const _neutaro = __importStar(require("./neutaro"));
145
145
  const _neutron = __importStar(require("./neutron"));
146
146
  const _nibiru = __importStar(require("./nibiru"));
147
+ const _nillion = __importStar(require("./nillion"));
147
148
  const _nim = __importStar(require("./nim"));
148
149
  const _noble = __importStar(require("./noble"));
149
150
  const _nolus = __importStar(require("./nolus"));
@@ -341,6 +342,7 @@ const assets = [
341
342
  _neutaro.assets,
342
343
  _neutron.assets,
343
344
  _nibiru.assets,
345
+ _nillion.assets,
344
346
  _nim.assets,
345
347
  _noble.assets,
346
348
  _nolus.assets,
package/mainnet/chains.js CHANGED
@@ -144,6 +144,7 @@ const _neura = __importStar(require("./neura"));
144
144
  const _neutaro = __importStar(require("./neutaro"));
145
145
  const _neutron = __importStar(require("./neutron"));
146
146
  const _nibiru = __importStar(require("./nibiru"));
147
+ const _nillion = __importStar(require("./nillion"));
147
148
  const _nim = __importStar(require("./nim"));
148
149
  const _noble = __importStar(require("./noble"));
149
150
  const _nolus = __importStar(require("./nolus"));
@@ -341,6 +342,7 @@ const chains = [
341
342
  _neutaro.chain,
342
343
  _neutron.chain,
343
344
  _nibiru.chain,
345
+ _nillion.chain,
344
346
  _nim.chain,
345
347
  _noble.chain,
346
348
  _nolus.chain,
@@ -119,6 +119,7 @@ export * as neura from './neura';
119
119
  export * as neutaro from './neutaro';
120
120
  export * as neutron from './neutron';
121
121
  export * as nibiru from './nibiru';
122
+ export * as nillion from './nillion';
122
123
  export * as nim from './nim';
123
124
  export * as noble from './noble';
124
125
  export * as nolus from './nolus';
package/mainnet/named.js CHANGED
@@ -25,8 +25,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.ethereum = void 0;
27
27
  exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = void 0;
28
- 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.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = void 0;
29
- exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = void 0;
28
+ exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = void 0;
29
+ exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = void 0;
30
30
  exports.ethereum = __importStar(require("./ethereum"));
31
31
  exports.rootstock = __importStar(require("./rootstock"));
32
32
  exports.solana = __importStar(require("./solana"));
@@ -148,6 +148,7 @@ exports.neura = __importStar(require("./neura"));
148
148
  exports.neutaro = __importStar(require("./neutaro"));
149
149
  exports.neutron = __importStar(require("./neutron"));
150
150
  exports.nibiru = __importStar(require("./nibiru"));
151
+ exports.nillion = __importStar(require("./nillion"));
151
152
  exports.nim = __importStar(require("./nim"));
152
153
  exports.noble = __importStar(require("./noble"));
153
154
  exports.nolus = __importStar(require("./nolus"));
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'nillion',
6
+ assets: [{
7
+ description: 'NIL - the native token of Nillion',
8
+ denom_units: [{
9
+ denom: 'unil',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'nil',
13
+ exponent: 6
14
+ }],
15
+ base: 'unil',
16
+ name: 'Nillion',
17
+ display: 'nil',
18
+ symbol: 'NIL',
19
+ images: [{
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg'
22
+ }],
23
+ type_asset: 'sdk.coin'
24
+ }]
25
+ };
26
+ 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,80 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'nillion',
6
+ status: 'live',
7
+ network_type: 'mainnet',
8
+ pretty_name: 'Nillion',
9
+ chain_type: 'cosmos',
10
+ chain_id: 'nillion-1',
11
+ bech32_prefix: 'nillion',
12
+ daemon_name: 'nilchaind',
13
+ node_home: '$HOME/.nillionapp',
14
+ key_algos: ['ed25519'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'unil',
19
+ low_gas_price: 0.0001,
20
+ average_gas_price: 0.0001,
21
+ high_gas_price: 0.00025
22
+ }]
23
+ },
24
+ staking: {
25
+ staking_tokens: [{
26
+ denom: 'unil'
27
+ }]
28
+ },
29
+ codebase: {
30
+ git_repo: 'https://github.com/NillionNetwork/nilchain',
31
+ recommended_version: 'v0.2.5',
32
+ compatible_versions: ['v0.2.5'],
33
+ consensus: {
34
+ type: 'cometbft',
35
+ version: 'v0.38.12'
36
+ },
37
+ genesis: {
38
+ genesis_url: 'https://raw.githubusercontent.com/NillionNetwork/networks/main/nillion-1/genesis.json.xz'
39
+ },
40
+ sdk: {
41
+ type: 'cosmos',
42
+ version: 'v0.50.11'
43
+ },
44
+ ibc: {
45
+ type: 'go',
46
+ version: '8.2.1'
47
+ },
48
+ cosmwasm: {
49
+ enabled: false
50
+ }
51
+ },
52
+ apis: {
53
+ rpc: [{
54
+ address: 'https://nillion-rpc.lavenderfive.com',
55
+ provider: 'lavenderfive'
56
+ }],
57
+ rest: [{
58
+ address: 'https://nillion-api.lavenderfive.com',
59
+ provider: 'lavenderfive'
60
+ }],
61
+ grpc: [{
62
+ address: 'https://nillion-grpc.lavenderfive.com',
63
+ provider: 'lavenderfive'
64
+ }]
65
+ },
66
+ explorers: [{
67
+ url: 'https://nillion.explorers.guru',
68
+ tx_page: 'https://nillion.explorers.guru/transaction/${txHash}',
69
+ account_page: 'https://nillion.explorers.guru/account/${accountAddress}'
70
+ }, {
71
+ url: 'https://www.mintscan.io/nillion',
72
+ tx_page: 'https://www.mintscan.io/nillion/tx/${txHash}',
73
+ account_page: 'https://www.mintscan.io/nillion/address/${accountAddress}'
74
+ }],
75
+ images: [{
76
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.svg',
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nillion/images/nil.png'
78
+ }]
79
+ };
80
+ 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.69.158",
3
+ "version": "1.69.160",
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,11 +29,11 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@chain-registry/utils": "^1.51.97",
32
+ "@chain-registry/utils": "^1.51.98",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.50.97"
36
+ "@chain-registry/types": "^0.50.98"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "f8da4c8a4083fb2ff69215c843047dd6ad8c2733"
46
+ "gitHead": "3192e8f2ba4ed43ed97b679470a12396e7483c3d"
47
47
  }