From ceea8ebad59581118b061846c01ed0a80db78ae9 Mon Sep 17 00:00:00 2001 From: Tarik Gul <47201679+TarikGul@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:56:14 -0500 Subject: [PATCH] chore(pjs): update polkadot-js, and fix staking ledger types (#1371) * chore(pjs): update polkadot-js * update ledger types * dedupe --- package.json | 6 +- .../accounts/AccountsStakingPayoutsService.ts | 25 +- src/types/responses/AccountStakingInfo.ts | 7 +- yarn.lock | 585 +++++++++--------- 4 files changed, 314 insertions(+), 309 deletions(-) diff --git a/package.json b/package.json index c5610580e..68dfa5ff6 100644 --- a/package.json +++ b/package.json @@ -50,9 +50,9 @@ "test:test-release": "yarn build:scripts && node scripts/build/runYarnPack.js" }, "dependencies": { - "@polkadot/api": "^10.10.1", - "@polkadot/api-contract": "^10.10.1", - "@polkadot/util-crypto": "^12.5.1", + "@polkadot/api": "^10.11.2", + "@polkadot/api-contract": "^10.11.2", + "@polkadot/util-crypto": "^12.6.2", "@substrate/calc": "^0.3.1", "argparse": "^2.0.1", "confmgr": "^1.0.10", diff --git a/src/services/accounts/AccountsStakingPayoutsService.ts b/src/services/accounts/AccountsStakingPayoutsService.ts index 2184def27..52e59335b 100644 --- a/src/services/accounts/AccountsStakingPayoutsService.ts +++ b/src/services/accounts/AccountsStakingPayoutsService.ts @@ -15,15 +15,15 @@ // along with this program. If not, see . import { ApiPromise } from '@polkadot/api'; -import { ApiDecoration } from '@polkadot/api/types'; -import { DeriveEraExposure, DeriveEraExposureNominating } from '@polkadot/api-derive/staking/types'; -import { Option, u32 } from '@polkadot/types'; -import { BalanceOf, BlockHash, EraIndex, Perbill, StakingLedger } from '@polkadot/types/interfaces'; -import { PalletStakingEraRewardPoints } from '@polkadot/types/lookup'; +import type { ApiDecoration } from '@polkadot/api/types'; +import type { DeriveEraExposure, DeriveEraExposureNominating } from '@polkadot/api-derive/staking/types'; +import type { Option, u32 } from '@polkadot/types'; +import type { BalanceOf, BlockHash, EraIndex, Perbill, StakingLedger } from '@polkadot/types/interfaces'; +import type { PalletStakingEraRewardPoints, PalletStakingStakingLedger } from '@polkadot/types/lookup'; import { CalcPayout } from '@substrate/calc'; import { BadRequest } from 'http-errors'; -import { IAccountStakingPayouts, IEraPayouts, IPayout } from '../../types/responses'; +import type { IAccountStakingPayouts, IEraPayouts, IPayout } from '../../types/responses'; import { AbstractService } from '../AbstractService'; /** @@ -37,7 +37,7 @@ type IErasGeneral = [DeriveEraExposure, PalletStakingEraRewardPoints, Option { // Cache StakingLedger to reduce redundant queries to node - const validatorLedgerCache: { [id: string]: StakingLedger } = {}; + const validatorLedgerCache: { [id: string]: PalletStakingStakingLedger } = {}; const allErasCommissions = deriveErasExposures.map((deriveEraExposure, idx) => { const currEra = idx + startEra; @@ -272,7 +272,12 @@ export class AccountsStakingPayoutsService extends AbstractService { continue; } // Check if the reward has already been claimed - const claimed = validatorLedger.claimedRewards.includes(eraIndex); + let claimed: boolean; + if (validatorLedger.legacyClaimedRewards) { + claimed = validatorLedger.legacyClaimedRewards.includes(eraIndex); + } else { + claimed = (validatorLedger as unknown as StakingLedger).claimedRewards.includes(eraIndex); + } if (unclaimedOnly && claimed) { continue; } @@ -317,7 +322,7 @@ export class AccountsStakingPayoutsService extends AbstractService { historicApi: ApiDecoration<'promise'>, validatorId: string, era: number, - validatorLedgerCache: { [id: string]: StakingLedger }, + validatorLedgerCache: { [id: string]: PalletStakingStakingLedger }, ): Promise { let commission; let validatorLedger; diff --git a/src/types/responses/AccountStakingInfo.ts b/src/types/responses/AccountStakingInfo.ts index 24ae03477..8428e4ac9 100644 --- a/src/types/responses/AccountStakingInfo.ts +++ b/src/types/responses/AccountStakingInfo.ts @@ -14,8 +14,9 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -import { RewardDestination, StakingLedger } from '@polkadot/types/interfaces'; -import { AccountId } from '@polkadot/types/interfaces/runtime'; +import type { RewardDestination } from '@polkadot/types/interfaces'; +import type { AccountId } from '@polkadot/types/interfaces/runtime'; +import type { PalletStakingStakingLedger } from '@polkadot/types/lookup'; import { IAt } from '.'; @@ -24,5 +25,5 @@ export interface IAccountStakingInfo { controller: AccountId; rewardDestination: RewardDestination; numSlashingSpans: number; - staking: StakingLedger; + staking: PalletStakingStakingLedger; } diff --git a/yarn.lock b/yarn.lock index b164affbf..cc94812bd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -847,19 +847,19 @@ __metadata: languageName: node linkType: hard -"@noble/curves@npm:^1.2.0": - version: 1.2.0 - resolution: "@noble/curves@npm:1.2.0" +"@noble/curves@npm:^1.3.0": + version: 1.3.0 + resolution: "@noble/curves@npm:1.3.0" dependencies: - "@noble/hashes": "npm:1.3.2" - checksum: 94e02e9571a9fd42a3263362451849d2f54405cb3ce9fa7c45bc6b9b36dcd7d1d20e2e1e14cfded24937a13d82f1e60eefc4d7a14982ce0bc219a9fc0f51d1f9 + "@noble/hashes": "npm:1.3.3" + checksum: f3cbdd1af00179e30146eac5539e6df290228fb857a7a8ba36d1a772cbe59288a2ca83d06f175d3446ef00db3a80d7fd8b8347f7de9c2d4d5bf3865d8bb78252 languageName: node linkType: hard -"@noble/hashes@npm:1.3.2, @noble/hashes@npm:^1.3.2": - version: 1.3.2 - resolution: "@noble/hashes@npm:1.3.2" - checksum: 685f59d2d44d88e738114b71011d343a9f7dce9dfb0a121f1489132f9247baa60bc985e5ec6f3213d114fbd1e1168e7294644e46cbd0ce2eba37994f28eeb51b +"@noble/hashes@npm:1.3.3, @noble/hashes@npm:^1.3.3": + version: 1.3.3 + resolution: "@noble/hashes@npm:1.3.3" + checksum: 1025ddde4d24630e95c0818e63d2d54ee131b980fe113312d17ed7468bc18f54486ac86c907685759f8a7e13c2f9b9e83ec7b67d1cc20836f36b5e4a65bb102d languageName: node linkType: hard @@ -920,437 +920,437 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/api-augment@npm:10.10.1" +"@polkadot/api-augment@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/api-augment@npm:10.11.2" dependencies: - "@polkadot/api-base": "npm:10.10.1" - "@polkadot/rpc-augment": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-augment": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/api-base": "npm:10.11.2" + "@polkadot/rpc-augment": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-augment": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: c0837bd435ae4758c21aa9fc5155fa5f8a57f7b1de77d09f89d61e4e1acb299ead81c8d96b7cae6564c2df1b496b1412b214b432c978b1044aa170e26a168755 + checksum: 8362ae5e5768ab60c00d588b67f47eabe80246d7f70336786e5393310ae3b64d5eb5d7d11eb50d5743e4c3aad1cd5da02e7192f079a016be3692123a456cceec languageName: node linkType: hard -"@polkadot/api-base@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/api-base@npm:10.10.1" +"@polkadot/api-base@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/api-base@npm:10.11.2" dependencies: - "@polkadot/rpc-core": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/rpc-core": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 62a8457e202aabbf3cc83bc2e178209cb12727a6f8bd3321812010669c4ae6e00ca88cdfc15d41295d185bc87f0e3ebbafa6761200793ec9805f2248242d50a2 + checksum: 927d61cc53885d2ab7d7011e95e1802cd8e999fe06e3d9da29c292b6a1d0c6b7214ef2f973e458ab90c8acfec0761028ed0e000365f3cebea8c379f8c60aff20 languageName: node linkType: hard -"@polkadot/api-contract@npm:^10.10.1": - version: 10.10.1 - resolution: "@polkadot/api-contract@npm:10.10.1" +"@polkadot/api-contract@npm:^10.11.2": + version: 10.11.2 + resolution: "@polkadot/api-contract@npm:10.11.2" dependencies: - "@polkadot/api": "npm:10.10.1" - "@polkadot/api-augment": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/types-create": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" - "@polkadot/util-crypto": "npm:^12.5.1" + "@polkadot/api": "npm:10.11.2" + "@polkadot/api-augment": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/types-create": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: c81cae94a41783700b490606f9d60624368c6cd57ce4a69ce38cda57f62bc332949ec810b5e8ec9466e0a0badf13c958bc41053670f220faf0d4bb41003885d4 + checksum: 974b27f81b90bfdaa64d1baf3327689d415503523f47c2ca7517a28593bc58c6f07d00697874d3a9a99de1b55ce88e5d75156aa12b109aff5571ea8784526b30 languageName: node linkType: hard -"@polkadot/api-derive@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/api-derive@npm:10.10.1" +"@polkadot/api-derive@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/api-derive@npm:10.11.2" dependencies: - "@polkadot/api": "npm:10.10.1" - "@polkadot/api-augment": "npm:10.10.1" - "@polkadot/api-base": "npm:10.10.1" - "@polkadot/rpc-core": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" - "@polkadot/util-crypto": "npm:^12.5.1" + "@polkadot/api": "npm:10.11.2" + "@polkadot/api-augment": "npm:10.11.2" + "@polkadot/api-base": "npm:10.11.2" + "@polkadot/rpc-core": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 2c5f4bd06014c808f5aeddaa22a26c45b1efa5b4a8bb1a7d56bbea889a0095224cf56e03aaecce43fa62341372197f7e716df8cfecfa9fd8b20b6395407d5896 - languageName: node - linkType: hard - -"@polkadot/api@npm:10.10.1, @polkadot/api@npm:^10.10.1": - version: 10.10.1 - resolution: "@polkadot/api@npm:10.10.1" - dependencies: - "@polkadot/api-augment": "npm:10.10.1" - "@polkadot/api-base": "npm:10.10.1" - "@polkadot/api-derive": "npm:10.10.1" - "@polkadot/keyring": "npm:^12.5.1" - "@polkadot/rpc-augment": "npm:10.10.1" - "@polkadot/rpc-core": "npm:10.10.1" - "@polkadot/rpc-provider": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-augment": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/types-create": "npm:10.10.1" - "@polkadot/types-known": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" - "@polkadot/util-crypto": "npm:^12.5.1" + checksum: 47a1a002030c9e304abc2411f8f6ef28797f45e4388ee514734a326d4c687204d3d8b526896e5448e18208677d604ade3ee28554c32fe764709c3e640ce9ad27 + languageName: node + linkType: hard + +"@polkadot/api@npm:10.11.2, @polkadot/api@npm:^10.11.2": + version: 10.11.2 + resolution: "@polkadot/api@npm:10.11.2" + dependencies: + "@polkadot/api-augment": "npm:10.11.2" + "@polkadot/api-base": "npm:10.11.2" + "@polkadot/api-derive": "npm:10.11.2" + "@polkadot/keyring": "npm:^12.6.2" + "@polkadot/rpc-augment": "npm:10.11.2" + "@polkadot/rpc-core": "npm:10.11.2" + "@polkadot/rpc-provider": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-augment": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/types-create": "npm:10.11.2" + "@polkadot/types-known": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/util-crypto": "npm:^12.6.2" eventemitter3: "npm:^5.0.1" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 94bd91c4938228c86729c6e5033c42353793aa3b040d3976d2ed7a23de8dea63b04142499663366beeeb722769980f814bb77a18301cf0bcb0aca7d5112f1620 + checksum: 0e4b2a47b25129fafcea07f93c358f56ea8728933c5300af34f435e6b15a12f2cb5fba664a09d64ef347ddc942e43ce2ee118086cd477f91b58b9eb04b2596ef languageName: node linkType: hard -"@polkadot/keyring@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/keyring@npm:12.5.1" +"@polkadot/keyring@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/keyring@npm:12.6.2" dependencies: - "@polkadot/util": "npm:12.5.1" - "@polkadot/util-crypto": "npm:12.5.1" + "@polkadot/util": "npm:12.6.2" + "@polkadot/util-crypto": "npm:12.6.2" tslib: "npm:^2.6.2" peerDependencies: - "@polkadot/util": 12.5.1 - "@polkadot/util-crypto": 12.5.1 - checksum: bf61aefb6651868d8901a9c0b7a4ac2acaed6c7396f967cb3ee3a1da88df5d3b1e8b8be9c1a2aa7c5b34e1ad13665b17e9cb4dbc7ac094916d8b7a61c1c07cc6 + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2 + checksum: 8faf59684ff5d041ba5fa7dd85c3ee4ac3920b2d907f81a485e37aedab64798f9c59b7ec914eb24dfc5271a4ef31e1244aecbd247c66f2b2ec518cfd37dd30fc languageName: node linkType: hard -"@polkadot/networks@npm:12.5.1, @polkadot/networks@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/networks@npm:12.5.1" +"@polkadot/networks@npm:12.6.2, @polkadot/networks@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/networks@npm:12.6.2" dependencies: - "@polkadot/util": "npm:12.5.1" - "@substrate/ss58-registry": "npm:^1.43.0" + "@polkadot/util": "npm:12.6.2" + "@substrate/ss58-registry": "npm:^1.44.0" tslib: "npm:^2.6.2" - checksum: d2c31665b1f43affb2ff365e9e7385ecb73b5e61717cd25a9d6e0ff333910455a91464df173fdcfc97028a80156d9597d2101d97c9ac5901283e23493056b4a5 + checksum: 6c2cd7f631ec40489e8f8260b15a138bd0d276d222e4133847e8915c476aea415498dd8d8ab583bdf76f2e4e5bb1c7a20bca9dac110eae2fb48d5f6cf6798349 languageName: node linkType: hard -"@polkadot/rpc-augment@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/rpc-augment@npm:10.10.1" +"@polkadot/rpc-augment@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/rpc-augment@npm:10.11.2" dependencies: - "@polkadot/rpc-core": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/rpc-core": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: 246471f11eace2dabc878f3db86df43e1ca49c421152310974fdaab760189662307daaee1ec7484d2a13be915ccc879c2b411a18080538e1774eb17b2f0971e2 + checksum: 113d5c75b278136d4e684183844e1d5e5dd3820c3cf9c39c311fbc569d039741c28023fb644866004d7d0f7c7e8616b997c3bd9317b443ce2061b0d4da19d1f7 languageName: node linkType: hard -"@polkadot/rpc-core@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/rpc-core@npm:10.10.1" +"@polkadot/rpc-core@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/rpc-core@npm:10.11.2" dependencies: - "@polkadot/rpc-augment": "npm:10.10.1" - "@polkadot/rpc-provider": "npm:10.10.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/rpc-augment": "npm:10.11.2" + "@polkadot/rpc-provider": "npm:10.11.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: f43d5e8b1afcbb400abd792dff17cc7e0419cf30e657e202711927ed01b2fa93882630336de464d0e18c76b1b93bb4272af0594cda04b7e0f43f21aba35757bd + checksum: 967bf97cddcbd92585efbe8afb414f82e99cf437e0f3a03a91ed05d4d5df4f79b6dc50e50fe6bb63ed9be4a825a3cab556798006d9b5e86c769d829b43c6abd6 languageName: node linkType: hard -"@polkadot/rpc-provider@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/rpc-provider@npm:10.10.1" +"@polkadot/rpc-provider@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/rpc-provider@npm:10.11.2" dependencies: - "@polkadot/keyring": "npm:^12.5.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-support": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" - "@polkadot/util-crypto": "npm:^12.5.1" - "@polkadot/x-fetch": "npm:^12.5.1" - "@polkadot/x-global": "npm:^12.5.1" - "@polkadot/x-ws": "npm:^12.5.1" - "@substrate/connect": "npm:0.7.33" + "@polkadot/keyring": "npm:^12.6.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-support": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/util-crypto": "npm:^12.6.2" + "@polkadot/x-fetch": "npm:^12.6.2" + "@polkadot/x-global": "npm:^12.6.2" + "@polkadot/x-ws": "npm:^12.6.2" + "@substrate/connect": "npm:0.7.35" eventemitter3: "npm:^5.0.1" mock-socket: "npm:^9.3.1" - nock: "npm:^13.3.4" + nock: "npm:^13.4.0" tslib: "npm:^2.6.2" dependenciesMeta: "@substrate/connect": optional: true - checksum: a705d758b190008e76b71254b4598e6357deb86c61addb4a9eff82022a46bb5e5dba24b356d4297acb56573a83e4bb487f99796e45994d5e9c40bdc6b6505bd4 + checksum: adb1a371b0db1087f33f9d68bd672a3ab5a95357bea47099dd34a106bc3f110fa60854d07f539a8b1fb55de913d183de69c06f3081d44cd29e2754cef232bc35 languageName: node linkType: hard -"@polkadot/types-augment@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types-augment@npm:10.10.1" +"@polkadot/types-augment@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types-augment@npm:10.11.2" dependencies: - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: 3db6032b8145a65663cfd52335cfc596809a7eeeaea04d25dd22883edc40eb2034996c2b6310089fe59b07e42ebde22f7a719050d5ec2f6c9cad403d488245ab + checksum: 93ebf8d654bd1f78bcd822b9d83a52de4476782aaf6815697015125bd2928e2d867096229a631189db1b15724a0e681f510a613663f18ebbaa44878799ad9607 languageName: node linkType: hard -"@polkadot/types-codec@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types-codec@npm:10.10.1" +"@polkadot/types-codec@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types-codec@npm:10.11.2" dependencies: - "@polkadot/util": "npm:^12.5.1" - "@polkadot/x-bigint": "npm:^12.5.1" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/x-bigint": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: 826c12d2610620de72f4b6baf6e8c232f4830e2f318565e5cc01787ee776f972ad8e471b03003db156e226c761c706c6f1add1c035b30ca316c10933f8645889 + checksum: 87f0af0e6b26e463bcf693d3d2a9af204cd0def277164dfe6a87671688aa351dcf5cebd6ec4668cd6a40df303f8f5dfe7cd1cd8ead3063148c489ff0ccc752a7 languageName: node linkType: hard -"@polkadot/types-create@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types-create@npm:10.10.1" +"@polkadot/types-create@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types-create@npm:10.11.2" dependencies: - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: 5becf28d2e797cd9469540d1227b4b9c5383f702167e72678d69f88e0900090f8ee088e5a3a5a24491cd4a378f44c3e098aab404370362dbfc40ae21f47e8dc8 + checksum: 7468a64ae75290e8dc210c57193c0719a9772b66164388ffd9f5f04967b10397b93305b0b93b03eb578a6fc66aa6bf51c25d785ba906defd807843bd7f5998da languageName: node linkType: hard -"@polkadot/types-known@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types-known@npm:10.10.1" +"@polkadot/types-known@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types-known@npm:10.11.2" dependencies: - "@polkadot/networks": "npm:^12.5.1" - "@polkadot/types": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/types-create": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" + "@polkadot/networks": "npm:^12.6.2" + "@polkadot/types": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/types-create": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: c181201bfaca55b0c314d526aa782fa891a1adab20e87fd38a69381b3970689c87b26c5c2280ef5f799dc6b7c0bdf9bd17af0de6da4dcd33a4ea78ecfcaccd41 + checksum: 3268322e60e34bc3c0196b5e50e5f64b8f7b8c71154330772fd2bb3233a8bfc6eb1f7af8775fb428661920bce23fa16ff73f7ab51d274cc0cad0d381f6951bc8 languageName: node linkType: hard -"@polkadot/types-support@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types-support@npm:10.10.1" +"@polkadot/types-support@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types-support@npm:10.11.2" dependencies: - "@polkadot/util": "npm:^12.5.1" + "@polkadot/util": "npm:^12.6.2" tslib: "npm:^2.6.2" - checksum: 15d5dcd005aafc4e26938e98d5b8f1be9a9b4c37698fba2fc9e4dfe9ba829721c0606c010a33258d0af45908e1ca3a92332670c570af14b05a1615be23c0907f + checksum: 9b7d2ef36d19d0f48438fe7e2e0b5e2a4b5088310e097068d0a8f7357de3e1872d823d49d6d97d2d260fd1bf2de1e33875ddfd9dd35afaee8c6d9ba4d83efe8b languageName: node linkType: hard -"@polkadot/types@npm:10.10.1": - version: 10.10.1 - resolution: "@polkadot/types@npm:10.10.1" +"@polkadot/types@npm:10.11.2": + version: 10.11.2 + resolution: "@polkadot/types@npm:10.11.2" dependencies: - "@polkadot/keyring": "npm:^12.5.1" - "@polkadot/types-augment": "npm:10.10.1" - "@polkadot/types-codec": "npm:10.10.1" - "@polkadot/types-create": "npm:10.10.1" - "@polkadot/util": "npm:^12.5.1" - "@polkadot/util-crypto": "npm:^12.5.1" + "@polkadot/keyring": "npm:^12.6.2" + "@polkadot/types-augment": "npm:10.11.2" + "@polkadot/types-codec": "npm:10.11.2" + "@polkadot/types-create": "npm:10.11.2" + "@polkadot/util": "npm:^12.6.2" + "@polkadot/util-crypto": "npm:^12.6.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 6327d1fa34f3684165a82d37d6e7b15101e265280503f001123d075c5c2382178d7c34553dc96ed802c24db2908971fbaa7d53597b20bd863a654db1a249b132 + checksum: 86b6a76f3fe12cfe95d3bebf7b7becb6cf69777c8535b140048db6b46f3394286860c333c0d72944e12d038d6cc636fea6a2a211f3f429285ca273e6ecd09811 languageName: node linkType: hard -"@polkadot/util-crypto@npm:12.5.1, @polkadot/util-crypto@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/util-crypto@npm:12.5.1" +"@polkadot/util-crypto@npm:12.6.2, @polkadot/util-crypto@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/util-crypto@npm:12.6.2" dependencies: - "@noble/curves": "npm:^1.2.0" - "@noble/hashes": "npm:^1.3.2" - "@polkadot/networks": "npm:12.5.1" - "@polkadot/util": "npm:12.5.1" - "@polkadot/wasm-crypto": "npm:^7.2.2" - "@polkadot/wasm-util": "npm:^7.2.2" - "@polkadot/x-bigint": "npm:12.5.1" - "@polkadot/x-randomvalues": "npm:12.5.1" - "@scure/base": "npm:^1.1.3" + "@noble/curves": "npm:^1.3.0" + "@noble/hashes": "npm:^1.3.3" + "@polkadot/networks": "npm:12.6.2" + "@polkadot/util": "npm:12.6.2" + "@polkadot/wasm-crypto": "npm:^7.3.2" + "@polkadot/wasm-util": "npm:^7.3.2" + "@polkadot/x-bigint": "npm:12.6.2" + "@polkadot/x-randomvalues": "npm:12.6.2" + "@scure/base": "npm:^1.1.5" tslib: "npm:^2.6.2" peerDependencies: - "@polkadot/util": 12.5.1 - checksum: 70be8f70aec13418b48badcb6e6375f60be4d7d878e62e26b1f80fbd719c5072dede3641a4042ca77b39c1e79fef7d16b6763004f324b8abc04abd128dfab933 + "@polkadot/util": 12.6.2 + checksum: a587e5e25697f3a928ae8677b82ccdbcc1df95122db2bbde753b0605f44487136fe2f55c502460d931def0007e856db40b1b34b4da3c674638ead459e79f227a languageName: node linkType: hard -"@polkadot/util@npm:12.5.1, @polkadot/util@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/util@npm:12.5.1" +"@polkadot/util@npm:12.6.2, @polkadot/util@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/util@npm:12.6.2" dependencies: - "@polkadot/x-bigint": "npm:12.5.1" - "@polkadot/x-global": "npm:12.5.1" - "@polkadot/x-textdecoder": "npm:12.5.1" - "@polkadot/x-textencoder": "npm:12.5.1" - "@types/bn.js": "npm:^5.1.1" + "@polkadot/x-bigint": "npm:12.6.2" + "@polkadot/x-global": "npm:12.6.2" + "@polkadot/x-textdecoder": "npm:12.6.2" + "@polkadot/x-textencoder": "npm:12.6.2" + "@types/bn.js": "npm:^5.1.5" bn.js: "npm:^5.2.1" tslib: "npm:^2.6.2" - checksum: db8c341cf1d67e352439edda6deaebcb66cccf23a665075b3fe53baf169b27453211cc5bdc9c15a9b906741c843c97e8d3b9af0fcfb8803315998fae90985bd8 + checksum: b7a3c2be417d670fc64d0642818cadbf041cbcfae830f2ee45fc2496e86c8e11c385854b733504a7d6a6391066fd0ef544a1748f0f8809215c37a5c0ff64571d languageName: node linkType: hard -"@polkadot/wasm-bridge@npm:7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-bridge@npm:7.2.2" +"@polkadot/wasm-bridge@npm:7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-bridge@npm:7.3.2" dependencies: - "@polkadot/wasm-util": "npm:7.2.2" - tslib: "npm:^2.6.1" + "@polkadot/wasm-util": "npm:7.3.2" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: f3256cb2ec92e78448a53958605522f1314cbbee7b0fe3997e0f42c46a053f054806b561decc72cb210acb210e0fc70aa376bc6d156e28b35c30d6cc317166a8 + checksum: 8d8afa55d9f14043fb9e414b356d6ba4aa0ccc52219b8022fc86a5ea5be569dea34383b461528069996f5399011db6060ceff158227606d95ab779717ea25f5f languageName: node linkType: hard -"@polkadot/wasm-crypto-asmjs@npm:7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-crypto-asmjs@npm:7.2.2" +"@polkadot/wasm-crypto-asmjs@npm:7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-crypto-asmjs@npm:7.3.2" dependencies: - tslib: "npm:^2.6.1" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" - checksum: 4edd5b153440cddd95edf435e0f032efa150b916b0db2774470ad9f78c5165dc8e7fd29ba2ef1c3fd9e69280e678d4f1ca450713d2ed580bc01c0d5fd3550a06 + checksum: b8c0c7b3a1e5b4b07b0d4fbec51ae19c529c8a943c0b3c4631490e05f5cc61fa352e7eaf7a9fabeb49ab2e40760ff584346a929e67f6eece82134c13963e6c4b languageName: node linkType: hard -"@polkadot/wasm-crypto-init@npm:7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-crypto-init@npm:7.2.2" +"@polkadot/wasm-crypto-init@npm:7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-crypto-init@npm:7.3.2" dependencies: - "@polkadot/wasm-bridge": "npm:7.2.2" - "@polkadot/wasm-crypto-asmjs": "npm:7.2.2" - "@polkadot/wasm-crypto-wasm": "npm:7.2.2" - "@polkadot/wasm-util": "npm:7.2.2" - tslib: "npm:^2.6.1" + "@polkadot/wasm-bridge": "npm:7.3.2" + "@polkadot/wasm-crypto-asmjs": "npm:7.3.2" + "@polkadot/wasm-crypto-wasm": "npm:7.3.2" + "@polkadot/wasm-util": "npm:7.3.2" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: efe6930a6e78d28bfb5082d942c34a574718a2cb39b8c0d7dde3785976788601bd0fd99647fe55400b8b85640b2d2a42527ad169875f2188391dec9b0b7c8cd9 + checksum: 94b950c01f20c2ce98e2e8bfd3dc94fdcdc095a2b3d609c5de3db3bc9e403871ff08479d7eac1d2e4d048b9375e82dafb5bfab3d9d86988ec4afc41e7539d0af languageName: node linkType: hard -"@polkadot/wasm-crypto-wasm@npm:7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-crypto-wasm@npm:7.2.2" +"@polkadot/wasm-crypto-wasm@npm:7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-crypto-wasm@npm:7.3.2" dependencies: - "@polkadot/wasm-util": "npm:7.2.2" - tslib: "npm:^2.6.1" + "@polkadot/wasm-util": "npm:7.3.2" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" - checksum: e6a7d60a95bac61a2b77d480697ecc60e5d93acf04a4f079d1f753d39cbb99aad6debde2ddd8844046f755c6b2f878bf2399ea56def2d123bd8af3ccec111abd + checksum: f984db1bf121827b8a39b2f18d838958dfcedb901037a382a5b67126dc20a9c1cec4f3dd8f9ccc2ccd5a5f259d9f2b62df2f03d55cf83185f84709c1b87c5673 languageName: node linkType: hard -"@polkadot/wasm-crypto@npm:^7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-crypto@npm:7.2.2" - dependencies: - "@polkadot/wasm-bridge": "npm:7.2.2" - "@polkadot/wasm-crypto-asmjs": "npm:7.2.2" - "@polkadot/wasm-crypto-init": "npm:7.2.2" - "@polkadot/wasm-crypto-wasm": "npm:7.2.2" - "@polkadot/wasm-util": "npm:7.2.2" - tslib: "npm:^2.6.1" +"@polkadot/wasm-crypto@npm:^7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-crypto@npm:7.3.2" + dependencies: + "@polkadot/wasm-bridge": "npm:7.3.2" + "@polkadot/wasm-crypto-asmjs": "npm:7.3.2" + "@polkadot/wasm-crypto-init": "npm:7.3.2" + "@polkadot/wasm-crypto-wasm": "npm:7.3.2" + "@polkadot/wasm-util": "npm:7.3.2" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: d5517276d7dec4efce226cb33af10cb8b8176cb8b933174d9c5c6831ba5672c42ee5ac93b60bb79a6bc58a6dfdd03643bbfabdaf4a4b1b3548ec93219bc43dff + checksum: ec0bf040388890b0d268ca94d2311bbb27a45b46b4f5812a2a478c1fea3c747878244535280b9c38bf2a65b9b4533bf4f9fddbc4c715d167940e6d951fef146b languageName: node linkType: hard -"@polkadot/wasm-util@npm:7.2.2, @polkadot/wasm-util@npm:^7.2.2": - version: 7.2.2 - resolution: "@polkadot/wasm-util@npm:7.2.2" +"@polkadot/wasm-util@npm:7.3.2, @polkadot/wasm-util@npm:^7.3.2": + version: 7.3.2 + resolution: "@polkadot/wasm-util@npm:7.3.2" dependencies: - tslib: "npm:^2.6.1" + tslib: "npm:^2.6.2" peerDependencies: "@polkadot/util": "*" - checksum: 996abe37061fb6aa8324a35823da3cbe31a8e581aa544055f7fb80fca826badc8c6b86bf5c2d8f01af80976a321686a45be94af6e77fe8d62784bafae3802810 + checksum: 4b19f59aaca5c62933c5b355116a0fcd8dfa03b3e13f2b4c8491058f6d29fd030c956dee3f1c0821da981b874741c9ea62840c179369afb1a358a22216e5ff3c languageName: node linkType: hard -"@polkadot/x-bigint@npm:12.5.1, @polkadot/x-bigint@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-bigint@npm:12.5.1" +"@polkadot/x-bigint@npm:12.6.2, @polkadot/x-bigint@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-bigint@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" tslib: "npm:^2.6.2" - checksum: e3f48e0082d603f4f62c3d4caaa9e37aacd490273bb02a3d5ee97fa9379d65df1d18dc73394fe761f460729301a879900de831ba9f3c1558335e3759d9997f3f + checksum: 8a9533ba955d06213e3810d48e95618186cc832375f82d8b52376a99d7c8f9fdd01ffb9c35495522aec8c28d18ca5ef6c8feeec9770b83ebb64cded4cd3b7e27 languageName: node linkType: hard -"@polkadot/x-fetch@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-fetch@npm:12.5.1" +"@polkadot/x-fetch@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-fetch@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" node-fetch: "npm:^3.3.2" tslib: "npm:^2.6.2" - checksum: daaa238db80554342cce1742bb9aa14d7c2a39605d5e70de3b12c17f6c7f7187bba29395e638ff76f5385ce741481931c9e69ac2603bd2747e7800dd628d688e + checksum: 755feee15234b31de9e74bae5eca1a2e9c17e3e76330e5c5cca5e446fc3c350b8f02e3c3853005d1dd4b3da9d4f6a6c3ffd6d2146ae529b0fa6ed3c4206343af languageName: node linkType: hard -"@polkadot/x-global@npm:12.5.1, @polkadot/x-global@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-global@npm:12.5.1" +"@polkadot/x-global@npm:12.6.2, @polkadot/x-global@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-global@npm:12.6.2" dependencies: tslib: "npm:^2.6.2" - checksum: a34fac19ffd074b60dfce124edb741c37e5e759b13169015bd985318cd82ac1448bac0160a7a5863636c6c6dee6e5e5158018dcc969068d62079f2ed60f00aa5 + checksum: 9159bd77e099f734f7c48ba3e37a886ba376c50066b664ee52caf0bf8eb0399b762ca08404ef6470c22e4d20e9fc8c5e0a87026efcbbd0f21ea5504b0e33d587 languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-randomvalues@npm:12.5.1" +"@polkadot/x-randomvalues@npm:12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-randomvalues@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" tslib: "npm:^2.6.2" peerDependencies: - "@polkadot/util": 12.5.1 + "@polkadot/util": 12.6.2 "@polkadot/wasm-util": "*" - checksum: 45dcbbe8f20a96255a87d230bd2c7b1180ce415c9c4562d139c9f691a1d2995da455b46653d8c695ce4607409c0bc054fa3eed977ce71795399e7c01d79d7b65 + checksum: 9ab555931ab81a8834800da35f04cb86df48b0d706d33ea89c51f42b8d340dab7312c462d01ecae04573ba6a01ff1ad6066ea6cf82b1330482ff537eb3c12eeb languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-textdecoder@npm:12.5.1" +"@polkadot/x-textdecoder@npm:12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-textdecoder@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" tslib: "npm:^2.6.2" - checksum: 5ff1682a33272627b2361240dbbbd4d4c9b8cecfd937f98f8f4e2169697742dc9c036d8e5772f89b72940a7f075d08d6b63c89e2ef6c3ebce1ef0f291b9fdb9e + checksum: ba8ebe34cce1445a78d4eb744c8cfcf068cebfaf6c8efca23e1cdb037e8769cb2738b77b7266e3f86cd2459bb3eb87744f9518cba76e76fca609a16e6b84789e languageName: node linkType: hard -"@polkadot/x-textencoder@npm:12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-textencoder@npm:12.5.1" +"@polkadot/x-textencoder@npm:12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-textencoder@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" tslib: "npm:^2.6.2" - checksum: 7940fa869dcefd7cd0c74b675f03f6c92cb56304ad0d42ae212848a52a54192a86ad05e3878af0c3ea53f9f99d37d9c72e0cf35e59be8c1291cfa3af293516ea + checksum: b2e721d19660f7bcf3995d695fac5d78d4bc8c5fd0632ec0735eb20dd9b4b79fad1ce7dfe7ade202c4ace5cd2d6b8ac663bb4dca273afa050f73cf1e99498f82 languageName: node linkType: hard -"@polkadot/x-ws@npm:^12.5.1": - version: 12.5.1 - resolution: "@polkadot/x-ws@npm:12.5.1" +"@polkadot/x-ws@npm:^12.6.2": + version: 12.6.2 + resolution: "@polkadot/x-ws@npm:12.6.2" dependencies: - "@polkadot/x-global": "npm:12.5.1" + "@polkadot/x-global": "npm:12.6.2" tslib: "npm:^2.6.2" - ws: "npm:^8.14.1" - checksum: 3e3055724b2b6617e2bfc79985fbb81829d7ed903cf21fcdb4726ed39c96b492735d2266fb7f228ae1aa6b556d070380ba34bfca0004247bb60ab41ec22bcd98 + ws: "npm:^8.15.1" + checksum: de987c0a9d5df7d9eb17d96fd47afb2417eb85b7126e4e11bc4fe7dc908b54307390a1e3da61d251cd5f1f6edd054712f018bdc695ce946e0267806d1f050119 languageName: node linkType: hard -"@scure/base@npm:^1.1.3": - version: 1.1.3 - resolution: "@scure/base@npm:1.1.3" - checksum: cb715fa8cdb043c4d96b6ba0666791d4eb4d033f7b5285a853aba25e0ba94914f05ff5d956029ad060005f9bdd02dab0caef9a0a63f07ed096a2c2a0c0cf9c36 +"@scure/base@npm:^1.1.5": + version: 1.1.5 + resolution: "@scure/base@npm:1.1.5" + checksum: 543fa9991c6378b6a0d5ab7f1e27b30bb9c1e860d3ac81119b4213cfdf0ad7b61be004e06506e89de7ce0cec9391c17f5c082bb34c3b617a2ee6a04129f52481 languageName: node linkType: hard @@ -1383,9 +1383,9 @@ __metadata: version: 0.0.0-use.local resolution: "@substrate/api-sidecar@workspace:." dependencies: - "@polkadot/api": "npm:^10.10.1" - "@polkadot/api-contract": "npm:^10.10.1" - "@polkadot/util-crypto": "npm:^12.5.1" + "@polkadot/api": "npm:^10.11.2" + "@polkadot/api-contract": "npm:^10.11.2" + "@polkadot/util-crypto": "npm:^12.6.2" "@substrate/calc": "npm:^0.3.1" "@substrate/dev": "npm:^0.7.1" "@types/argparse": "npm:2.0.10" @@ -1424,13 +1424,13 @@ __metadata: languageName: node linkType: hard -"@substrate/connect@npm:0.7.33": - version: 0.7.33 - resolution: "@substrate/connect@npm:0.7.33" +"@substrate/connect@npm:0.7.35": + version: 0.7.35 + resolution: "@substrate/connect@npm:0.7.35" dependencies: "@substrate/connect-extension-protocol": "npm:^1.0.1" - smoldot: "npm:2.0.1" - checksum: bfcdc4c9fb7a6abebf3a939f9505acb727c9c320e468e42897db4b4683cdc6e4bb3c690dd5b8d34d0fee0379a3bafd8ab1320066f41fd25cd21eec5ae7b7dc85 + smoldot: "npm:2.0.7" + checksum: 53eb3bd63ff9e8d9d9c66fb3ca5092f0b35372834b707ebe788d79f7d98c23dbbb6cc15237e28feb56b3f06724af980f13ff5c81b5bac6a986031e8d0e067836 languageName: node linkType: hard @@ -1463,10 +1463,10 @@ __metadata: languageName: node linkType: hard -"@substrate/ss58-registry@npm:^1.43.0": - version: 1.43.0 - resolution: "@substrate/ss58-registry@npm:1.43.0" - checksum: f7683d31fa0f6a5eeb1c52bef0efb058e3e6139c3ef8ac834c1c577b9897ca9a42491dfeea3395a64c4154a00bc60138a54b419267157aa50267253906e13694 +"@substrate/ss58-registry@npm:^1.44.0": + version: 1.44.0 + resolution: "@substrate/ss58-registry@npm:1.44.0" + checksum: 97a05ca6f439f42ea24bd4d3fc1ab9e77e65e6dd0d2d823e438ae9a82ea4d6249012066149a23c1dad8fb27ec5a3913f6639c2e480377fea3ee96fd1bd592bd0 languageName: node linkType: hard @@ -1553,12 +1553,12 @@ __metadata: languageName: node linkType: hard -"@types/bn.js@npm:^5.1.1": - version: 5.1.1 - resolution: "@types/bn.js@npm:5.1.1" +"@types/bn.js@npm:^5.1.5": + version: 5.1.5 + resolution: "@types/bn.js@npm:5.1.5" dependencies: "@types/node": "npm:*" - checksum: cf2c45833e67ecfc45e5336151965a47857431640b61708b6e4dc81d88ed53585c9b30be59abbbee609cdf7a63828e5b8a58c1a27eb4306e5cb7ddd9bad46650 + checksum: 9719330c86aeae0a6a447c974cf0f853ba3660ede20de61f435b03d699e30e6d8b35bf71a8dc9fdc8317784438e83177644ba068ed653d0ae0106e1ecbfe289e languageName: node linkType: hard @@ -4995,15 +4995,14 @@ __metadata: languageName: node linkType: hard -"nock@npm:^13.3.4": - version: 13.3.4 - resolution: "nock@npm:13.3.4" +"nock@npm:^13.4.0": + version: 13.4.0 + resolution: "nock@npm:13.4.0" dependencies: debug: "npm:^4.1.0" json-stringify-safe: "npm:^5.0.1" - lodash: "npm:^4.17.21" propagate: "npm:^2.0.0" - checksum: b09dc75c344af416b639de0dc0eecbc0e0400561bb6f004161e5968c14e1f12dcf7f0ae0480e7082308dec82f4c13a456164ab0beda24cc99df3d1242587eb92 + checksum: 269c4d4e2ae250e0af361548ab0ba11a18831cfb3edfd8c6f6b1e4b02c7ffc3b1c8ac04ac33edfd3e114110f4836ab8bb8df398da893cd18fef47d9c256acf7f languageName: node linkType: hard @@ -5816,12 +5815,12 @@ __metadata: languageName: node linkType: hard -"smoldot@npm:2.0.1": - version: 2.0.1 - resolution: "smoldot@npm:2.0.1" +"smoldot@npm:2.0.7": + version: 2.0.7 + resolution: "smoldot@npm:2.0.7" dependencies: ws: "npm:^8.8.1" - checksum: 908eae712d0eed0ee8d1e3c4f0bd7878d6b3984f2d94b6d38adb166180516fbac38122ac668b30107c5497c158365757e1d9aa1dc5b16a92c578343f83e1f2c2 + checksum: 599930a66cd06a21930bf61778869aa4d74b507ab4a6592da0feaf9c9a42597a7758343149ffc1f2be34af535c784b2ab6d7a00f80c8ad60b03fdcd7e49687d8 languageName: node linkType: hard @@ -6277,7 +6276,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.1.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0, tslib@npm:^2.6.1, tslib@npm:^2.6.2": +"tslib@npm:^2.1.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0, tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" checksum: bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca @@ -6543,9 +6542,9 @@ __metadata: languageName: node linkType: hard -"ws@npm:^8.14.1, ws@npm:^8.8.1": - version: 8.14.2 - resolution: "ws@npm:8.14.2" +"ws@npm:^8.15.1, ws@npm:^8.8.1": + version: 8.16.0 + resolution: "ws@npm:8.16.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -6554,7 +6553,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 815ff01d9bc20a249b2228825d9739268a03a4408c2e0b14d49b0e2ae89d7f10847e813b587ba26992bdc33e9d03bed131e4cae73ff996baf789d53e99c31186 + checksum: 7c511c59e979bd37b63c3aea4a8e4d4163204f00bd5633c053b05ed67835481995f61a523b0ad2b603566f9a89b34cb4965cb9fab9649fbfebd8f740cea57f17 languageName: node linkType: hard