@polkadot/networks 10.1.12 → 10.1.13

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.
@@ -48,6 +48,7 @@ const knownGenesis = {
48
48
  ],
49
49
 
50
50
  'nodle-para': ['0x97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21'],
51
+ origintrail: ['0xe7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174'],
51
52
  parallel: ['0xe61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97'],
52
53
  phala: ['0x1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736'],
53
54
  picasso: ['0xe8e7f0f4c4f5a00720b4821dbfddefea7490bcf0b19009961cc46957984e2c1c'],
@@ -30,6 +30,7 @@ const knownLedger = {
30
30
  khala: 0x000001b2,
31
31
  kusama: 0x000001b2,
32
32
  'nodle-para': 0x000003eb,
33
+ origintrail: 0x00000162,
33
34
  parallel: 0x00000162,
34
35
  phala: 0x00000162,
35
36
  polkadex: 0x0000031f,
@@ -13,6 +13,6 @@ const packageInfo = {
13
13
  name: '@polkadot/networks',
14
14
  path: typeof __dirname === 'string' ? __dirname : 'auto',
15
15
  type: 'cjs',
16
- version: '10.1.12'
16
+ version: '10.1.13'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
@@ -42,6 +42,7 @@ export const knownGenesis = {
42
42
  ],
43
43
 
44
44
  'nodle-para': ['0x97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21'],
45
+ origintrail: ['0xe7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174'],
45
46
  parallel: ['0xe61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97'],
46
47
  phala: ['0x1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736'],
47
48
  picasso: ['0xe8e7f0f4c4f5a00720b4821dbfddefea7490bcf0b19009961cc46957984e2c1c'],
@@ -24,6 +24,7 @@ export const knownLedger = {
24
24
  khala: 0x000001b2,
25
25
  kusama: 0x000001b2,
26
26
  'nodle-para': 0x000003eb,
27
+ origintrail: 0x00000162,
27
28
  parallel: 0x00000162,
28
29
  phala: 0x00000162,
29
30
  polkadex: 0x0000031f,
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "sideEffects": false,
19
19
  "type": "module",
20
- "version": "10.1.12",
20
+ "version": "10.1.13",
21
21
  "main": "./cjs/index.js",
22
22
  "module": "./index.js",
23
23
  "types": "./index.d.ts",
@@ -88,7 +88,7 @@
88
88
  },
89
89
  "dependencies": {
90
90
  "@babel/runtime": "^7.20.1",
91
- "@polkadot/util": "10.1.12",
91
+ "@polkadot/util": "10.1.13",
92
92
  "@substrate/ss58-registry": "^1.34.0"
93
93
  }
94
94
  }
package/packageInfo.js CHANGED
@@ -7,5 +7,5 @@ export const packageInfo = {
7
7
  name: '@polkadot/networks',
8
8
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
9
9
  type: 'esm',
10
- version: '10.1.12'
10
+ version: '10.1.13'
11
11
  };
package/types.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import type { RegistryEntry } from '@substrate/ss58-registry';
2
- export declare type Icon = 'beachball' | 'empty' | 'jdenticon' | 'polkadot' | 'substrate';
3
- export declare type KnownIcon = Record<string, Icon>;
4
- export declare type KnownLedger = Record<string, number>;
5
- export declare type KnownGenesis = Record<string, string[]>;
6
- export declare type KnownSubstrate = RegistryEntry;
7
- export declare type KnownTestnet = Record<string, true>;
2
+ export type Icon = 'beachball' | 'empty' | 'jdenticon' | 'polkadot' | 'substrate';
3
+ export type KnownIcon = Record<string, Icon>;
4
+ export type KnownLedger = Record<string, number>;
5
+ export type KnownGenesis = Record<string, string[]>;
6
+ export type KnownSubstrate = RegistryEntry;
7
+ export type KnownTestnet = Record<string, true>;
8
8
  export interface SubstrateNetwork extends KnownSubstrate {
9
9
  genesisHash: string[];
10
10
  hasLedgerSupport: boolean;