@polkadot/networks 7.4.2-3 → 7.4.2-4
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/interfaces.cjs +1 -1
- package/interfaces.js +1 -1
- package/package.json +3 -3
- package/packageInfo.cjs +1 -1
- package/packageInfo.js +1 -1
package/interfaces.cjs
CHANGED
|
@@ -21,7 +21,7 @@ const allNetworks = _substrate.knownSubstrate.map(o => {
|
|
|
21
21
|
n.hasLedgerSupport = !!n.slip44;
|
|
22
22
|
n.genesisHash = _defaults.knownGenesis[network] || [];
|
|
23
23
|
n.icon = _defaults.knownIcon[network] || 'substrate';
|
|
24
|
-
n.isIgnored = !network || !!_defaults.knownTestnet[network] ||
|
|
24
|
+
n.isIgnored = !network || !!_defaults.knownTestnet[network] || !o.standardAccount;
|
|
25
25
|
return n;
|
|
26
26
|
}); // The list of available/claimed prefixes
|
|
27
27
|
// - no testnets
|
package/interfaces.js
CHANGED
|
@@ -11,7 +11,7 @@ export const allNetworks = knownSubstrate.map(o => {
|
|
|
11
11
|
n.hasLedgerSupport = !!n.slip44;
|
|
12
12
|
n.genesisHash = knownGenesis[network] || [];
|
|
13
13
|
n.icon = knownIcon[network] || 'substrate';
|
|
14
|
-
n.isIgnored = !network || !!knownTestnet[network] ||
|
|
14
|
+
n.isIgnored = !network || !!knownTestnet[network] || !o.standardAccount;
|
|
15
15
|
return n;
|
|
16
16
|
}); // The list of available/claimed prefixes
|
|
17
17
|
// - no testnets
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polkadot/networks",
|
|
3
|
-
"version": "7.4.2-
|
|
3
|
+
"version": "7.4.2-4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A list of all available Substrate networks and their applicable prefixes",
|
|
6
6
|
"main": "index.js",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"@babel/runtime": "^7.15.4"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@polkadot/util": "7.4.2-
|
|
23
|
-
"@polkadot/x-fetch": "7.4.2-
|
|
22
|
+
"@polkadot/util": "7.4.2-4",
|
|
23
|
+
"@polkadot/x-fetch": "7.4.2-4"
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
package/packageInfo.cjs
CHANGED
package/packageInfo.js
CHANGED