Compare commits

..
4 Commits
Author SHA1 Message Date
github-actions[bot] ebb9f055c1 [CI Skip] release/stable 9.11.2
skip-checks: true
2023-01-13 08:14:10 +00:00
Jaco 2f34c0c6e8 9.11.2 (#5415) 2023-01-13 10:05:41 +02:00
github-actions[bot] 41617c1dfb [CI Skip] bump/beta 9.11.2-0-x
skip-checks: true
2023-01-13 07:52:29 +00:00
Jaco 6ff3577853 Adjust democracy preimages retrieval (#5413)
* Adjust democracy preimages retrieval

* Remove log
2023-01-13 09:41:52 +02:00
36 changed files with 505 additions and 532 deletions
+7
View File
@@ -1,5 +1,12 @@
# CHANGELOG
## 9.11.2 Jan 13, 2023
Changes:
- Ensure `derive.democracy.preimages` retrieves correctly from (current-gen) `preimage`
## 9.11.1 Jan 8, 2023
- **Breaking change** For users of `ScProvider` you now need to explicitly pass `@substrate/connect` as a parameter. This means the code needs to be adjusted as follows -
+1 -1
View File
@@ -1,4 +1,4 @@
3316 Jaco 9.11.1 (#5407)
3318 Jaco 9.11.2 (#5415)
83 Amaury Martiny StatementKind: Regular and Saft (#2303)
37 Keith Ingram Update contract types and rpc (#4541)
35 Stefanie Doll Updated child storage parameters (#1709)
+4 -4
View File
@@ -11,10 +11,10 @@
},
"sideEffects": false,
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"versions": {
"git": "9.11.1",
"npm": "9.11.1"
"git": "9.11.2",
"npm": "9.11.2"
},
"workspaces": [
"packages/*"
@@ -39,7 +39,7 @@
"@babel/core": "^7.20.12",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.7",
"@polkadot/dev": "^0.67.177",
"@polkadot/dev": "^0.67.178",
"@polkadot/typegen": "workspace:packages/typegen",
"@types/jest": "^29.2.5",
"copyfiles": "^2.4.1"
+8 -8
View File
@@ -20,18 +20,18 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/api-base": "9.11.1",
"@polkadot/rpc-augment": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-augment": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/util": "^10.2.3"
"@polkadot/api-base": "9.11.2",
"@polkadot/rpc-augment": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-augment": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/util": "^10.2.4"
},
"devDependencies": {
"@polkadot/types-support": "9.11.1"
"@polkadot/types-support": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/api-augment', path: 'auto', type: 'auto', version: '9.11.2' };
+4 -4
View File
@@ -20,13 +20,13 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/rpc-core": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/rpc-core": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/util": "^10.2.4",
"rxjs": "^7.8.0"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/api-base', path: 'auto', type: 'auto', version: '9.11.2' };
+9 -9
View File
@@ -20,20 +20,20 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/api": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/types-create": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/api": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/types-create": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@polkadot/api-augment": "9.11.1",
"@polkadot/keyring": "^10.2.3"
"@polkadot/api-augment": "9.11.2",
"@polkadot/keyring": "^10.2.4"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/api-contract', path: 'auto', type: 'auto', version: '9.11.2' };
+14 -14
View File
@@ -20,25 +20,25 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/api": "9.11.1",
"@polkadot/api-augment": "9.11.1",
"@polkadot/api-base": "9.11.1",
"@polkadot/rpc-core": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/api": "9.11.2",
"@polkadot/api-augment": "9.11.2",
"@polkadot/api-base": "9.11.2",
"@polkadot/rpc-core": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@polkadot/api": "9.11.1",
"@polkadot/api-augment": "9.11.1",
"@polkadot/rpc-augment": "9.11.1",
"@polkadot/rpc-provider": "9.11.1",
"@polkadot/types-support": "9.11.1"
"@polkadot/api": "9.11.2",
"@polkadot/api-augment": "9.11.2",
"@polkadot/rpc-augment": "9.11.2",
"@polkadot/rpc-provider": "9.11.2",
"@polkadot/types-support": "9.11.2"
}
}
+12 -5
View File
@@ -76,7 +76,9 @@ function parseImage (api: DeriveApi, [proposalHash, status, bytes]: [HexString,
return { at: BN_ZERO, balance, proposal, proposalHash, proposer };
}
function getDemocracyImages (api: DeriveApi, hashes: (Hash | Uint8Array | string)[]): Observable<(DeriveProposalImage | undefined)[]> {
function getDemocracyImages (api: DeriveApi, bounded: (Hash | Uint8Array | string | FrameSupportPreimagesBounded)[]): Observable<(DeriveProposalImage | undefined)[]> {
const hashes = bounded.map((b) => getImageHashBounded(b));
return api.query.democracy.preimages.multi<Option<PreimageStatus>>(hashes).pipe(
map((images): (DeriveProposalImage | undefined)[] =>
images.map((imageOpt) => parseDemocracy(api, imageOpt))
@@ -86,6 +88,7 @@ function getDemocracyImages (api: DeriveApi, hashes: (Hash | Uint8Array | string
function getImages (api: DeriveApi, bounded: (FrameSupportPreimagesBounded | Uint8Array | string)[]): Observable<(DeriveProposalImage | undefined)[]> {
const hashes = bounded.map((b) => getImageHashBounded(b));
const bytesType = api.registry.lookup.getTypeDef(api.query.preimage.preimageFor.creator.meta.type.asMap.key).type;
return api.query.preimage.statusFor.multi(hashes).pipe(
switchMap((optStatus) => {
@@ -93,9 +96,13 @@ function getImages (api: DeriveApi, bounded: (FrameSupportPreimagesBounded | Uin
const keys = statuses
.map((s, i) =>
s
? s.isRequested
? [hashes[i], s.asRequested.len.unwrapOr(0)]
: [hashes[i], s.asUnrequested.len]
? bytesType === 'H256'
// first generation
? hashes[i]
// current generation (H256,u32)
: s.isRequested
? [hashes[i], s.asRequested.len.unwrapOr(0)]
: [hashes[i], s.asUnrequested.len]
: null
)
.filter((p) => !!p);
@@ -121,7 +128,7 @@ export function preimages (instanceId: string, api: DeriveApi): (hashes: (Hash |
return memo(instanceId, (hashes: (Hash | Uint8Array | string | FrameSupportPreimagesBounded)[]): Observable<(DeriveProposalImage | undefined)[]> =>
hashes.length
? isFunction(api.query.democracy.preimages)
? getDemocracyImages(api, hashes as string[])
? getDemocracyImages(api, hashes)
: isFunction(api.query.preimage.preimageFor)
? getImages(api, hashes)
: of([])
@@ -51,14 +51,14 @@ function parse ([proposals, images, optDepositors]: Result): DeriveProposal[] {
export function proposals (instanceId: string, api: DeriveApi): () => Observable<DeriveProposal[]> {
return memo(instanceId, (): Observable<DeriveProposal[]> =>
isFunction(api.query.democracy?.publicProps) && isFunction(api.query.democracy?.preimages)
isFunction(api.query.democracy?.publicProps)
? api.query.democracy.publicProps().pipe(
switchMap((proposals) =>
proposals.length
? combineLatest([
of(proposals),
api.derive.democracy.preimages(
proposals.map(([, hash]) => hash as unknown as Uint8Array)
proposals.map(([, hash]) => hash)
),
api.query.democracy.depositOf.multi(
proposals.map(([index]) => index)
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/api-derive', path: 'auto', type: 'auto', version: '9.11.2' };
+17 -17
View File
@@ -20,29 +20,29 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/api-augment": "9.11.1",
"@polkadot/api-base": "9.11.1",
"@polkadot/api-derive": "9.11.1",
"@polkadot/keyring": "^10.2.3",
"@polkadot/rpc-augment": "9.11.1",
"@polkadot/rpc-core": "9.11.1",
"@polkadot/rpc-provider": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-augment": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/types-create": "9.11.1",
"@polkadot/types-known": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/api-augment": "9.11.2",
"@polkadot/api-base": "9.11.2",
"@polkadot/api-derive": "9.11.2",
"@polkadot/keyring": "^10.2.4",
"@polkadot/rpc-augment": "9.11.2",
"@polkadot/rpc-core": "9.11.2",
"@polkadot/rpc-provider": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-augment": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/types-create": "9.11.2",
"@polkadot/types-known": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"eventemitter3": "^4.0.7",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@polkadot/api-augment": "9.11.1",
"@polkadot/types-support": "9.11.1"
"@polkadot/api-augment": "9.11.2",
"@polkadot/types-support": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/api', path: 'auto', type: 'auto', version: '9.11.2' };
+5 -5
View File
@@ -20,13 +20,13 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/rpc-core": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/util": "^10.2.3"
"@polkadot/rpc-core": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/util": "^10.2.4"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/rpc-augment', path: 'auto', type: 'auto', version: '9.11.2' };
+7 -7
View File
@@ -20,18 +20,18 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/rpc-augment": "9.11.1",
"@polkadot/rpc-provider": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/rpc-augment": "9.11.2",
"@polkadot/rpc-provider": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/util": "^10.2.4",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@polkadot/keyring": "^10.2.3",
"@polkadot/rpc-augment": "9.11.1"
"@polkadot/keyring": "^10.2.4",
"@polkadot/rpc-augment": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/rpc-core', path: 'auto', type: 'auto', version: '9.11.2' };
+10 -10
View File
@@ -20,21 +20,21 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/keyring": "^10.2.3",
"@polkadot/types": "9.11.1",
"@polkadot/types-support": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/x-fetch": "^10.2.3",
"@polkadot/x-global": "^10.2.3",
"@polkadot/x-ws": "^10.2.3",
"@polkadot/keyring": "^10.2.4",
"@polkadot/types": "9.11.2",
"@polkadot/types-support": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"@polkadot/x-fetch": "^10.2.4",
"@polkadot/x-global": "^10.2.4",
"@polkadot/x-ws": "^10.2.4",
"eventemitter3": "^4.0.7",
"mock-socket": "^9.1.5",
"nock": "^13.2.9"
"nock": "^13.3.0"
},
"devDependencies": {
"@substrate/connect": "0.7.18"
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/rpc-provider', path: 'auto', type: 'auto', version: '9.11.2' };
+13 -13
View File
@@ -20,7 +20,7 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"bin": {
"polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.cjs",
@@ -33,18 +33,18 @@
"@babel/core": "^7.20.12",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.7",
"@polkadot/api": "9.11.1",
"@polkadot/api-augment": "9.11.1",
"@polkadot/rpc-augment": "9.11.1",
"@polkadot/rpc-provider": "9.11.1",
"@polkadot/types": "9.11.1",
"@polkadot/types-augment": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/types-create": "9.11.1",
"@polkadot/types-support": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/x-ws": "^10.2.3",
"@polkadot/api": "9.11.2",
"@polkadot/api-augment": "9.11.2",
"@polkadot/rpc-augment": "9.11.2",
"@polkadot/rpc-provider": "9.11.2",
"@polkadot/types": "9.11.2",
"@polkadot/types-augment": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/types-create": "9.11.2",
"@polkadot/types-support": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"@polkadot/x-ws": "^10.2.4",
"handlebars": "^4.7.7",
"websocket": "^1.0.34",
"yargs": "^17.6.2"
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/typegen', path: 'auto', type: 'auto', version: '9.11.2' };
+4 -4
View File
@@ -20,12 +20,12 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/types": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/util": "^10.2.3"
"@polkadot/types": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/util": "^10.2.4"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types-augment', path: 'auto', type: 'auto', version: '9.11.2' };
+7 -7
View File
@@ -20,17 +20,17 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/util": "^10.2.3",
"@polkadot/x-bigint": "^10.2.3"
"@polkadot/util": "^10.2.4",
"@polkadot/x-bigint": "^10.2.4"
},
"devDependencies": {
"@polkadot/types": "9.11.1",
"@polkadot/types-augment": "9.11.1",
"@polkadot/types-support": "9.11.1",
"@polkadot/util-crypto": "^10.2.3"
"@polkadot/types": "9.11.2",
"@polkadot/types-augment": "9.11.2",
"@polkadot/types-support": "9.11.2",
"@polkadot/util-crypto": "^10.2.4"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types-codec', path: 'auto', type: 'auto', version: '9.11.2' };
+4 -4
View File
@@ -20,14 +20,14 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/types-codec": "9.11.1",
"@polkadot/util": "^10.2.3"
"@polkadot/types-codec": "9.11.2",
"@polkadot/util": "^10.2.4"
},
"devDependencies": {
"@polkadot/types": "9.11.1"
"@polkadot/types": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types-create', path: 'auto', type: 'auto', version: '9.11.2' };
+7 -7
View File
@@ -20,17 +20,17 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/networks": "^10.2.3",
"@polkadot/types": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/types-create": "9.11.1",
"@polkadot/util": "^10.2.3"
"@polkadot/networks": "^10.2.4",
"@polkadot/types": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/types-create": "9.11.2",
"@polkadot/util": "^10.2.4"
},
"devDependencies": {
"@polkadot/api": "9.11.1"
"@polkadot/api": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types-known', path: 'auto', type: 'auto', version: '9.11.2' };
+2 -2
View File
@@ -20,10 +20,10 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/util": "^10.2.3"
"@polkadot/util": "^10.2.4"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types-support', path: 'auto', type: 'auto', version: '9.11.2' };
+9 -9
View File
@@ -20,20 +20,20 @@
"./detectPackage.cjs"
],
"type": "module",
"version": "9.11.1",
"version": "9.11.2",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"@polkadot/keyring": "^10.2.3",
"@polkadot/types-augment": "9.11.1",
"@polkadot/types-codec": "9.11.1",
"@polkadot/types-create": "9.11.1",
"@polkadot/util": "^10.2.3",
"@polkadot/util-crypto": "^10.2.3",
"@polkadot/keyring": "^10.2.4",
"@polkadot/types-augment": "9.11.2",
"@polkadot/types-codec": "9.11.2",
"@polkadot/types-create": "9.11.2",
"@polkadot/util": "^10.2.4",
"@polkadot/util-crypto": "^10.2.4",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@polkadot/keyring": "^10.2.3",
"@polkadot/types-support": "9.11.1"
"@polkadot/keyring": "^10.2.4",
"@polkadot/types-support": "9.11.2"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '9.11.1' };
export const packageInfo = { name: '@polkadot/types', path: 'auto', type: 'auto', version: '9.11.2' };
+344 -385
View File
File diff suppressed because it is too large Load Diff