From af3d20ebe12c831b49e9b7872842f073b5f20d50 Mon Sep 17 00:00:00 2001 From: Tarik Gul <47201679+TarikGul@users.noreply.github.com> Date: Mon, 24 Jun 2024 19:48:37 -0700 Subject: [PATCH] 12.0.1 (#5916) --- CHANGELOG.md | 15 +++ package.json | 2 +- packages/api-augment/package.json | 12 +-- packages/api-base/package.json | 6 +- packages/api-contract/package.json | 16 +-- packages/api-derive/package.json | 24 ++--- packages/api/package.json | 28 ++--- packages/rpc-augment/package.json | 8 +- packages/rpc-core/package.json | 10 +- packages/rpc-provider/package.json | 6 +- packages/typegen/package.json | 20 ++-- packages/types-augment/package.json | 6 +- packages/types-codec/package.json | 8 +- packages/types-create/package.json | 6 +- packages/types-known/package.json | 10 +- packages/types-support/package.json | 2 +- packages/types/package.json | 10 +- yarn.lock | 158 ++++++++++++++-------------- 18 files changed, 181 insertions(+), 166 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f299577833f2..4908ca5c203e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## 12.0.1 June 24, 2024 + +**Important Changes**: + +- Addition of an optional `signedTransaction` field to the [`SignerResult`](https://github.com/polkadot-js/api/blob/586f02f8310529f16e4047fd94e31bc6c6573366/packages/types/src/types/extrinsic.ts#L138-L158) response for injected signers. This only applies to the `signPayload` method exposed in the [`Signer`](https://github.com/polkadot-js/api/blob/586f02f8310529f16e4047fd94e31bc6c6573366/packages/types/src/types/extrinsic.ts#L160-L175) interface for polkadot-js. As the name suggests the field expects a signed transaction (extrinsic) when inputted. When its present, the api will not add the signature to the payload, but instead broadcast the inputted signed transaction. This means the signer may modify the payload it's given. The only part of the payload that may not be modified is the call data. This is verified on the api, and will throw an error if it does not match the initial payloads call data. + - This is very useful for signers that want to adjust the `mode` and `metadataHash` field for the `CheckMetadataHash` signed extension. + - Note that this is not your traditional breaking change since it more-so acts as an addition, but since this is a high magnitude change it is going to be considered a MAJOR bump. + - For more info please review the following PR [(#5914)](https://github.com/polkadot-js/api/pull/5914) + +Changes: + +- Replace `system_accountNextIndex` with runtime api call `accountNonceApi` for `api.derive.tx.signingInfo` +- Sanitize `eras` for `api.derive.staking._stakerRewards` + + ## 11.3.1 June 17, 2024 Changes: diff --git a/package.json b/package.json index f20d91afe761..0497006db724 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "versions": { "git": "11.3.2-2-x", "npm": "11.3.1" diff --git a/packages/api-augment/package.json b/packages/api-augment/package.json index 5e805ba877b2..9efd1649e821 100644 --- a/packages/api-augment/package.json +++ b/packages/api-augment/package.json @@ -18,14 +18,14 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/api-base": "11.3.2-2-x", - "@polkadot/rpc-augment": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-augment": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", + "@polkadot/api-base": "12.0.1", + "@polkadot/rpc-augment": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-augment": "12.0.1", + "@polkadot/types-codec": "12.0.1", "@polkadot/util": "^12.6.2", "tslib": "^2.6.2" } diff --git a/packages/api-base/package.json b/packages/api-base/package.json index fed41a1c035a..e642adc6ea66 100644 --- a/packages/api-base/package.json +++ b/packages/api-base/package.json @@ -18,11 +18,11 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/rpc-core": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", + "@polkadot/rpc-core": "12.0.1", + "@polkadot/types": "12.0.1", "@polkadot/util": "^12.6.2", "rxjs": "^7.8.1", "tslib": "^2.6.2" diff --git a/packages/api-contract/package.json b/packages/api-contract/package.json index 04eb5aa38672..64ac6356ce7e 100644 --- a/packages/api-contract/package.json +++ b/packages/api-contract/package.json @@ -18,22 +18,22 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/api": "11.3.2-2-x", - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", - "@polkadot/types-create": "11.3.2-2-x", + "@polkadot/api": "12.0.1", + "@polkadot/api-augment": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-codec": "12.0.1", + "@polkadot/types-create": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "rxjs": "^7.8.1", "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/api-augment": "11.3.2-2-x", + "@polkadot/api-augment": "12.0.1", "@polkadot/keyring": "^12.6.2", - "@polkadot/types-support": "11.3.2-2-x" + "@polkadot/types-support": "12.0.1" } } diff --git a/packages/api-derive/package.json b/packages/api-derive/package.json index a42154d4d44f..d2953724db29 100644 --- a/packages/api-derive/package.json +++ b/packages/api-derive/package.json @@ -18,25 +18,25 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/api": "11.3.2-2-x", - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/api-base": "11.3.2-2-x", - "@polkadot/rpc-core": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", + "@polkadot/api": "12.0.1", + "@polkadot/api-augment": "12.0.1", + "@polkadot/api-base": "12.0.1", + "@polkadot/rpc-core": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-codec": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "rxjs": "^7.8.1", "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/api": "11.3.2-2-x", - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/rpc-augment": "11.3.2-2-x", - "@polkadot/rpc-provider": "11.3.2-2-x", - "@polkadot/types-support": "11.3.2-2-x" + "@polkadot/api": "12.0.1", + "@polkadot/api-augment": "12.0.1", + "@polkadot/rpc-augment": "12.0.1", + "@polkadot/rpc-provider": "12.0.1", + "@polkadot/types-support": "12.0.1" } } diff --git a/packages/api/package.json b/packages/api/package.json index 5dc6f3a3d6f2..da730f40fcf6 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -18,21 +18,21 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/api-base": "11.3.2-2-x", - "@polkadot/api-derive": "11.3.2-2-x", + "@polkadot/api-augment": "12.0.1", + "@polkadot/api-base": "12.0.1", + "@polkadot/api-derive": "12.0.1", "@polkadot/keyring": "^12.6.2", - "@polkadot/rpc-augment": "11.3.2-2-x", - "@polkadot/rpc-core": "11.3.2-2-x", - "@polkadot/rpc-provider": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-augment": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", - "@polkadot/types-create": "11.3.2-2-x", - "@polkadot/types-known": "11.3.2-2-x", + "@polkadot/rpc-augment": "12.0.1", + "@polkadot/rpc-core": "12.0.1", + "@polkadot/rpc-provider": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-augment": "12.0.1", + "@polkadot/types-codec": "12.0.1", + "@polkadot/types-create": "12.0.1", + "@polkadot/types-known": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "eventemitter3": "^5.0.1", @@ -40,7 +40,7 @@ "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/types-support": "11.3.2-2-x" + "@polkadot/api-augment": "12.0.1", + "@polkadot/types-support": "12.0.1" } } diff --git a/packages/rpc-augment/package.json b/packages/rpc-augment/package.json index 0d2f13be870e..97ddc8a1424f 100644 --- a/packages/rpc-augment/package.json +++ b/packages/rpc-augment/package.json @@ -18,12 +18,12 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/rpc-core": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", + "@polkadot/rpc-core": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-codec": "12.0.1", "@polkadot/util": "^12.6.2", "tslib": "^2.6.2" } diff --git a/packages/rpc-core/package.json b/packages/rpc-core/package.json index 896d699bdf22..4536dfcf5c2e 100644 --- a/packages/rpc-core/package.json +++ b/packages/rpc-core/package.json @@ -18,18 +18,18 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/rpc-augment": "11.3.2-2-x", - "@polkadot/rpc-provider": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", + "@polkadot/rpc-augment": "12.0.1", + "@polkadot/rpc-provider": "12.0.1", + "@polkadot/types": "12.0.1", "@polkadot/util": "^12.6.2", "rxjs": "^7.8.1", "tslib": "^2.6.2" }, "devDependencies": { "@polkadot/keyring": "^12.6.2", - "@polkadot/rpc-augment": "11.3.2-2-x" + "@polkadot/rpc-augment": "12.0.1" } } diff --git a/packages/rpc-provider/package.json b/packages/rpc-provider/package.json index 945240a3d907..e2b3e56ccd08 100644 --- a/packages/rpc-provider/package.json +++ b/packages/rpc-provider/package.json @@ -18,12 +18,12 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { "@polkadot/keyring": "^12.6.2", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-support": "11.3.2-2-x", + "@polkadot/types": "12.0.1", + "@polkadot/types-support": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "@polkadot/x-fetch": "^12.6.2", diff --git a/packages/typegen/package.json b/packages/typegen/package.json index 924b642a6dea..5ec836a271d9 100644 --- a/packages/typegen/package.json +++ b/packages/typegen/package.json @@ -18,7 +18,7 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "bin": { "polkadot-types-chain-info": "./scripts/polkadot-types-chain-info.mjs", @@ -28,15 +28,15 @@ "polkadot-types-internal-metadata": "./scripts/polkadot-types-internal-metadata.mjs" }, "dependencies": { - "@polkadot/api": "11.3.2-2-x", - "@polkadot/api-augment": "11.3.2-2-x", - "@polkadot/rpc-augment": "11.3.2-2-x", - "@polkadot/rpc-provider": "11.3.2-2-x", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-augment": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", - "@polkadot/types-create": "11.3.2-2-x", - "@polkadot/types-support": "11.3.2-2-x", + "@polkadot/api": "12.0.1", + "@polkadot/api-augment": "12.0.1", + "@polkadot/rpc-augment": "12.0.1", + "@polkadot/rpc-provider": "12.0.1", + "@polkadot/types": "12.0.1", + "@polkadot/types-augment": "12.0.1", + "@polkadot/types-codec": "12.0.1", + "@polkadot/types-create": "12.0.1", + "@polkadot/types-support": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "@polkadot/x-ws": "^12.6.2", diff --git a/packages/types-augment/package.json b/packages/types-augment/package.json index 798e76527270..bc6b96eb0243 100644 --- a/packages/types-augment/package.json +++ b/packages/types-augment/package.json @@ -18,11 +18,11 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", + "@polkadot/types": "12.0.1", + "@polkadot/types-codec": "12.0.1", "@polkadot/util": "^12.6.2", "tslib": "^2.6.2" } diff --git a/packages/types-codec/package.json b/packages/types-codec/package.json index 6f4c270764b6..f23fe523c7d9 100644 --- a/packages/types-codec/package.json +++ b/packages/types-codec/package.json @@ -18,7 +18,7 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { "@polkadot/util": "^12.6.2", @@ -26,9 +26,9 @@ "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-augment": "11.3.2-2-x", - "@polkadot/types-support": "11.3.2-2-x", + "@polkadot/types": "12.0.1", + "@polkadot/types-augment": "12.0.1", + "@polkadot/types-support": "12.0.1", "@polkadot/util-crypto": "^12.6.2" } } diff --git a/packages/types-create/package.json b/packages/types-create/package.json index fcd9edb485db..e53db793d758 100644 --- a/packages/types-create/package.json +++ b/packages/types-create/package.json @@ -18,14 +18,14 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { - "@polkadot/types-codec": "11.3.2-2-x", + "@polkadot/types-codec": "12.0.1", "@polkadot/util": "^12.6.2", "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/types": "11.3.2-2-x" + "@polkadot/types": "12.0.1" } } diff --git a/packages/types-known/package.json b/packages/types-known/package.json index 01139a39b0cb..82e41913525a 100644 --- a/packages/types-known/package.json +++ b/packages/types-known/package.json @@ -18,17 +18,17 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { "@polkadot/networks": "^12.6.2", - "@polkadot/types": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", - "@polkadot/types-create": "11.3.2-2-x", + "@polkadot/types": "12.0.1", + "@polkadot/types-codec": "12.0.1", + "@polkadot/types-create": "12.0.1", "@polkadot/util": "^12.6.2", "tslib": "^2.6.2" }, "devDependencies": { - "@polkadot/api": "11.3.2-2-x" + "@polkadot/api": "12.0.1" } } diff --git a/packages/types-support/package.json b/packages/types-support/package.json index 1a25660011b5..5923ee1c56ea 100644 --- a/packages/types-support/package.json +++ b/packages/types-support/package.json @@ -18,7 +18,7 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { "@polkadot/util": "^12.6.2", diff --git a/packages/types/package.json b/packages/types/package.json index 93675b74700e..039d2072260f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -18,13 +18,13 @@ "./packageDetect.cjs" ], "type": "module", - "version": "11.3.2-2-x", + "version": "12.0.1", "main": "index.js", "dependencies": { "@polkadot/keyring": "^12.6.2", - "@polkadot/types-augment": "11.3.2-2-x", - "@polkadot/types-codec": "11.3.2-2-x", - "@polkadot/types-create": "11.3.2-2-x", + "@polkadot/types-augment": "12.0.1", + "@polkadot/types-codec": "12.0.1", + "@polkadot/types-create": "12.0.1", "@polkadot/util": "^12.6.2", "@polkadot/util-crypto": "^12.6.2", "rxjs": "^7.8.1", @@ -32,6 +32,6 @@ }, "devDependencies": { "@polkadot/keyring": "^12.6.2", - "@polkadot/types-support": "11.3.2-2-x" + "@polkadot/types-support": "12.0.1" } } diff --git a/yarn.lock b/yarn.lock index e97cf43c1ae4..d372e0d2c6e1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -444,26 +444,26 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:11.3.2-2-x, @polkadot/api-augment@workspace:packages/api-augment": +"@polkadot/api-augment@npm:12.0.1, @polkadot/api-augment@workspace:packages/api-augment": version: 0.0.0-use.local resolution: "@polkadot/api-augment@workspace:packages/api-augment" dependencies: - "@polkadot/api-base": "npm:11.3.2-2-x" - "@polkadot/rpc-augment": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-augment": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" + "@polkadot/api-base": "npm:12.0.1" + "@polkadot/rpc-augment": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-augment": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/api-base@npm:11.3.2-2-x, @polkadot/api-base@workspace:packages/api-base": +"@polkadot/api-base@npm:12.0.1, @polkadot/api-base@workspace:packages/api-base": version: 0.0.0-use.local resolution: "@polkadot/api-base@workspace:packages/api-base" dependencies: - "@polkadot/rpc-core": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" + "@polkadot/rpc-core": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" @@ -474,13 +474,13 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/api-contract@workspace:packages/api-contract" dependencies: - "@polkadot/api": "npm:11.3.2-2-x" - "@polkadot/api-augment": "npm:11.3.2-2-x" + "@polkadot/api": "npm:12.0.1" + "@polkadot/api-augment": "npm:12.0.1" "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-create": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-create": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1" @@ -488,19 +488,19 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/api-derive@npm:11.3.2-2-x, @polkadot/api-derive@workspace:packages/api-derive": +"@polkadot/api-derive@npm:12.0.1, @polkadot/api-derive@workspace:packages/api-derive": version: 0.0.0-use.local resolution: "@polkadot/api-derive@workspace:packages/api-derive" dependencies: - "@polkadot/api": "npm:11.3.2-2-x" - "@polkadot/api-augment": "npm:11.3.2-2-x" - "@polkadot/api-base": "npm:11.3.2-2-x" - "@polkadot/rpc-augment": "npm:11.3.2-2-x" - "@polkadot/rpc-core": "npm:11.3.2-2-x" - "@polkadot/rpc-provider": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/api": "npm:12.0.1" + "@polkadot/api-augment": "npm:12.0.1" + "@polkadot/api-base": "npm:12.0.1" + "@polkadot/rpc-augment": "npm:12.0.1" + "@polkadot/rpc-core": "npm:12.0.1" + "@polkadot/rpc-provider": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1" @@ -508,23 +508,23 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/api@npm:11.3.2-2-x, @polkadot/api@workspace:packages/api": +"@polkadot/api@npm:12.0.1, @polkadot/api@workspace:packages/api": version: 0.0.0-use.local resolution: "@polkadot/api@workspace:packages/api" dependencies: - "@polkadot/api-augment": "npm:11.3.2-2-x" - "@polkadot/api-base": "npm:11.3.2-2-x" - "@polkadot/api-derive": "npm:11.3.2-2-x" + "@polkadot/api-augment": "npm:12.0.1" + "@polkadot/api-base": "npm:12.0.1" + "@polkadot/api-derive": "npm:12.0.1" "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/rpc-augment": "npm:11.3.2-2-x" - "@polkadot/rpc-core": "npm:11.3.2-2-x" - "@polkadot/rpc-provider": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-augment": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-create": "npm:11.3.2-2-x" - "@polkadot/types-known": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/rpc-augment": "npm:12.0.1" + "@polkadot/rpc-core": "npm:12.0.1" + "@polkadot/rpc-provider": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-augment": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-create": "npm:12.0.1" + "@polkadot/types-known": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" eventemitter3: "npm:^5.0.1" @@ -654,39 +654,39 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-augment@npm:11.3.2-2-x, @polkadot/rpc-augment@workspace:packages/rpc-augment": +"@polkadot/rpc-augment@npm:12.0.1, @polkadot/rpc-augment@workspace:packages/rpc-augment": version: 0.0.0-use.local resolution: "@polkadot/rpc-augment@workspace:packages/rpc-augment" dependencies: - "@polkadot/rpc-core": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" + "@polkadot/rpc-core": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/rpc-core@npm:11.3.2-2-x, @polkadot/rpc-core@workspace:packages/rpc-core": +"@polkadot/rpc-core@npm:12.0.1, @polkadot/rpc-core@workspace:packages/rpc-core": version: 0.0.0-use.local resolution: "@polkadot/rpc-core@workspace:packages/rpc-core" dependencies: "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/rpc-augment": "npm:11.3.2-2-x" - "@polkadot/rpc-provider": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" + "@polkadot/rpc-augment": "npm:12.0.1" + "@polkadot/rpc-provider": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/rpc-provider@npm:11.3.2-2-x, @polkadot/rpc-provider@workspace:packages/rpc-provider": +"@polkadot/rpc-provider@npm:12.0.1, @polkadot/rpc-provider@workspace:packages/rpc-provider": version: 0.0.0-use.local resolution: "@polkadot/rpc-provider@workspace:packages/rpc-provider" dependencies: "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" "@polkadot/x-fetch": "npm:^12.6.2" @@ -707,15 +707,15 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/typegen@workspace:packages/typegen" dependencies: - "@polkadot/api": "npm:11.3.2-2-x" - "@polkadot/api-augment": "npm:11.3.2-2-x" - "@polkadot/rpc-augment": "npm:11.3.2-2-x" - "@polkadot/rpc-provider": "npm:11.3.2-2-x" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-augment": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-create": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/api": "npm:12.0.1" + "@polkadot/api-augment": "npm:12.0.1" + "@polkadot/rpc-augment": "npm:12.0.1" + "@polkadot/rpc-provider": "npm:12.0.1" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-augment": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-create": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" "@polkadot/x-ws": "npm:^12.6.2" @@ -732,24 +732,24 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types-augment@npm:11.3.2-2-x, @polkadot/types-augment@workspace:packages/types-augment": +"@polkadot/types-augment@npm:12.0.1, @polkadot/types-augment@workspace:packages/types-augment": version: 0.0.0-use.local resolution: "@polkadot/types-augment@workspace:packages/types-augment" dependencies: - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/types-codec@npm:11.3.2-2-x, @polkadot/types-codec@workspace:packages/types-codec": +"@polkadot/types-codec@npm:12.0.1, @polkadot/types-codec@workspace:packages/types-codec": version: 0.0.0-use.local resolution: "@polkadot/types-codec@workspace:packages/types-codec" dependencies: - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-augment": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-augment": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" "@polkadot/x-bigint": "npm:^12.6.2" @@ -757,32 +757,32 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types-create@npm:11.3.2-2-x, @polkadot/types-create@workspace:packages/types-create": +"@polkadot/types-create@npm:12.0.1, @polkadot/types-create@workspace:packages/types-create": version: 0.0.0-use.local resolution: "@polkadot/types-create@workspace:packages/types-create" dependencies: - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/types-known@npm:11.3.2-2-x, @polkadot/types-known@workspace:packages/types-known": +"@polkadot/types-known@npm:12.0.1, @polkadot/types-known@workspace:packages/types-known": version: 0.0.0-use.local resolution: "@polkadot/types-known@workspace:packages/types-known" dependencies: - "@polkadot/api": "npm:11.3.2-2-x" + "@polkadot/api": "npm:12.0.1" "@polkadot/networks": "npm:^12.6.2" - "@polkadot/types": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-create": "npm:11.3.2-2-x" + "@polkadot/types": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-create": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" languageName: unknown linkType: soft -"@polkadot/types-support@npm:11.3.2-2-x, @polkadot/types-support@workspace:packages/types-support": +"@polkadot/types-support@npm:12.0.1, @polkadot/types-support@workspace:packages/types-support": version: 0.0.0-use.local resolution: "@polkadot/types-support@workspace:packages/types-support" dependencies: @@ -791,15 +791,15 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types@npm:11.3.2-2-x, @polkadot/types@workspace:packages/types": +"@polkadot/types@npm:12.0.1, @polkadot/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@polkadot/types@workspace:packages/types" dependencies: "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/types-augment": "npm:11.3.2-2-x" - "@polkadot/types-codec": "npm:11.3.2-2-x" - "@polkadot/types-create": "npm:11.3.2-2-x" - "@polkadot/types-support": "npm:11.3.2-2-x" + "@polkadot/types-augment": "npm:12.0.1" + "@polkadot/types-codec": "npm:12.0.1" + "@polkadot/types-create": "npm:12.0.1" + "@polkadot/types-support": "npm:12.0.1" "@polkadot/util": "npm:^12.6.2" "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1"