From 9d1467f8d3e716c8dce0d108ef3e886c9bb982c0 Mon Sep 17 00:00:00 2001 From: Alessio Onori Date: Thu, 19 Sep 2024 16:08:21 +0200 Subject: [PATCH 1/2] fix maxNominations --- apps/1kv-backend/templates/kusama-otv-backend.yaml | 2 +- apps/1kv-backend/templates/polkadot-otv-backend.yaml | 2 +- charts/otv-backend/Chart.yaml | 4 ++-- packages/common/package.json | 2 +- packages/common/src/scorekeeper/NumNominations.ts | 8 ++++++-- packages/core/package.json | 2 +- packages/gateway/package.json | 2 +- packages/scorekeeper-status-ui/package.json | 2 +- packages/telemetry/package.json | 2 +- 9 files changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/1kv-backend/templates/kusama-otv-backend.yaml b/apps/1kv-backend/templates/kusama-otv-backend.yaml index 0224cbf8e..492b7dc2a 100644 --- a/apps/1kv-backend/templates/kusama-otv-backend.yaml +++ b/apps/1kv-backend/templates/kusama-otv-backend.yaml @@ -17,7 +17,7 @@ spec: source: repoURL: https://w3f.github.io/helm-charts/ chart: otv-backend - targetRevision: v3.3.4 + targetRevision: v3.3.5 plugin: env: - name: HELM_VALUES diff --git a/apps/1kv-backend/templates/polkadot-otv-backend.yaml b/apps/1kv-backend/templates/polkadot-otv-backend.yaml index 6c0101af4..2c5e7cb76 100644 --- a/apps/1kv-backend/templates/polkadot-otv-backend.yaml +++ b/apps/1kv-backend/templates/polkadot-otv-backend.yaml @@ -17,7 +17,7 @@ spec: source: repoURL: https://w3f.github.io/helm-charts/ chart: otv-backend - targetRevision: v3.3.4 + targetRevision: v3.3.5 plugin: env: - name: HELM_VALUES diff --git a/charts/otv-backend/Chart.yaml b/charts/otv-backend/Chart.yaml index 741933317..ea297c1f5 100644 --- a/charts/otv-backend/Chart.yaml +++ b/charts/otv-backend/Chart.yaml @@ -1,5 +1,5 @@ description: 1K Validators Backend name: otv-backend -version: v3.3.4 -appVersion: v3.3.4 +version: v3.3.5 +appVersion: v3.3.5 apiVersion: v2 diff --git a/packages/common/package.json b/packages/common/package.json index 74d26d5de..07f2df2c4 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@1kv/common", - "version": "3.3.4", + "version": "3.3.5", "description": "Services for running the Thousand Validator Program.", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/packages/common/src/scorekeeper/NumNominations.ts b/packages/common/src/scorekeeper/NumNominations.ts index 54145f4eb..92cb529a7 100644 --- a/packages/common/src/scorekeeper/NumNominations.ts +++ b/packages/common/src/scorekeeper/NumNominations.ts @@ -6,7 +6,7 @@ import { ApiPromise } from "@polkadot/api"; import { scorekeeperLabel } from "./scorekeeper"; import Nominator from "../nominator/nominator"; -import { Constants } from "../index"; +import { Constants, queries } from "../index"; import logger from "../logger"; import { NominatorState, NominatorStatus } from "../types"; @@ -112,7 +112,11 @@ export const autoNumNominations = async ( // How many additional validator to nominate above the amount to get in the set const additional = 1.05; - const maxNominations = 24; + //Kusama max 24; Polkadot max 16 + const maxNominations = + (await queries.getChainMetadata())?.name.toLowerCase() == "kusama" + ? 24 + : 16; // The total amount of validators to nominate const adjustedNominationAmount = Math.min( Math.ceil(amount * additional), diff --git a/packages/core/package.json b/packages/core/package.json index 663942314..07b8868a7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@1kv/core", - "version": "3.3.4", + "version": "3.3.5", "description": "Services for running the Thousand Validator Program.", "main": "index.js", "scripts": { diff --git a/packages/gateway/package.json b/packages/gateway/package.json index 63639cebf..de28001bd 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@1kv/gateway", - "version": "3.3.4", + "version": "3.3.5", "description": "Services for running the Thousand Validator Program.", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/packages/scorekeeper-status-ui/package.json b/packages/scorekeeper-status-ui/package.json index 166acc04f..d281d734a 100644 --- a/packages/scorekeeper-status-ui/package.json +++ b/packages/scorekeeper-status-ui/package.json @@ -1,7 +1,7 @@ { "name": "@1kv/scorekeeper-status-ui", "private": true, - "version": "3.3.4", + "version": "3.3.5", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index c74012cbe..e805e5f4d 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@1kv/telemetry", - "version": "3.3.4", + "version": "3.3.5", "description": "Services for running the Thousand Validator Program.", "main": "build/index.js", "types": "build/index.d.ts", From 39711712ec9489569fc0dc5cdc36ef11ba78fee8 Mon Sep 17 00:00:00 2001 From: Alessio Onori Date: Thu, 19 Sep 2024 18:46:52 +0200 Subject: [PATCH 2/2] bump polkadotjs --- package.json | 4 +- yarn.lock | 441 ++++++++++++++++++++++++++------------------------- 2 files changed, 226 insertions(+), 219 deletions(-) diff --git a/package.json b/package.json index fa2a0d2d0..db4e765ab 100644 --- a/package.json +++ b/package.json @@ -81,8 +81,8 @@ "@1kv/telemetry": "workspace:*", "@koa/router": "^12.0.1", "@octokit/rest": "^20.0.2", - "@polkadot/api": "^12.4.2", - "@polkadot/keyring": "^12.6.2", + "@polkadot/api": "^13.1.1", + "@polkadot/keyring": "^13.1.1", "axios": "^1.6.7", "chalk": "5.3.0", "coingecko-api-v3": "^0.0.29", diff --git a/yarn.lock b/yarn.lock index f33dde909..9bee28124 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14,8 +14,8 @@ __metadata: "@1kv/telemetry": "workspace:*" "@koa/router": ^12.0.1 "@octokit/rest": ^20.0.2 - "@polkadot/api": ^12.4.2 - "@polkadot/keyring": ^12.6.2 + "@polkadot/api": ^13.1.1 + "@polkadot/keyring": ^13.1.1 "@types/cron": ^2.4.0 "@types/koa": ^2.15.0 "@types/koa-bodyparser": ^4.3.12 @@ -1417,74 +1417,74 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-augment@npm:12.4.2" +"@polkadot/api-augment@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/api-augment@npm:13.1.1" dependencies: - "@polkadot/api-base": 12.4.2 - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 95ca6ad35b682918d989523ec25153dc1d4beab51b7dba2d8cf0a699b6337db85715dbe32bd704e47ffe964226ee2054def76f87f2c932f5d4ee2be0164c1131 + "@polkadot/api-base": 13.1.1 + "@polkadot/rpc-augment": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-augment": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: 7764c687752b383cfb5cbf7f82faf5f79ba67e08b02b3bb973a24b6459766bfa641ca0bbb8ce99553174eba3b664ce0da2a3cd85480e4f975ca3b8b1923289a2 languageName: node linkType: hard -"@polkadot/api-base@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-base@npm:12.4.2" +"@polkadot/api-base@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/api-base@npm:13.1.1" dependencies: - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/util": ^13.0.2 + "@polkadot/rpc-core": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/util": ^13.1.1 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 56c5933217f14e034db39c81f6fa308f2604507bbde820ca67f316ba6a390200dafade1d990ba4d6f1d2bedb94d567cb27435efe341dabf06af2388d457fc4b7 + tslib: ^2.7.0 + checksum: e3cb1d80909847b863a2506e80864407a4af41577524c77966ec15da913f3dfae48e2004411f4ff1427d1fb0813af11e2febb5e6b31f5828c1f3090931e51c78 languageName: node linkType: hard -"@polkadot/api-derive@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/api-derive@npm:12.4.2" +"@polkadot/api-derive@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/api-derive@npm:13.1.1" dependencies: - "@polkadot/api": 12.4.2 - "@polkadot/api-augment": 12.4.2 - "@polkadot/api-base": 12.4.2 - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + "@polkadot/api": 13.1.1 + "@polkadot/api-augment": 13.1.1 + "@polkadot/api-base": 13.1.1 + "@polkadot/rpc-core": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/util": ^13.1.1 + "@polkadot/util-crypto": ^13.1.1 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: a209e498772ea33fe587327196f13b9779b7054bd986c48c8efeb8fe9c298a375ef478c72fe39f0afec303d418859deb2d8822b554b55640caf1c06e12beeaf1 - languageName: node - linkType: hard - -"@polkadot/api@npm:12.4.2, @polkadot/api@npm:^12.4.2": - version: 12.4.2 - resolution: "@polkadot/api@npm:12.4.2" - dependencies: - "@polkadot/api-augment": 12.4.2 - "@polkadot/api-base": 12.4.2 - "@polkadot/api-derive": 12.4.2 - "@polkadot/keyring": ^13.0.2 - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/rpc-core": 12.4.2 - "@polkadot/rpc-provider": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/types-known": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + tslib: ^2.7.0 + checksum: 8d613026b88221356e74d273161382f5be486c3c793c434946a1b37f637b23707be8a45f00596e2b87e7f10f18522653b106567c4e73dcc31c023cb071c22d58 + languageName: node + linkType: hard + +"@polkadot/api@npm:13.1.1, @polkadot/api@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/api@npm:13.1.1" + dependencies: + "@polkadot/api-augment": 13.1.1 + "@polkadot/api-base": 13.1.1 + "@polkadot/api-derive": 13.1.1 + "@polkadot/keyring": ^13.1.1 + "@polkadot/rpc-augment": 13.1.1 + "@polkadot/rpc-core": 13.1.1 + "@polkadot/rpc-provider": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-augment": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/types-create": 13.1.1 + "@polkadot/types-known": 13.1.1 + "@polkadot/util": ^13.1.1 + "@polkadot/util-crypto": ^13.1.1 eventemitter3: ^5.0.1 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 763e24b6d65c6a573d5d02153b35be9a4f7fa76101e3ad163dbfb46d7c0cd27904d28e92058c405dcd5ea2585788663ccaae406da09479b4bce4496e8f8a6f11 + tslib: ^2.7.0 + checksum: 70d9576850bc586b7764a06773f631b3648090606080d42f14e3002c1328a0797ec0d43b7e68fac91ebf47d07d51ff0f54678be4164ac4ae9bff571ea0b3b8f0 languageName: node linkType: hard @@ -1502,17 +1502,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/keyring@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/keyring@npm:13.0.2" +"@polkadot/keyring@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/keyring@npm:13.1.1" dependencies: - "@polkadot/util": 13.0.2 - "@polkadot/util-crypto": 13.0.2 - tslib: ^2.6.2 + "@polkadot/util": 13.1.1 + "@polkadot/util-crypto": 13.1.1 + tslib: ^2.7.0 peerDependencies: - "@polkadot/util": 13.0.2 - "@polkadot/util-crypto": 13.0.2 - checksum: 334aaee396e3f624341ac87bbf9288b3ae0b7c5d8ef222741b802563b1ae88c47f2b8ec2a1989cd62403e1ae0261b4380218c5e112d8a44674cf432216f5c3bb + "@polkadot/util": 13.1.1 + "@polkadot/util-crypto": 13.1.1 + checksum: 415077740d4971e4697f20e28705f7ee9c819f8f1f05f2ab3c52342cb23240028bb0dfce683f7e1ed46a66c1c290d2a688edbb29d594bbf0b57eb9a842e5f809 languageName: node linkType: hard @@ -1527,14 +1527,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/networks@npm:13.0.2, @polkadot/networks@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/networks@npm:13.0.2" +"@polkadot/networks@npm:13.1.1, @polkadot/networks@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/networks@npm:13.1.1" dependencies: - "@polkadot/util": 13.0.2 - "@substrate/ss58-registry": ^1.46.0 - tslib: ^2.6.2 - checksum: 4bc02ae6a95c0bf770ab2ba99af59013665edf4e759a228148289859dcc171be61d93359f6846a5d248707eb215bcbf2ca69ae9f63eb1720caa38ceb3dab7587 + "@polkadot/util": 13.1.1 + "@substrate/ss58-registry": ^1.50.0 + tslib: ^2.7.0 + checksum: 82c11848e900259dc4c7a9b4829b566003bfb1db815316047042704d73820fb4658e1acdeb71a87de3bcbf531f89180de2f51ca8ef83659126073ef16efadb16 languageName: node linkType: hard @@ -1563,128 +1563,128 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/rpc-augment@npm:12.4.2" +"@polkadot/rpc-augment@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/rpc-augment@npm:13.1.1" dependencies: - "@polkadot/rpc-core": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 0b329278b8b7217cdb87d451ed16e57f0d357db4e62f06d0315eea3f18db5be0078594dd0984896483f78c81d12e9bb62314c141d0a895f4e997ff49e981d2c5 + "@polkadot/rpc-core": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: f6abb5aeb63b296fbf2b45ce1a2596d556514ea5b51f6c7d06db98d0128185b498dae205f0b2a977f610c22f640c8284284358fe0b13c3cd2735228cb79ada4f languageName: node linkType: hard -"@polkadot/rpc-core@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/rpc-core@npm:12.4.2" +"@polkadot/rpc-core@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/rpc-core@npm:13.1.1" dependencies: - "@polkadot/rpc-augment": 12.4.2 - "@polkadot/rpc-provider": 12.4.2 - "@polkadot/types": 12.4.2 - "@polkadot/util": ^13.0.2 + "@polkadot/rpc-augment": 13.1.1 + "@polkadot/rpc-provider": 13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/util": ^13.1.1 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 5a925296e14b4db61b1e37597934ad6a75b8cd7c195d5ef4a50dc200b453fdd86908770308076fe89364be280ad5777b187657b465486767baae67c163906258 + tslib: ^2.7.0 + checksum: 2fd4a24aef0e462f73e42130ee995491c5e1b1a08cbe9b557e826e3211949108608a964d1c0d2960f7a7ff2f6512e5afaaa69261cbb65d34137c9972958a360e languageName: node linkType: hard -"@polkadot/rpc-provider@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/rpc-provider@npm:12.4.2" +"@polkadot/rpc-provider@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/rpc-provider@npm:13.1.1" dependencies: - "@polkadot/keyring": ^13.0.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-support": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 - "@polkadot/x-fetch": ^13.0.2 - "@polkadot/x-global": ^13.0.2 - "@polkadot/x-ws": ^13.0.2 + "@polkadot/keyring": ^13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-support": 13.1.1 + "@polkadot/util": ^13.1.1 + "@polkadot/util-crypto": ^13.1.1 + "@polkadot/x-fetch": ^13.1.1 + "@polkadot/x-global": ^13.1.1 + "@polkadot/x-ws": ^13.1.1 "@substrate/connect": 0.8.11 eventemitter3: ^5.0.1 mock-socket: ^9.3.1 nock: ^13.5.4 - tslib: ^2.6.3 + tslib: ^2.7.0 dependenciesMeta: "@substrate/connect": optional: true - checksum: 029c2e7628271f5bb7ab4688adc14dcb3a6d13c00a2e1404f96f8a81188c51573d116e4c869b55faae54979afe319e4121404b956487784d52b5fd4a4c59bf26 + checksum: 77c147f65b2559d0064f0794a9d8681081b49fbb9ec84d009365290bc5d8fe872358c1273a1350e33a31543aa16e82c857181a4eaa6b0a95da0821dbaf28033f languageName: node linkType: hard -"@polkadot/types-augment@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-augment@npm:12.4.2" +"@polkadot/types-augment@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types-augment@npm:13.1.1" dependencies: - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 15c0d82e190e97dd91df068d3cd9717364fbdfb1c8f3f873ff5c9156b76ee0ae78550d935dd2f4cf7e47d477e7132575d1154c27f3eccb78676e001fea9945c1 + "@polkadot/types": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: 3d2ce7381ed87e42313c2861c896cb25f639282615b917b1953ef724c3111b4b93803096c827c9f6d0547f74a40b2463d854c41b5e70445c33048e465e3e4c42 languageName: node linkType: hard -"@polkadot/types-codec@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-codec@npm:12.4.2" +"@polkadot/types-codec@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types-codec@npm:13.1.1" dependencies: - "@polkadot/util": ^13.0.2 - "@polkadot/x-bigint": ^13.0.2 - tslib: ^2.6.3 - checksum: d5357e70c1e48a3e34bfffdbc1c88d59fa014c984bcdb09fa61153ed0afe96908852c235112b215b26e4ff8cd86e7167fad8a73a57cc6da473ef5d0e214ee8ec + "@polkadot/util": ^13.1.1 + "@polkadot/x-bigint": ^13.1.1 + tslib: ^2.7.0 + checksum: 8a9c3752e74c57ae0cfedc916c0faad0189a38cf1e15451de244609e7905ec84ccda464ef13955335077896dc421fa3816a9ff2dc09b53173cc967a639b0a606 languageName: node linkType: hard -"@polkadot/types-create@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-create@npm:12.4.2" +"@polkadot/types-create@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types-create@npm:13.1.1" dependencies: - "@polkadot/types-codec": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 44b2491a1feaba192f818e9ab3ace507e8c6d155f5451f3324342edee1bd2a21b65020a41c4e258ce4900c7209d7dffe7f31b1a9425dad44a26d7f28fe8480a5 + "@polkadot/types-codec": 13.1.1 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: 61e6dd3c2e82139028af265c4fe557b40deddb23836c945f805c746d08c18d93dabb37bbd256641d1a6745c573feb85202589aff03bbc3d338d3f3ef9c14f9b6 languageName: node linkType: hard -"@polkadot/types-known@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-known@npm:12.4.2" +"@polkadot/types-known@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types-known@npm:13.1.1" dependencies: - "@polkadot/networks": ^13.0.2 - "@polkadot/types": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 9410347693b1c14d8a1fa52e3a633b1345ceae34ca6e63f86dd87666bf752da47dff7f8aa60f249d640151025034078cf837c18929ac0d72d626159c045a1a02 + "@polkadot/networks": ^13.1.1 + "@polkadot/types": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/types-create": 13.1.1 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: ff713e0116550940aec1cdc7d39922220bf7ae0a723551b824de066fb020c8c6eede0a0a3c3e3a8e6c8b9e9b06927c15e182d8db52666a823b7b0bdf759cbdcf languageName: node linkType: hard -"@polkadot/types-support@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types-support@npm:12.4.2" +"@polkadot/types-support@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types-support@npm:13.1.1" dependencies: - "@polkadot/util": ^13.0.2 - tslib: ^2.6.3 - checksum: 77b96fa39717fbe0104b995a95b90e51e849f151de8d922e75f03a99c1b60aa1ee65029832b16e791692b4f3c17668ad8777fb6d2ce3f6019ca9aa01ba2135b0 + "@polkadot/util": ^13.1.1 + tslib: ^2.7.0 + checksum: 198bb7dfaf12de8b54e0f76373a3c3a3681f9252338ae08685125fd9eb129e88ea4570150b58fb21dea7e29ed5cfda3f698f2cf1c3aca804b5e914fba63e56c7 languageName: node linkType: hard -"@polkadot/types@npm:12.4.2": - version: 12.4.2 - resolution: "@polkadot/types@npm:12.4.2" +"@polkadot/types@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/types@npm:13.1.1" dependencies: - "@polkadot/keyring": ^13.0.2 - "@polkadot/types-augment": 12.4.2 - "@polkadot/types-codec": 12.4.2 - "@polkadot/types-create": 12.4.2 - "@polkadot/util": ^13.0.2 - "@polkadot/util-crypto": ^13.0.2 + "@polkadot/keyring": ^13.1.1 + "@polkadot/types-augment": 13.1.1 + "@polkadot/types-codec": 13.1.1 + "@polkadot/types-create": 13.1.1 + "@polkadot/util": ^13.1.1 + "@polkadot/util-crypto": ^13.1.1 rxjs: ^7.8.1 - tslib: ^2.6.3 - checksum: 7916d6ce73bc36e03582113114df01677f0cbfb780349d630f0da7a3413da42dbf9e9d5c97abdfb1918d67f6954c06ea3380cb162297c26503aa18b220ecec9d + tslib: ^2.7.0 + checksum: 0226a7cf5839cc668b3f4557e444d99191ee60118376013ba8f9607caf5ba8edc6ec56495e33762823a4a31fb54a626d48f8b068caad628009a5445557b5e7d9 languageName: node linkType: hard @@ -1737,23 +1737,23 @@ __metadata: languageName: node linkType: hard -"@polkadot/util-crypto@npm:13.0.2, @polkadot/util-crypto@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/util-crypto@npm:13.0.2" +"@polkadot/util-crypto@npm:13.1.1, @polkadot/util-crypto@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/util-crypto@npm:13.1.1" dependencies: "@noble/curves": ^1.3.0 "@noble/hashes": ^1.3.3 - "@polkadot/networks": 13.0.2 - "@polkadot/util": 13.0.2 + "@polkadot/networks": 13.1.1 + "@polkadot/util": 13.1.1 "@polkadot/wasm-crypto": ^7.3.2 "@polkadot/wasm-util": ^7.3.2 - "@polkadot/x-bigint": 13.0.2 - "@polkadot/x-randomvalues": 13.0.2 - "@scure/base": ^1.1.5 - tslib: ^2.6.2 + "@polkadot/x-bigint": 13.1.1 + "@polkadot/x-randomvalues": 13.1.1 + "@scure/base": ^1.1.7 + tslib: ^2.7.0 peerDependencies: - "@polkadot/util": 13.0.2 - checksum: 025bb2179d77b73dd8af775192627fe31e985e365fbecf38d7903a663aa11b703fa3f23fbb65e53d0a9710cc087e0cb9a113b0a660d8e9b36de21c36c1bc40d7 + "@polkadot/util": 13.1.1 + checksum: 54a99d68ffe3cc2c455f4a919e5b64e801f0a029b22823d8fb387a97ca70dafaf125449a9f0d713abce96f7e3cb997f1920c6a669f42f3c162792fb48f18e7b8 languageName: node linkType: hard @@ -1772,18 +1772,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/util@npm:13.0.2, @polkadot/util@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/util@npm:13.0.2" +"@polkadot/util@npm:13.1.1, @polkadot/util@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/util@npm:13.1.1" dependencies: - "@polkadot/x-bigint": 13.0.2 - "@polkadot/x-global": 13.0.2 - "@polkadot/x-textdecoder": 13.0.2 - "@polkadot/x-textencoder": 13.0.2 + "@polkadot/x-bigint": 13.1.1 + "@polkadot/x-global": 13.1.1 + "@polkadot/x-textdecoder": 13.1.1 + "@polkadot/x-textencoder": 13.1.1 "@types/bn.js": ^5.1.5 bn.js: ^5.2.1 - tslib: ^2.6.2 - checksum: c7d71898395d2e9fb994ed53be10e9b44e9cb6f6bd502ce31a48848dda032a9e3f462a6039759798023425c6e17d5a7515784f0a8c0ab74c1a0a2691b0ef3660 + tslib: ^2.7.0 + checksum: 88c2095454539f9583b1cef96b7265c9890bd7c345823f572ea345f0ee7d9f8b088144a34b84d43a298f3e41fc5f2932e7ec95e137aa09891f28509d0a3d5733 languageName: node linkType: hard @@ -1877,24 +1877,24 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-bigint@npm:13.0.2, @polkadot/x-bigint@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-bigint@npm:13.0.2" +"@polkadot/x-bigint@npm:13.1.1, @polkadot/x-bigint@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-bigint@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: a1c9d9ab3aa27f7a68a879c76cea38ca4757ae4802c6d2a7402dbfbf31468c4dd3c4f1e852e62c0a1bff18889fccac1ccbc38649bf96e9473948ea7d7c2899f3 + "@polkadot/x-global": 13.1.1 + tslib: ^2.7.0 + checksum: 1c2ca55a7e49306a1c5ae5110c5dd13ad7c14e8a6f0ec36226571ab8c4ad468351f97c36ddea2ad88bd540c786dc27941db6ee92dfede42e75e053982e439559 languageName: node linkType: hard -"@polkadot/x-fetch@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-fetch@npm:13.0.2" +"@polkadot/x-fetch@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-fetch@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 + "@polkadot/x-global": 13.1.1 node-fetch: ^3.3.2 - tslib: ^2.6.2 - checksum: 459948a2b95601b0a39a7eb55277e80bd33e2df1ecab133dbe9823e020d3d5f2a64056911fc2072d0c328550c510e7e0ec45327b354530ae83306d536c616e29 + tslib: ^2.7.0 + checksum: 4b94ec5d4f05981ab7256998f2aafbf1137ec65efb3084fc6f9ee025267f1a3f032fed3e598eabf367f572098a2d773bcf5760762bce59fa3c2af49e4d9e4925 languageName: node linkType: hard @@ -1907,12 +1907,12 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-global@npm:13.0.2, @polkadot/x-global@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-global@npm:13.0.2" +"@polkadot/x-global@npm:13.1.1, @polkadot/x-global@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-global@npm:13.1.1" dependencies: - tslib: ^2.6.2 - checksum: b487bf2a15d77681efae5e928364526102cff48207a871662515c500404ae58d9d08df813fd675c8bf0a2744dbf4648db6a0fe927993e597e8391349295560c8 + tslib: ^2.7.0 + checksum: 0cea1b38cb19b07ec1d50d2913f3187e1ecd7a72e58c49017cad93d1f944d0236842e224b5f4ebe5d1f99ca31483643c33500e385553ed774128e0f00edecee8 languageName: node linkType: hard @@ -1929,16 +1929,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-randomvalues@npm:13.0.2" +"@polkadot/x-randomvalues@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-randomvalues@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 + "@polkadot/x-global": 13.1.1 + tslib: ^2.7.0 peerDependencies: - "@polkadot/util": 13.0.2 + "@polkadot/util": 13.1.1 "@polkadot/wasm-util": "*" - checksum: 3968ca273ccdc3055466a8bdeae64141ef20dd5451f7fc750eaef28465460e41d28cdd4eadedf3b4ca94024c9ebae023a8a04eb946b9fd17a1ff9c105ebfe39c + checksum: 30d8d0c4063d5f85d6f4e55c14822dc0304bb115c46a040f8a74a89fecbe20cfc8f8ef826ab816eedc0b80986ecec20d6d76de2095fa7caf203c761a6c2f1a45 languageName: node linkType: hard @@ -1952,13 +1952,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-textdecoder@npm:13.0.2" +"@polkadot/x-textdecoder@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-textdecoder@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: 586c970c66a014471b5354d41a55aa6dbeaa4aec041153d294205d7f86f93cfb6cb5c274b6ef38b0923b515b531bc8608fea7cdc6116c6dc61c370d892b207e4 + "@polkadot/x-global": 13.1.1 + tslib: ^2.7.0 + checksum: 03007249aee07501e8747a2e19448cb435ee5ca7c4e7dc1de667e811ee813e960311f26f1c1ca989391fb5d28600f68b72eded96ee643d0673b4d8e84cfb2ca0 languageName: node linkType: hard @@ -1972,24 +1972,24 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textencoder@npm:13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-textencoder@npm:13.0.2" +"@polkadot/x-textencoder@npm:13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-textencoder@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 - checksum: b2db5ab0fd94b8a13816f028f9fb52e0f00c43df4a727c01911902b5fc11bec476b02b92aee5a98adabf4696907e828752c6e0eb9bece79f0440675e4eb030c9 + "@polkadot/x-global": 13.1.1 + tslib: ^2.7.0 + checksum: 9a72e477a3db29c273f245317cfc72e2752322a3317bc5aa6818e3c620e17551f5bd0685290ed7b67ccc8d3bf94118d806f6c64cff958983e6d8f45278769f29 languageName: node linkType: hard -"@polkadot/x-ws@npm:^13.0.2": - version: 13.0.2 - resolution: "@polkadot/x-ws@npm:13.0.2" +"@polkadot/x-ws@npm:^13.1.1": + version: 13.1.1 + resolution: "@polkadot/x-ws@npm:13.1.1" dependencies: - "@polkadot/x-global": 13.0.2 - tslib: ^2.6.2 + "@polkadot/x-global": 13.1.1 + tslib: ^2.7.0 ws: ^8.16.0 - checksum: c5aad76a3e121016dd740eddaf5601b2d98b7e568da51b6a0ffe4bced6dfb7373a15067d0c5c267e6daed40ea55014ef4b875c5eaf395c8b3fcd9e85047d2dd9 + checksum: 10d1f191d19179054c5dd6896b6e5668ffab249f5e301e94f14006a8319dacc292bf4c6a323549e156d98dcbdd9c67659888039847a0c6c7cd0437bbf0f3cdb2 languageName: node linkType: hard @@ -2159,6 +2159,13 @@ __metadata: languageName: node linkType: hard +"@scure/base@npm:^1.1.7": + version: 1.1.9 + resolution: "@scure/base@npm:1.1.9" + checksum: 120820a37dfe9dfe4cab2b7b7460552d08e67dee8057ed5354eb68d8e3440890ae983ce3bee957d2b45684950b454a2b6d71d5ee77c1fd3fddc022e2a510337f + languageName: node + linkType: hard + "@sinclair/typebox@npm:^0.27.8": version: 0.27.8 resolution: "@sinclair/typebox@npm:0.27.8" @@ -2216,7 +2223,7 @@ __metadata: languageName: node linkType: hard -"@substrate/ss58-registry@npm:^1.46.0": +"@substrate/ss58-registry@npm:^1.50.0": version: 1.50.0 resolution: "@substrate/ss58-registry@npm:1.50.0" checksum: d19d933fadf9bfbebd1c4a62c750620de34bd920ca6beb3ad8d66147c6d672e0773b57fce8394ec52a36c60d0564a92b7961ed1eac8508bca0248e23f62b8460 @@ -9235,7 +9242,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.6.3": +"tslib@npm:^2.7.0": version: 2.7.0 resolution: "tslib@npm:2.7.0" checksum: 1606d5c89f88d466889def78653f3aab0f88692e80bb2066d090ca6112ae250ec1cfa9dbfaab0d17b60da15a4186e8ec4d893801c67896b277c17374e36e1d28