@polkadot/networks 8.2.3-13 → 8.2.3-14
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/defaults.cjs +1 -1
- package/defaults.js +1 -1
- package/detectOther.cjs +1 -1
- package/detectOther.js +1 -1
- package/genesis.cjs +1 -1
- package/genesis.js +1 -1
- package/index.js +1 -1
- package/interfaces.cjs +1 -1
- package/interfaces.js +1 -1
- package/package.json +4 -4
- package/packageInfo.cjs +1 -1
- package/packageInfo.js +1 -1
- package/substrate.cjs +1 -1
- package/substrate.js +1 -1
package/defaults.cjs
CHANGED
|
@@ -13,7 +13,7 @@ exports.substrateRegistry = exports.knownTestnet = exports.knownLedger = exports
|
|
|
13
13
|
|
|
14
14
|
var _genesis = require("./genesis.cjs");
|
|
15
15
|
|
|
16
|
-
// Copyright 2017-
|
|
16
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
17
17
|
// SPDX-License-Identifier: Apache-2.0
|
|
18
18
|
const substrateRegistry = 'https://raw.githubusercontent.com/paritytech/ss58-registry/main/ss58-registry.json'; // these are icon overrides
|
|
19
19
|
|
package/defaults.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2017-
|
|
1
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
export { knownGenesis } from "./genesis.js";
|
|
4
4
|
export const substrateRegistry = 'https://raw.githubusercontent.com/paritytech/ss58-registry/main/ss58-registry.json'; // these are icon overrides
|
package/detectOther.cjs
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
// Copyright 2017-
|
|
7
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
8
8
|
// SPDX-License-Identifier: Apache-2.0
|
|
9
9
|
var _default = [];
|
|
10
10
|
exports.default = _default;
|
package/detectOther.js
CHANGED
package/genesis.cjs
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.knownGenesis = void 0;
|
|
7
|
-
// Copyright 2017-
|
|
7
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
8
8
|
// SPDX-License-Identifier: Apache-2.0
|
|
9
9
|
// NOTE: In the case where the network was hard-spooned and multiple genesisHashes
|
|
10
10
|
// are provided, it needs to be in reverse order, i.e. most-recent first, oldest
|
package/genesis.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2017-
|
|
1
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
// NOTE: In the case where the network was hard-spooned and multiple genesisHashes
|
|
4
4
|
// are provided, it needs to be in reverse order, i.e. most-recent first, oldest
|
package/index.js
CHANGED
package/interfaces.cjs
CHANGED
|
@@ -9,7 +9,7 @@ var _defaults = require("./defaults.cjs");
|
|
|
9
9
|
|
|
10
10
|
var _substrate = require("./substrate.cjs");
|
|
11
11
|
|
|
12
|
-
// Copyright 2017-
|
|
12
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
13
13
|
// SPDX-License-Identifier: Apache-2.0
|
|
14
14
|
// These are known prefixes that are not sorted
|
|
15
15
|
const UNSORTED = [0, 2, 42];
|
package/interfaces.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2017-
|
|
1
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
import { knownGenesis, knownIcon, knownLedger, knownTestnet } from "./defaults.js";
|
|
4
4
|
import { knownSubstrate } from "./substrate.js"; // These are known prefixes that are not sorted
|
package/package.json
CHANGED
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
},
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"type": "module",
|
|
20
|
-
"version": "8.2.3-
|
|
20
|
+
"version": "8.2.3-14",
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/runtime": "^7.16.7"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@polkadot/hw-ledger": "8.2.3-
|
|
27
|
-
"@polkadot/util": "8.2.3-
|
|
28
|
-
"@polkadot/x-fetch": "8.2.3-
|
|
26
|
+
"@polkadot/hw-ledger": "8.2.3-14",
|
|
27
|
+
"@polkadot/util": "8.2.3-14",
|
|
28
|
+
"@polkadot/x-fetch": "8.2.3-14"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
package/packageInfo.cjs
CHANGED
package/packageInfo.js
CHANGED
package/substrate.cjs
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.knownSubstrate = void 0;
|
|
7
|
-
// Copyright 2017-
|
|
7
|
+
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
8
8
|
// SPDX-License-Identifier: Apache-2.0
|
|
9
9
|
//
|
|
10
10
|
// Auto-generated by yarn networks:sync (via scripts/fromSubstrate.mjs)
|
package/substrate.js
CHANGED