@polkadot/types-known 8.11.2 → 8.12.2
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/cjs/packageInfo.js +1 -1
- package/cjs/spec/kusama.js +2 -0
- package/cjs/spec/polkadot.js +1 -0
- package/cjs/spec/westend.js +1 -0
- package/package.json +6 -7
- package/packageInfo.js +1 -1
- package/spec/kusama.js +2 -0
- package/spec/polkadot.js +1 -0
- package/spec/westend.js +1 -0
- package/mod.d.ts +0 -1
package/cjs/packageInfo.js
CHANGED
package/cjs/spec/kusama.js
CHANGED
|
@@ -26,6 +26,7 @@ const addrIndicesTypes = {
|
|
|
26
26
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
27
27
|
Address: 'LookupSource',
|
|
28
28
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
29
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
29
30
|
RawSolution: 'RawSolutionWith16',
|
|
30
31
|
Keys: 'SessionKeys5',
|
|
31
32
|
LookupSource: 'IndicesLookupSource',
|
|
@@ -35,6 +36,7 @@ const addrAccountIdTypes = {
|
|
|
35
36
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
36
37
|
Address: 'AccountId',
|
|
37
38
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
39
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
38
40
|
RawSolution: 'RawSolutionWith16',
|
|
39
41
|
Keys: 'SessionKeys5',
|
|
40
42
|
LookupSource: 'AccountId',
|
package/cjs/spec/polkadot.js
CHANGED
|
@@ -32,6 +32,7 @@ const sharedTypes = {
|
|
|
32
32
|
const addrAccountIdTypes = {
|
|
33
33
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
34
34
|
Address: 'AccountId',
|
|
35
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
35
36
|
Keys: 'SessionKeys5',
|
|
36
37
|
LookupSource: 'AccountId',
|
|
37
38
|
ValidatorPrefs: 'ValidatorPrefsWithCommission'
|
package/cjs/spec/westend.js
CHANGED
|
@@ -28,6 +28,7 @@ const addrAccountIdTypes = {
|
|
|
28
28
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
29
29
|
Address: 'AccountId',
|
|
30
30
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
31
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
31
32
|
LookupSource: 'AccountId',
|
|
32
33
|
Keys: 'SessionKeys5',
|
|
33
34
|
RawSolution: 'RawSolutionWith16',
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./cjs/detectPackage.js"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
-
"version": "8.
|
|
23
|
+
"version": "8.12.2",
|
|
24
24
|
"main": "./cjs/index.js",
|
|
25
25
|
"module": "./index.js",
|
|
26
26
|
"types": "./index.d.ts",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"require": "./cjs/detectPackage.js",
|
|
53
53
|
"default": "./detectPackage.js"
|
|
54
54
|
},
|
|
55
|
-
"./mod.d.ts": "./mod.d.ts",
|
|
56
55
|
"./package.json": "./package.json",
|
|
57
56
|
"./packageInfo.js": {
|
|
58
57
|
"types": "./packageInfo.d.ts",
|
|
@@ -147,10 +146,10 @@
|
|
|
147
146
|
},
|
|
148
147
|
"dependencies": {
|
|
149
148
|
"@babel/runtime": "^7.18.6",
|
|
150
|
-
"@polkadot/networks": "^
|
|
151
|
-
"@polkadot/types": "8.
|
|
152
|
-
"@polkadot/types-codec": "8.
|
|
153
|
-
"@polkadot/types-create": "8.
|
|
154
|
-
"@polkadot/util": "^
|
|
149
|
+
"@polkadot/networks": "^10.0.2",
|
|
150
|
+
"@polkadot/types": "8.12.2",
|
|
151
|
+
"@polkadot/types-codec": "8.12.2",
|
|
152
|
+
"@polkadot/types-create": "8.12.2",
|
|
153
|
+
"@polkadot/util": "^10.0.2"
|
|
155
154
|
}
|
|
156
155
|
}
|
package/packageInfo.js
CHANGED
|
@@ -5,5 +5,5 @@ export const packageInfo = {
|
|
|
5
5
|
name: '@polkadot/types-known',
|
|
6
6
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
7
7
|
type: 'esm',
|
|
8
|
-
version: '8.
|
|
8
|
+
version: '8.12.2'
|
|
9
9
|
};
|
package/spec/kusama.js
CHANGED
|
@@ -17,6 +17,7 @@ const addrIndicesTypes = {
|
|
|
17
17
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
18
18
|
Address: 'LookupSource',
|
|
19
19
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
20
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
20
21
|
RawSolution: 'RawSolutionWith16',
|
|
21
22
|
Keys: 'SessionKeys5',
|
|
22
23
|
LookupSource: 'IndicesLookupSource',
|
|
@@ -26,6 +27,7 @@ const addrAccountIdTypes = {
|
|
|
26
27
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
27
28
|
Address: 'AccountId',
|
|
28
29
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
30
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
29
31
|
RawSolution: 'RawSolutionWith16',
|
|
30
32
|
Keys: 'SessionKeys5',
|
|
31
33
|
LookupSource: 'AccountId',
|
package/spec/polkadot.js
CHANGED
|
@@ -24,6 +24,7 @@ const sharedTypes = {
|
|
|
24
24
|
const addrAccountIdTypes = {
|
|
25
25
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
26
26
|
Address: 'AccountId',
|
|
27
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
27
28
|
Keys: 'SessionKeys5',
|
|
28
29
|
LookupSource: 'AccountId',
|
|
29
30
|
ValidatorPrefs: 'ValidatorPrefsWithCommission'
|
package/spec/westend.js
CHANGED
|
@@ -19,6 +19,7 @@ const addrAccountIdTypes = {
|
|
|
19
19
|
AccountInfo: 'AccountInfoWithRefCount',
|
|
20
20
|
Address: 'AccountId',
|
|
21
21
|
CompactAssignments: 'CompactAssignmentsWith16',
|
|
22
|
+
DispatchErrorModule: 'DispatchErrorModuleU8',
|
|
22
23
|
LookupSource: 'AccountId',
|
|
23
24
|
Keys: 'SessionKeys5',
|
|
24
25
|
RawSolution: 'RawSolutionWith16',
|
package/mod.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './index';
|