From 951a745d0f04a1874cb5a9e93a20301bb3a39b1a Mon Sep 17 00:00:00 2001 From: Jaco Date: Sat, 9 Jul 2022 09:26:03 +0200 Subject: [PATCH] 2.8.1 (#663) * 2.8.1 * trigger --- .123trigger | 10 +- .eslintrc.js => .eslintrc.cjs | 0 CHANGELOG.md | 7 + package.json | 7 +- packages/example-react/package.json | 2 +- packages/example-vue/package.json | 2 +- packages/react-identicon/package.json | 12 +- packages/react-qr/package.json | 8 +- packages/reactnative-identicon/package.json | 8 +- packages/ui-assets/package.json | 4 +- packages/ui-keyring/package.json | 10 +- packages/ui-settings/package.json | 6 +- packages/ui-shared/package.json | 6 +- packages/vue-identicon/package.json | 8 +- yarn.lock | 257 ++++++++++---------- 15 files changed, 175 insertions(+), 172 deletions(-) rename .eslintrc.js => .eslintrc.cjs (100%) diff --git a/.123trigger b/.123trigger index 00f85b07..21c2d3a9 100644 --- a/.123trigger +++ b/.123trigger @@ -1,10 +1,11 @@ -2 -0.57.20.57.3 +3 + +0.57.2 +0.57.3 0.66.2 0.66.3 0.71.2 0.71.3 - 0.84.2 0.84.3 0.85.2 @@ -25,5 +26,6 @@ 0.87.7 0.89.2 0.89.3 + 2.6.2 -2.7.2 \ No newline at end of file +2.7.2 diff --git a/.eslintrc.js b/.eslintrc.cjs similarity index 100% rename from .eslintrc.js rename to .eslintrc.cjs diff --git a/CHANGELOG.md b/CHANGELOG.md index a78ce774..eef686c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 2.8.1 Jul 9, 2022 + +Changes: + +- Bump to `@polkadot/util-crypto` 10.0.1 + + ## 2.7.2 Jul 4, 2022 Changes: diff --git a/package.json b/package.json index c203263e..fb03cfdf 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,9 @@ "type": "git", "url": "https://github.com/polkadot-js/ui.git" }, + "type": "module", "sideEffects": false, - "version": "2.7.3-0-x", + "version": "2.8.0", "workspaces": [ "packages/*" ], @@ -29,8 +30,8 @@ "devDependencies": { "@babel/core": "^7.18.6", "@babel/runtime": "^7.18.6", - "@polkadot/dev": "^0.67.55", - "@polkadot/x-bundle": "^9.7.2", + "@polkadot/dev": "^0.67.65", + "@polkadot/x-bundle": "^10.0.1", "@types/jest": "^28.1.4", "babel-loader": "^8.2.5", "babel-plugin-transform-vue-template": "^0.4.2", diff --git a/packages/example-react/package.json b/packages/example-react/package.json index 4af6cfdc..2625923c 100644 --- a/packages/example-react/package.json +++ b/packages/example-react/package.json @@ -14,7 +14,7 @@ "url": "https://github.com/polkadot-js/ui.git" }, "sideEffects": false, - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6" diff --git a/packages/example-vue/package.json b/packages/example-vue/package.json index 2613ea08..745e4830 100644 --- a/packages/example-vue/package.json +++ b/packages/example-vue/package.json @@ -14,7 +14,7 @@ "url": "https://github.com/polkadot-js/ui.git" }, "sideEffects": false, - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6" diff --git a/packages/react-identicon/package.json b/packages/react-identicon/package.json index 8654daf0..f0eac690 100644 --- a/packages/react-identicon/package.json +++ b/packages/react-identicon/package.json @@ -17,15 +17,15 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/keyring": "^9.7.2", - "@polkadot/ui-settings": "2.7.3-0-x", - "@polkadot/ui-shared": "2.7.3-0-x", - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/keyring": "^10.0.1", + "@polkadot/ui-settings": "2.8.0", + "@polkadot/ui-shared": "2.8.0", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "color": "^3.2.1", "ethereum-blockies-base64": "^1.0.2", "jdenticon": "3.1.1", diff --git a/packages/react-qr/package.json b/packages/react-qr/package.json index 61c55a1d..bc2cb6a0 100644 --- a/packages/react-qr/package.json +++ b/packages/react-qr/package.json @@ -17,13 +17,13 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/ui-settings": "2.7.3-0-x", - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/ui-settings": "2.8.0", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "qrcode-generator": "^1.4.4", "react-qr-reader": "^2.2.1", "styled-components": "^5.3.5" diff --git a/packages/reactnative-identicon/package.json b/packages/reactnative-identicon/package.json index 9292ec2c..f812c5fc 100644 --- a/packages/reactnative-identicon/package.json +++ b/packages/reactnative-identicon/package.json @@ -17,13 +17,13 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/ui-shared": "2.7.3-0-x", - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/ui-shared": "2.8.0", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "react-native-svg": "^12.3.0" }, "devDependencies": { diff --git a/packages/ui-assets/package.json b/packages/ui-assets/package.json index 7449d53d..e199758d 100644 --- a/packages/ui-assets/package.json +++ b/packages/ui-assets/package.json @@ -13,10 +13,10 @@ "url": "https://github.com/polkadot-js/ui.git" }, "sideEffects": false, - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/util": "^9.7.2" + "@polkadot/util": "^10.0.1" } } diff --git a/packages/ui-keyring/package.json b/packages/ui-keyring/package.json index 27f351ad..f60ff66f 100644 --- a/packages/ui-keyring/package.json +++ b/packages/ui-keyring/package.json @@ -16,14 +16,14 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/keyring": "^9.7.2", - "@polkadot/ui-settings": "2.7.3-0-x", - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/keyring": "^10.0.1", + "@polkadot/ui-settings": "2.8.0", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "mkdirp": "^1.0.4", "rxjs": "^7.5.5", "store": "^2.0.12" diff --git a/packages/ui-settings/package.json b/packages/ui-settings/package.json index 755a851f..aed8412e 100644 --- a/packages/ui-settings/package.json +++ b/packages/ui-settings/package.json @@ -17,12 +17,12 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/networks": "^9.7.2", - "@polkadot/util": "^9.7.2", + "@polkadot/networks": "^10.0.1", + "@polkadot/util": "^10.0.1", "eventemitter3": "^4.0.7", "store": "^2.0.12" }, diff --git a/packages/ui-shared/package.json b/packages/ui-shared/package.json index 17d9a08a..514e41f4 100644 --- a/packages/ui-shared/package.json +++ b/packages/ui-shared/package.json @@ -17,15 +17,15 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", "color": "^3.2.1" }, "devDependencies": { - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "@types/color": "^3.0.3", "@types/xmlserializer": "^0.6.2", "xmlserializer": "^0.6.1" diff --git a/packages/vue-identicon/package.json b/packages/vue-identicon/package.json index c7670d95..80bacece 100644 --- a/packages/vue-identicon/package.json +++ b/packages/vue-identicon/package.json @@ -17,13 +17,13 @@ "./detectPackage.cjs" ], "type": "module", - "version": "2.7.3-0-x", + "version": "2.8.0", "main": "index.js", "dependencies": { "@babel/runtime": "^7.18.6", - "@polkadot/ui-shared": "2.7.3-0-x", - "@polkadot/util": "^9.7.2", - "@polkadot/util-crypto": "^9.7.2", + "@polkadot/ui-shared": "2.8.0", + "@polkadot/util": "^10.0.1", + "@polkadot/util-crypto": "^10.0.1", "jdenticon": "3.1.1" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index 01ed9127..9038bfcd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2124,9 +2124,9 @@ __metadata: languageName: node linkType: hard -"@polkadot/dev@npm:^0.67.55": - version: 0.67.55 - resolution: "@polkadot/dev@npm:0.67.55" +"@polkadot/dev@npm:^0.67.65": + version: 0.67.65 + resolution: "@polkadot/dev@npm:0.67.65" dependencies: "@babel/cli": ^7.18.6 "@babel/core": ^7.18.6 @@ -2202,6 +2202,7 @@ __metadata: polkadot-dev-clean-build: scripts/polkadot-dev-clean-build.mjs polkadot-dev-contrib: scripts/polkadot-dev-contrib.mjs polkadot-dev-copy-to: scripts/polkadot-dev-copy-to.mjs + polkadot-dev-deno-map: scripts/polkadot-dev-deno-map.mjs polkadot-dev-run-lint: scripts/polkadot-dev-run-lint.mjs polkadot-dev-run-prettier: scripts/polkadot-dev-run-prettier.mjs polkadot-dev-run-test: scripts/polkadot-dev-run-test.mjs @@ -2214,7 +2215,7 @@ __metadata: polkadot-exec-rollup: scripts/polkadot-exec-rollup.mjs polkadot-exec-tsc: scripts/polkadot-exec-tsc.mjs polkadot-exec-webpack: scripts/polkadot-exec-webpack.mjs - checksum: 695f7250519af45dd5ef22f8c383033ecf0aacd4c356ab87a5a47e51863f2d44c0283a8ff896e4999923489b8d043e8b36c5f6c53aa912f7c8e2576895ec6083 + checksum: 918f3b8257bada7cef38c4499573376c1119973cba5c5c673b2877671dceb23f2e7ed8cd2c9a70ee31d90056c43c1db2180abe595cdaf5c95fdecf7a863c1acf languageName: node linkType: hard @@ -2234,28 +2235,28 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/keyring@npm:^9.7.2": - version: 9.7.2 - resolution: "@polkadot/keyring@npm:9.7.2" +"@polkadot/keyring@npm:^10.0.1": + version: 10.0.1 + resolution: "@polkadot/keyring@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/util": 9.7.2 - "@polkadot/util-crypto": 9.7.2 + "@polkadot/util": 10.0.1 + "@polkadot/util-crypto": 10.0.1 peerDependencies: - "@polkadot/util": 9.7.2 - "@polkadot/util-crypto": 9.7.2 - checksum: 0df98b213b9144a4cab72c0d6fd20a87726484d03ba6371f5a5263048b8b8a7ed8e00932d1e059bb13f867732bc47a58d9a640dc5c4ef5a7ba1bdf5ff02116d9 + "@polkadot/util": 10.0.1 + "@polkadot/util-crypto": 10.0.1 + checksum: aebf235e039267619891fa33b19ea91ba851355f2740ffca73c088b1f98babd334a51553cd2437718b65c4b8911f91db6b9b529f7a5dbdb2bb2f60118e4a31a0 languageName: node linkType: hard -"@polkadot/networks@npm:9.7.2, @polkadot/networks@npm:^9.7.2": - version: 9.7.2 - resolution: "@polkadot/networks@npm:9.7.2" +"@polkadot/networks@npm:10.0.1, @polkadot/networks@npm:^10.0.1": + version: 10.0.1 + resolution: "@polkadot/networks@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/util": 9.7.2 + "@polkadot/util": 10.0.1 "@substrate/ss58-registry": ^1.23.0 - checksum: b9fb80eaf2851da2c00dded072402c717cbfa6549f65cf57a35dea90a2e69281e781fd2a605720820bd5b752027085b49a102357482e795b8ae4a974cb2cbd50 + checksum: 136c17155364a32c6d43c1cab9263fc38e691a9da35e6419934a09d6614eaa9521778fe9a1afe008f15b4cbf0a7fff0fee2322169232c6fcdb49396bbca0d075 languageName: node linkType: hard @@ -2264,11 +2265,11 @@ __metadata: resolution: "@polkadot/react-identicon@workspace:packages/react-identicon" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/keyring": ^9.7.2 - "@polkadot/ui-settings": 2.7.3-0-x - "@polkadot/ui-shared": 2.7.3-0-x - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/keyring": ^10.0.1 + "@polkadot/ui-settings": 2.8.0 + "@polkadot/ui-shared": 2.8.0 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 "@types/react-copy-to-clipboard": ^5.0.2 "@types/react-dom": ^18.0.6 "@types/styled-components": ^5.1.25 @@ -2294,9 +2295,9 @@ __metadata: resolution: "@polkadot/react-qr@workspace:packages/react-qr" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/ui-settings": 2.7.3-0-x - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/ui-settings": 2.8.0 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 "@types/react-qr-reader": ^2.1.4 "@types/styled-components": ^5.1.25 qrcode-generator: ^1.4.4 @@ -2316,9 +2317,9 @@ __metadata: resolution: "@polkadot/reactnative-identicon@workspace:packages/reactnative-identicon" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/ui-shared": 2.7.3-0-x - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/ui-shared": 2.8.0 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 "@types/react-native": ^0.69.2 react-native-svg: ^12.3.0 peerDependencies: @@ -2334,7 +2335,7 @@ __metadata: resolution: "@polkadot/ui-assets@workspace:packages/ui-assets" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/util": ^9.7.2 + "@polkadot/util": ^10.0.1 languageName: unknown linkType: soft @@ -2343,10 +2344,10 @@ __metadata: resolution: "@polkadot/ui-keyring@workspace:packages/ui-keyring" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/keyring": ^9.7.2 - "@polkadot/ui-settings": 2.7.3-0-x - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/keyring": ^10.0.1 + "@polkadot/ui-settings": 2.8.0 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 "@types/mkdirp": ^1.0.2 "@types/store": ^2.0.2 mkdirp: ^1.0.4 @@ -2359,13 +2360,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-settings@2.7.3-0-x, @polkadot/ui-settings@workspace:packages/ui-settings": +"@polkadot/ui-settings@2.8.0, @polkadot/ui-settings@workspace:packages/ui-settings": version: 0.0.0-use.local resolution: "@polkadot/ui-settings@workspace:packages/ui-settings" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/networks": ^9.7.2 - "@polkadot/util": ^9.7.2 + "@polkadot/networks": ^10.0.1 + "@polkadot/util": ^10.0.1 "@types/store": ^2.0.2 eventemitter3: ^4.0.7 store: ^2.0.12 @@ -2375,13 +2376,13 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/ui-shared@2.7.3-0-x, @polkadot/ui-shared@workspace:packages/ui-shared": +"@polkadot/ui-shared@2.8.0, @polkadot/ui-shared@workspace:packages/ui-shared": version: 0.0.0-use.local resolution: "@polkadot/ui-shared@workspace:packages/ui-shared" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 "@types/color": ^3.0.3 "@types/xmlserializer": ^0.6.2 color: ^3.2.1 @@ -2392,40 +2393,39 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/util-crypto@npm:9.7.2, @polkadot/util-crypto@npm:^9.7.2": - version: 9.7.2 - resolution: "@polkadot/util-crypto@npm:9.7.2" +"@polkadot/util-crypto@npm:10.0.1, @polkadot/util-crypto@npm:^10.0.1": + version: 10.0.1 + resolution: "@polkadot/util-crypto@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 "@noble/hashes": 1.1.2 "@noble/secp256k1": 1.6.0 - "@polkadot/networks": 9.7.2 - "@polkadot/util": 9.7.2 - "@polkadot/wasm-crypto": ^6.2.2 - "@polkadot/x-bigint": 9.7.2 - "@polkadot/x-randomvalues": 9.7.2 + "@polkadot/networks": 10.0.1 + "@polkadot/util": 10.0.1 + "@polkadot/wasm-crypto": ^6.2.3 + "@polkadot/x-bigint": 10.0.1 + "@polkadot/x-randomvalues": 10.0.1 "@scure/base": 1.1.1 ed2curve: ^0.3.0 tweetnacl: ^1.0.3 peerDependencies: - "@polkadot/util": 9.7.2 - checksum: fb2588671b22f38602dd231184cfeffc77cb848055bda8efed4962a0b8b94888dc7ddb2cfe304e44a175afd3403d94b7551a1c42d3ce54d225b45a80321f6fdb + "@polkadot/util": 10.0.1 + checksum: 2ba98e39a874769ddcd8388f2b3edddcdf41aea00127f82b1d1511f655989bffd37c30da3d5079a339457abf32375812ddc61ccff65241f58e18e87ac1ee0693 languageName: node linkType: hard -"@polkadot/util@npm:9.7.2, @polkadot/util@npm:^9.7.2": - version: 9.7.2 - resolution: "@polkadot/util@npm:9.7.2" +"@polkadot/util@npm:10.0.1, @polkadot/util@npm:^10.0.1": + version: 10.0.1 + resolution: "@polkadot/util@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/x-bigint": 9.7.2 - "@polkadot/x-global": 9.7.2 - "@polkadot/x-textdecoder": 9.7.2 - "@polkadot/x-textencoder": 9.7.2 + "@polkadot/x-bigint": 10.0.1 + "@polkadot/x-global": 10.0.1 + "@polkadot/x-textdecoder": 10.0.1 + "@polkadot/x-textencoder": 10.0.1 "@types/bn.js": ^5.1.0 bn.js: ^5.2.1 - ip-regex: ^4.3.0 - checksum: ccb7270148a0479c141dc138546a30f31fbe39d6d182c72bfc027ae1f01163702b1d2a568b7b2ae5dd2d1b787ec70243f8bebe55a7209ee3f0321708ada293ba + checksum: 039fe5450158554eed5e519f8fcb1fd9a7c387307dda16fd728d39b8bf63991ff0add0e538f50dd91fe9e19f138eb95505be2d010afe752bbb12018d6719cce8 languageName: node linkType: hard @@ -2434,9 +2434,9 @@ __metadata: resolution: "@polkadot/vue-identicon@workspace:packages/vue-identicon" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/ui-shared": 2.7.3-0-x - "@polkadot/util": ^9.7.2 - "@polkadot/util-crypto": ^9.7.2 + "@polkadot/ui-shared": 2.8.0 + "@polkadot/util": ^10.0.1 + "@polkadot/util-crypto": ^10.0.1 jdenticon: 3.1.1 vue: ^2.6.14 peerDependencies: @@ -2446,141 +2446,141 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/wasm-bridge@npm:6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-bridge@npm:6.2.2" +"@polkadot/wasm-bridge@npm:6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-bridge@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: ce7c934b4a20099a127f417064ef0690415666f5dab4602c17f39ffe544e154052ef4ca0fc82d9d29acc3516658fc1ce77c2070af0e5622f6bd7e1e32cd7db31 + checksum: 878fddf29280569c33d3097b322cf0749f7f034e5200a239d80cd877f09f49c40db8a3e67b3b83eedc93362ad67a1eaa82b672c8f725fa3865a902abfbec3fc6 languageName: node linkType: hard -"@polkadot/wasm-crypto-asmjs@npm:6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-crypto-asmjs@npm:6.2.2" +"@polkadot/wasm-crypto-asmjs@npm:6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-crypto-asmjs@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 peerDependencies: "@polkadot/util": "*" - checksum: 0245a21898e4fb7549b0d125911cbba0d4766e2d15d534bc4e60267ba5a332147d53585132e8ce34884581a0b4bc72c85208ce3150372d88e7a14b94a4b969a4 + checksum: 6d51ddedf7b25913d54203f172f28dd093d25b5130a75d3d99433257b7533c827056ba99f9d56a530a00febcd5a3d8be5a8ef26d8948f57ddbb8a0456bf819fa languageName: node linkType: hard -"@polkadot/wasm-crypto-init@npm:6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-crypto-init@npm:6.2.2" +"@polkadot/wasm-crypto-init@npm:6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-crypto-init@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/wasm-bridge": 6.2.2 - "@polkadot/wasm-crypto-asmjs": 6.2.2 - "@polkadot/wasm-crypto-wasm": 6.2.2 + "@polkadot/wasm-bridge": 6.2.3 + "@polkadot/wasm-crypto-asmjs": 6.2.3 + "@polkadot/wasm-crypto-wasm": 6.2.3 peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: 517a59d3662b485f375bdd6877477ab85b2c181bf91970d4da9a09acb12b9248a3be0f9de8d4fe9883a6e2fa479e4eb034a0c66a6a9be734a5b90010aa94511d + checksum: 21049298513d1e6008f367be271b6343159aecfc35fce68282dd55a27881b57822151da077b0886555cf30abd2889a038a4ede05d05f8cb0cda31f2afc445af4 languageName: node linkType: hard -"@polkadot/wasm-crypto-wasm@npm:6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-crypto-wasm@npm:6.2.2" +"@polkadot/wasm-crypto-wasm@npm:6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-crypto-wasm@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/wasm-util": 6.2.2 + "@polkadot/wasm-util": 6.2.3 peerDependencies: "@polkadot/util": "*" - checksum: 73a90282777d3f94ae1f08d708598ffc74d95e19bec8fb9a218b742d20e6ee6b05486f59e207e117ec3587b310ebce38738b588956fe0c79c836d4811aaf2283 + checksum: 67ccbf19c374f98770180c43cd8ce14304174fbd1ef78afba2268023f897e264de36d7e579f680e1e4a8874692c4418d4f4fa4d6e17ffde91fb219a10712e8a1 languageName: node linkType: hard -"@polkadot/wasm-crypto@npm:^6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-crypto@npm:6.2.2" +"@polkadot/wasm-crypto@npm:^6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-crypto@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/wasm-bridge": 6.2.2 - "@polkadot/wasm-crypto-asmjs": 6.2.2 - "@polkadot/wasm-crypto-init": 6.2.2 - "@polkadot/wasm-crypto-wasm": 6.2.2 - "@polkadot/wasm-util": 6.2.2 + "@polkadot/wasm-bridge": 6.2.3 + "@polkadot/wasm-crypto-asmjs": 6.2.3 + "@polkadot/wasm-crypto-init": 6.2.3 + "@polkadot/wasm-crypto-wasm": 6.2.3 + "@polkadot/wasm-util": 6.2.3 peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: fb1292120a71e2c8395b11b7fe933a4f455a964586bd3570b9f7e4e50f8afdfdae7ba649e1b72f6c810e7e9d8dd318b8cd781a0418f0c62cbe02df95351bd5d7 + checksum: f7f119f3bb8fc0223058bb4929f1da32bb517d83b058c1349a934266a07925a47da092c147dc38965d0f2e45c267675199bcbfe0e745ee287f672014c9615af4 languageName: node linkType: hard -"@polkadot/wasm-util@npm:6.2.2": - version: 6.2.2 - resolution: "@polkadot/wasm-util@npm:6.2.2" +"@polkadot/wasm-util@npm:6.2.3": + version: 6.2.3 + resolution: "@polkadot/wasm-util@npm:6.2.3" dependencies: "@babel/runtime": ^7.18.6 peerDependencies: "@polkadot/util": "*" - checksum: ccc5dd5b60ec7a6571e6d031f5dc72358dbe04a6aa43c58d6d8789015c5a9ce6d0d956b04f25f35a3d79d3ba9a9d7a5b2e0e14976c9566b182981a2c17c84041 + checksum: 41ca92114eb8fa373da8c6620394d4eac083f95f54804e507662728759e235a825de9817c444d1ce9a9f57fa7ef42cc002db0542c7875288a702274865682ee3 languageName: node linkType: hard -"@polkadot/x-bigint@npm:9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-bigint@npm:9.7.2" +"@polkadot/x-bigint@npm:10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-bigint@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/x-global": 9.7.2 - checksum: 18610e4c55388b5c82e8ca6964200751fc20a19f8159f957a321d47b325ce349e3102d4f55a7e8997178e92a2d84cc138e8a39028e986a42175f45c38945b539 + "@polkadot/x-global": 10.0.1 + checksum: b6d0bad30d76ac0d1978e941a735571bdf765597d0af11fad65aed9d21d0cb3ecdc359aaecd169bf11791fb61e4c150a85f9760c0c33dead3a62b0382897385c languageName: node linkType: hard -"@polkadot/x-bundle@npm:^9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-bundle@npm:9.7.2" +"@polkadot/x-bundle@npm:^10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-bundle@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/util": 9.7.2 + "@polkadot/util": 10.0.1 buffer-es6: ^4.9.3 - checksum: d27a57678ba1e00bd4c17498b1c904e403f335e56ea2c68fe5699a7f8730462c31129e2f6d804656ea742d2b86fdfc1015e3fdde685338b2384941b1f68128c7 + checksum: d6ccc2cc372403e9770e9f7036335e735ed90dbe548ddc11bffea447204fd82eb4aa8770de011570ef73987157b4aeef6bd9fa32cf8fc2c5491f943c87f972ca languageName: node linkType: hard -"@polkadot/x-global@npm:9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-global@npm:9.7.2" +"@polkadot/x-global@npm:10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-global@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - checksum: 1c64fd3ba0d81707887bb0fcb55da1ee5977ebf4bf247bc078e1d96e7a12d2bed089fafa8776b8c219772049521cf49f45d378f37fed82aaafe44b0b5aad41ac + checksum: 1493f2408baf6a6c3e77c644bd9981e2db20235ed1d4859f26a96a574d42ed4bb62f32954ee940f7d4721b2f5bc88d7330122c658a1a1329c728e60aec56b831 languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-randomvalues@npm:9.7.2" +"@polkadot/x-randomvalues@npm:10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-randomvalues@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/x-global": 9.7.2 - checksum: 0c7e3a0b04dea40ce6696613970b523924e364de622e4180cfcb678a2187d4f59f143651aa16380b96bdebe022c462f4bfb53730e3528b24b0d2e9ffcc0276a2 + "@polkadot/x-global": 10.0.1 + checksum: cda0b5721a6b3fd064e4458a72cfc45e497767b291474776a2fed8a8a306d1f4c2d45746cfbe5fb6eac02265c5c30b48175d4cd6f3e928ca16b105770ae306c7 languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-textdecoder@npm:9.7.2" +"@polkadot/x-textdecoder@npm:10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-textdecoder@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/x-global": 9.7.2 - checksum: e2cb044723a7130fb8ad7f3799ede94f49777e94ab6806318f7fc5a0cfdba91fd06730da3292453c9a4d901b60b07b78efbbd44f917b99ea1490a79f8dfec39d + "@polkadot/x-global": 10.0.1 + checksum: f5c8ce059e16c220bee8a460ce29959e2ff2b71a775472f791913a6296b90461af0f6bdf9c3d16e57aee5702c6ffa27abf4e965e70e1d204bed03cee625a2b5f languageName: node linkType: hard -"@polkadot/x-textencoder@npm:9.7.2": - version: 9.7.2 - resolution: "@polkadot/x-textencoder@npm:9.7.2" +"@polkadot/x-textencoder@npm:10.0.1": + version: 10.0.1 + resolution: "@polkadot/x-textencoder@npm:10.0.1" dependencies: "@babel/runtime": ^7.18.6 - "@polkadot/x-global": 9.7.2 - checksum: 619bf4eafc086e777abfae67e1027136fb1e4d9761e20583da12c55c5b6cc852f227029b8b3241cda23b157e11d450d273b3526b792a95eaa294f0f785d9fe3c + "@polkadot/x-global": 10.0.1 + checksum: f36370dbdea0a3d681a42fdbf1f40801313592d80e57714f0e6efb543442c72334f2ea9ebfd539c3eb78c424c64520943ff51628504d789c17ab180dc1f33f7d languageName: node linkType: hard @@ -8252,13 +8252,6 @@ fsevents@~2.1.2: languageName: node linkType: hard -"ip-regex@npm:^4.3.0": - version: 4.3.0 - resolution: "ip-regex@npm:4.3.0" - checksum: 7ff904b891221b1847f3fdf3dbb3e6a8660dc39bc283f79eb7ed88f5338e1a3d1104b779bc83759159be266249c59c2160e779ee39446d79d4ed0890dfd06f08 - languageName: node - linkType: hard - "ip@npm:^1.1.5": version: 1.1.5 resolution: "ip@npm:1.1.5" @@ -12683,8 +12676,8 @@ resolve@^2.0.0-next.3: dependencies: "@babel/core": ^7.18.6 "@babel/runtime": ^7.18.6 - "@polkadot/dev": ^0.67.55 - "@polkadot/x-bundle": ^9.7.2 + "@polkadot/dev": ^0.67.65 + "@polkadot/x-bundle": ^10.0.1 "@types/jest": ^28.1.4 babel-loader: ^8.2.5 babel-plugin-transform-vue-template: ^0.4.2