@polkadot/networks 8.1.3-15 → 8.1.3-19
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 +3 -0
- package/defaults.js +3 -0
- package/package.json +3 -3
- package/packageInfo.cjs +1 -1
- package/packageInfo.js +1 -1
package/defaults.cjs
CHANGED
|
@@ -36,6 +36,7 @@ const knownGenesis = {
|
|
|
36
36
|
plasm: ['0x3e86364d4b4894021cb2a0390bcf2feb5517d5292f2de2bb9404227e908b0b8b'],
|
|
37
37
|
polkadot: ['0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3'],
|
|
38
38
|
polymesh: ['0x6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063'],
|
|
39
|
+
sora: ['0x7e4e32d0feafd4f9c9414b0be86373f9a1efa904809b683453a9af6856d38ad5'],
|
|
39
40
|
stafi: ['0x290a4149f09ea0e402c74c1c7e96ae4239588577fe78932f94f5404c68243d80'],
|
|
40
41
|
statemine: ['0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a'],
|
|
41
42
|
subsocial: ['0x0bd72c1c305172e1275278aaeb3f161e02eccb7a819e63f62d47bd53a28189f8']
|
|
@@ -46,6 +47,7 @@ const knownIcon = {
|
|
|
46
47
|
centrifuge: 'polkadot',
|
|
47
48
|
kusama: 'polkadot',
|
|
48
49
|
polkadot: 'polkadot',
|
|
50
|
+
sora: 'polkadot',
|
|
49
51
|
statemine: 'polkadot',
|
|
50
52
|
statemint: 'polkadot',
|
|
51
53
|
westmint: 'polkadot'
|
|
@@ -65,6 +67,7 @@ const knownLedger = {
|
|
|
65
67
|
'nodle-chain': 0x000003eb,
|
|
66
68
|
polkadot: 0x00000162,
|
|
67
69
|
polymesh: 0x00000253,
|
|
70
|
+
sora: 0x00000269,
|
|
68
71
|
statemine: 0x000001b2 // common-good on Kusama, shares derivation
|
|
69
72
|
|
|
70
73
|
}; // testnets should not allow selection
|
package/defaults.js
CHANGED
|
@@ -29,6 +29,7 @@ export const knownGenesis = {
|
|
|
29
29
|
plasm: ['0x3e86364d4b4894021cb2a0390bcf2feb5517d5292f2de2bb9404227e908b0b8b'],
|
|
30
30
|
polkadot: ['0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3'],
|
|
31
31
|
polymesh: ['0x6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063'],
|
|
32
|
+
sora: ['0x7e4e32d0feafd4f9c9414b0be86373f9a1efa904809b683453a9af6856d38ad5'],
|
|
32
33
|
stafi: ['0x290a4149f09ea0e402c74c1c7e96ae4239588577fe78932f94f5404c68243d80'],
|
|
33
34
|
statemine: ['0x48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a'],
|
|
34
35
|
subsocial: ['0x0bd72c1c305172e1275278aaeb3f161e02eccb7a819e63f62d47bd53a28189f8']
|
|
@@ -38,6 +39,7 @@ export const knownIcon = {
|
|
|
38
39
|
centrifuge: 'polkadot',
|
|
39
40
|
kusama: 'polkadot',
|
|
40
41
|
polkadot: 'polkadot',
|
|
42
|
+
sora: 'polkadot',
|
|
41
43
|
statemine: 'polkadot',
|
|
42
44
|
statemint: 'polkadot',
|
|
43
45
|
westmint: 'polkadot'
|
|
@@ -56,6 +58,7 @@ export const knownLedger = {
|
|
|
56
58
|
'nodle-chain': 0x000003eb,
|
|
57
59
|
polkadot: 0x00000162,
|
|
58
60
|
polymesh: 0x00000253,
|
|
61
|
+
sora: 0x00000269,
|
|
59
62
|
statemine: 0x000001b2 // common-good on Kusama, shares derivation
|
|
60
63
|
|
|
61
64
|
}; // testnets should not allow selection
|
package/package.json
CHANGED
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
},
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"type": "module",
|
|
20
|
-
"version": "8.1.3-
|
|
20
|
+
"version": "8.1.3-19",
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/runtime": "^7.16.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@polkadot/util": "8.1.3-
|
|
27
|
-
"@polkadot/x-fetch": "8.1.3-
|
|
26
|
+
"@polkadot/util": "8.1.3-19",
|
|
27
|
+
"@polkadot/x-fetch": "8.1.3-19"
|
|
28
28
|
},
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
package/packageInfo.cjs
CHANGED
package/packageInfo.js
CHANGED