From bd0e45cf64bb5d9ddb73f3db797d93c40f69b690 Mon Sep 17 00:00:00 2001 From: Jaco Date: Sat, 25 Mar 2023 13:59:04 +0200 Subject: [PATCH] 0.53.7 (#476) * 0.53.7 * Add docker:build npm action * Adjust docker build script * Bring back root install * Adjust docker build for test run * Retry with local run --- .github/workflows/auto-merge.yml | 2 +- .github/workflows/pr-any.yml | 2 +- .github/workflows/push-master.yml | 4 +- .gitignore | 1 + CHANGELOG.md | 8 + docker/Dockerfile | 24 - docker/Dockerfile.tmpl | 2 +- docker/build.sh | 9 +- package.json | 22 +- packages/api-cli/package.json | 16 +- packages/json-serve/package.json | 16 +- packages/metadata-cmp/package.json | 14 +- packages/monitor-rpc/package.json | 12 +- packages/signer-cli/package.json | 18 +- packages/vanitygen/package.json | 10 +- yarn.lock | 692 ++++++++++++++--------------- 16 files changed, 404 insertions(+), 448 deletions(-) delete mode 100644 docker/Dockerfile diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index caf5da1bb..fb732e29a 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: jacogr/action-merge@d2d64b4545acd93b0a9575177d3d215ae3f92029 with: - checks: pr (build),pr (lint),pr (test) + checks: pr (build),pr (lint),pr (test), pr (docker:build) labels: -auto strategy: squash token: ${{ secrets.GH_PAT_BOT }} diff --git a/.github/workflows/pr-any.yml b/.github/workflows/pr-any.yml index 9cee44281..eb9aeae73 100644 --- a/.github/workflows/pr-any.yml +++ b/.github/workflows/pr-any.yml @@ -6,7 +6,7 @@ jobs: continue-on-error: true strategy: matrix: - step: ['lint', 'test', 'build'] + step: ['lint', 'test', 'build', 'docker:build'] runs-on: ubuntu-latest env: YARN_ENABLE_SCRIPTS: false diff --git a/.github/workflows/push-master.yml b/.github/workflows/push-master.yml index 87404a459..2e8634ef1 100644 --- a/.github/workflows/push-master.yml +++ b/.github/workflows/push-master.yml @@ -43,5 +43,5 @@ jobs: node-version: 'lts/*' - name: docker run: | - ./docker/build.sh build - ./docker/build.sh publish + yarn docker:build + yarn docker:publish diff --git a/.gitignore b/.gitignore index 52a73d0e9..9cc60f0a3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ build/ build-*/ coverage/ +docker/Dockerfile node_modules/ tmp/ .DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6a87424..556408776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 0.53.7 Mar 25, 2023 + +Changes: + +- Upgrade to `@polkadot/api` 10.2.1 +- Upgrade to `@polkadot/util` 11.1.2 + + ## 0.53.6 Mar 19, 2023 Changes: diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index 831020926..000000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -# `Dockerfile` is generated from `Dockerfile.tmpl` via `docker.sh` -# -# To make build changes and have it reflect via the `Dockerfile`, you -# would make any build changes to `Dockerfile.tmpl`. `docker.sh build` -# takes this, adds the version from `package.json` and pulls a package -# from npm to do the the actual versioned build - -# base image -FROM ubuntu:latest - -# Run package updates -RUN apt-get update && \ - apt-get install -y build-essential curl gcc g++ gnupg make git -RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - -RUN apt-get install -y nodejs - -# env variable works around gyp install (secp256k1) with root permissions -RUN NPM_CONFIG_USER=root npm install -g @polkadot/api-cli@0.53.3 @polkadot/json-serve@0.53.3 @polkadot/metadata-cmp@0.53.3 @polkadot/monitor-rpc@0.53.3 @polkadot/signer-cli@0.53.3 @polkadot/vanitygen@0.53.3 - -# copy the cli wrapper to this container -COPY cli.sh . - -# run the cli wrapper with options as passed -ENTRYPOINT ["./cli.sh"] diff --git a/docker/Dockerfile.tmpl b/docker/Dockerfile.tmpl index e55ef8377..e9867c56e 100644 --- a/docker/Dockerfile.tmpl +++ b/docker/Dockerfile.tmpl @@ -14,7 +14,7 @@ RUN apt-get update && \ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - RUN apt-get install -y nodejs -# env variable works around gyp install (secp256k1) with root permissions +# install latest from npm (install as root, we assume we are secure inside...) RUN NPM_CONFIG_USER=root npm install -g @polkadot/api-cli@VERSION @polkadot/json-serve@VERSION @polkadot/metadata-cmp@VERSION @polkadot/monitor-rpc@VERSION @polkadot/signer-cli@VERSION @polkadot/vanitygen@VERSION # copy the cli wrapper to this container diff --git a/docker/build.sh b/docker/build.sh index a711f6f05..8135e208a 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -14,7 +14,7 @@ REPO="jacogr" # extract the current npm version from package.json VERSION=$(cat package.json \ - | grep version \ + | grep npm \ | head -1 \ | awk -F: '{ print $2 }' \ | sed 's/[",]//g' \ @@ -22,12 +22,15 @@ VERSION=$(cat package.json \ # helper function for the build logic function build () { - echo "*** Creating Dockerfile from latest npm version" + echo "*** Creating Dockerfile from npm version $VERSION" sed "s/VERSION/$VERSION/g" docker/Dockerfile.tmpl > docker/Dockerfile - echo "*** Building $NAME" + echo "*** Building $NAME:$VERSION" docker build -t $NAME docker + echo "*** Testing $NAME:$VERSION" + docker run $NAME api --help + exit 0 } diff --git a/package.json b/package.json index 3f070231e..6f491fbde 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "versions": { "git": "0.53.6", "npm": "0.53.6" @@ -26,6 +26,8 @@ "build": "polkadot-dev-build-ts", "build:release": "polkadot-ci-ghact-build", "clean": "polkadot-dev-clean-build", + "docker:build": "./docker/build.sh build", + "docker:publish": "./docker/build.sh publish", "lint": "polkadot-dev-run-lint", "postinstall": "polkadot-dev-yarn-only", "run:api": "node --loader @polkadot/dev-ts ./packages/api-cli/src/runcli.ts", @@ -37,17 +39,17 @@ "test": "yarn run:api --help && yarn run:json --help && yarn run:metadata --help && yarn run:monitor --help && yarn run:signer --help && yarn run:vanity --help" }, "devDependencies": { - "@polkadot/dev": "^0.72.15", - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@polkadot/dev": "^0.72.24", + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" }, "resolutions": { - "@polkadot/api": "^10.1.4", - "@polkadot/api-derive": "^10.1.4", - "@polkadot/keyring": "^11.1.1", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", - "@polkadot/util-crypto": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/api-derive": "^10.2.1", + "@polkadot/keyring": "^11.1.2", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", + "@polkadot/util-crypto": "^11.1.2", "typescript": "^5.0.2" } } diff --git a/packages/api-cli/package.json b/packages/api-cli/package.json index 3f85e82b5..35247c8e8 100644 --- a/packages/api-cli/package.json +++ b/packages/api-cli/package.json @@ -15,22 +15,22 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-api": "./runcli.mjs" }, "dependencies": { - "@polkadot/api": "^10.1.4", - "@polkadot/keyring": "^11.1.1", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", - "@polkadot/util-crypto": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/keyring": "^11.1.2", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", + "@polkadot/util-crypto": "^11.1.2", "tslib": "^2.5.0", "yargs": "^17.7.1" }, "devDependencies": { - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/packages/json-serve/package.json b/packages/json-serve/package.json index 4fe7df8f1..30eb7f34b 100644 --- a/packages/json-serve/package.json +++ b/packages/json-serve/package.json @@ -15,17 +15,17 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-json-serve": "./runcli.mjs" }, "dependencies": { - "@polkadot/api": "^10.1.4", - "@polkadot/api-augment": "^10.1.4", - "@polkadot/api-derive": "^10.1.4", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/api-augment": "^10.2.1", + "@polkadot/api-derive": "^10.2.1", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", "koa": "^2.14.1", "koa-route": "^3.2.0", "tslib": "^2.5.0", @@ -34,7 +34,7 @@ "devDependencies": { "@types/koa": "^2.13.5", "@types/koa-route": "^3.2.5", - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/packages/metadata-cmp/package.json b/packages/metadata-cmp/package.json index 207fdc678..8fab798c6 100644 --- a/packages/metadata-cmp/package.json +++ b/packages/metadata-cmp/package.json @@ -15,21 +15,21 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-metadata-cmp": "./runcli.mjs" }, "dependencies": { - "@polkadot/api": "^10.1.4", - "@polkadot/keyring": "^11.1.1", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/keyring": "^11.1.2", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", "tslib": "^2.5.0", "yargs": "^17.7.1" }, "devDependencies": { - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/packages/monitor-rpc/package.json b/packages/monitor-rpc/package.json index 76697f4ef..6eb8f5fe2 100644 --- a/packages/monitor-rpc/package.json +++ b/packages/monitor-rpc/package.json @@ -15,15 +15,15 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-monitor": "./runcli.mjs" }, "dependencies": { - "@polkadot/api": "^10.1.4", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", "koa": "^2.14.1", "koa-route": "^3.2.0", "tslib": "^2.5.0", @@ -32,7 +32,7 @@ "devDependencies": { "@types/koa": "^2.13.5", "@types/koa-route": "^3.2.5", - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/packages/signer-cli/package.json b/packages/signer-cli/package.json index 182c5e892..eab1f6a47 100644 --- a/packages/signer-cli/package.json +++ b/packages/signer-cli/package.json @@ -15,23 +15,23 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-signer": "./runcli.mjs" }, "dependencies": { - "@polkadot/api": "^10.1.4", - "@polkadot/api-cli": "^0.53.6", - "@polkadot/keyring": "^11.1.1", - "@polkadot/types": "^10.1.4", - "@polkadot/util": "^11.1.1", - "@polkadot/util-crypto": "^11.1.1", + "@polkadot/api": "^10.2.1", + "@polkadot/api-cli": "^0.53.7", + "@polkadot/keyring": "^11.1.2", + "@polkadot/types": "^10.2.1", + "@polkadot/util": "^11.1.2", + "@polkadot/util-crypto": "^11.1.2", "tslib": "^2.5.0", "yargs": "^17.7.1" }, "devDependencies": { - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/packages/vanitygen/package.json b/packages/vanitygen/package.json index 8bac788a6..8293ada21 100644 --- a/packages/vanitygen/package.json +++ b/packages/vanitygen/package.json @@ -15,19 +15,19 @@ }, "sideEffects": false, "type": "module", - "version": "0.53.6", + "version": "0.53.7", "main": "index.js", "bin": { "polkadot-js-vanitygen": "./runcli.mjs" }, "dependencies": { - "@polkadot/util": "^11.1.1", - "@polkadot/util-crypto": "^11.1.1", + "@polkadot/util": "^11.1.2", + "@polkadot/util-crypto": "^11.1.2", "tslib": "^2.5.0", "yargs": "^17.7.1" }, "devDependencies": { - "@types/node": "^18.15.3", - "@types/yargs": "^17.0.22" + "@types/node": "^18.15.9", + "@types/yargs": "^17.0.23" } } diff --git a/yarn.lock b/yarn.lock index cc866b8e3..778a41b8f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -364,45 +364,45 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:10.1.4, @polkadot/api-augment@npm:^10.1.4": - version: 10.1.4 - resolution: "@polkadot/api-augment@npm:10.1.4" - dependencies: - "@polkadot/api-base": 10.1.4 - "@polkadot/rpc-augment": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/types-augment": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/util": ^11.1.1 +"@polkadot/api-augment@npm:10.2.1, @polkadot/api-augment@npm:^10.2.1": + version: 10.2.1 + resolution: "@polkadot/api-augment@npm:10.2.1" + dependencies: + "@polkadot/api-base": 10.2.1 + "@polkadot/rpc-augment": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/types-augment": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: a3c5a1dcfbc9589f21031830f5594ccb7a354224af6aeed060d83f8172938a2f984e0cdbd0fd341c20131db436fedb6db73f70a228cf583b4fe22e298fa75e8a + checksum: 0ccb12839e6efc61a734cf8deb74cd70790ff5cb28db55a151f9dc9900719634aac0aabe1a6ba4579bb2fdcaa04b2234612b6172e2e92c804138e65828cd2dba languageName: node linkType: hard -"@polkadot/api-base@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/api-base@npm:10.1.4" +"@polkadot/api-base@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/api-base@npm:10.2.1" dependencies: - "@polkadot/rpc-core": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/rpc-core": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/util": ^11.1.2 rxjs: ^7.8.0 tslib: ^2.5.0 - checksum: 6b2775fd893a9ce296b9d75cc7de57638824f436a14c4d228e73976c62b55c21446a3a04f4e03687ecf46fe4fe6194abd09d30c5258fc3ebba4f120bdeaf3f4c + checksum: fbe0f04fd4decd34f6242e4dd9e80e0e7fded689e9cc6756d4dd1ddfc6dea1dd8f71c55c8a17745fa87c396f131a8713abb944527ecb255bb2849213a4056cd2 languageName: node linkType: hard -"@polkadot/api-cli@^0.53.6, @polkadot/api-cli@workspace:packages/api-cli": +"@polkadot/api-cli@^0.53.7, @polkadot/api-cli@workspace:packages/api-cli": version: 0.0.0-use.local resolution: "@polkadot/api-cli@workspace:packages/api-cli" dependencies: - "@polkadot/api": ^10.1.4 - "@polkadot/keyring": ^11.1.1 - "@polkadot/types": ^10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@polkadot/api": ^10.2.1 + "@polkadot/keyring": ^11.1.2 + "@polkadot/types": ^10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 tslib: ^2.5.0 yargs: ^17.7.1 bin: @@ -410,77 +410,77 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/api-derive@npm:^10.1.4": - version: 10.1.4 - resolution: "@polkadot/api-derive@npm:10.1.4" - dependencies: - "@polkadot/api": 10.1.4 - "@polkadot/api-augment": 10.1.4 - "@polkadot/api-base": 10.1.4 - "@polkadot/rpc-core": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 +"@polkadot/api-derive@npm:^10.2.1": + version: 10.2.1 + resolution: "@polkadot/api-derive@npm:10.2.1" + dependencies: + "@polkadot/api": 10.2.1 + "@polkadot/api-augment": 10.2.1 + "@polkadot/api-base": 10.2.1 + "@polkadot/rpc-core": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 rxjs: ^7.8.0 tslib: ^2.5.0 - checksum: a41361318826d895c876a35c5c123c3516a16b9ae46373c955c037c9206a212ca866839215fb3456bf357b614ca9f690c3e24f5832ed0226ec78060cb833e1f9 - languageName: node - linkType: hard - -"@polkadot/api@npm:^10.1.4": - version: 10.1.4 - resolution: "@polkadot/api@npm:10.1.4" - dependencies: - "@polkadot/api-augment": 10.1.4 - "@polkadot/api-base": 10.1.4 - "@polkadot/api-derive": 10.1.4 - "@polkadot/keyring": ^11.1.1 - "@polkadot/rpc-augment": 10.1.4 - "@polkadot/rpc-core": 10.1.4 - "@polkadot/rpc-provider": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/types-augment": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/types-create": 10.1.4 - "@polkadot/types-known": 10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 + checksum: 13a1c3d2df0ec420349e8f401b966969fd809d389a6950e3c449cdce2c21e6c93fd4204728e11e0f68a70db984a11fb2524f287b1f39c58eaffad4edf5cb3e92 + languageName: node + linkType: hard + +"@polkadot/api@npm:^10.2.1": + version: 10.2.1 + resolution: "@polkadot/api@npm:10.2.1" + dependencies: + "@polkadot/api-augment": 10.2.1 + "@polkadot/api-base": 10.2.1 + "@polkadot/api-derive": 10.2.1 + "@polkadot/keyring": ^11.1.2 + "@polkadot/rpc-augment": 10.2.1 + "@polkadot/rpc-core": 10.2.1 + "@polkadot/rpc-provider": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/types-augment": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/types-create": 10.2.1 + "@polkadot/types-known": 10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 eventemitter3: ^5.0.0 rxjs: ^7.8.0 tslib: ^2.5.0 - checksum: ef120d4c2aa7c115d26c0b232734485304a57c2532990d6161f906dc39bd36be55ad9c616c1292d8df704bcc95f9c804634fb896af6225c6d928743fe7440208 + checksum: 4aa97bb43cd1cf93a91defa986d0e614f3a072fcf807d055eb4eaafb55d0bd1c13d54c6ce0bb6088b848b86147b31b20529fd911d1d9394791af7a7cf8163311 languageName: node linkType: hard -"@polkadot/dev-test@npm:^0.72.15": - version: 0.72.15 - resolution: "@polkadot/dev-test@npm:0.72.15" +"@polkadot/dev-test@npm:^0.72.24": + version: 0.72.24 + resolution: "@polkadot/dev-test@npm:0.72.24" dependencies: jsdom: ^21.1.1 tslib: ^2.5.0 - checksum: 827bc33d30dd305cc4e43f3e87aa8aad66d928d5692d9ec2df6f4490ee955cec7780a4e06d70631c7626f81f960b591e5bcd208e144cc8ecb7f60853a8878343 + checksum: cf45cd2e9d6352d2c6f82fe3b52cb6b24435f9e693b570d71333cfe942584c41b634ac0fafd72a24c131269a253b6c2b8d075e28fc0f544cc5dc8131e2f7ab2a languageName: node linkType: hard -"@polkadot/dev-ts@npm:^0.72.15": - version: 0.72.15 - resolution: "@polkadot/dev-ts@npm:0.72.15" +"@polkadot/dev-ts@npm:^0.72.24": + version: 0.72.24 + resolution: "@polkadot/dev-ts@npm:0.72.24" dependencies: json5: ^2.2.3 tslib: ^2.5.0 typescript: ^5.0.2 - checksum: 9ac0a59b3d7790ee747e6575e2c83a1c97c0aca9573a22c0423c3fdf33f2b61caf03561fe011756deb86a759540826cbbac718bc192298f22149479604bc5b54 + checksum: acc084e8e38881b3f49fe05b1a8dff59575cbda5ddc19e7cc6791e03e822815d17ee0bb7753dc78570cb2c365aaf216d2b520d228923d7c9af09a467af557629 languageName: node linkType: hard -"@polkadot/dev@npm:^0.72.15": - version: 0.72.15 - resolution: "@polkadot/dev@npm:0.72.15" +"@polkadot/dev@npm:^0.72.24": + version: 0.72.24 + resolution: "@polkadot/dev@npm:0.72.24" dependencies: "@eslint/js": ^8.36.0 - "@polkadot/dev-test": ^0.72.15 - "@polkadot/dev-ts": ^0.72.15 + "@polkadot/dev-test": ^0.72.24 + "@polkadot/dev-ts": ^0.72.24 "@rollup/plugin-alias": ^4.0.3 "@rollup/plugin-commonjs": ^24.0.1 "@rollup/plugin-dynamic-import-vars": ^2.0.3 @@ -488,12 +488,12 @@ __metadata: "@rollup/plugin-json": ^6.0.0 "@rollup/plugin-node-resolve": ^15.0.1 "@rushstack/eslint-patch": ^1.2.0 - "@typescript-eslint/eslint-plugin": ^5.55.0 - "@typescript-eslint/parser": ^5.55.0 + "@typescript-eslint/eslint-plugin": ^5.56.0 + "@typescript-eslint/parser": ^5.56.0 eslint: ^8.36.0 eslint-config-standard: ^17.0.0 eslint-import-resolver-node: ^0.3.7 - eslint-plugin-deprecation: ^1.3.3 + eslint-plugin-deprecation: ^1.4.0-next.1 eslint-plugin-header: ^3.1.1 eslint-plugin-import: ^2.27.5 eslint-plugin-import-newlines: ^1.3.1 @@ -507,14 +507,13 @@ __metadata: gh-pages: ^5.0.0 gh-release: ^7.0.2 madge: ^6.0.0 - rollup: ^3.19.1 + rollup: ^3.20.2 rollup-plugin-cleanup: ^3.2.1 - tap-parser: ^12.0.1 tslib: ^2.5.0 typescript: ^5.0.2 - webpack: ^5.76.2 + webpack: ^5.76.3 webpack-cli: ^5.0.1 - webpack-dev-server: ^4.13.0 + webpack-dev-server: ^4.13.1 webpack-merge: ^5.8.0 webpack-subresource-integrity: ^5.2.0-rc.1 yargs: ^17.7.1 @@ -542,7 +541,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: 03ea1b1b886783a2cdaf978c8e51b2ef6f75ddd7e91b4d72dffc2d0efbf7f5c15ed9bb63fc331bbef93ff9df9bb280a3b74c5f1030ce7c6e3dd94be613c270ed + checksum: fad1958dc40ae0cdc1dbaa29f97c4b9ef90aade92bb27e05725803c72855f0aa9669d4e5cebde627aebf9f08c2d03e45b2d235168cf3535afa8261b38c7aab8e languageName: node linkType: hard @@ -550,15 +549,15 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/json-serve@workspace:packages/json-serve" dependencies: - "@polkadot/api": ^10.1.4 - "@polkadot/api-augment": ^10.1.4 - "@polkadot/api-derive": ^10.1.4 - "@polkadot/types": ^10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/api": ^10.2.1 + "@polkadot/api-augment": ^10.2.1 + "@polkadot/api-derive": ^10.2.1 + "@polkadot/types": ^10.2.1 + "@polkadot/util": ^11.1.2 "@types/koa": ^2.13.5 "@types/koa-route": ^3.2.5 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 koa: ^2.14.1 koa-route: ^3.2.0 tslib: ^2.5.0 @@ -568,17 +567,17 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/keyring@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/keyring@npm:11.1.1" +"@polkadot/keyring@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/keyring@npm:11.1.2" dependencies: - "@polkadot/util": 11.1.1 - "@polkadot/util-crypto": 11.1.1 + "@polkadot/util": 11.1.2 + "@polkadot/util-crypto": 11.1.2 tslib: ^2.5.0 peerDependencies: - "@polkadot/util": 11.1.1 - "@polkadot/util-crypto": 11.1.1 - checksum: 7236edeb86250062ffc498cffd0ffe2d408b306ce01aca47035c69d4f98ecf9f3844e72736dded4eebaf2e50eb273e80916a680e61458123375808b9b7a6435b + "@polkadot/util": 11.1.2 + "@polkadot/util-crypto": 11.1.2 + checksum: 6308d3a20732d06de83f3c9ea28355757b1019185c8b170f6d93b415b2876ae0e0f3c4b44ce03d3d0693d177f354c914728653b7c7a388abc93d738d73699f43 languageName: node linkType: hard @@ -586,12 +585,12 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/metadata-cmp@workspace:packages/metadata-cmp" dependencies: - "@polkadot/api": ^10.1.4 - "@polkadot/keyring": ^11.1.1 - "@polkadot/types": ^10.1.4 - "@polkadot/util": ^11.1.1 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@polkadot/api": ^10.2.1 + "@polkadot/keyring": ^11.1.2 + "@polkadot/types": ^10.2.1 + "@polkadot/util": ^11.1.2 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 tslib: ^2.5.0 yargs: ^17.7.1 bin: @@ -603,13 +602,13 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/monitor-rpc@workspace:packages/monitor-rpc" dependencies: - "@polkadot/api": ^10.1.4 - "@polkadot/types": ^10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/api": ^10.2.1 + "@polkadot/types": ^10.2.1 + "@polkadot/util": ^11.1.2 "@types/koa": ^2.13.5 "@types/koa-route": ^3.2.5 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 koa: ^2.14.1 koa-route: ^3.2.0 tslib: ^2.5.0 @@ -619,57 +618,57 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/networks@npm:11.1.1, @polkadot/networks@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/networks@npm:11.1.1" +"@polkadot/networks@npm:11.1.2, @polkadot/networks@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/networks@npm:11.1.2" dependencies: - "@polkadot/util": 11.1.1 + "@polkadot/util": 11.1.2 "@substrate/ss58-registry": ^1.39.0 tslib: ^2.5.0 - checksum: 503a3a3048e977f7b650d93814303e78b2d978f44bfcb7a1db00fab7977085da4d7ad9025e76fa4599f7d2c60b1f09cd40f0213d3ad9fd0c48a0e721fcc52c6d + checksum: e9087f962966a65010b922ea05b4d376e9c2ca1069cc8c26d02e59cdc4a31821032c9a969991c70aad6eacf0f2e7f3305769f9390ccf465e5a55829d11b1649b languageName: node linkType: hard -"@polkadot/rpc-augment@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/rpc-augment@npm:10.1.4" +"@polkadot/rpc-augment@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/rpc-augment@npm:10.2.1" dependencies: - "@polkadot/rpc-core": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/rpc-core": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: 0e96d90c6c96f3ee1a5c57f037203738ccf754b47c25486d3977dd09bf803f9528de63800f08b24da67185956bc3ce6b08d37da377a7b47ea9736359f59f0b97 + checksum: 3e3f37413f9610a6e8746f6c3dc9c0652a4d6a06f6d3651f6af23682f67fa334c0925d5466e94a632acb17dcff5fb9101a511d41cab8ef371a8559ca9929df72 languageName: node linkType: hard -"@polkadot/rpc-core@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/rpc-core@npm:10.1.4" +"@polkadot/rpc-core@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/rpc-core@npm:10.2.1" dependencies: - "@polkadot/rpc-augment": 10.1.4 - "@polkadot/rpc-provider": 10.1.4 - "@polkadot/types": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/rpc-augment": 10.2.1 + "@polkadot/rpc-provider": 10.2.1 + "@polkadot/types": 10.2.1 + "@polkadot/util": ^11.1.2 rxjs: ^7.8.0 tslib: ^2.5.0 - checksum: 2f17b8932049f18cd3444cd8c9ccb4c0c41571055402bebe774e903f6a67903ac88477a34cd2ec6571ada3e2be0db4a68ec951549d1d74d2fc7c51ae11dc9b3f + checksum: 8fd11f769772ed73939fbb02ef376149eaf12e93e1ac67995f27e3c7736525c9b569f46a15a5dcbff30761644366b08bd0513111540263777c72e024d4d58751 languageName: node linkType: hard -"@polkadot/rpc-provider@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/rpc-provider@npm:10.1.4" +"@polkadot/rpc-provider@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/rpc-provider@npm:10.2.1" dependencies: - "@polkadot/keyring": ^11.1.1 - "@polkadot/types": 10.1.4 - "@polkadot/types-support": 10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 - "@polkadot/x-fetch": ^11.1.1 - "@polkadot/x-global": ^11.1.1 - "@polkadot/x-ws": ^11.1.1 - "@substrate/connect": 0.7.21 + "@polkadot/keyring": ^11.1.2 + "@polkadot/types": 10.2.1 + "@polkadot/types-support": 10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 + "@polkadot/x-fetch": ^11.1.2 + "@polkadot/x-global": ^11.1.2 + "@polkadot/x-ws": ^11.1.2 + "@substrate/connect": 0.7.22 eventemitter3: ^5.0.0 mock-socket: ^9.2.1 nock: ^13.3.0 @@ -677,7 +676,7 @@ __metadata: dependenciesMeta: "@substrate/connect": optional: true - checksum: 7f0ef000e76bbcd42b1438d2a1da6283106c56f3b8b180997a5003cedd4024ee2037c3b7a5140d5fa7927bfba090ce26940b287adf4874184ba5ad5d8a22293c + checksum: 73b7f56646e03c27c777e7fb787a2354c3b86f8a63c2f6dbaf0a7d11e1cee7a0450bb66f3a904324cad6b3f30ba42b27cfab26f9e50df4238fe12705702e2892 languageName: node linkType: hard @@ -685,14 +684,14 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/signer-cli@workspace:packages/signer-cli" dependencies: - "@polkadot/api": ^10.1.4 - "@polkadot/api-cli": ^0.53.6 - "@polkadot/keyring": ^11.1.1 - "@polkadot/types": ^10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@polkadot/api": ^10.2.1 + "@polkadot/api-cli": ^0.53.7 + "@polkadot/keyring": ^11.1.2 + "@polkadot/types": ^10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 tslib: ^2.5.0 yargs: ^17.7.1 bin: @@ -700,112 +699,112 @@ __metadata: languageName: unknown linkType: soft -"@polkadot/types-augment@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/types-augment@npm:10.1.4" +"@polkadot/types-augment@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/types-augment@npm:10.2.1" dependencies: - "@polkadot/types": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/types": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: 7ec56b4fe78e7a94faf9063240c2385f557b60aaf98d1842cbd44bb1943481aa48c9ca66185372c5a7087b3b26c6685f443606092517ad9147748371f0cdeb77 + checksum: 7aa0d08d4937c01c78f2eb070bd2a65427e510b8c67fe7db839dd767c8469a6055a003fcb1e682b09fd12d09f83d6295ebdfb7d70497f5ba415c9d963fd0f0ac languageName: node linkType: hard -"@polkadot/types-codec@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/types-codec@npm:10.1.4" +"@polkadot/types-codec@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/types-codec@npm:10.2.1" dependencies: - "@polkadot/util": ^11.1.1 - "@polkadot/x-bigint": ^11.1.1 + "@polkadot/util": ^11.1.2 + "@polkadot/x-bigint": ^11.1.2 tslib: ^2.5.0 - checksum: 4b8bef53674c4c544a26ecd022d2a0b40697e9494aaf53ad92a0ba1123d67e25b724ba9494b83b781846ba235829d89bb093b1e4938522bcb50294c3527c58f4 + checksum: 8f1003a230f110371cd6c63f0f8cf06504c9f1e61845da0ff054df87bd280fdf6920b60a60030424c275c8b4b6986546727db044667e3e62cfa35870fcb3757a languageName: node linkType: hard -"@polkadot/types-create@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/types-create@npm:10.1.4" +"@polkadot/types-create@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/types-create@npm:10.2.1" dependencies: - "@polkadot/types-codec": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: 0e56995a1cacc6ad053ad37b7e1a6a5616b28e6dfe98235575b2493a340b9e7ca9c91013d7f4e39d724572e74e776111b147ddc410f5aa90b74ce7ed523e07f3 + checksum: 5541b5c8b2ef647ee236d65effaf72d516876ae6bf377a9a081d4a5650cbc1906766501d7ee46144d3a070e3890602537ffb9cd65bccd0f9105cc9271598784e languageName: node linkType: hard -"@polkadot/types-known@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/types-known@npm:10.1.4" +"@polkadot/types-known@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/types-known@npm:10.2.1" dependencies: - "@polkadot/networks": ^11.1.1 - "@polkadot/types": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/types-create": 10.1.4 - "@polkadot/util": ^11.1.1 + "@polkadot/networks": ^11.1.2 + "@polkadot/types": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/types-create": 10.2.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: c967f28b32d6e8a4319ee26962119860cfa045ce07ce749a3e7bbab072a62ca8b2807f7deed47fa74ef214a4e99413f62265f60378bd2f3888d96dc482475ed5 + checksum: 16ee6942c6e4c82522d3e2718984c67549cb46b5390d10c342d23e17ea2351f8fe764e3342770c599b132a262c74bcedc187c2e4bd3fa983dac5a6a072c7f97a languageName: node linkType: hard -"@polkadot/types-support@npm:10.1.4": - version: 10.1.4 - resolution: "@polkadot/types-support@npm:10.1.4" +"@polkadot/types-support@npm:10.2.1": + version: 10.2.1 + resolution: "@polkadot/types-support@npm:10.2.1" dependencies: - "@polkadot/util": ^11.1.1 + "@polkadot/util": ^11.1.2 tslib: ^2.5.0 - checksum: 79dedb8f791e29c54940ce100ab7c47834fbc025aaef667f0e368b799e81e38787ca4c4a762357449e3d1834c8d9cc99cdc95f42775c8e9013e076f6103a8e50 + checksum: e0cff3c6c42e16d5df1410030f4645e687f56fede92da638bf174a4af539a995751d81971932d2e9813734414a7452478849ae36473bd14e1b71836b22a9396b languageName: node linkType: hard -"@polkadot/types@npm:^10.1.4": - version: 10.1.4 - resolution: "@polkadot/types@npm:10.1.4" +"@polkadot/types@npm:^10.2.1": + version: 10.2.1 + resolution: "@polkadot/types@npm:10.2.1" dependencies: - "@polkadot/keyring": ^11.1.1 - "@polkadot/types-augment": 10.1.4 - "@polkadot/types-codec": 10.1.4 - "@polkadot/types-create": 10.1.4 - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 + "@polkadot/keyring": ^11.1.2 + "@polkadot/types-augment": 10.2.1 + "@polkadot/types-codec": 10.2.1 + "@polkadot/types-create": 10.2.1 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 rxjs: ^7.8.0 tslib: ^2.5.0 - checksum: 9eb277345dfc95724a3477cfea77917d964bece79d2696557b46533d1d1a4fc1d6ddac2254ab2e298d442a8f25d1b828fe5c28557c8be4fef88e80af45d809ce + checksum: e0553e19cf49eb52c2d9e76e6835b954f63bf4cbc3364f2cd276fe08e940f681267719d4b6e8c07af1b560ca5cec6dc770dfc73f6e7465b7097829aef53bba88 languageName: node linkType: hard -"@polkadot/util-crypto@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/util-crypto@npm:11.1.1" +"@polkadot/util-crypto@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/util-crypto@npm:11.1.2" dependencies: "@noble/hashes": 1.3.0 "@noble/secp256k1": 1.7.1 - "@polkadot/networks": 11.1.1 - "@polkadot/util": 11.1.1 + "@polkadot/networks": 11.1.2 + "@polkadot/util": 11.1.2 "@polkadot/wasm-crypto": ^7.0.3 - "@polkadot/x-bigint": 11.1.1 - "@polkadot/x-randomvalues": 11.1.1 + "@polkadot/x-bigint": 11.1.2 + "@polkadot/x-randomvalues": 11.1.2 "@scure/base": 1.1.1 tslib: ^2.5.0 tweetnacl: ^1.0.3 peerDependencies: - "@polkadot/util": 11.1.1 - checksum: bb89ecfcaf90c5238c21f924557991c962f36411cd1e88408e65cdda8ce0b04b6a5ec1fcd9e9e560d4cc11adcea4c4992924b59a151b8ef43b38126a4533c94a + "@polkadot/util": 11.1.2 + checksum: cd84ad7e961611c6973e142bfeefd85037be568206e27a8b94bb5a69c4b572cf7d7b68fa09bc2f9376ec403f8f56d382ee47225d12e55ee4ca30384c433c6eb9 languageName: node linkType: hard -"@polkadot/util@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/util@npm:11.1.1" +"@polkadot/util@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/util@npm:11.1.2" dependencies: - "@polkadot/x-bigint": 11.1.1 - "@polkadot/x-global": 11.1.1 - "@polkadot/x-textdecoder": 11.1.1 - "@polkadot/x-textencoder": 11.1.1 + "@polkadot/x-bigint": 11.1.2 + "@polkadot/x-global": 11.1.2 + "@polkadot/x-textdecoder": 11.1.2 + "@polkadot/x-textencoder": 11.1.2 "@types/bn.js": ^5.1.1 bn.js: ^5.2.1 tslib: ^2.5.0 - checksum: fd9e999c971425efc4278c98aa73d802022282b05e0d65e53361933c09956e19b3db6515ff82561853af6a65d61e9674a8a58d1286c764d96d9e623766ec5f4d + checksum: a44c24a65f5645e76dc0088ed03ff9206ea78c6b333f558f31dee9f5d60b61f67fd37a71c0aae512c2d4757536dbca4ea604014cd5c6aac374ab0cc6fb86c37f languageName: node linkType: hard @@ -813,10 +812,10 @@ __metadata: version: 0.0.0-use.local resolution: "@polkadot/vanitygen@workspace:packages/vanitygen" dependencies: - "@polkadot/util": ^11.1.1 - "@polkadot/util-crypto": ^11.1.1 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@polkadot/util": ^11.1.2 + "@polkadot/util-crypto": ^11.1.2 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 tslib: ^2.5.0 yargs: ^17.7.1 bin: @@ -902,74 +901,74 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-bigint@npm:11.1.1, @polkadot/x-bigint@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-bigint@npm:11.1.1" +"@polkadot/x-bigint@npm:11.1.2, @polkadot/x-bigint@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-bigint@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 tslib: ^2.5.0 - checksum: 23132e64e627c3cdb8c08bcc5ee49887256f651138c4f7eb967c4eb7d73e1a77ab7b9eaa352247a281e96919fbb61cccaca6f0487d9127ad8fc8dc131f1e2a13 + checksum: 83d834c53ad9c3fd63365d2c33d800cd16897df6a0d363f0224129ea506c7f8bb2aab683284377208fb3b6915c35cc92bac3b989dcfbd4c2a42cda899f84844e languageName: node linkType: hard -"@polkadot/x-fetch@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-fetch@npm:11.1.1" +"@polkadot/x-fetch@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-fetch@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 node-fetch: ^3.3.1 tslib: ^2.5.0 - checksum: c30245b0834153dbef7916df239c83df8b0d0010b3ce83e4ff5bb76ab21909d513c4d4ce5e72c277dc4a5ba9b076f10452f853594b85c2365dd230b258c94e1d + checksum: cc22d68ad06ded5296daf7e91b4253b652820b61b5c4264694af62d028e67f10b9f6b5c63272196bfa6c738481e3d9284d1b5dbbc6c3692ed2a4f31209c59a2e languageName: node linkType: hard -"@polkadot/x-global@npm:11.1.1, @polkadot/x-global@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-global@npm:11.1.1" +"@polkadot/x-global@npm:11.1.2, @polkadot/x-global@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-global@npm:11.1.2" dependencies: tslib: ^2.5.0 - checksum: e682618a060dc70c4194d24d12fa162635ff2a38bc472a8aa8e4a010acb51c00a18b827b6e4310cd53678cd5be0c28f25ab3ba7beda1d772fdb6b39c7345c539 + checksum: dc6e4af5a4753e5043a38156fcc756f0c3d22b8b1d5a1ec98c555da2e2894486f6256b50d280e426524b89dd817a09d197322e49e40eb0190f41fdc252e2ea2c languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-randomvalues@npm:11.1.1" +"@polkadot/x-randomvalues@npm:11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-randomvalues@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 tslib: ^2.5.0 - checksum: f4457444dc67a0f066369b5b39e976bb3b3eb7077625c467e8f0b9b8d7caed6eca9efe11fc7cc1644f4b719b7312055e2fe8c6bc649a03f8f280f35853659795 + checksum: 0c72571133ddd5daf14ac2777ba50e577da5ea7063d823fa3f678e47b63ee96f876117f9209b5c8780d5607060166cca13408c0461550388b5e846a57e23d005 languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-textdecoder@npm:11.1.1" +"@polkadot/x-textdecoder@npm:11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-textdecoder@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 tslib: ^2.5.0 - checksum: fc54e2053b9bd2d06c9318334543509176f2144fc0ea1104ee018a06f02220231d61399f9bfe7580387dfb0460ed7c1d22357dc38ea628fe7a6ffce037583c93 + checksum: 85e78762dfe3583f8776fc531d4fba3a547530da65790d993447893924fc8d9d9cde44f438d8bbafe5e34edaeea505a6866bd106b3bcc145f0bc8514d626d822 languageName: node linkType: hard -"@polkadot/x-textencoder@npm:11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-textencoder@npm:11.1.1" +"@polkadot/x-textencoder@npm:11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-textencoder@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 tslib: ^2.5.0 - checksum: 791550f3e9fe875ffac9e14db33876f98ac90e0ebdf51aa4b0b397cc0fbd54d3d4050aec99becdaa5291537caa11f93b1f12a4183f33a33ad952409cbf9bf135 + checksum: 9a9425a8e55a5c3a50eb2bbe0e6840bd055cf5c1ccdb410cb117d33bf3ae792055c6a498f150a8de227725f73ef4bc008bfa9f061408bb42b01242e9820261ef languageName: node linkType: hard -"@polkadot/x-ws@npm:^11.1.1": - version: 11.1.1 - resolution: "@polkadot/x-ws@npm:11.1.1" +"@polkadot/x-ws@npm:^11.1.2": + version: 11.1.2 + resolution: "@polkadot/x-ws@npm:11.1.2" dependencies: - "@polkadot/x-global": 11.1.1 + "@polkadot/x-global": 11.1.2 tslib: ^2.5.0 ws: ^8.13.0 - checksum: 5edb4b58ccb5a32b7859996aa33bf2a1ffebc9f35a55ea04f055ec6920f6d966cf0623f2e5c28a04dbf08f59c087533bb9feadf0be72371a5c9d20ce97cb5071 + checksum: 59c3e1914159334b611066ef4f3b6c55008737f309870b25180e5071a42e86ec0bab04979848eac8a44264d312f2eeb147bc04d2a25343486300e92bcc44f512 languageName: node linkType: hard @@ -1116,14 +1115,14 @@ __metadata: languageName: node linkType: hard -"@substrate/connect@npm:0.7.21": - version: 0.7.21 - resolution: "@substrate/connect@npm:0.7.21" +"@substrate/connect@npm:0.7.22": + version: 0.7.22 + resolution: "@substrate/connect@npm:0.7.22" dependencies: "@substrate/connect-extension-protocol": ^1.0.1 eventemitter3: ^4.0.7 smoldot: 1.0.0 - checksum: 63fd91ed42ed5e36158c7fb9df916fad31f3ee19f93eddd16bd7ebea934c1aecac1cbc1c01ddffcb9623b618b52fe2ece5bbba959626ee129eafaaa199b78389 + checksum: 4128c5a037d12de7146416023c9088fe0dedd75734e378e3aaa00d922fae56325df1ba3a49cf3f9489d3bd90941fe73570bc486a2aa8091017083d3250e43d56 languageName: node linkType: hard @@ -1377,10 +1376,10 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^18.15.3": - version: 18.15.3 - resolution: "@types/node@npm:18.15.3" - checksum: 31b1d92475a82c30de29aa6c0771b18a276552d191283b4423ba2d61b3f01159bf0d02576c0b7cc834b043997893800db6bb47f246083ed85aa45e79c80875d7 +"@types/node@npm:*, @types/node@npm:^18.15.9": + version: 18.15.9 + resolution: "@types/node@npm:18.15.9" + checksum: 5165f84f2fe25699879129b98c405c05e8d0428414c99fa544e22bdd0ea502aac384d26418298a31983064fa18c98e2fba5791b9c907bd78ccbcb49c23101bee languageName: node linkType: hard @@ -1472,23 +1471,23 @@ __metadata: languageName: node linkType: hard -"@types/yargs@npm:^17.0.22": - version: 17.0.22 - resolution: "@types/yargs@npm:17.0.22" +"@types/yargs@npm:^17.0.23": + version: 17.0.23 + resolution: "@types/yargs@npm:17.0.23" dependencies: "@types/yargs-parser": "*" - checksum: 0773523fda71bafdc52f13f5970039e535a353665a60ba9261149a5c9c2b908242e6e77fbb7a8c06931ec78ce889d64d09673c68ba23eb5f5742d5385d0d1982 + checksum: c5f787d7a9a36ea94ba5d3f340fc5d93d2860eff8fa9731cd614ed23212e4fca75637e2386e37e376a720e4bf088ceed6f39050f1c3638fc1b75bce5c70b1ad4 languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/eslint-plugin@npm:5.55.0" +"@typescript-eslint/eslint-plugin@npm:^5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.56.0" dependencies: "@eslint-community/regexpp": ^4.4.0 - "@typescript-eslint/scope-manager": 5.55.0 - "@typescript-eslint/type-utils": 5.55.0 - "@typescript-eslint/utils": 5.55.0 + "@typescript-eslint/scope-manager": 5.56.0 + "@typescript-eslint/type-utils": 5.56.0 + "@typescript-eslint/utils": 5.56.0 debug: ^4.3.4 grapheme-splitter: ^1.0.4 ignore: ^5.2.0 @@ -1501,7 +1500,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: e3239ec6016eeb73b8b4d8310581978e28b8d3378140a8eb70bd8e33ffd332266020c19d493e0ccae4edfd4abd6097608718c50308fe6288f4ffeb8e4784efd9 + checksum: 2eed4a4ed8279950ad553252e8623e947ffdee39b0d677a13f6e4e2d863ea1cbc5d683ff189e55d0de6fd5a25afd72d3c3a9ab7ae417d5405a21ead907e1b154 languageName: node linkType: hard @@ -1516,20 +1515,20 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/parser@npm:5.55.0" +"@typescript-eslint/parser@npm:^5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/parser@npm:5.56.0" dependencies: - "@typescript-eslint/scope-manager": 5.55.0 - "@typescript-eslint/types": 5.55.0 - "@typescript-eslint/typescript-estree": 5.55.0 + "@typescript-eslint/scope-manager": 5.56.0 + "@typescript-eslint/types": 5.56.0 + "@typescript-eslint/typescript-estree": 5.56.0 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 48a20dc7e67960b5168b77bfb9d11d053a21d57bb83cf7b59f750191cbca5eea3b4636a8e6e75cc0aca5a84cdef91fed5440934fc2935f8c6fa71630a253a50c + checksum: eb25490290bd5e22f9c42603dedc0d2d8ee845553e3cf48ea377bd5dc22440d3463f8b84be637b6a2b37cd9ea56b21e4e43007a0a69998948d9c8965c03fe1aa languageName: node linkType: hard @@ -1543,22 +1542,22 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/scope-manager@npm:5.55.0" +"@typescript-eslint/scope-manager@npm:5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/scope-manager@npm:5.56.0" dependencies: - "@typescript-eslint/types": 5.55.0 - "@typescript-eslint/visitor-keys": 5.55.0 - checksum: f253db88f69a29e4abe2f567d0a611cc3e7fb1a911a2cc54a2f6baf16e3de4d1883b3f8e45ee61b3db9fa5543dda0fd7b608de9d28ba6173ab49bfd17ff90cad + "@typescript-eslint/types": 5.56.0 + "@typescript-eslint/visitor-keys": 5.56.0 + checksum: bacac255ee52148cee6622be2811c0d7e25419058b89f1a11f4c1303faef4535a0a1237549f9556ec1d7a297c640ce4357183a1a8465d72e1393b7d8fb43874b languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/type-utils@npm:5.55.0" +"@typescript-eslint/type-utils@npm:5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/type-utils@npm:5.56.0" dependencies: - "@typescript-eslint/typescript-estree": 5.55.0 - "@typescript-eslint/utils": 5.55.0 + "@typescript-eslint/typescript-estree": 5.56.0 + "@typescript-eslint/utils": 5.56.0 debug: ^4.3.4 tsutils: ^3.21.0 peerDependencies: @@ -1566,7 +1565,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 5c60d441355b51f96b596324068c10605c74abb46748c0bbc6d8f7f2ea40acb6b4bda3b537105fa189172324c56d18bd88e7102e67f99f8c03bc05c6d0e2023d + checksum: 3dd1fcfadad18790b900a3d90f6617904adb6b0e2bd1e1edb6ebf239e1399865ca9098647405385feb4252d8b2b4577883e6fd3ef8d00bdd521d6070972d486b languageName: node linkType: hard @@ -1584,10 +1583,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/types@npm:5.55.0" - checksum: 7d851f09a2106514d3a9c7164d34758f30abfe554e3c7a02be75cdc7e16644e23ca32840a8f39a0321bc509927fb4d98ce91b22b21e8544ac56cef33b815a864 +"@typescript-eslint/types@npm:5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/types@npm:5.56.0" + checksum: 82ca11553bbb1bbfcaf7e7760b03c0d898940238dc002552c21af3e58f7d482c64c3c6cf0666521aff2a1e7b4b58bb6e4d9a00b1e4998a16b5039f5d288d003a languageName: node linkType: hard @@ -1609,12 +1608,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.55.0, @typescript-eslint/typescript-estree@npm:^5.13.0": - version: 5.55.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.55.0" +"@typescript-eslint/typescript-estree@npm:5.56.0, @typescript-eslint/typescript-estree@npm:^5.13.0": + version: 5.56.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.56.0" dependencies: - "@typescript-eslint/types": 5.55.0 - "@typescript-eslint/visitor-keys": 5.55.0 + "@typescript-eslint/types": 5.56.0 + "@typescript-eslint/visitor-keys": 5.56.0 debug: ^4.3.4 globby: ^11.1.0 is-glob: ^4.0.3 @@ -1623,7 +1622,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: d24a11aee3d01067018d99804f420aecb8af88e43bf170d5d14f6480bd378c0a81ce49a37f5d6c36e5f0f319e3fa8b099720f295f2767338be1a4f7e9a5323e1 + checksum: ec3e85201786aa9adddba7cb834a9f330a7f55c729ee9ccf847dbdc2f7437b760f3774152ccad6d0aa48d13fd78df766c880e3a7ca42e01a20aba0e1a1ed61c5 languageName: node linkType: hard @@ -1663,21 +1662,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.55.0, @typescript-eslint/utils@npm:^5.10.0": - version: 5.55.0 - resolution: "@typescript-eslint/utils@npm:5.55.0" +"@typescript-eslint/utils@npm:5.56.0, @typescript-eslint/utils@npm:^5.10.0": + version: 5.56.0 + resolution: "@typescript-eslint/utils@npm:5.56.0" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@types/json-schema": ^7.0.9 "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.55.0 - "@typescript-eslint/types": 5.55.0 - "@typescript-eslint/typescript-estree": 5.55.0 + "@typescript-eslint/scope-manager": 5.56.0 + "@typescript-eslint/types": 5.56.0 + "@typescript-eslint/typescript-estree": 5.56.0 eslint-scope: ^5.1.1 semver: ^7.3.7 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 368cfc3fb9d6af6901e739e2e41c3f7f1c1244576607445f4f59d95eccb237f73e1a75e7f0816ec9a32a0f1ec6bb4a3602a99e17e70fe184e62f7c69dcbe4b8d + checksum: 413e8d4bf7023ee5ba4f695b62e796a1f94930bb92fe5aa0cee58f63b9837116c23f618825a9c671f610e50f5630188b6059b4ed6b05a2a3336f01d8e977becb languageName: node linkType: hard @@ -1701,13 +1700,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.55.0": - version: 5.55.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.55.0" +"@typescript-eslint/visitor-keys@npm:5.56.0": + version: 5.56.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.56.0" dependencies: - "@typescript-eslint/types": 5.55.0 + "@typescript-eslint/types": 5.56.0 eslint-visitor-keys: ^3.3.0 - checksum: 0b24c72dff99dd2cf41c19d20067f8ab20a38aa2e82c79c5530bec7cf651031e95c80702fc21c813c9b94e5f3d4cd210f13967b2966ef38abe548cb5f05848a3 + checksum: 568fda40134e153d7befb59b55698f7919ba780d2d3431d8745feabf2e0fbb8aa7a02173b3c467dd20a0f6594e5248a1f82bb25d6c37827716d77452e86cad29 languageName: node linkType: hard @@ -3714,17 +3713,17 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-deprecation@npm:^1.3.3": - version: 1.3.3 - resolution: "eslint-plugin-deprecation@npm:1.3.3" +"eslint-plugin-deprecation@npm:^1.4.0-next.1": + version: 1.4.0-next.1 + resolution: "eslint-plugin-deprecation@npm:1.4.0-next.1" dependencies: "@typescript-eslint/experimental-utils": ^5.0.0 tslib: ^2.3.1 tsutils: ^3.21.0 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: ^3.7.5 || ^4.0.0 - checksum: 5e14d7bc8245a14784623632d43a6210880a4aad4c029fd44686a5516c248287f32406ff230f6e9d238784854b24cd09da953ec8f73d9d19a7c4b3905884e432 + typescript: ^3.7.5 || ^4.0.0 || ^5.0.0 || ^5.0.0-beta + checksum: 5a2234a6b13e69091502036530b193a019cac910a993bd24435bfdba9176cfe69aae91a48fc1e17665ba98005a91f7616a15d86070903671f957a78fc514d93c languageName: node linkType: hard @@ -4089,13 +4088,6 @@ __metadata: languageName: node linkType: hard -"events-to-array@npm:^2.0.3": - version: 2.0.3 - resolution: "events-to-array@npm:2.0.3" - checksum: 8a5aa632c2078fee673671a2fc1241c9090f0a1e6ed7b203936717f20273e9bbbb73942cf9a1ce45b7befb93945c18b254e176e0553674a72c7d1dcca100acc5 - languageName: node - linkType: hard - "events@npm:^3.2.0": version: 3.3.0 resolution: "events@npm:3.3.0" @@ -7711,9 +7703,9 @@ fsevents@~2.3.2: languageName: node linkType: hard -"rollup@npm:^3.19.1": - version: 3.19.1 - resolution: "rollup@npm:3.19.1" +"rollup@npm:^3.20.2": + version: 3.20.2 + resolution: "rollup@npm:3.20.2" dependencies: fsevents: ~2.3.2 dependenciesMeta: @@ -7721,7 +7713,7 @@ fsevents@~2.3.2: optional: true bin: rollup: dist/bin/rollup - checksum: f78198c6de224b26650c70b16db156762d1fcceeb375d34fb2c76fc5b23a78f712c3c881d3248e6f277a511589e20d50c247bcf5c7920f1ddc0a43cadf9f0140 + checksum: 34b0932839b7c2a5d1742fb21ce95a47e0b49a0849f4abee2dccf25833187aa7babb898ca90d4fc761cffa4102b9ed0ac6ad7f6f6b96c8b8e2d67305abc5da65 languageName: node linkType: hard @@ -7729,9 +7721,9 @@ fsevents@~2.3.2: version: 0.0.0-use.local resolution: "root-workspace-0b6124@workspace:." dependencies: - "@polkadot/dev": ^0.72.15 - "@types/node": ^18.15.3 - "@types/yargs": ^17.0.22 + "@polkadot/dev": ^0.72.24 + "@types/node": ^18.15.9 + "@types/yargs": ^17.0.23 languageName: unknown linkType: soft @@ -8451,27 +8443,6 @@ fsevents@~2.3.2: languageName: node linkType: hard -"tap-parser@npm:^12.0.1": - version: 12.0.1 - resolution: "tap-parser@npm:12.0.1" - dependencies: - events-to-array: ^2.0.3 - tap-yaml: ^1.0.2 - bin: - tap-parser: bin/cmd.js - checksum: bc62a7cac455f3cd97f33d5417b1b59807279873c1fa2d7792daf8f8a501d92f2661ce509dc93521b9b9d373748774fd73fe4a7bc1f337c236f2485478a08960 - languageName: node - linkType: hard - -"tap-yaml@npm:^1.0.2": - version: 1.0.2 - resolution: "tap-yaml@npm:1.0.2" - dependencies: - yaml: ^1.10.2 - checksum: 842024ca2aee6a3016182b1c06d69807b859e2da09639ad17b16bd31370d3cc54e6b083a67629c0680c7180628115b768ac9803cfea13fc13455ff57737a8964 - languageName: node - linkType: hard - "tapable@npm:^2.1.1, tapable@npm:^2.2.0": version: 2.2.1 resolution: "tapable@npm:2.2.1" @@ -9108,9 +9079,9 @@ fsevents@~2.3.2: languageName: node linkType: hard -"webpack-dev-server@npm:^4.13.0": - version: 4.13.0 - resolution: "webpack-dev-server@npm:4.13.0" +"webpack-dev-server@npm:^4.13.1": + version: 4.13.1 + resolution: "webpack-dev-server@npm:4.13.1" dependencies: "@types/bonjour": ^3.5.9 "@types/connect-history-api-fallback": ^1.3.5 @@ -9145,11 +9116,13 @@ fsevents@~2.3.2: peerDependencies: webpack: ^4.37.0 || ^5.0.0 peerDependenciesMeta: + webpack: + optional: true webpack-cli: optional: true bin: webpack-dev-server: bin/webpack-dev-server.js - checksum: 7546dd3b5a05f886209caf3c06265c717dea292e5a1a8e392bb8f1c9c58c7f87cc03daa0b92fa6eb56812c8c88304044bef923642e18c54b0a17ea233c02fdf4 + checksum: f70611544b7d964a31eb3d934d7c2b376b97e6927a89e03b2e21cfa5812bb639625cd18fd350de1604ba6c455b324135523a894032f28c69d90d90682e4f3b7d languageName: node linkType: hard @@ -9183,9 +9156,9 @@ fsevents@~2.3.2: languageName: node linkType: hard -"webpack@npm:^5.76.2": - version: 5.76.2 - resolution: "webpack@npm:5.76.2" +"webpack@npm:^5.76.3": + version: 5.76.3 + resolution: "webpack@npm:5.76.3" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^0.0.51 @@ -9216,7 +9189,7 @@ fsevents@~2.3.2: optional: true bin: webpack: bin/webpack.js - checksum: 86db98299a175c371031449c26077e87b33acd8f45de7f7945ed4b9b37c8ca11bc5169af9c44743efccd4d55e08042a3aa3a3bc42aff831309a0821ffbcd395e + checksum: 363f536b56971d056e34ab4cffa4cbc630b220e51be1a8c3adea87d9f0b51c49cfc7c3720d6614a1fd2c8c63f1ab3100db916fe8367c8bb9299327ff8c3f856d languageName: node linkType: hard @@ -9431,13 +9404,6 @@ fsevents@~2.3.2: languageName: node linkType: hard -"yaml@npm:^1.10.2": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f - languageName: node - linkType: hard - "yargs-parser@npm:^21.1.1": version: 21.1.1 resolution: "yargs-parser@npm:21.1.1"