@polkadot/networks 12.2.2 → 12.3.1

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.
@@ -151,5 +151,8 @@ exports.knownGenesis = {
151
151
  ],
152
152
  xxnetwork: [
153
153
  '0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa'
154
+ ],
155
+ zeitgeist: [
156
+ '0x1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060'
154
157
  ]
155
158
  };
@@ -36,5 +36,6 @@ exports.knownLedger = {
36
36
  ternoa: 0x00003e3,
37
37
  unique: 0x00000162,
38
38
  vtb: 0x000002b6,
39
- xxnetwork: 0x000007a3
39
+ xxnetwork: 0x000007a3,
40
+ zeitgeist: 0x00000162
40
41
  };
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageInfo = void 0;
4
- exports.packageInfo = { name: '@polkadot/networks', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '12.2.2' };
4
+ exports.packageInfo = { name: '@polkadot/networks', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '12.3.1' };
@@ -148,5 +148,8 @@ export const knownGenesis = {
148
148
  ],
149
149
  xxnetwork: [
150
150
  '0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa'
151
+ ],
152
+ zeitgeist: [
153
+ '0x1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060'
151
154
  ]
152
155
  };
@@ -33,5 +33,6 @@ export const knownLedger = {
33
33
  ternoa: 0x00003e3,
34
34
  unique: 0x00000162,
35
35
  vtb: 0x000002b6,
36
- xxnetwork: 0x000007a3
36
+ xxnetwork: 0x000007a3,
37
+ zeitgeist: 0x00000162
37
38
  };
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "sideEffects": false,
17
17
  "type": "module",
18
- "version": "12.2.2",
18
+ "version": "12.3.1",
19
19
  "main": "./cjs/index.js",
20
20
  "module": "./index.js",
21
21
  "types": "./index.d.ts",
@@ -100,7 +100,7 @@
100
100
  }
101
101
  },
102
102
  "dependencies": {
103
- "@polkadot/util": "12.2.2",
103
+ "@polkadot/util": "12.3.1",
104
104
  "@substrate/ss58-registry": "^1.40.0",
105
105
  "tslib": "^2.5.3"
106
106
  }
package/packageInfo.js CHANGED
@@ -1 +1 @@
1
- export const packageInfo = { name: '@polkadot/networks', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '12.2.2' };
1
+ export const packageInfo = { name: '@polkadot/networks', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '12.3.1' };
package/types.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import type { RegistryEntry } from '@substrate/ss58-registry';
2
+ import type { HexString } from '@polkadot/util/types';
2
3
  export type Icon = 'beachball' | 'empty' | 'jdenticon' | 'polkadot' | 'substrate';
3
4
  export type KnownIcon = Record<string, Icon>;
4
5
  export type KnownLedger = Record<string, number>;
5
- export type KnownGenesis = Record<string, string[]>;
6
+ export type KnownGenesis = Record<string, HexString[]>;
6
7
  export type KnownSubstrate = RegistryEntry;
7
8
  export type KnownTestnet = Record<string, true>;
8
9
  export interface SubstrateNetwork extends KnownSubstrate {