diff --git a/package.json b/package.json index 8eb03b5574..14e66920ad 100644 --- a/package.json +++ b/package.json @@ -21,12 +21,13 @@ "@fortawesome/free-regular-svg-icons": "^6.5.2", "@fortawesome/free-solid-svg-icons": "^6.5.2", "@fortawesome/react-fontawesome": "^0.2.2", - "@ledgerhq/hw-transport-webhid": "^6.29.0", - "@polkadot/api": "^12.0.2", - "@polkadot/keyring": "^12.6.2", + "@ledgerhq/hw-transport-webhid": "^6.29.2", + "@polkadot-api/merkleize-metadata": "^1.1.2", + "@polkadot/api": "^12.2.2", + "@polkadot/keyring": "^13.0.2", "@polkadot/rpc-provider": "10.11.2", - "@polkadot/util": "^12.6.2", - "@polkadot/util-crypto": "^12.6.2", + "@polkadot/util": "^13.0.2", + "@polkadot/util-crypto": "^13.0.2", "@polkawatch/ddp-client": "^2.0.16", "@substrate/connect": "0.7.35", "@w3ux/extension-assets": "0.3.1", @@ -36,7 +37,7 @@ "@w3ux/react-polkicon": "1.2.0", "@w3ux/utils": "^0.4.0", "@w3ux/validator-assets": "^0.2.0", - "@zondax/ledger-substrate": "^0.44.5", + "@zondax/ledger-substrate": "^0.44.7", "bignumber.js": "^9.1.2", "bn.js": "^5.2.1", "buffer": "^6.0.3", diff --git a/src/contexts/LedgerHardware/defaults.ts b/src/contexts/LedgerHardware/defaults.ts index a5b1eb6086..c9079cd2a4 100644 --- a/src/contexts/LedgerHardware/defaults.ts +++ b/src/contexts/LedgerHardware/defaults.ts @@ -27,7 +27,7 @@ export const defaultLedgerHardwareContext: LedgerHardwareContextInterface = { handleErrors: (err) => {}, handleGetAddress: (txMetadataChainId, accountIndex, ss58Prefix) => new Promise((resolve) => resolve()), - handleSignTx: (txMetadataChainId, uid, index, payload) => + handleSignTx: (txMetadataChainId, uid, index, payload, txMetadata) => new Promise((resolve) => resolve()), handleResetLedgerTask: () => {}, runtimesInconsistent: false, diff --git a/src/contexts/LedgerHardware/index.tsx b/src/contexts/LedgerHardware/index.tsx index 08438bea19..ef12b8da84 100644 --- a/src/contexts/LedgerHardware/index.tsx +++ b/src/contexts/LedgerHardware/index.tsx @@ -152,14 +152,15 @@ export const LedgerHardwareProvider = ({ txMetadataChainId: string, uid: number, index: number, - payload: AnyJson + payload: AnyJson, + txMetadata: AnyJson ) => { try { setIsExecuting(true); const { app, productName } = await Ledger.initialise(txMetadataChainId); setFeedback(t('approveTransactionLedger')); - const result = await Ledger.signPayload(app, index, payload); + const result = await Ledger.signPayload(app, index, payload, txMetadata); setIsExecuting(false); setFeedback(t('signedTransactionSuccessfully')); diff --git a/src/contexts/LedgerHardware/static/ledger.ts b/src/contexts/LedgerHardware/static/ledger.ts index edeca2e40d..b9b18536cf 100644 --- a/src/contexts/LedgerHardware/static/ledger.ts +++ b/src/contexts/LedgerHardware/static/ledger.ts @@ -16,11 +16,7 @@ export class Ledger { // Initialise ledger transport, initialise app, and return with device info. static initialise = async (txMetadataChainId: string) => { this.transport = await TransportWebHID.create(); - const app = new PolkadotGenericApp( - Ledger.transport, - txMetadataChainId, - 'https://api.zondax.ch/polkadot/transaction/metadata' - ); + const app = new PolkadotGenericApp(Ledger.transport, txMetadataChainId); const { productName } = this.transport.device; return { app, productName }; }; @@ -74,12 +70,20 @@ export class Ledger { static signPayload = async ( app: PolkadotGenericApp, index: number, - payload: AnyJson + payload: AnyJson, + txMetadata: AnyJson ) => { await this.ensureOpen(); const bip42Path = `m/44'/354'/${index}'/${0}'/${0}'`; - const result = await app.sign(bip42Path, Buffer.from(payload.toU8a(true))); + const buff = Buffer.from(txMetadata); + + const result = await app.signWithMetadata( + bip42Path, + payload.toU8a(true), + buff + ); + await this.ensureClosed(); return result; }; diff --git a/src/contexts/LedgerHardware/types.ts b/src/contexts/LedgerHardware/types.ts index 205e78ea4d..e4c193635f 100644 --- a/src/contexts/LedgerHardware/types.ts +++ b/src/contexts/LedgerHardware/types.ts @@ -30,7 +30,8 @@ export interface LedgerHardwareContextInterface { txMetadataChainId: string, uid: number, index: number, - payload: AnyJson + payload: AnyJson, + txMetadata: AnyJson ) => Promise; handleResetLedgerTask: () => void; } diff --git a/src/contexts/TxMeta/defaults.ts b/src/contexts/TxMeta/defaults.ts index 9188353fcc..7ef916d5da 100644 --- a/src/contexts/TxMeta/defaults.ts +++ b/src/contexts/TxMeta/defaults.ts @@ -14,8 +14,8 @@ export const defaultTxMeta: TxMetaContextInterface = { resetTxFees: () => {}, notEnoughFunds: false, getPayloadUid: () => 0, + getTxMetadata: () => {}, getTxPayload: () => {}, - getTxPayloadValue: () => {}, setTxPayload: (payload, payloadValue, uid) => {}, incrementPayloadUid: () => 0, resetTxPayload: () => {}, diff --git a/src/contexts/TxMeta/index.tsx b/src/contexts/TxMeta/index.tsx index d44a6a1327..868c6cac2b 100644 --- a/src/contexts/TxMeta/index.tsx +++ b/src/contexts/TxMeta/index.tsx @@ -46,14 +46,14 @@ export const TxMetaProvider = ({ children }: { children: ReactNode }) => { // reason we give every payload a uid, and check whether this uid matches the active extrinsic // before submitting it. const [txPayload, setTxPayloadState] = useState<{ - payload: AnyJson; + txMetadata: AnyJson; payloadValue: AnyJson; uid: number; } | null>(null); const txPayloadRef = useRef(txPayload); const getPayloadUid = () => txPayloadRef.current?.uid || 1; - const getTxPayload = () => txPayloadRef.current?.payload || null; - const getTxPayloadValue = () => txPayloadRef.current?.payloadValue || null; + const getTxMetadata = () => txPayloadRef.current?.txMetadata || null; + const getTxPayload = () => txPayloadRef.current?.payloadValue || null; // Store an optional signed transaction if extrinsics require manual signing (e.g. Ledger). const [txSignature, setTxSignatureState] = useState(null); @@ -77,13 +77,13 @@ export const TxMetaProvider = ({ children }: { children: ReactNode }) => { // Set the transaction payload and uid. Overwrites any existing payload. const setTxPayload = ( - payload: AnyJson, + txMetadata: AnyJson, payloadValue: AnyJson, uid: number ) => { setStateWithRef( { - payload, + txMetadata, payloadValue, uid, }, @@ -171,8 +171,8 @@ export const TxMetaProvider = ({ children }: { children: ReactNode }) => { resetTxFees, notEnoughFunds, getPayloadUid, + getTxMetadata, getTxPayload, - getTxPayloadValue, setTxPayload, incrementPayloadUid, resetTxPayload, diff --git a/src/contexts/TxMeta/types.ts b/src/contexts/TxMeta/types.ts index c2bce8ac49..8396ac6f4f 100644 --- a/src/contexts/TxMeta/types.ts +++ b/src/contexts/TxMeta/types.ts @@ -14,8 +14,8 @@ export interface TxMetaContextInterface { resetTxFees: () => void; notEnoughFunds: boolean; getPayloadUid: () => number; + getTxMetadata: () => AnyJson; getTxPayload: () => AnyJson; - getTxPayloadValue: () => AnyJson; setTxPayload: (payload: AnyJson, payloadValue: AnyJson, uid: number) => void; incrementPayloadUid: () => number; resetTxPayload: () => void; diff --git a/src/hooks/useBuildPayload/index.tsx b/src/hooks/useBuildPayload/index.tsx index 0c9979c68f..10a3450604 100644 --- a/src/hooks/useBuildPayload/index.tsx +++ b/src/hooks/useBuildPayload/index.tsx @@ -1,38 +1,46 @@ // Copyright 2024 @polkadot-cloud/polkadot-staking-dashboard authors & contributors // SPDX-License-Identifier: GPL-3.0-only +import { merkleizeMetadata } from '@polkadot-api/merkleize-metadata'; +import type { ApiPromise } from '@polkadot/api'; +import { objectSpread, u8aToHex } from '@polkadot/util'; import type { AnyJson } from '@w3ux/types'; -import { ZondaxMetadataHashApiUrl } from 'consts'; import { useApi } from 'contexts/Api'; import { useBalances } from 'contexts/Balances'; import { useImportedAccounts } from 'contexts/Connect/ImportedAccounts'; -import { useNetwork } from 'contexts/Network'; import { useTxMeta } from 'contexts/TxMeta'; import type { AnyApi } from 'types'; export const useBuildPayload = () => { const { api } = useApi(); const { getNonce } = useBalances(); - const { - networkData: { unit }, - } = useNetwork(); - const { getAccount } = useImportedAccounts(); - const { setTxPayload } = useTxMeta(); + const { getAccount } = useImportedAccounts(); // Request a metadata hash from Zondax API service. - const fetchMetadataHash = async () => { - const requestMetadataHash = await fetch(ZondaxMetadataHashApiUrl, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ id: unit.toLowerCase() }), - }); + const fetchMetadataHash = async (a: ApiPromise, p: AnyJson) => { + const metadata = await a.call.metadata.metadataAtVersion(15); + const { specName, specVersion } = a.runtimeVersion; + + const opts = { + base58Prefix: (a.consts.system.ss58Prefix as AnyApi).toNumber(), + decimals: a.registry.chainDecimals[0], + specName: specName.toString(), + specVersion: specVersion.toNumber(), + tokenSymbol: a.registry.chainTokens[0], + }; - const response = await requestMetadataHash.json(); + const merkleizedMetadata = merkleizeMetadata(metadata.toHex(), opts); + const metadataHash = u8aToHex(merkleizedMetadata.digest()); + const payload = objectSpread({}, p, { metadataHash, mode: 1 }); + const newPayload = a.registry.createType('ExtrinsicPayload', payload); - return `0x${response.metadataHash}`; + return { + newPayload, + newTxMetadata: merkleizedMetadata.getProofForExtrinsicPayload( + u8aToHex(newPayload.toU8a(true)) + ), + }; }; // Build and set payload of the transaction and store it in TxMetaContext. @@ -56,9 +64,11 @@ export const useBuildPayload = () => { const nonce = api.registry.createType('Compact', accountNonce); // Construct the payload value. - const payload: AnyJson = { + const payloadJson: AnyJson = { specVersion: api.runtimeVersion.specVersion.toHex(), transactionVersion: api.runtimeVersion.transactionVersion.toHex(), + runtimeVersion: api.runtimeVersion, + version: api.extrinsicVersion, address: from, blockHash: lastHeader.hash.toHex(), blockNumber: blockNumber.toHex(), @@ -68,28 +78,30 @@ export const useBuildPayload = () => { nonce: nonce.toHex(), signedExtensions: api.registry.signedExtensions, tip: api.registry.createType('Compact', 0).toHex(), - version: tx.version, withSignedTransaction: true, }; + let payload; + let txMetadata = null; + // If the source is `ledger`, add the metadata hash to the payload. if (source === 'ledger') { - const metadataHash = await fetchMetadataHash(); - payload.mode = 1; - payload.metadataHash = metadataHash; + const { newPayload, newTxMetadata } = await fetchMetadataHash( + api, + payloadJson + ); + payload = newPayload; + txMetadata = newTxMetadata; + } else { + // Create the payload raw. + payload = api.registry.createType('ExtrinsicPayload', payload, { + version: payloadJson.version, + }); + txMetadata = null; } - // Create the payload bytes. - const payloadBytes = api.registry.createType( - 'ExtrinsicPayload', - payload, - { - version: payload.version, - } - ); - // Persist both the payload and the payload bytes in state, indexed by its uid. - setTxPayload(payloadBytes, payload, uid); + setTxPayload(txMetadata, payload, uid); } }; diff --git a/src/hooks/useNominationStatus/index.tsx b/src/hooks/useNominationStatus/index.tsx index 963e863b17..21da9788a1 100644 --- a/src/hooks/useNominationStatus/index.tsx +++ b/src/hooks/useNominationStatus/index.tsx @@ -23,7 +23,7 @@ export const useNominationStatus = () => { const nominations = type === 'nominator' ? getNominations(who) - : activePoolNominations?.targets ?? []; + : (activePoolNominations?.targets ?? []); return getNominationsStatusFromTargets(who, nominations); }; diff --git a/src/hooks/useSubmitExtrinsic/index.tsx b/src/hooks/useSubmitExtrinsic/index.tsx index 59e001fe15..4b969a3959 100644 --- a/src/hooks/useSubmitExtrinsic/index.tsx +++ b/src/hooks/useSubmitExtrinsic/index.tsx @@ -37,7 +37,7 @@ export const useSubmitExtrinsic = ({ txFees, setTxFees, setSender, - getTxPayloadValue, + getTxPayload, getTxSignature, setTxSignature, resetTxPayload, @@ -229,7 +229,7 @@ export const useSubmitExtrinsic = ({ // pre-submission state update setSubmitting(true); - const txPayloadValue = getTxPayloadValue(); + const txPayloadValue = getTxPayload(); const txSignature = getTxSignature(); // handle signed transaction. @@ -238,7 +238,7 @@ export const useSubmitExtrinsic = ({ txRef.current.addSignature( fromRef.current, txSignature, - txPayloadValue + txPayloadValue.toHex() ); const unsub = await txRef.current.send( diff --git a/src/library/Account/PoolAccount.tsx b/src/library/Account/PoolAccount.tsx index 4b5ab795d7..53344cf4b3 100644 --- a/src/library/Account/PoolAccount.tsx +++ b/src/library/Account/PoolAccount.tsx @@ -17,7 +17,9 @@ const PoolAccount = ({ label, pool, syncing }: PoolAccountProps) => { // Default display text value. const defaultDisplay = ellipsisFn(pool.addresses.stash); - let text = syncing ? t('syncing') : poolsMetaData[pool.id] ?? defaultDisplay; + let text = syncing + ? t('syncing') + : (poolsMetaData[pool.id] ?? defaultDisplay); // Check if super identity has been byte encoded. const displayAsBytes = u8aToString(u8aUnwrapBytes(text)); diff --git a/src/library/SubmitTx/ManualSign/Ledger/Submit.tsx b/src/library/SubmitTx/ManualSign/Ledger/Submit.tsx index 2ef7e41e9e..d97a584513 100644 --- a/src/library/SubmitTx/ManualSign/Ledger/Submit.tsx +++ b/src/library/SubmitTx/ManualSign/Ledger/Submit.tsx @@ -33,7 +33,7 @@ export const Submit = ({ const { getTxSignature } = useTxMeta(); const { getAccount } = useImportedAccounts(); const { activeAccount } = useActiveAccounts(); - const { getTxPayload, getPayloadUid } = useTxMeta(); + const { getTxMetadata, getTxPayload, getPayloadUid } = useTxMeta(); const { txMetadataChainId } = getLedgerApp(network); const getAddressIndex = () => @@ -43,8 +43,16 @@ export const Submit = ({ const handleTxSubmit = async () => { const uid = getPayloadUid(); const accountIndex = getAddressIndex(); + const txMetadata = await getTxMetadata(); const payload = await getTxPayload(); - await handleSignTx(txMetadataChainId, uid, accountIndex, payload); + + await handleSignTx( + txMetadataChainId, + uid, + accountIndex, + payload, + txMetadata + ); }; // Check device runtime version. diff --git a/src/library/SubmitTx/ManualSign/Vault/SignPrompt.tsx b/src/library/SubmitTx/ManualSign/Vault/SignPrompt.tsx index d7a091855f..6a1e046e65 100644 --- a/src/library/SubmitTx/ManualSign/Vault/SignPrompt.tsx +++ b/src/library/SubmitTx/ManualSign/Vault/SignPrompt.tsx @@ -21,6 +21,7 @@ import { ButtonSecondary } from 'kits/Buttons/ButtonSecondary'; export const SignPrompt = ({ submitAddress }: SignerPromptProps) => { const { t } = useTranslation('library'); const { getTxPayload, setTxSignature } = useTxMeta(); + const payload = getTxPayload(); const payloadU8a = payload?.toU8a(); const { closePrompt } = usePrompt(); diff --git a/yarn.lock b/yarn.lock index 6b64e3649d..0d38fc315d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -25,86 +25,58 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/compat-data@npm:7.24.7" - checksum: 10c0/dcd93a5632b04536498fbe2be5af1057f635fd7f7090483d8e797878559037e5130b26862ceb359acbae93ed27e076d395ddb4663db6b28a665756ffd02d324f +"@babel/compat-data@npm:^7.24.8": + version: 7.25.0 + resolution: "@babel/compat-data@npm:7.25.0" + checksum: 10c0/2873df153aa0c60f9e63369320beb5fd9ca948552a06c77db1eb0687bd10a296c9fbf9996bd4b3c8137a78eba3a0f0edfc41b65f57fca8421e5c0c8bb13a813d languageName: node linkType: hard "@babel/core@npm:^7.21.3": - version: 7.24.7 - resolution: "@babel/core@npm:7.24.7" + version: 7.24.9 + resolution: "@babel/core@npm:7.24.9" dependencies: "@ampproject/remapping": "npm:^2.2.0" "@babel/code-frame": "npm:^7.24.7" - "@babel/generator": "npm:^7.24.7" - "@babel/helper-compilation-targets": "npm:^7.24.7" - "@babel/helper-module-transforms": "npm:^7.24.7" - "@babel/helpers": "npm:^7.24.7" - "@babel/parser": "npm:^7.24.7" + "@babel/generator": "npm:^7.24.9" + "@babel/helper-compilation-targets": "npm:^7.24.8" + "@babel/helper-module-transforms": "npm:^7.24.9" + "@babel/helpers": "npm:^7.24.8" + "@babel/parser": "npm:^7.24.8" "@babel/template": "npm:^7.24.7" - "@babel/traverse": "npm:^7.24.7" - "@babel/types": "npm:^7.24.7" + "@babel/traverse": "npm:^7.24.8" + "@babel/types": "npm:^7.24.9" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10c0/4004ba454d3c20a46ea66264e06c15b82e9f6bdc35f88819907d24620da70dbf896abac1cb4cc4b6bb8642969e45f4d808497c9054a1388a386cf8c12e9b9e0d + checksum: 10c0/e104ec6efbf099f55184933e9ab078eb5821c792ddfef3e9c6561986ec4ff103f5c11e3d7d6e5e8929e50e2c58db1cc80e5b6f14b530335b6622095ec4b4124c languageName: node linkType: hard -"@babel/generator@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/generator@npm:7.24.7" +"@babel/generator@npm:^7.24.9, @babel/generator@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/generator@npm:7.25.0" dependencies: - "@babel/types": "npm:^7.24.7" + "@babel/types": "npm:^7.25.0" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^2.5.1" - checksum: 10c0/06b1f3350baf527a3309e50ffd7065f7aee04dd06e1e7db794ddfde7fe9d81f28df64edd587173f8f9295496a7ddb74b9a185d4bf4de7bb619e6d4ec45c8fd35 + checksum: 10c0/d0e2dfcdc8bdbb5dded34b705ceebf2e0bc1b06795a1530e64fb6a3ccf313c189db7f60c1616effae48114e1a25adc75855bc4496f3779a396b3377bae718ce7 languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-compilation-targets@npm:7.24.7" +"@babel/helper-compilation-targets@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-compilation-targets@npm:7.24.8" dependencies: - "@babel/compat-data": "npm:^7.24.7" - "@babel/helper-validator-option": "npm:^7.24.7" - browserslist: "npm:^4.22.2" + "@babel/compat-data": "npm:^7.24.8" + "@babel/helper-validator-option": "npm:^7.24.8" + browserslist: "npm:^4.23.1" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" - checksum: 10c0/1d580a9bcacefe65e6bf02ba1dafd7ab278269fef45b5e281d8354d95c53031e019890464e7f9351898c01502dd2e633184eb0bcda49ed2ecd538675ce310f51 - languageName: node - linkType: hard - -"@babel/helper-environment-visitor@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-environment-visitor@npm:7.24.7" - dependencies: - "@babel/types": "npm:^7.24.7" - checksum: 10c0/36ece78882b5960e2d26abf13cf15ff5689bf7c325b10a2895a74a499e712de0d305f8d78bb382dd3c05cfba7e47ec98fe28aab5674243e0625cd38438dd0b2d - languageName: node - linkType: hard - -"@babel/helper-function-name@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-function-name@npm:7.24.7" - dependencies: - "@babel/template": "npm:^7.24.7" - "@babel/types": "npm:^7.24.7" - checksum: 10c0/e5e41e6cf86bd0f8bf272cbb6e7c5ee0f3e9660414174435a46653efba4f2479ce03ce04abff2aa2ef9359cf057c79c06cb7b134a565ad9c0e8a50dcdc3b43c4 - languageName: node - linkType: hard - -"@babel/helper-hoist-variables@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-hoist-variables@npm:7.24.7" - dependencies: - "@babel/types": "npm:^7.24.7" - checksum: 10c0/19ee37563bbd1219f9d98991ad0e9abef77803ee5945fd85aa7aa62a67c69efca9a801696a1b58dda27f211e878b3327789e6fd2a6f6c725ccefe36774b5ce95 + checksum: 10c0/2885c44ef6aaf82b7e4352b30089bb09fbe08ed5ec24eb452c2bdc3c021e2a65ab412f74b3d67ec1398da0356c730b33a2ceca1d67d34c85080d31ca6efa9aec languageName: node linkType: hard @@ -118,18 +90,17 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-module-transforms@npm:7.24.7" +"@babel/helper-module-transforms@npm:^7.24.9": + version: 7.25.0 + resolution: "@babel/helper-module-transforms@npm:7.25.0" dependencies: - "@babel/helper-environment-visitor": "npm:^7.24.7" "@babel/helper-module-imports": "npm:^7.24.7" "@babel/helper-simple-access": "npm:^7.24.7" - "@babel/helper-split-export-declaration": "npm:^7.24.7" "@babel/helper-validator-identifier": "npm:^7.24.7" + "@babel/traverse": "npm:^7.25.0" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/4f311755fcc3b4cbdb689386309cdb349cf0575a938f0b9ab5d678e1a81bbb265aa34ad93174838245f2ac7ff6d5ddbd0104638a75e4e961958ed514355687b6 + checksum: 10c0/83c0ea9bbd10afbf3539c40ff2c255dd9af6a003dd4a51ed94faed110a52a0ab510fcdd7a675117e8b72d6b479643864674b9243997516c8d77a95dd688e0c9a languageName: node linkType: hard @@ -143,19 +114,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-split-export-declaration@npm:7.24.7" - dependencies: - "@babel/types": "npm:^7.24.7" - checksum: 10c0/0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6 - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-string-parser@npm:7.24.7" - checksum: 10c0/47840c7004e735f3dc93939c77b099bb41a64bf3dda0cae62f60e6f74a5ff80b63e9b7cf77b5ec25a324516381fc994e1f62f922533236a8e3a6af57decb5e1e +"@babel/helper-string-parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-string-parser@npm:7.24.8" + checksum: 10c0/6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08 languageName: node linkType: hard @@ -166,20 +128,20 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-validator-option@npm:7.24.7" - checksum: 10c0/21aea2b7bc5cc8ddfb828741d5c8116a84cbc35b4a3184ec53124f08e09746f1f67a6f9217850188995ca86059a7942e36d8965a6730784901def777b7e8a436 +"@babel/helper-validator-option@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-validator-option@npm:7.24.8" + checksum: 10c0/73db93a34ae89201351288bee7623eed81a54000779462a986105b54ffe82069e764afd15171a428b82e7c7a9b5fec10b5d5603b216317a414062edf5c67a21f languageName: node linkType: hard -"@babel/helpers@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helpers@npm:7.24.7" +"@babel/helpers@npm:^7.24.8": + version: 7.25.0 + resolution: "@babel/helpers@npm:7.25.0" dependencies: - "@babel/template": "npm:^7.24.7" - "@babel/types": "npm:^7.24.7" - checksum: 10c0/aa8e230f6668773e17e141dbcab63e935c514b4b0bf1fed04d2eaefda17df68e16b61a56573f7f1d4d1e605ce6cc162b5f7e9fdf159fde1fd9b77c920ae47d27 + "@babel/template": "npm:^7.25.0" + "@babel/types": "npm:^7.25.0" + checksum: 10c0/b7fe007fc4194268abf70aa3810365085e290e6528dcb9fbbf7a765d43c74b6369ce0f99c5ccd2d44c413853099daa449c9a0123f0b212ac8d18643f2e8174b8 languageName: node linkType: hard @@ -195,61 +157,58 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/parser@npm:7.24.7" +"@babel/parser@npm:^7.24.8, @babel/parser@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/parser@npm:7.25.0" bin: parser: ./bin/babel-parser.js - checksum: 10c0/8b244756872185a1c6f14b979b3535e682ff08cb5a2a5fd97cc36c017c7ef431ba76439e95e419d43000c5b07720495b00cf29a7f0d9a483643d08802b58819b + checksum: 10c0/4aecf13829fa6f4a66835429bd235458544d9cd14374b17c19bc7726f472727ca33f500e51e1298ddc72db93bdd77fcaa9ddc095200b0b792173069e6cf9742e languageName: node linkType: hard "@babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9": - version: 7.24.7 - resolution: "@babel/runtime@npm:7.24.7" + version: 7.25.0 + resolution: "@babel/runtime@npm:7.25.0" dependencies: regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513 + checksum: 10c0/bd3faf246170826cef2071a94d7b47b49d532351360ecd17722d03f6713fd93a3eb3dbd9518faa778d5e8ccad7392a7a604e56bd37aaad3f3aa68d619ccd983d languageName: node linkType: hard -"@babel/template@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/template@npm:7.24.7" +"@babel/template@npm:^7.24.7, @babel/template@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/template@npm:7.25.0" dependencies: "@babel/code-frame": "npm:^7.24.7" - "@babel/parser": "npm:^7.24.7" - "@babel/types": "npm:^7.24.7" - checksum: 10c0/95b0b3ee80fcef685b7f4426f5713a855ea2cd5ac4da829b213f8fb5afe48a2a14683c2ea04d446dbc7f711c33c5cd4a965ef34dcbe5bc387c9e966b67877ae3 + "@babel/parser": "npm:^7.25.0" + "@babel/types": "npm:^7.25.0" + checksum: 10c0/4e31afd873215744c016e02b04f43b9fa23205d6d0766fb2e93eb4091c60c1b88897936adb895fb04e3c23de98dfdcbe31bc98daaa1a4e0133f78bb948e1209b languageName: node linkType: hard -"@babel/traverse@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/traverse@npm:7.24.7" +"@babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0": + version: 7.25.1 + resolution: "@babel/traverse@npm:7.25.1" dependencies: "@babel/code-frame": "npm:^7.24.7" - "@babel/generator": "npm:^7.24.7" - "@babel/helper-environment-visitor": "npm:^7.24.7" - "@babel/helper-function-name": "npm:^7.24.7" - "@babel/helper-hoist-variables": "npm:^7.24.7" - "@babel/helper-split-export-declaration": "npm:^7.24.7" - "@babel/parser": "npm:^7.24.7" - "@babel/types": "npm:^7.24.7" + "@babel/generator": "npm:^7.25.0" + "@babel/parser": "npm:^7.25.0" + "@babel/template": "npm:^7.25.0" + "@babel/types": "npm:^7.25.0" debug: "npm:^4.3.1" globals: "npm:^11.1.0" - checksum: 10c0/a5135e589c3f1972b8877805f50a084a04865ccb1d68e5e1f3b94a8841b3485da4142e33413d8fd76bc0e6444531d3adf1f59f359c11ffac452b743d835068ab + checksum: 10c0/d8ae766da109d026ea6e483b9732256410e0ac249929e366ff11cf64a40a53a64b6a7b6db502a77de81dcace1fcf530d7569ffd0ee6b727ef4eb343e5f68ef74 languageName: node linkType: hard -"@babel/types@npm:^7.21.3, @babel/types@npm:^7.24.7, @babel/types@npm:^7.8.3": - version: 7.24.7 - resolution: "@babel/types@npm:7.24.7" +"@babel/types@npm:^7.21.3, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.9, @babel/types@npm:^7.25.0, @babel/types@npm:^7.8.3": + version: 7.25.0 + resolution: "@babel/types@npm:7.25.0" dependencies: - "@babel/helper-string-parser": "npm:^7.24.7" + "@babel/helper-string-parser": "npm:^7.24.8" "@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" - checksum: 10c0/d9ecbfc3eb2b05fb1e6eeea546836ac30d990f395ef3fe3f75ced777a222c3cfc4489492f72e0ce3d9a5a28860a1ce5f81e66b88cf5088909068b3ff4fab72c1 + checksum: 10c0/3b2087d72442d53944b5365c7082f120e5040b0333d4a82406187c19056261ae2a35e087f8408348baadf1dcd156dc74573ec151272191b4a22b564297473da1 languageName: node linkType: hard @@ -535,46 +494,46 @@ __metadata: languageName: node linkType: hard -"@fortawesome/fontawesome-common-types@npm:6.5.2": - version: 6.5.2 - resolution: "@fortawesome/fontawesome-common-types@npm:6.5.2" - checksum: 10c0/12104e93a0056ad1077f7350826f52aa26465bb1d6b4ce75dab0307072a3871301ec750c3a34d89d05e7338c9b446fa2793150cf58a5167217021943ef877d77 +"@fortawesome/fontawesome-common-types@npm:6.6.0": + version: 6.6.0 + resolution: "@fortawesome/fontawesome-common-types@npm:6.6.0" + checksum: 10c0/f76e5959f6ce01355f599126a3a68facba578dc8ebb7ad40fbd22417b7056364a577c1887720ec9653d4efa5b704a01150f5064fc7de237d697fd80e3d9c83aa languageName: node linkType: hard "@fortawesome/fontawesome-svg-core@npm:^6.5.2": - version: 6.5.2 - resolution: "@fortawesome/fontawesome-svg-core@npm:6.5.2" + version: 6.6.0 + resolution: "@fortawesome/fontawesome-svg-core@npm:6.6.0" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.5.2" - checksum: 10c0/91695dd375623988d16e6f0dc69d20350ef3fa3296fe40aa08877aae7beaf64378134656a2227419fe648dcd27a81c03fe1fd9a6c87956d863164b0380ba77d0 + "@fortawesome/fontawesome-common-types": "npm:6.6.0" + checksum: 10c0/38e2840791711524a3c57d9ea48a5a2e99da6fa3c657ba6beaad7ec3b8da31489a9e38f42b23d70584c75b579dc1ff8c67e075bc9789032278e4da54bb86ecfe languageName: node linkType: hard "@fortawesome/free-brands-svg-icons@npm:^6.5.2": - version: 6.5.2 - resolution: "@fortawesome/free-brands-svg-icons@npm:6.5.2" + version: 6.6.0 + resolution: "@fortawesome/free-brands-svg-icons@npm:6.6.0" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.5.2" - checksum: 10c0/4c1798930547a73bf9dfd04064288d4ce02fbf42fece056c1f5dd6596363d6a34bb86bc2e0f400b78f938f48773aceb375bc6977e55cbaec9b7bd07996ae1e8c + "@fortawesome/fontawesome-common-types": "npm:6.6.0" + checksum: 10c0/1135a22ff274939da477496f550b6750a1b5fd0ddd0c09bddb1874f2c183a5c8edb519de2cebf6454b12a8457c3eec587bdb6f68e96140cceeb6d02c1ec35479 languageName: node linkType: hard "@fortawesome/free-regular-svg-icons@npm:^6.5.2": - version: 6.5.2 - resolution: "@fortawesome/free-regular-svg-icons@npm:6.5.2" + version: 6.6.0 + resolution: "@fortawesome/free-regular-svg-icons@npm:6.6.0" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.5.2" - checksum: 10c0/dff7e3cc4a5433b020b0cf9e5ba95cedec7f64cda38b1183bbac5cead9d0a54b6d70671fbf799a8b5e3befb7f8955a546cf013d62b941fd03cd4516ef18613e7 + "@fortawesome/fontawesome-common-types": "npm:6.6.0" + checksum: 10c0/c682a6d7c6bdce492eee5b15a6647f9c436ce04f337080b7061cc04a739b5eb95224f7cdc7d865cf08fea837d4d1b1541849a3183534956e176896a969220d45 languageName: node linkType: hard "@fortawesome/free-solid-svg-icons@npm:^6.5.2": - version: 6.5.2 - resolution: "@fortawesome/free-solid-svg-icons@npm:6.5.2" + version: 6.6.0 + resolution: "@fortawesome/free-solid-svg-icons@npm:6.6.0" dependencies: - "@fortawesome/fontawesome-common-types": "npm:6.5.2" - checksum: 10c0/af2778b91ba4bf7b61ae0cdf0d39d75b6906a82bfdf8e977881d987b86a32ce157297853b7892aa3b609076b5542ea1e1e78b520d57b6f50677a2a748cf3434c + "@fortawesome/fontawesome-common-types": "npm:6.6.0" + checksum: 10c0/34828d5e682c6f9d19e3a892ff8a390128fa7dc68768b11c727c11b6a05e5efc929206bfbec83e9d3ae0590a6f6ea22fd5e447fea647e560650f7f3ef1cff543 languageName: node linkType: hard @@ -839,9 +798,9 @@ __metadata: linkType: hard "@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5 + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 languageName: node linkType: hard @@ -862,34 +821,34 @@ __metadata: languageName: node linkType: hard -"@ledgerhq/devices@npm:^8.3.0, @ledgerhq/devices@npm:^8.4.0": - version: 8.4.0 - resolution: "@ledgerhq/devices@npm:8.4.0" +"@ledgerhq/devices@npm:^8.3.0, @ledgerhq/devices@npm:^8.4.0, @ledgerhq/devices@npm:^8.4.2": + version: 8.4.2 + resolution: "@ledgerhq/devices@npm:8.4.2" dependencies: - "@ledgerhq/errors": "npm:^6.17.0" + "@ledgerhq/errors": "npm:^6.18.0" "@ledgerhq/logs": "npm:^6.12.0" rxjs: "npm:^7.8.1" semver: "npm:^7.3.5" - checksum: 10c0/8e63c0560beb96301ae02206396f5e44446ee466ecb408c543bb4d4ad0d52ab2057293d379d199af084b7e158674d55ec5d910d173f9edefe2e24c0d48013663 + checksum: 10c0/b7149c6302d23928fd2d3622d9018af10a56f6960732de0d72e881d19b75b0036f6248ca0845cfe9dfeda32ecb52c352423e79e109c7decf8437948fed7843cd languageName: node linkType: hard -"@ledgerhq/errors@npm:^6.16.4, @ledgerhq/errors@npm:^6.17.0": - version: 6.17.0 - resolution: "@ledgerhq/errors@npm:6.17.0" - checksum: 10c0/9de724846dbba8a2b1cc4f9f1b3fd7d544a6c02b8cb3c282ec88c20f51a1480ce4a629687f0cd297b54cc4b6f41f84360dfd7e8639a01d3207ecd01e39b4298a +"@ledgerhq/errors@npm:^6.16.4, @ledgerhq/errors@npm:^6.17.0, @ledgerhq/errors@npm:^6.18.0": + version: 6.18.0 + resolution: "@ledgerhq/errors@npm:6.18.0" + checksum: 10c0/0dad36bd049c1eb346b83d2b99c1dde0445c53ae3a2f73d4f9a7f5e278ef61d1e589cc0b30bb81dd3082ad9a751f7d82b662214088e19b09769bded45447fb54 languageName: node linkType: hard -"@ledgerhq/hw-transport-webhid@npm:^6.29.0": - version: 6.29.0 - resolution: "@ledgerhq/hw-transport-webhid@npm:6.29.0" +"@ledgerhq/hw-transport-webhid@npm:^6.29.2": + version: 6.29.2 + resolution: "@ledgerhq/hw-transport-webhid@npm:6.29.2" dependencies: - "@ledgerhq/devices": "npm:^8.4.0" - "@ledgerhq/errors": "npm:^6.17.0" - "@ledgerhq/hw-transport": "npm:^6.31.0" + "@ledgerhq/devices": "npm:^8.4.2" + "@ledgerhq/errors": "npm:^6.18.0" + "@ledgerhq/hw-transport": "npm:^6.31.2" "@ledgerhq/logs": "npm:^6.12.0" - checksum: 10c0/84adb4c5038e78db7153a38cbe0f18960a8e1072301150cb5c57cd5d363c995a63dbee01c47428829e2a4e671e356ce0a0afc1a7dcec1d967befb3751673b2bd + checksum: 10c0/86a610bf99eb44fbd93a7d0afc621f13a5f43e63fc86c64f686f88cc528d0ea62a51f674b8a6148aaa4330cc8ef2c2b2e461bbea5a71ae39305f82124a83377b languageName: node linkType: hard @@ -905,7 +864,7 @@ __metadata: languageName: node linkType: hard -"@ledgerhq/hw-transport@npm:6.31.0, @ledgerhq/hw-transport@npm:^6.31.0": +"@ledgerhq/hw-transport@npm:6.31.0": version: 6.31.0 resolution: "@ledgerhq/hw-transport@npm:6.31.0" dependencies: @@ -917,6 +876,18 @@ __metadata: languageName: node linkType: hard +"@ledgerhq/hw-transport@npm:^6.31.2": + version: 6.31.2 + resolution: "@ledgerhq/hw-transport@npm:6.31.2" + dependencies: + "@ledgerhq/devices": "npm:^8.4.2" + "@ledgerhq/errors": "npm:^6.18.0" + "@ledgerhq/logs": "npm:^6.12.0" + events: "npm:^3.3.0" + checksum: 10c0/3fc61c2e844639b7ec73e5eaec2f34235a414ec802df2491ea3d32d854f5f53c592b35b874a9ce899a6087a74a5a750b20c91aae19aaa44eea2faa390edf593f + languageName: node + linkType: hard + "@ledgerhq/logs@npm:^6.12.0": version: 6.12.0 resolution: "@ledgerhq/logs@npm:6.12.0" @@ -949,7 +920,7 @@ __metadata: languageName: node linkType: hard -"@noble/hashes@npm:1.4.0, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3": +"@noble/hashes@npm:1.4.0, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3, @noble/hashes@npm:^1.4.0": version: 1.4.0 resolution: "@noble/hashes@npm:1.4.0" checksum: 10c0/8c3f005ee72e7b8f9cff756dfae1241485187254e3f743873e22073d63906863df5d4f13d441b7530ea614b7a093f0d889309f28b59850f33b66cb26a779a4a5 @@ -1061,6 +1032,16 @@ __metadata: languageName: node linkType: hard +"@polkadot-api/merkleize-metadata@npm:^1.1.2": + version: 1.1.2 + resolution: "@polkadot-api/merkleize-metadata@npm:1.1.2" + dependencies: + "@polkadot-api/substrate-bindings": "npm:0.6.2" + "@polkadot-api/utils": "npm:0.1.1" + checksum: 10c0/4148c26c2d07b72ec1f632bfe683017131e9fa6a1dae2be9c32f3ae994392b98abd30e7175049a90d760e37362ec64872edb8a712f21d5a26baaf19b13dde5f2 + languageName: node + linkType: hard + "@polkadot-api/metadata-builders@npm:0.0.1": version: 0.0.1 resolution: "@polkadot-api/metadata-builders@npm:0.0.1" @@ -1119,6 +1100,18 @@ __metadata: languageName: node linkType: hard +"@polkadot-api/substrate-bindings@npm:0.6.2": + version: 0.6.2 + resolution: "@polkadot-api/substrate-bindings@npm:0.6.2" + dependencies: + "@noble/hashes": "npm:^1.4.0" + "@polkadot-api/utils": "npm:0.1.1" + "@scure/base": "npm:^1.1.7" + scale-ts: "npm:^1.6.0" + checksum: 10c0/a96bb28aa28ac8ea94e8c8d13ecda0bbb39401007987789bcbbbc48caa5c3af772c4ca1a0200b218af4d8ddcf5424821e97bbbeacb6b1aac3b2f47a676d24242 + languageName: node + linkType: hard + "@polkadot-api/substrate-client@npm:0.0.1": version: 0.0.1 resolution: "@polkadot-api/substrate-client@npm:0.0.1" @@ -1147,6 +1140,13 @@ __metadata: languageName: node linkType: hard +"@polkadot-api/utils@npm:0.1.1": + version: 0.1.1 + resolution: "@polkadot-api/utils@npm:0.1.1" + checksum: 10c0/25e4da0e2defb713d18cd0c0db594a89cc4e23f36b2ebc5bccb1e2a8ba9a9814d09630d577b98ebcfdbbda2861fa8be48e914bf5f461481f3a09f1627ea6e784 + languageName: node + linkType: hard + "@polkadot/api-augment@npm:10.13.1": version: 10.13.1 resolution: "@polkadot/api-augment@npm:10.13.1" @@ -1162,18 +1162,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/api-augment@npm:12.1.1" +"@polkadot/api-augment@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/api-augment@npm:12.2.2" dependencies: - "@polkadot/api-base": "npm:12.1.1" - "@polkadot/rpc-augment": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-augment": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/api-base": "npm:12.2.2" + "@polkadot/rpc-augment": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-augment": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/c16ed051f13e0affe00f2651271acde0558c33e633efc799ccdc3e35317bc9878169a787d804e02bfa74c0d2d435725bc3c6ab22d0a0f0dddf9ea29059dbf584 + checksum: 10c0/6387dbd80c651663b550bda54c882ab4f952c95fa2318616b8aa96cb7f793b472629e2492ebd2f0843361c5e8c05521056d1bfd0ef702a57cce3e3c11b68825d languageName: node linkType: hard @@ -1190,16 +1190,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-base@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/api-base@npm:12.1.1" +"@polkadot/api-base@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/api-base@npm:12.2.2" dependencies: - "@polkadot/rpc-core": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/rpc-core": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/d9e392335e47ac11b05a0751ed22fa7f56fbb6bc230dbea68fe62e427e3814765401a0ab5646c34906068cf2d4798574db7e04714d4b8d64d6b192ba4c9bda41 + checksum: 10c0/b130224a83ee2f70578fa86e297e749d076ce7f78bf34aaf391ee9d9eeade020ce6d63f59a3c32c08a56f3d0c4f5b03ae9d172730d148734bac09fe5c794d7b3 languageName: node linkType: hard @@ -1221,21 +1221,21 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-derive@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/api-derive@npm:12.1.1" +"@polkadot/api-derive@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/api-derive@npm:12.2.2" dependencies: - "@polkadot/api": "npm:12.1.1" - "@polkadot/api-augment": "npm:12.1.1" - "@polkadot/api-base": "npm:12.1.1" - "@polkadot/rpc-core": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" - "@polkadot/util-crypto": "npm:^12.6.2" + "@polkadot/api": "npm:12.2.2" + "@polkadot/api-augment": "npm:12.2.2" + "@polkadot/api-base": "npm:12.2.2" + "@polkadot/rpc-core": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/util-crypto": "npm:^13.0.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/009b63537c5bf31103773a85ea33b2b0ea3544d0855123a2cbf96c6c325416adced1ef55254bf1b915732baada055aac0459ec6dcdb9f6933f82aa199f87d7f8 + checksum: 10c0/b68b2c48261d2fee9583dfb1098f049aa330a364cbd1bd9846a73dbd0f08c62b096229f285e2554b009b1d7294cecd21784d7421ea05a56424f0b61a0d725777 languageName: node linkType: hard @@ -1264,28 +1264,28 @@ __metadata: languageName: node linkType: hard -"@polkadot/api@npm:12.1.1, @polkadot/api@npm:^12.0.2": - version: 12.1.1 - resolution: "@polkadot/api@npm:12.1.1" - dependencies: - "@polkadot/api-augment": "npm:12.1.1" - "@polkadot/api-base": "npm:12.1.1" - "@polkadot/api-derive": "npm:12.1.1" - "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/rpc-augment": "npm:12.1.1" - "@polkadot/rpc-core": "npm:12.1.1" - "@polkadot/rpc-provider": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-augment": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/types-create": "npm:12.1.1" - "@polkadot/types-known": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" - "@polkadot/util-crypto": "npm:^12.6.2" +"@polkadot/api@npm:12.2.2, @polkadot/api@npm:^12.2.2": + version: 12.2.2 + resolution: "@polkadot/api@npm:12.2.2" + dependencies: + "@polkadot/api-augment": "npm:12.2.2" + "@polkadot/api-base": "npm:12.2.2" + "@polkadot/api-derive": "npm:12.2.2" + "@polkadot/keyring": "npm:^13.0.2" + "@polkadot/rpc-augment": "npm:12.2.2" + "@polkadot/rpc-core": "npm:12.2.2" + "@polkadot/rpc-provider": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-augment": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/types-create": "npm:12.2.2" + "@polkadot/types-known": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/util-crypto": "npm:^13.0.2" eventemitter3: "npm:^5.0.1" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/35a734d587b2bff159c9c5422234b1e24f7e22931cc5ab9051fef5cad27b263300930222a394146af76ecaf31c7442ab0ab180583c01c43ee0f44dac5f4ba879 + checksum: 10c0/3f804463c9d3976c4e96f645485f3c84a699e1a99a2152dc891023c0c9e50c28f94c737b3d6d4c02a4f8feed4e9e837dcf60520e7f3ecc035eb841a9f8fd26e4 languageName: node linkType: hard @@ -1321,6 +1321,20 @@ __metadata: languageName: node linkType: hard +"@polkadot/keyring@npm:^13.0.2": + version: 13.0.2 + resolution: "@polkadot/keyring@npm:13.0.2" + dependencies: + "@polkadot/util": "npm:13.0.2" + "@polkadot/util-crypto": "npm:13.0.2" + tslib: "npm:^2.6.2" + peerDependencies: + "@polkadot/util": 13.0.2 + "@polkadot/util-crypto": 13.0.2 + checksum: 10c0/102fb4007b682f0ab54cb4a241d97b9028e49c6f1215323a89caea4b62f54376b46be9b1de4712d27e1e842fdaf8c8852c0bae70c4b1d663a21f939129eb99a8 + languageName: node + linkType: hard + "@polkadot/networks@npm:12.6.2, @polkadot/networks@npm:^12.6.2": version: 12.6.2 resolution: "@polkadot/networks@npm:12.6.2" @@ -1332,6 +1346,17 @@ __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" + dependencies: + "@polkadot/util": "npm:13.0.2" + "@substrate/ss58-registry": "npm:^1.46.0" + tslib: "npm:^2.6.2" + checksum: 10c0/33fd8348638eb9ad0bc171dbc16cba3f4b904829383bce1f2e2da8b7498ac8ed63d5a0b7d41a6e397c4caf9ae429405085d92b599af920b498b229b52fc0db71 + languageName: node + linkType: hard + "@polkadot/rpc-augment@npm:10.13.1": version: 10.13.1 resolution: "@polkadot/rpc-augment@npm:10.13.1" @@ -1345,16 +1370,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-augment@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/rpc-augment@npm:12.1.1" +"@polkadot/rpc-augment@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/rpc-augment@npm:12.2.2" dependencies: - "@polkadot/rpc-core": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/rpc-core": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/caeecd865950417c7cf9feaf3f602037b9c5c1ab780b019d1df3d85afa5cd25cb3eda4e8d4bc66343237e1877f545ae740377ad43c2f090799d355a47fdc8d4a + checksum: 10c0/e70514685a3985a74d3718c481eeb72e7ed3b59b663728dad2675868178009e2c35d3c8ff010ebb5188731942bb11816c6c298954da6e22afc63af8f2d59d6b7 languageName: node linkType: hard @@ -1372,17 +1397,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-core@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/rpc-core@npm:12.1.1" +"@polkadot/rpc-core@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/rpc-core@npm:12.2.2" dependencies: - "@polkadot/rpc-augment": "npm:12.1.1" - "@polkadot/rpc-provider": "npm:12.1.1" - "@polkadot/types": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/rpc-augment": "npm:12.2.2" + "@polkadot/rpc-provider": "npm:12.2.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/f9b6f4e5d652c6f498c2c7043cfc257fc62ce76b9c11a5ef0d66fc25633c176ca8bbd17b77d74bd39806842ecbbbbe12a12a596deb0869b468457c7684b4abbb + checksum: 10c0/b64312ad3945cdb1a76bbb982f5243d5dd99764730434beeae08b9634c4711d246e6abcbf537075eb8a9e819dc603d906e3a03fa4608731e3c91498b640b5c72 languageName: node linkType: hard @@ -1434,18 +1459,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-provider@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/rpc-provider@npm:12.1.1" +"@polkadot/rpc-provider@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/rpc-provider@npm:12.2.2" dependencies: - "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-support": "npm:12.1.1" - "@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" + "@polkadot/keyring": "npm:^13.0.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-support": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/util-crypto": "npm:^13.0.2" + "@polkadot/x-fetch": "npm:^13.0.2" + "@polkadot/x-global": "npm:^13.0.2" + "@polkadot/x-ws": "npm:^13.0.2" "@substrate/connect": "npm:0.8.10" eventemitter3: "npm:^5.0.1" mock-socket: "npm:^9.3.1" @@ -1454,7 +1479,7 @@ __metadata: dependenciesMeta: "@substrate/connect": optional: true - checksum: 10c0/9e3ab30e664cac7b4f557b6e40da20f656105763fd7122776c0404facf28ae904cc6c6f582efc944cdc7d52a6b4ea835e46212d359de8f3a30bef2fb4fe61bbd + checksum: 10c0/c08b46a464dc940c892475aee42088df5629927f61053429101e13184d6d01ad8ed33d3db229b4dc655487782df52d5a1fd5457afed390b6e2591c8819b95a75 languageName: node linkType: hard @@ -1482,15 +1507,15 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-augment@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types-augment@npm:12.1.1" +"@polkadot/types-augment@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types-augment@npm:12.2.2" dependencies: - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/20342a217823e039f3c0cc011319429345b98472230472e3ec3563d97581ad2a20a974cdaf66c8ce2d49381a5cdf759326027b6f55bef18b396decfd0db37030 + checksum: 10c0/cbe3510e009ff72f6873494901fe1551607c2083e9d9d09f667f7c47774d46015e39bb176b7482aa674981c2cfa726f969158045878d9d574f702462530ddd92 languageName: node linkType: hard @@ -1516,14 +1541,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-codec@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types-codec@npm:12.1.1" +"@polkadot/types-codec@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types-codec@npm:12.2.2" dependencies: - "@polkadot/util": "npm:^12.6.2" - "@polkadot/x-bigint": "npm:^12.6.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/x-bigint": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/d717a4ad746c5748c683fe449814a85e0c5f4b2530c2448f5950918c83f43370bdedd51ea9c5f31da8992f674c05324649f2e1d350d5b688316be345e2257893 + checksum: 10c0/7a909af17d0995b6a8c2db737e0c60a36dd29424eb98c501c2930ebdb9842b4985815ce24fca4776b07b8554b53a7d6f705b7b9358cf10a5785736aefd1be6a9 languageName: node linkType: hard @@ -1549,14 +1574,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-create@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types-create@npm:12.1.1" +"@polkadot/types-create@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types-create@npm:12.2.2" dependencies: - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/b4e3e4f93626f816a104868467b5299a19416b14b6783b576c498636d46a7d86488d623a91d5b3f106e4f7717959c90e1b9d0a65f2a60893ecb4f491ea5c8b54 + checksum: 10c0/e6bc243db2525046be5a93d5d135b45f9a303d020a6adfb8b41f991170c5d00fe59525ae1d7419bbc3b53d6c0631f73346910eaae959c13d1c26508e47b68669 languageName: node linkType: hard @@ -1574,17 +1599,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-known@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types-known@npm:12.1.1" +"@polkadot/types-known@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types-known@npm:12.2.2" dependencies: - "@polkadot/networks": "npm:^12.6.2" - "@polkadot/types": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/types-create": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" + "@polkadot/networks": "npm:^13.0.2" + "@polkadot/types": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/types-create": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/3dafe027096c06e256ede7b7655a9c6a20b2bcbcb6c35f19a6d91b0064d4963516ccde5743f374d651bfc32167094589ecf7de24a327fcb13bcf0ead85a780cb + checksum: 10c0/18e19d234dc5be3bf55c154cd96e8d9724d0d8cac5921b265c1642b51ffec26934884fe4f007c654de75a7641faec77d0816803bca6ee022bab37695f074ec44 languageName: node linkType: hard @@ -1608,13 +1633,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-support@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types-support@npm:12.1.1" +"@polkadot/types-support@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types-support@npm:12.2.2" dependencies: - "@polkadot/util": "npm:^12.6.2" + "@polkadot/util": "npm:^13.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/9de178a91ce0d7e7d6449c68d63a6ade552e322ead3205832f563f72cfdb05cf6e6c2873db43eafc5f44d523625fc4220cccff8de65c05e1bcc1d3758afde963 + checksum: 10c0/9e5ac34b1e812ead2604896a90802fb33155bd009d65c274f909670541ab349554622ea7e43549cdcec4498a5972fc004a08060e8049edadf539dd2a644cc6c2 languageName: node linkType: hard @@ -1650,19 +1675,19 @@ __metadata: languageName: node linkType: hard -"@polkadot/types@npm:12.1.1": - version: 12.1.1 - resolution: "@polkadot/types@npm:12.1.1" +"@polkadot/types@npm:12.2.2": + version: 12.2.2 + resolution: "@polkadot/types@npm:12.2.2" dependencies: - "@polkadot/keyring": "npm:^12.6.2" - "@polkadot/types-augment": "npm:12.1.1" - "@polkadot/types-codec": "npm:12.1.1" - "@polkadot/types-create": "npm:12.1.1" - "@polkadot/util": "npm:^12.6.2" - "@polkadot/util-crypto": "npm:^12.6.2" + "@polkadot/keyring": "npm:^13.0.2" + "@polkadot/types-augment": "npm:12.2.2" + "@polkadot/types-codec": "npm:12.2.2" + "@polkadot/types-create": "npm:12.2.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/util-crypto": "npm:^13.0.2" rxjs: "npm:^7.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/46395b18dc78d7d8295df6a80fc8a00d73d942ffa2ef8bd7fc6591ac3d018f70c0765ac54b848c508514196c7bb302fc08ac80779ca1431f57c423b20c7080ac + checksum: 10c0/b31034510eeb0311a5825853ff04b0d2e071bd58991a80048ceaed5f32508f16f6f9ee9873b18134ad4ce4282e1e82446efe1d77655a5828ad8db1cc6c6cf70a languageName: node linkType: hard @@ -1686,6 +1711,26 @@ __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" + dependencies: + "@noble/curves": "npm:^1.3.0" + "@noble/hashes": "npm:^1.3.3" + "@polkadot/networks": "npm:13.0.2" + "@polkadot/util": "npm:13.0.2" + "@polkadot/wasm-crypto": "npm:^7.3.2" + "@polkadot/wasm-util": "npm:^7.3.2" + "@polkadot/x-bigint": "npm:13.0.2" + "@polkadot/x-randomvalues": "npm:13.0.2" + "@scure/base": "npm:^1.1.5" + tslib: "npm:^2.6.2" + peerDependencies: + "@polkadot/util": 13.0.2 + checksum: 10c0/01c4f592798ec8716e4e199c3f8289d5e9b15cd7aeb52451edc498e45f04c630863e3e613c8aadb3120e531231e4494f389d7fc3c275471f3cd4e1d001a09a0f + languageName: node + linkType: hard + "@polkadot/util@npm:12.6.2, @polkadot/util@npm:^12.6.2": version: 12.6.2 resolution: "@polkadot/util@npm:12.6.2" @@ -1701,6 +1746,21 @@ __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" + dependencies: + "@polkadot/x-bigint": "npm:13.0.2" + "@polkadot/x-global": "npm:13.0.2" + "@polkadot/x-textdecoder": "npm:13.0.2" + "@polkadot/x-textencoder": "npm:13.0.2" + "@types/bn.js": "npm:^5.1.5" + bn.js: "npm:^5.2.1" + tslib: "npm:^2.6.2" + checksum: 10c0/2dabe88a6d55867de42dbdd792a08af447e03e1e878c29549790dab66c7147cb750da18dfd257fa02ad9d08248fb701b2110cb6a55ab0690070a3c9dc751f210 + languageName: node + linkType: hard + "@polkadot/wasm-bridge@npm:7.3.2": version: 7.3.2 resolution: "@polkadot/wasm-bridge@npm:7.3.2" @@ -1791,6 +1851,16 @@ __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" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + tslib: "npm:^2.6.2" + checksum: 10c0/506dca890f389a8cdc3f2a816555144e3f8d0947528bf18113dd033fa07644d493dcf52b35a74c735aa8241202ad9cfaa6853266ac456f1c997032ff423ad0b8 + languageName: node + linkType: hard + "@polkadot/x-fetch@npm:^12.6.2": version: 12.6.2 resolution: "@polkadot/x-fetch@npm:12.6.2" @@ -1802,6 +1872,17 @@ __metadata: languageName: node linkType: hard +"@polkadot/x-fetch@npm:^13.0.2": + version: 13.0.2 + resolution: "@polkadot/x-fetch@npm:13.0.2" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + node-fetch: "npm:^3.3.2" + tslib: "npm:^2.6.2" + checksum: 10c0/4f597769cd920051ba070c7fd49858e53cd035be2aa515de2ad289def83405e6de2856b7800e236239b7122086e40a2e1e581add36f2fa82018ca444d6e7314a + languageName: node + linkType: hard + "@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" @@ -1811,6 +1892,15 @@ __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" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/68e1e1f15a77fe1ec0ce92c669c2418f796ec84c56639281466a21daaf6a2ce6f1f1ae010767c2f843dfa0430272dada2158e714c3d1f2eacd6ce272b211bd29 + languageName: node + linkType: hard + "@polkadot/x-randomvalues@npm:12.6.2": version: 12.6.2 resolution: "@polkadot/x-randomvalues@npm:12.6.2" @@ -1824,6 +1914,19 @@ __metadata: languageName: node linkType: hard +"@polkadot/x-randomvalues@npm:13.0.2": + version: 13.0.2 + resolution: "@polkadot/x-randomvalues@npm:13.0.2" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + tslib: "npm:^2.6.2" + peerDependencies: + "@polkadot/util": 13.0.2 + "@polkadot/wasm-util": "*" + checksum: 10c0/81b7e88105a6f2bb7f70bfa28f8cb7b8167064e9bb3fd83c972438695717df101d34998fe648e122f7456ca876abd3a01bdc3847c0c769e3cc9686d7885c95df + languageName: node + linkType: hard + "@polkadot/x-textdecoder@npm:12.6.2": version: 12.6.2 resolution: "@polkadot/x-textdecoder@npm:12.6.2" @@ -1834,6 +1937,16 @@ __metadata: languageName: node linkType: hard +"@polkadot/x-textdecoder@npm:13.0.2": + version: 13.0.2 + resolution: "@polkadot/x-textdecoder@npm:13.0.2" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + tslib: "npm:^2.6.2" + checksum: 10c0/c77054ba8c31fd6a73cfa54b4cc4848712e7c49800bbd1c9144291724cc0b170fe3eb66643741c68b2978050dcf1f120de72b3f677942beb57fd80c0dbb14c38 + languageName: node + linkType: hard + "@polkadot/x-textencoder@npm:12.6.2": version: 12.6.2 resolution: "@polkadot/x-textencoder@npm:12.6.2" @@ -1844,6 +1957,16 @@ __metadata: languageName: node linkType: hard +"@polkadot/x-textencoder@npm:13.0.2": + version: 13.0.2 + resolution: "@polkadot/x-textencoder@npm:13.0.2" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + tslib: "npm:^2.6.2" + checksum: 10c0/a84d230975e1fea712d99650644c2352c1a7e2f3140a7d4c842a46df6df1ae15ecdc28ec32ea521beddd1978eaf8b6b80b2b89e1d0aaf47328c1c76dfd29f0d7 + languageName: node + linkType: hard + "@polkadot/x-ws@npm:^12.6.2": version: 12.6.2 resolution: "@polkadot/x-ws@npm:12.6.2" @@ -1855,6 +1978,17 @@ __metadata: languageName: node linkType: hard +"@polkadot/x-ws@npm:^13.0.2": + version: 13.0.2 + resolution: "@polkadot/x-ws@npm:13.0.2" + dependencies: + "@polkadot/x-global": "npm:13.0.2" + tslib: "npm:^2.6.2" + ws: "npm:^8.16.0" + checksum: 10c0/87b01c6eb52945a6d4f6cb1af6a093cc170230d8bcedd069b226dd041d80e87f6e233fbe19f36f1a9ae00d2f5e9c1b6b901eae5bd3369ab889eaa0ff5c1b723e + languageName: node + linkType: hard + "@polkagate/extension-dapp@npm:^0.46.13": version: 0.46.13 resolution: "@polkagate/extension-dapp@npm:0.46.13" @@ -1882,16 +2016,16 @@ __metadata: linkType: hard "@preact/signals-core@npm:^1.2.3": - version: 1.6.1 - resolution: "@preact/signals-core@npm:1.6.1" - checksum: 10c0/877f4b1915aa660e6a46c9dee028904284a565066fc782d1814419687ab92f8ffea34aa89a936ab4b7fc1d0105dcb4916e12d8bf529febe7104b25c691303f8a + version: 1.7.0 + resolution: "@preact/signals-core@npm:1.7.0" + checksum: 10c0/f5eef567368ed26e68eb1456e190961b3e49fe6920dca05cfdf9073788887ceb33b419b653037b6c27db7a0a8d8fe3dc09c16ae711b5b391602980c4bfd426a3 languageName: node linkType: hard -"@remix-run/router@npm:1.17.1": - version: 1.17.1 - resolution: "@remix-run/router@npm:1.17.1" - checksum: 10c0/bee1631feb03975b64e1c7b574da432a05095dda2ff0f164c737e4952841a58d7b9861de87bd13a977fd970c74dcf8c558fc2d26c6ec01a9ae9041b1b4430869 +"@remix-run/router@npm:1.18.0": + version: 1.18.0 + resolution: "@remix-run/router@npm:1.18.0" + checksum: 10c0/3ec7e441a0e54932a3d3bf932432094420f2c117715d80a5454bc7e55d13b91250749942aab032cd07aee191f1c1de33fede8682025bfd3a453dd207c016e140 languageName: node linkType: hard @@ -1957,119 +2091,119 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.18.0" +"@rollup/rollup-android-arm-eabi@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.19.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-android-arm64@npm:4.18.0" +"@rollup/rollup-android-arm64@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-android-arm64@npm:4.19.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.18.0" +"@rollup/rollup-darwin-arm64@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.19.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.18.0" +"@rollup/rollup-darwin-x64@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.19.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.18.0" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.19.1" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.18.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.19.1" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.18.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.19.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.18.0" +"@rollup/rollup-linux-arm64-musl@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.19.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.18.0" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.19.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.18.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.19.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.18.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.19.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.18.0" +"@rollup/rollup-linux-x64-gnu@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.19.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.18.0" +"@rollup/rollup-linux-x64-musl@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.19.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.18.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.19.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.18.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.19.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.18.0": - version: 4.18.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.18.0" +"@rollup/rollup-win32-x64-msvc@npm:4.19.1": + version: 4.19.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.19.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@scure/base@npm:^1.1.1, @scure/base@npm:^1.1.5": +"@scure/base@npm:^1.1.1, @scure/base@npm:^1.1.5, @scure/base@npm:^1.1.7": version: 1.1.7 resolution: "@scure/base@npm:1.1.7" checksum: 10c0/2d06aaf39e6de4b9640eb40d2e5419176ebfe911597856dcbf3bc6209277ddb83f4b4b02cb1fd1208f819654268ec083da68111d3530bbde07bae913e2fc2e5d @@ -2098,9 +2232,9 @@ __metadata: linkType: hard "@substrate/connect-known-chains@npm:^1.1.1, @substrate/connect-known-chains@npm:^1.1.4": - version: 1.1.8 - resolution: "@substrate/connect-known-chains@npm:1.1.8" - checksum: 10c0/8ad166499b64f0dff066e96c2309ee41109339c99761aeb84ee99932a29ef76d29c8401d506c44a8f0b93e880e48b43ae8d3a4fc2d00b4a6b1c6aa22ab993fbb + version: 1.2.0 + resolution: "@substrate/connect-known-chains@npm:1.2.0" + checksum: 10c0/ca092873cc9dbe404fea3773389485953c2aa28aaf4368cf5abe2c186496b6594a7c49f7acd6360311ccbcdcdb4dc6f3be41746eb95103b81fc888810cfef3be languageName: node linkType: hard @@ -2172,7 +2306,7 @@ __metadata: languageName: node linkType: hard -"@substrate/ss58-registry@npm:^1.44.0": +"@substrate/ss58-registry@npm:^1.44.0, @substrate/ss58-registry@npm:^1.46.0": version: 1.49.0 resolution: "@substrate/ss58-registry@npm:1.49.0" checksum: 10c0/b50f32e2f4632b31b3e09cec026fef557b1b72f61b6811673f5b0fbe311c5394c2f19fc4c23f97b014c77eb2d0f535a8f079dfd3fb22d5a1d7b043ceeac0d9ac @@ -2306,92 +2440,92 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-darwin-arm64@npm:1.6.7" +"@swc/core-darwin-arm64@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-darwin-arm64@npm:1.7.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-darwin-x64@npm:1.6.7" +"@swc/core-darwin-x64@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-darwin-x64@npm:1.7.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.6.7" +"@swc/core-linux-arm-gnueabihf@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.7.3" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-linux-arm64-gnu@npm:1.6.7" +"@swc/core-linux-arm64-gnu@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-linux-arm64-gnu@npm:1.7.3" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-linux-arm64-musl@npm:1.6.7" +"@swc/core-linux-arm64-musl@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-linux-arm64-musl@npm:1.7.3" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-linux-x64-gnu@npm:1.6.7" +"@swc/core-linux-x64-gnu@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-linux-x64-gnu@npm:1.7.3" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-linux-x64-musl@npm:1.6.7" +"@swc/core-linux-x64-musl@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-linux-x64-musl@npm:1.7.3" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-win32-arm64-msvc@npm:1.6.7" +"@swc/core-win32-arm64-msvc@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-win32-arm64-msvc@npm:1.7.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-win32-ia32-msvc@npm:1.6.7" +"@swc/core-win32-ia32-msvc@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-win32-ia32-msvc@npm:1.7.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.6.7": - version: 1.6.7 - resolution: "@swc/core-win32-x64-msvc@npm:1.6.7" +"@swc/core-win32-x64-msvc@npm:1.7.3": + version: 1.7.3 + resolution: "@swc/core-win32-x64-msvc@npm:1.7.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.5.7": - version: 1.6.7 - resolution: "@swc/core@npm:1.6.7" - dependencies: - "@swc/core-darwin-arm64": "npm:1.6.7" - "@swc/core-darwin-x64": "npm:1.6.7" - "@swc/core-linux-arm-gnueabihf": "npm:1.6.7" - "@swc/core-linux-arm64-gnu": "npm:1.6.7" - "@swc/core-linux-arm64-musl": "npm:1.6.7" - "@swc/core-linux-x64-gnu": "npm:1.6.7" - "@swc/core-linux-x64-musl": "npm:1.6.7" - "@swc/core-win32-arm64-msvc": "npm:1.6.7" - "@swc/core-win32-ia32-msvc": "npm:1.6.7" - "@swc/core-win32-x64-msvc": "npm:1.6.7" + version: 1.7.3 + resolution: "@swc/core@npm:1.7.3" + dependencies: + "@swc/core-darwin-arm64": "npm:1.7.3" + "@swc/core-darwin-x64": "npm:1.7.3" + "@swc/core-linux-arm-gnueabihf": "npm:1.7.3" + "@swc/core-linux-arm64-gnu": "npm:1.7.3" + "@swc/core-linux-arm64-musl": "npm:1.7.3" + "@swc/core-linux-x64-gnu": "npm:1.7.3" + "@swc/core-linux-x64-musl": "npm:1.7.3" + "@swc/core-win32-arm64-msvc": "npm:1.7.3" + "@swc/core-win32-ia32-msvc": "npm:1.7.3" + "@swc/core-win32-x64-msvc": "npm:1.7.3" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.9" + "@swc/types": "npm:^0.1.12" peerDependencies: "@swc/helpers": "*" dependenciesMeta: @@ -2418,7 +2552,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/f2f21719fb0fd3627b41f58cb8807dbd6c93e410eca4999952f5c6e51fbb0111b1fee2ee3fa0bbb21e3bfb787f554d18f2a9ac2b99da10b07b6214629bb04dfe + checksum: 10c0/daf1dc187bc3482488fe3e5b6f1fb2778f18f594e974061f5f1dd406ba96f8c3277969e7d1fcc2b5942f5b6da4111ca41c51a5c70a69852647953ff24e22b5b4 languageName: node linkType: hard @@ -2429,12 +2563,12 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.9": - version: 0.1.9 - resolution: "@swc/types@npm:0.1.9" +"@swc/types@npm:^0.1.12": + version: 0.1.12 + resolution: "@swc/types@npm:0.1.12" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10c0/e47db2a06189f100696837ac3d56feaf67e8e68541b236c2de497e066689230f5cbb538fc0ca77c04739ae7653c20a2d79c7ab57ecf7506e2d008cb5e523f724 + checksum: 10c0/f95fea7dee8fc07f8389afbb9578f3d0cd84b429b1d0dbff7fd99b2ef06ed88e96bc33631f36c3bc0505d5a783bee1374acd84b8fc2593001219b6c2caba241b languageName: node linkType: hard @@ -2455,12 +2589,12 @@ __metadata: linkType: hard "@types/eslint@npm:^8.4.5": - version: 8.56.10 - resolution: "@types/eslint@npm:8.56.10" + version: 8.56.11 + resolution: "@types/eslint@npm:8.56.11" dependencies: "@types/estree": "npm:*" "@types/json-schema": "npm:*" - checksum: 10c0/674349d6c342c3864d70f4d5a9965f96fb253801532752c8c500ad6a1c2e8b219e01ccff5dc8791dcb58b5483012c495708bb9f3ff929f5c9322b3da126c15d3 + checksum: 10c0/e47d2b8e0ce1aa7e1f2564555576fa55343e942ae8cba5940b4e2566f842810c007beff80a01d74d48c60a45ecf28150cbc5cbd53324b1e55cf672b24ccf4667 languageName: node linkType: hard @@ -2514,18 +2648,18 @@ __metadata: linkType: hard "@types/lodash@npm:*": - version: 4.17.6 - resolution: "@types/lodash@npm:4.17.6" - checksum: 10c0/3b197ac47af9443fee8c4719c5ffde527d7febc018b827d44a6bc2523c728c7adfdd25196fdcfe3eed827993e0c41a917d0da6e78938b18b2be94164789f1117 + version: 4.17.7 + resolution: "@types/lodash@npm:4.17.7" + checksum: 10c0/40c965b5ffdcf7ff5c9105307ee08b782da228c01b5c0529122c554c64f6b7168fc8f11dc79aa7bae4e67e17efafaba685dc3a47e294dbf52a65ed2b67100561 languageName: node linkType: hard "@types/node@npm:*": - version: 20.14.9 - resolution: "@types/node@npm:20.14.9" + version: 22.0.0 + resolution: "@types/node@npm:22.0.0" dependencies: - undici-types: "npm:~5.26.4" - checksum: 10c0/911ffa444dc032897f4a23ed580c67903bd38ea1c5ec99b1d00fa10b83537a3adddef8e1f29710cbdd8e556a61407ed008e06537d834e48caf449ce59f87d387 + undici-types: "npm:~6.11.1" + checksum: 10c0/af26a8ec7266c857b0ced75dc3a93c6b65280d1fa40d1b4488c814d30831c5c752489c99ecb5698daec1376145b1a9ddd08350882dc2e07769917a5f22a460bc languageName: node linkType: hard @@ -2599,14 +2733,14 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^7.12.0": - version: 7.15.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.15.0" + version: 7.17.0 + resolution: "@typescript-eslint/eslint-plugin@npm:7.17.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.15.0" - "@typescript-eslint/type-utils": "npm:7.15.0" - "@typescript-eslint/utils": "npm:7.15.0" - "@typescript-eslint/visitor-keys": "npm:7.15.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/type-utils": "npm:7.17.0" + "@typescript-eslint/utils": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" @@ -2617,44 +2751,44 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/7ed4ef8355cb60f02ed603673ef749928a001931c534960d1f3f9f9b8092f4abd7ec1e80a33b4c38efb6e8e66c902583bd56a4c4d6ccbd870677a40680a7d1f5 + checksum: 10c0/654d589531ae45b8ca8f3969e785926b2544100a985968d86c828e2a1ff50331250e19c8b4af83a4ba17847a0047479662eb317e4ad94f6279cac03acd5cda5a languageName: node linkType: hard "@typescript-eslint/parser@npm:^7.12.0": - version: 7.15.0 - resolution: "@typescript-eslint/parser@npm:7.15.0" + version: 7.17.0 + resolution: "@typescript-eslint/parser@npm:7.17.0" dependencies: - "@typescript-eslint/scope-manager": "npm:7.15.0" - "@typescript-eslint/types": "npm:7.15.0" - "@typescript-eslint/typescript-estree": "npm:7.15.0" - "@typescript-eslint/visitor-keys": "npm:7.15.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/8dcad9b84e2cbf89afea97ee7f690f91b487eed21d01997126f98cb7dd56d3b6c98c7ecbdbeda35904af521c4ed746c47887e908f8a1e2148d47c05b491d7b9d + checksum: 10c0/0cf6922412517b4c005609b035119ddd2798e1b6e74e1bccd487aa53119d27067cfd89311f00b8e96b2b044a0fb7373418a16552be86079879158b260c397418 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/scope-manager@npm:7.15.0" +"@typescript-eslint/scope-manager@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/scope-manager@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.15.0" - "@typescript-eslint/visitor-keys": "npm:7.15.0" - checksum: 10c0/781ec31a07ab7f0bdfb07dd271ef6553aa98f8492f1b3a67c65d178c94d590f4fd2e0916450f2446f1da2fbe007f3454c360ccb25f4d69612f782eb499f400ab + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" + checksum: 10c0/e1a693e19dc855fe6d04b46c6c205019bfc937eda5f8b255393f8267ebddd282165568336e37b04aab544b155a807784b9c4a92129dfc7c1eef5a9e9fe052685 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/type-utils@npm:7.15.0" +"@typescript-eslint/type-utils@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/type-utils@npm:7.17.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.15.0" - "@typescript-eslint/utils": "npm:7.15.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" + "@typescript-eslint/utils": "npm:7.17.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" peerDependencies: @@ -2662,23 +2796,23 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/06189eb05d741f05977bbc029c6ac46edd566e0136f2f2c22429fd5f2be1224e2d9135b7021bc686871bfaec9c05a5c9990a321762d3abd06e457486956326ba + checksum: 10c0/b415cf37c0922cded78735c5049cb5a5b0065e1c0ce4a81ca2a26422763ccacca8945efa45480f40530f2ec414a14d35a88a6798258aa889f7a9cf4ca4a240cd languageName: node linkType: hard -"@typescript-eslint/types@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/types@npm:7.15.0" - checksum: 10c0/935387b21d9fdff65de86f6350cdda1f0614e269324f3a4f0a2ca1b0d72ef4b1d40c7de2f3a20a6f8c83edca6507bfbac3168c860625859e59fc455c80392bed +"@typescript-eslint/types@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/types@npm:7.17.0" + checksum: 10c0/8f734294d432b37c534f17eb2befdfe43b76874d09118d6adf7e308e5a586e9e11b7021abe4f6692a6e6226de58a15b3cfe1300939556ce1c908d9af627b7400 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.15.0" +"@typescript-eslint/typescript-estree@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/typescript-estree@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.15.0" - "@typescript-eslint/visitor-keys": "npm:7.15.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" @@ -2688,31 +2822,31 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/0d6e61cb36c4612147ceea796c2bdbb65fca59170d9d768cff314146c5564253a058cbcb9e251722cd76c92a90c257e1210a69f8d4377c8002f211c574d18d24 + checksum: 10c0/10967823ce00c9f8cd4a8b56bed3524c098e38cc0e27aaa49ffd8fad4e671c00226bf0330ba858948750b88dc55527ebeb62c74be8a30bac18a106d6c033ab59 languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/utils@npm:7.15.0" +"@typescript-eslint/utils@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/utils@npm:7.17.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.15.0" - "@typescript-eslint/types": "npm:7.15.0" - "@typescript-eslint/typescript-estree": "npm:7.15.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" peerDependencies: eslint: ^8.56.0 - checksum: 10c0/26aced17976cee0aa39a79201f68b384bbce1dc96e1c70d0e5f790e1e5655b1b1ddb2afd9eaf3fce9a48c0fb69daecd37a99fdbcdbf1cb58c65ae89ecac88a2c + checksum: 10c0/1f3e22820b3ab3e47809c45e576614ad4a965f5c8634856eca5c70981386b9351a77fb172ba32345e7c5667479cf9526c673699dd38dccd0616ad6db21704e72 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.15.0": - version: 7.15.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.15.0" +"@typescript-eslint/visitor-keys@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/visitor-keys@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.15.0" + "@typescript-eslint/types": "npm:7.17.0" eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/7509f01c8cd2126a38213bc735a77aa7e976340af0d664be5b2ccd01b8211724b2ea129e33bfd32fe5feac848b7b68ca55bb533f6ccfeec1d2f26a91240489b9 + checksum: 10c0/fa6b339d51fc3710288bb2ffaa46d639551d77965cc42c36f96c4f43aed663ff12972e8a28652a280f6ce20b7a92dc2aea14b2b4049012799be2fc2d3cbb2c60 languageName: node linkType: hard @@ -2788,33 +2922,6 @@ __metadata: languageName: node linkType: hard -"@volar/language-core@npm:2.3.4": - version: 2.3.4 - resolution: "@volar/language-core@npm:2.3.4" - dependencies: - "@volar/source-map": "npm:2.3.4" - checksum: 10c0/3bfd6f039788aa6365e1c69fc695305abdb00d3e75fdce2958eb41d1f9fb03b7a300075303430f039c027f62dbd7377c0c266bca52615b4eedd0df9c8aa14de0 - languageName: node - linkType: hard - -"@volar/source-map@npm:2.3.4": - version: 2.3.4 - resolution: "@volar/source-map@npm:2.3.4" - checksum: 10c0/04e12088cd79671e2104ee0f5e8cfb5b52a5d2a1499472db243cd0cfa5557c993c08854af9fb183b1cf32ecd122706ad27e6438a7669215c6fc12dd3fc7544d7 - languageName: node - linkType: hard - -"@volar/typescript@npm:^2.3.0": - version: 2.3.4 - resolution: "@volar/typescript@npm:2.3.4" - dependencies: - "@volar/language-core": "npm:2.3.4" - path-browserify: "npm:^1.0.1" - vscode-uri: "npm:^3.0.8" - checksum: 10c0/d2738db314bffade831e0db75abce269a533aa91e0311a889fd31a83390480db33a06b06418c81dfc291c40ca344c8a687d1970d5ff2c366d0506080d12143bb - languageName: node - linkType: hard - "@w3ux/extension-assets@npm:0.3.1, @w3ux/extension-assets@npm:^0.3.1": version: 0.3.1 resolution: "@w3ux/extension-assets@npm:0.3.1" @@ -2903,14 +3010,14 @@ __metadata: languageName: node linkType: hard -"@zondax/ledger-substrate@npm:^0.44.5": - version: 0.44.5 - resolution: "@zondax/ledger-substrate@npm:0.44.5" +"@zondax/ledger-substrate@npm:^0.44.7": + version: 0.44.7 + resolution: "@zondax/ledger-substrate@npm:0.44.7" dependencies: "@ledgerhq/hw-transport": "npm:6.31.0" "@zondax/ledger-js": "npm:^0.8.2" axios: "npm:^1.7.2" - checksum: 10c0/f1cb94837147954758dd3aad48cccc7b3dd1ef2e8c52e19ae78b9c8039641dc24058634494ea3cfe0fa4ff7fdb55f16c96ba4c39033375d4a99adbaae42a88e1 + checksum: 10c0/f5cf07ae8671b449bf787e21f226fc9c0ac1ed0cc68a5f42e7d4c55b9f9738f2e3c277a4b3eff2cfb66d4664ad7d150eb08156df3fbbcb80b4f5129ac1a659a2 languageName: node linkType: hard @@ -3134,18 +3241,6 @@ __metadata: languageName: node linkType: hard -"array.prototype.toreversed@npm:^1.1.2": - version: 1.1.2 - resolution: "array.prototype.toreversed@npm:1.1.2" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - es-shim-unscopables: "npm:^1.0.0" - checksum: 10c0/2b7627ea85eae1e80ecce665a500cc0f3355ac83ee4a1a727562c7c2a1d5f1c0b4dd7b65c468ec6867207e452ba01256910a2c0b41486bfdd11acf875a7a3435 - languageName: node - linkType: hard - "array.prototype.tosorted@npm:^1.1.4": version: 1.1.4 resolution: "array.prototype.tosorted@npm:1.1.4" @@ -3292,17 +3387,17 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.22.2": - version: 4.23.1 - resolution: "browserslist@npm:4.23.1" +"browserslist@npm:^4.23.1": + version: 4.23.2 + resolution: "browserslist@npm:4.23.2" dependencies: - caniuse-lite: "npm:^1.0.30001629" - electron-to-chromium: "npm:^1.4.796" + caniuse-lite: "npm:^1.0.30001640" + electron-to-chromium: "npm:^1.4.820" node-releases: "npm:^2.0.14" - update-browserslist-db: "npm:^1.0.16" + update-browserslist-db: "npm:^1.1.0" bin: browserslist: cli.js - checksum: 10c0/eb47c7ab9d60db25ce2faca70efeb278faa7282a2f62b7f2fa2f92e5f5251cf65144244566c86559419ff4f6d78f59ea50e39911321ad91f3b27788901f1f5e9 + checksum: 10c0/0217d23c69ed61cdd2530c7019bf7c822cd74c51f8baab18dd62457fed3129f52499f8d3a6f809ae1fb7bb3050aa70caa9a529cc36c7478427966dbf429723a5 languageName: node linkType: hard @@ -3324,8 +3419,8 @@ __metadata: linkType: hard "cacache@npm:^18.0.0": - version: 18.0.3 - resolution: "cacache@npm:18.0.3" + version: 18.0.4 + resolution: "cacache@npm:18.0.4" dependencies: "@npmcli/fs": "npm:^3.1.0" fs-minipass: "npm:^3.0.0" @@ -3339,7 +3434,7 @@ __metadata: ssri: "npm:^10.0.0" tar: "npm:^6.1.11" unique-filename: "npm:^3.0.0" - checksum: 10c0/dfda92840bb371fb66b88c087c61a74544363b37a265023223a99965b16a16bbb87661fe4948718d79df6e0cc04e85e62784fbcf1832b2a5e54ff4c46fbb45b7 + checksum: 10c0/6c055bafed9de4f3dcc64ac3dc7dd24e863210902b7c470eb9ce55a806309b3efff78033e3d8b4f7dcc5d467f2db43c6a2857aaaf26f0094b8a351d44c42179f languageName: node linkType: hard @@ -3377,16 +3472,16 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001629": - version: 1.0.30001640 - resolution: "caniuse-lite@npm:1.0.30001640" - checksum: 10c0/d87fce999e52c354029893a23887d2e48ac297e3af55bd14161fcafdd711f97bdb2649c79d2d3049e628603cb59bc4257ca2961644b0b8d206e7b7dd126d37ea +"caniuse-lite@npm:^1.0.30001640": + version: 1.0.30001643 + resolution: "caniuse-lite@npm:1.0.30001643" + checksum: 10c0/7fcd0fd180bbe6764311ad57b0d39c23afdcc3bb1d8f804e7a76752c62a85b1bb7cf74b672d9da2f0afe7ad75336ff811a6fe279eb2a54bc04c272b6b62e57f1 languageName: node linkType: hard "chai@npm:^4.3.10": - version: 4.4.1 - resolution: "chai@npm:4.4.1" + version: 4.5.0 + resolution: "chai@npm:4.5.0" dependencies: assertion-error: "npm:^1.1.0" check-error: "npm:^1.0.3" @@ -3394,8 +3489,8 @@ __metadata: get-func-name: "npm:^2.0.2" loupe: "npm:^2.3.6" pathval: "npm:^1.1.1" - type-detect: "npm:^4.0.8" - checksum: 10c0/91590a8fe18bd6235dece04ccb2d5b4ecec49984b50924499bdcd7a95c02cb1fd2a689407c19bb854497bde534ef57525cfad6c7fdd2507100fd802fbc2aefbd + type-detect: "npm:^4.1.0" + checksum: 10c0/b8cb596bd1aece1aec659e41a6e479290c7d9bee5b3ad63d2898ad230064e5b47889a3bc367b20100a0853b62e026e2dc514acf25a3c9385f936aa3614d4ab4d languageName: node linkType: hard @@ -3693,14 +3788,14 @@ __metadata: linkType: hard "debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4": - version: 4.3.5 - resolution: "debug@npm:4.3.5" + version: 4.3.6 + resolution: "debug@npm:4.3.6" dependencies: ms: "npm:2.1.2" peerDependenciesMeta: supports-color: optional: true - checksum: 10c0/082c375a2bdc4f4469c99f325ff458adad62a3fc2c482d59923c260cb08152f34e2659f72b3767db8bb2f21ca81a60a42d1019605a412132d7b9f59363a005cc + checksum: 10c0/3293416bff072389c101697d4611c402a6bacd1900ac20c0492f61a9cdd6b3b29750fc7f5e299f8058469ef60ff8fb79b86395a30374fbd2490113c1c7112285 languageName: node linkType: hard @@ -3754,7 +3849,7 @@ __metadata: languageName: node linkType: hard -"define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": +"define-properties@npm:^1.1.3, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" dependencies: @@ -3830,10 +3925,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.796": - version: 1.4.816 - resolution: "electron-to-chromium@npm:1.4.816" - checksum: 10c0/1a84bc42234484cbc5e8b521de57fd3ab9984a2111d8605eab26b3525f382c0c7b83b45bf8b34e5fa4a730cd183fef5dffa4a0627754c7f4fb0aae9cb3c16b37 +"electron-to-chromium@npm:^1.4.820": + version: 1.5.2 + resolution: "electron-to-chromium@npm:1.5.2" + checksum: 10c0/5de3edc46087d90c0621597e6427d0711443a7aeeced3348a91ab56c9aebd0f7ed7b44c99379ff0295fa1f1a5ffba32225e7f28dfed997d88eaf2fe61c9e30d7 languageName: node linkType: hard @@ -3861,12 +3956,12 @@ __metadata: linkType: hard "enhanced-resolve@npm:^5.12.0": - version: 5.17.0 - resolution: "enhanced-resolve@npm:5.17.0" + version: 5.17.1 + resolution: "enhanced-resolve@npm:5.17.1" dependencies: graceful-fs: "npm:^4.2.4" tapable: "npm:^2.2.0" - checksum: 10c0/90065e58e4fd08e77ba47f827eaa17d60c335e01e4859f6e644bb3b8d0e32b203d33894aee92adfa5121fa262f912b48bdf0d0475e98b4a0a1132eea1169ad37 + checksum: 10c0/81a0515675eca17efdba2cf5bad87abc91a528fc1191aad50e275e74f045b41506167d420099022da7181c8d787170ea41e4a11a0b10b7a16f6237daecb15370 languageName: node linkType: hard @@ -3909,7 +4004,7 @@ __metadata: languageName: node linkType: hard -"es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3": +"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.1, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3": version: 1.23.3 resolution: "es-abstract@npm:1.23.3" dependencies: @@ -4240,11 +4335,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.1.3": - version: 5.1.3 - resolution: "eslint-plugin-prettier@npm:5.1.3" + version: 5.2.1 + resolution: "eslint-plugin-prettier@npm:5.2.1" dependencies: prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.8.6" + synckit: "npm:^0.9.1" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -4255,7 +4350,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10c0/f45d5fc1fcfec6b0cf038a7a65ddd10a25df4fe3f9e1f6b7f0d5100e66f046a26a2492e69ee765dddf461b93c114cf2e1eb18d4970aafa6f385448985c136e09 + checksum: 10c0/4bc8bbaf5bb556c9c501dcdff369137763c49ccaf544f9fa91400360ed5e3a3f1234ab59690e06beca5b1b7e6f6356978cdd3b02af6aba3edea2ffe69ca6e8b2 languageName: node linkType: hard @@ -4269,30 +4364,30 @@ __metadata: linkType: hard "eslint-plugin-react@npm:^7.34.2": - version: 7.34.3 - resolution: "eslint-plugin-react@npm:7.34.3" + version: 7.35.0 + resolution: "eslint-plugin-react@npm:7.35.0" dependencies: array-includes: "npm:^3.1.8" array.prototype.findlast: "npm:^1.2.5" array.prototype.flatmap: "npm:^1.3.2" - array.prototype.toreversed: "npm:^1.1.2" array.prototype.tosorted: "npm:^1.1.4" doctrine: "npm:^2.1.0" es-iterator-helpers: "npm:^1.0.19" estraverse: "npm:^5.3.0" + hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" minimatch: "npm:^3.1.2" object.entries: "npm:^1.1.8" object.fromentries: "npm:^2.0.8" - object.hasown: "npm:^1.1.4" object.values: "npm:^1.2.0" prop-types: "npm:^15.8.1" resolve: "npm:^2.0.0-next.5" semver: "npm:^6.3.1" string.prototype.matchall: "npm:^4.0.11" + string.prototype.repeat: "npm:^1.0.0" peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: 10c0/60717e32c9948e2b4ddc53dac7c4b62c68fc7129c3249079191c941c08ebe7d1f4793d65182922d19427c2a6634e05231a7b74ceee34169afdfd0e43d4a43d26 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + checksum: 10c0/eedcc33de4b2cda91d56ae517a4f771a0c76da9c1e26c95543969012871381e11d4d6cffdf6fa8423036585c289eb3500f3f93fb1d314fb2624e0aa1e463305e languageName: node linkType: hard @@ -4395,11 +4490,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" + version: 1.6.0 + resolution: "esquery@npm:1.6.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 10c0/a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213 + checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 languageName: node linkType: hard @@ -4643,8 +4738,8 @@ __metadata: linkType: hard "framer-motion@npm:^11.2.10": - version: 11.2.13 - resolution: "framer-motion@npm:11.2.13" + version: 11.3.19 + resolution: "framer-motion@npm:11.3.19" dependencies: tslib: "npm:^2.4.0" peerDependencies: @@ -4658,7 +4753,7 @@ __metadata: optional: true react-dom: optional: true - checksum: 10c0/f3f232e7208727145443b59b909841b37649409910c2e49cdaebae760215bbca57820530ecbae015791b11dd5d7b944ee8f1a6982d511e2e9a187f76ef30a7fd + checksum: 10c0/323a844cdd5990e6cdaf4816a6ee8c32672ffa4892a2e350a7b9daa66495c368efbfac90ad9c6bc02c155b9bd8bc2632761fa15823367c6a32be2906c6783735 languageName: node linkType: hard @@ -4796,11 +4891,11 @@ __metadata: linkType: hard "get-tsconfig@npm:^4.5.0": - version: 4.7.5 - resolution: "get-tsconfig@npm:4.7.5" + version: 4.7.6 + resolution: "get-tsconfig@npm:4.7.6" dependencies: resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/a917dff2ba9ee187c41945736bf9bbab65de31ce5bc1effd76267be483a7340915cff232199406379f26517d2d0a4edcdbcda8cca599c2480a0f2cf1e1de3efa + checksum: 10c0/2240e1b13e996dfbb947d177f422f83d09d1f93c9ce16959ebb3c2bdf8bdf4f04f98eba043859172da1685f9c7071091f0acfa964ebbe4780394d83b7dc3f58a languageName: node linkType: hard @@ -4823,8 +4918,8 @@ __metadata: linkType: hard "glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.4.2 - resolution: "glob@npm:10.4.2" + version: 10.4.5 + resolution: "glob@npm:10.4.5" dependencies: foreground-child: "npm:^3.1.0" jackspeak: "npm:^3.1.2" @@ -4834,7 +4929,7 @@ __metadata: path-scurry: "npm:^1.11.1" bin: glob: dist/esm/bin.mjs - checksum: 10c0/2c7296695fa75a935f3ad17dc62e4e170a8bb8752cf64d328be8992dd6ad40777939003754e10e9741ff8fbe43aa52fba32d6930d0ffa0e3b74bc3fb5eebaa2f + checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e languageName: node linkType: hard @@ -5060,11 +5155,11 @@ __metadata: linkType: hard "i18next@npm:^23.11.5": - version: 23.11.5 - resolution: "i18next@npm:23.11.5" + version: 23.12.2 + resolution: "i18next@npm:23.12.2" dependencies: "@babel/runtime": "npm:^7.23.2" - checksum: 10c0/b0bec64250a3e529d4c51e2fc511406a85c5dde3d005d3aabe919551ca31dfc0a8f5490bf6e44649822e895a1fa91a58092d112367669cd11b2eb89e6ba90d1a + checksum: 10c0/aa7654afefc3f5383513563226401994558675a57eb562f0c4580d573d8410d24954f25112d45f9b6b1ca3f88c7beea1ac802ed50ad4081a06a17d08857e3c5d languageName: node linkType: hard @@ -5092,9 +5187,9 @@ __metadata: linkType: hard "immutable@npm:^4.0.0": - version: 4.3.6 - resolution: "immutable@npm:4.3.6" - checksum: 10c0/7d0952a768b4fadcee47230ed86dc9505a4517095eceaf5a47e65288571c42400c6e4a2ae21eca4eda957cb7bc50720213135b62cf6a181639111f8acae128c3 + version: 4.3.7 + resolution: "immutable@npm:4.3.7" + checksum: 10c0/9b099197081b22f6433003e34929da8ecddbbdc1474cdc8aa3b7669dee4adda349c06143de22def36016d1b6de5322b043eccd7a11db1dad2ca85dad4fff5435 languageName: node linkType: hard @@ -5246,11 +5341,11 @@ __metadata: linkType: hard "is-core-module@npm:^2.11.0, is-core-module@npm:^2.13.0, is-core-module@npm:^2.13.1": - version: 2.14.0 - resolution: "is-core-module@npm:2.14.0" + version: 2.15.0 + resolution: "is-core-module@npm:2.15.0" dependencies: hasown: "npm:^2.0.2" - checksum: 10c0/ae8dbc82bd20426558bc8d20ce290ce301c1cfd6ae4446266d10cacff4c63c67ab16440ade1d72ced9ec41c569fbacbcee01e293782ce568527c4cdf35936e4c + checksum: 10c0/da161f3d9906f459486da65609b2f1a2dfdc60887c689c234d04e88a062cb7920fa5be5fb7ab08dc43b732929653c4135ef05bf77888ae2a9040ce76815eb7b1 languageName: node linkType: hard @@ -5496,15 +5591,15 @@ __metadata: linkType: hard "jackspeak@npm:^3.1.2": - version: 3.4.0 - resolution: "jackspeak@npm:3.4.0" + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" dependencies: "@isaacs/cliui": "npm:^8.0.2" "@pkgjs/parseargs": "npm:^0.11.0" dependenciesMeta: "@pkgjs/parseargs": optional: true - checksum: 10c0/7e42d1ea411b4d57d43ea8a6afbca9224382804359cb72626d0fc45bb8db1de5ad0248283c3db45fe73e77210750d4fcc7c2b4fe5d24fda94aaa24d658295c5f + checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 languageName: node linkType: hard @@ -5763,9 +5858,9 @@ __metadata: linkType: hard "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.3.0 - resolution: "lru-cache@npm:10.3.0" - checksum: 10c0/02d57024d90672774d66e0b76328a8975483b782c68118078363be17b8e0efb4f2bee89d98ce87e72f42d68fe7cb4ad14b1205d43e4f9954f5c91e3be4eaceb8 + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb languageName: node linkType: hard @@ -6068,8 +6163,8 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 10.1.0 - resolution: "node-gyp@npm:10.1.0" + version: 10.2.0 + resolution: "node-gyp@npm:10.2.0" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" @@ -6077,20 +6172,20 @@ __metadata: graceful-fs: "npm:^4.2.6" make-fetch-happen: "npm:^13.0.0" nopt: "npm:^7.0.0" - proc-log: "npm:^3.0.0" + proc-log: "npm:^4.1.0" semver: "npm:^7.3.5" - tar: "npm:^6.1.2" + tar: "npm:^6.2.1" which: "npm:^4.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/9cc821111ca244a01fb7f054db7523ab0a0cd837f665267eb962eb87695d71fb1e681f9e21464cc2fd7c05530dc4c81b810bca1a88f7d7186909b74477491a3c + checksum: 10c0/00630d67dbd09a45aee0a5d55c05e3916ca9e6d427ee4f7bc392d2d3dc5fad7449b21fc098dd38260a53d9dcc9c879b36704a1994235d4707e7271af7e9a835b languageName: node linkType: hard "node-releases@npm:^2.0.14": - version: 2.0.14 - resolution: "node-releases@npm:2.0.14" - checksum: 10c0/199fc93773ae70ec9969bc6d5ac5b2bbd6eb986ed1907d751f411fef3ede0e4bfdb45ceb43711f8078bea237b6036db8b1bf208f6ff2b70c7d615afd157f3ab9 + version: 2.0.18 + resolution: "node-releases@npm:2.0.18" + checksum: 10c0/786ac9db9d7226339e1dc84bbb42007cb054a346bd9257e6aa154d294f01bc6a6cddb1348fa099f079be6580acbb470e3c048effd5f719325abd0179e566fd27 languageName: node linkType: hard @@ -6197,17 +6292,6 @@ __metadata: languageName: node linkType: hard -"object.hasown@npm:^1.1.4": - version: 1.1.4 - resolution: "object.hasown@npm:1.1.4" - dependencies: - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.2" - es-object-atoms: "npm:^1.0.0" - checksum: 10c0/f23187b08d874ef1aea060118c8259eb7f99f93c15a50771d710569534119062b90e087b92952b2d0fb1bb8914d61fb0b43c57fb06f622aaad538fe6868ab987 - languageName: node - linkType: hard - "object.values@npm:^1.1.6, object.values@npm:^1.1.7, object.values@npm:^1.2.0": version: 1.2.0 resolution: "object.values@npm:1.2.0" @@ -6333,13 +6417,6 @@ __metadata: languageName: node linkType: hard -"path-browserify@npm:^1.0.1": - version: 1.0.1 - resolution: "path-browserify@npm:1.0.1" - checksum: 10c0/8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 - languageName: node - linkType: hard - "path-exists@npm:^4.0.0": version: 4.0.0 resolution: "path-exists@npm:4.0.0" @@ -6441,13 +6518,14 @@ __metadata: "@fortawesome/free-regular-svg-icons": "npm:^6.5.2" "@fortawesome/free-solid-svg-icons": "npm:^6.5.2" "@fortawesome/react-fontawesome": "npm:^0.2.2" - "@ledgerhq/hw-transport-webhid": "npm:^6.29.0" + "@ledgerhq/hw-transport-webhid": "npm:^6.29.2" "@ledgerhq/logs": "npm:^6.12.0" - "@polkadot/api": "npm:^12.0.2" - "@polkadot/keyring": "npm:^12.6.2" + "@polkadot-api/merkleize-metadata": "npm:^1.1.2" + "@polkadot/api": "npm:^12.2.2" + "@polkadot/keyring": "npm:^13.0.2" "@polkadot/rpc-provider": "npm:10.11.2" - "@polkadot/util": "npm:^12.6.2" - "@polkadot/util-crypto": "npm:^12.6.2" + "@polkadot/util": "npm:^13.0.2" + "@polkadot/util-crypto": "npm:^13.0.2" "@polkawatch/ddp-client": "npm:^2.0.16" "@substrate/connect": "npm:0.7.35" "@types/chroma-js": "npm:^2.4.4" @@ -6469,7 +6547,7 @@ __metadata: "@w3ux/types": "npm:0.2.0" "@w3ux/utils": "npm:^0.4.0" "@w3ux/validator-assets": "npm:^0.2.0" - "@zondax/ledger-substrate": "npm:^0.44.5" + "@zondax/ledger-substrate": "npm:^0.44.7" bignumber.js: "npm:^9.1.2" bn.js: "npm:^5.2.1" buffer: "npm:^6.0.3" @@ -6545,13 +6623,13 @@ __metadata: linkType: hard "postcss@npm:^8.4.39": - version: 8.4.39 - resolution: "postcss@npm:8.4.39" + version: 8.4.40 + resolution: "postcss@npm:8.4.40" dependencies: nanoid: "npm:^3.3.7" picocolors: "npm:^1.0.1" source-map-js: "npm:^1.2.0" - checksum: 10c0/16f5ac3c4e32ee76d1582b3c0dcf1a1fdb91334a45ad755eeb881ccc50318fb8d64047de4f1601ac96e30061df203f0f2e2edbdc0bfc49b9c57bc9fb9bedaea3 + checksum: 10c0/65ed67573e5443beaeb582282ff27a6be7c7fe3b4d9fa15761157616f2b97510cb1c335023c26220b005909f007337026d6e3ff092f25010b484ad484e80ea7f languageName: node linkType: hard @@ -6589,11 +6667,11 @@ __metadata: linkType: hard "prettier@npm:^3.3.1": - version: 3.3.2 - resolution: "prettier@npm:3.3.2" + version: 3.3.3 + resolution: "prettier@npm:3.3.3" bin: prettier: bin/prettier.cjs - checksum: 10c0/39ed27d17f0238da6dd6571d63026566bd790d3d0edac57c285fbab525982060c8f1e01955fe38134ab10f0951a6076da37f015db8173c02f14bc7f0803a384c + checksum: 10c0/b85828b08e7505716324e4245549b9205c0cacb25342a030ba8885aba2039a115dbcf75a0b7ca3b37bc9d101ee61fab8113fc69ca3359f2a226f1ecc07ad2e26 languageName: node linkType: hard @@ -6608,14 +6686,7 @@ __metadata: languageName: node linkType: hard -"proc-log@npm:^3.0.0": - version: 3.0.0 - resolution: "proc-log@npm:3.0.0" - checksum: 10c0/f66430e4ff947dbb996058f6fd22de2c66612ae1a89b097744e17fb18a4e8e7a86db99eda52ccf15e53f00b63f4ec0b0911581ff2aac0355b625c8eac509b0dc - languageName: node - linkType: hard - -"proc-log@npm:^4.2.0": +"proc-log@npm:^4.1.0, proc-log@npm:^4.2.0": version: 4.2.0 resolution: "proc-log@npm:4.2.0" checksum: 10c0/17db4757c2a5c44c1e545170e6c70a26f7de58feb985091fb1763f5081cab3d01b181fb2dd240c9f4a4255a1d9227d163d5771b7e69c9e49a561692db865efb9 @@ -6760,8 +6831,8 @@ __metadata: linkType: hard "react-i18next@npm:^14.1.2": - version: 14.1.2 - resolution: "react-i18next@npm:14.1.2" + version: 14.1.3 + resolution: "react-i18next@npm:14.1.3" dependencies: "@babel/runtime": "npm:^7.23.9" html-parse-stringify: "npm:^3.0.1" @@ -6773,7 +6844,7 @@ __metadata: optional: true react-native: optional: true - checksum: 10c0/cb8a83b3696639f083dc9f770d9d9e0681c0fe56f6b5fe24cd6facce08d363c37bd3440078e9d63abacabd7037b783e6b4e4d0c935de9c8dda7820bd4ef7e329 + checksum: 10c0/a10426585a3bdfecbec5afc7eeb35df8005fa9d47032dd70dea170adb5506c13ea4e5f417a50669f59c547537d1b3a80e638580987f1c1bbc628ddc8f5974ec9 languageName: node linkType: hard @@ -6792,26 +6863,26 @@ __metadata: linkType: hard "react-router-dom@npm:^6.23.1": - version: 6.24.1 - resolution: "react-router-dom@npm:6.24.1" + version: 6.25.1 + resolution: "react-router-dom@npm:6.25.1" dependencies: - "@remix-run/router": "npm:1.17.1" - react-router: "npm:6.24.1" + "@remix-run/router": "npm:1.18.0" + react-router: "npm:6.25.1" peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 10c0/458c6c539304984c47b0ad8d5d5b1f8859cc0845e47591d530cb4fcb13498f70a89b42bc4daeea55d57cfa08408b453bcf601cabb2c987f554cdcac13805caa8 + checksum: 10c0/15e2b5bf89a26db9a108d19a4e0e2054180bfb1f5f62662dd93ad697ee1bdc91a8041efd762d552c95e65fc06ca0cb0c1e88acdeeaf03aba37f7a29e470c7cc4 languageName: node linkType: hard -"react-router@npm:6.24.1": - version: 6.24.1 - resolution: "react-router@npm:6.24.1" +"react-router@npm:6.25.1": + version: 6.25.1 + resolution: "react-router@npm:6.25.1" dependencies: - "@remix-run/router": "npm:1.17.1" + "@remix-run/router": "npm:1.18.0" peerDependencies: react: ">=16.8" - checksum: 10c0/f50c78ca52c5154ab933c17708125e8bf71ccf2072993a80302526a0a23db9ceac6e36d5c891d62ccd16f13e60cd1b6533a2036523d1b09e0148ac49e34b2e83 + checksum: 10c0/a7e824c1f6d9641beabc23111865ddd2525b3794403e07b297fc2bdd4cddec93e166aacdb9d2602768864d70f3bf490f59eeab8474a04ae1f13a832f305eeec3 languageName: node linkType: hard @@ -7021,25 +7092,25 @@ __metadata: linkType: hard "rollup@npm:^4.13.0": - version: 4.18.0 - resolution: "rollup@npm:4.18.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.18.0" - "@rollup/rollup-android-arm64": "npm:4.18.0" - "@rollup/rollup-darwin-arm64": "npm:4.18.0" - "@rollup/rollup-darwin-x64": "npm:4.18.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.18.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.18.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.18.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.18.0" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.18.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.18.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.18.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.18.0" - "@rollup/rollup-linux-x64-musl": "npm:4.18.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.18.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.18.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.18.0" + version: 4.19.1 + resolution: "rollup@npm:4.19.1" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.19.1" + "@rollup/rollup-android-arm64": "npm:4.19.1" + "@rollup/rollup-darwin-arm64": "npm:4.19.1" + "@rollup/rollup-darwin-x64": "npm:4.19.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.19.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.19.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.19.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.19.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.19.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.19.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.19.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.19.1" + "@rollup/rollup-linux-x64-musl": "npm:4.19.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.19.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.19.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.19.1" "@types/estree": "npm:1.0.5" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -7079,7 +7150,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/7d0239f029c48d977e0d0b942433bed9ca187d2328b962fc815fc775d0fdf1966ffcd701fef265477e999a1fb01bddcc984fc675d1b9d9864bf8e1f1f487e23e + checksum: 10c0/2e526c38b4bcb22a058cf95e40c8c105a86f27d582c677c47df9315a17b18e75c772edc0773ca4d12d58ceca254bb5d63d4172041f6fd9f01e1a613d8bba6d09 languageName: node linkType: hard @@ -7132,15 +7203,15 @@ __metadata: linkType: hard "sass@npm:^1.77.4": - version: 1.77.6 - resolution: "sass@npm:1.77.6" + version: 1.77.8 + resolution: "sass@npm:1.77.8" dependencies: chokidar: "npm:>=3.0.0 <4.0.0" immutable: "npm:^4.0.0" source-map-js: "npm:>=0.6.2 <2.0.0" bin: sass: sass.js - checksum: 10c0/fe5a393c0aa29eda9f83c06be9b94788b61fe8bad0616ee6e3a25d21ab504f430d40c0064fdca89b02b8e426411ae6dcd906c91f2e48c263575c3d392b6daeb1 + checksum: 10c0/2bfd62794070352c804f949e69bd8bb5b4ec846deeb924251b2c3f7b503170fb1ae186f513f0166907749eb34e0277dee747edcb78c886fb471aac01be1e864c languageName: node linkType: hard @@ -7170,11 +7241,11 @@ __metadata: linkType: hard "semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.6.0": - version: 7.6.2 - resolution: "semver@npm:7.6.2" + version: 7.6.3 + resolution: "semver@npm:7.6.3" bin: semver: bin/semver.js - checksum: 10c0/97d3441e97ace8be4b1976433d1c32658f6afaff09f143e52c593bae7eef33de19e3e369c88bd985ce1042c6f441c80c6803078d1de2a9988080b66684cbb30c + checksum: 10c0/88f33e148b210c153873cb08cfe1e281d518aaa9a666d4d148add6560db5cd3c582f3a08ccb91f38d5f379ead256da9931234ed122057f40bb5766e65e58adaf languageName: node linkType: hard @@ -7533,6 +7604,16 @@ __metadata: languageName: node linkType: hard +"string.prototype.repeat@npm:^1.0.0": + version: 1.0.0 + resolution: "string.prototype.repeat@npm:1.0.0" + dependencies: + define-properties: "npm:^1.1.3" + es-abstract: "npm:^1.17.5" + checksum: 10c0/94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40 + languageName: node + linkType: hard + "string.prototype.trim@npm:^1.2.9": version: 1.2.9 resolution: "string.prototype.trim@npm:1.2.9" @@ -7616,8 +7697,8 @@ __metadata: linkType: hard "styled-components@npm:^6.1.11": - version: 6.1.11 - resolution: "styled-components@npm:6.1.11" + version: 6.1.12 + resolution: "styled-components@npm:6.1.12" dependencies: "@emotion/is-prop-valid": "npm:1.2.2" "@emotion/unitless": "npm:0.8.1" @@ -7631,7 +7712,7 @@ __metadata: peerDependencies: react: ">= 16.8.0" react-dom: ">= 16.8.0" - checksum: 10c0/1d149a51d24f779bba700c8c23ec0538b2d2b57745ccd49d1cfdc2dfce8bcea21e8ff81fed1143d1b35d127cc591717a398da72ea6671abbf705432b13e59e56 + checksum: 10c0/1ad728aea763a26dbce5ede380ef54b0aacae177166d19346eed97eab8e46935b8797d3ba8e1db689605175d5f9c9892a60d91d2e797e2ea61901fb7f58ed1a5 languageName: node linkType: hard @@ -7674,13 +7755,13 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.8.6": - version: 0.8.8 - resolution: "synckit@npm:0.8.8" +"synckit@npm:^0.9.1": + version: 0.9.1 + resolution: "synckit@npm:0.9.1" dependencies: "@pkgr/core": "npm:^0.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/c3d3aa8e284f3f84f2f868b960c9f49239b364e35f6d20825a448449a3e9c8f49fe36cdd5196b30615682f007830d46f2ea354003954c7336723cb821e4b6519 + checksum: 10c0/d8b89e1bf30ba3ffb469d8418c836ad9c0c062bf47028406b4d06548bc66af97155ea2303b96c93bf5c7c0f0d66153a6fbd6924c76521b434e6a9898982abc2e languageName: node linkType: hard @@ -7691,7 +7772,7 @@ __metadata: languageName: node linkType: hard -"tar@npm:^6.1.11, tar@npm:^6.1.2": +"tar@npm:^6.1.11, tar@npm:^6.2.1": version: 6.2.1 resolution: "tar@npm:6.2.1" dependencies: @@ -7821,10 +7902,10 @@ __metadata: languageName: node linkType: hard -"type-detect@npm:^4.0.0, type-detect@npm:^4.0.8": - version: 4.0.8 - resolution: "type-detect@npm:4.0.8" - checksum: 10c0/8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd +"type-detect@npm:^4.0.0, type-detect@npm:^4.1.0": + version: 4.1.0 + resolution: "type-detect@npm:4.1.0" + checksum: 10c0/df8157ca3f5d311edc22885abc134e18ff8ffbc93d6a9848af5b682730ca6a5a44499259750197250479c5331a8a75b5537529df5ec410622041650a7f293e2a languageName: node linkType: hard @@ -7895,29 +7976,29 @@ __metadata: linkType: hard "typescript@npm:^5.4.3": - version: 5.5.3 - resolution: "typescript@npm:5.5.3" + version: 5.5.4 + resolution: "typescript@npm:5.5.4" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/f52c71ccbc7080b034b9d3b72051d563601a4815bf3e39ded188e6ce60813f75dbedf11ad15dd4d32a12996a9ed8c7155b46c93a9b9c9bad1049766fe614bbdd + checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c languageName: node linkType: hard "typescript@patch:typescript@npm%3A^5.4.3#optional!builtin": - version: 5.5.3 - resolution: "typescript@patch:typescript@npm%3A5.5.3#optional!builtin::version=5.5.3&hash=5adc0c" + version: 5.5.4 + resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=5adc0c" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/5a437c416251334deeaf29897157032311f3f126547cfdc4b133768b606cb0e62bcee733bb97cf74c42fe7268801aea1392d8e40988cdef112e9546eba4c03c5 + checksum: 10c0/10dd9881baba22763de859e8050d6cb6e2db854197495c6f1929b08d1eb2b2b00d0b5d9b0bcee8472f1c3f4a7ef6a5d7ebe0cfd703f853aa5ae465b8404bc1ba languageName: node linkType: hard "ufo@npm:^1.5.3": - version: 1.5.3 - resolution: "ufo@npm:1.5.3" - checksum: 10c0/1df10702582aa74f4deac4486ecdfd660e74be057355f1afb6adfa14243476cf3d3acff734ccc3d0b74e9bfdefe91d578f3edbbb0a5b2430fe93cd672370e024 + version: 1.5.4 + resolution: "ufo@npm:1.5.4" + checksum: 10c0/b5dc4dc435c49c9ef8890f1b280a19ee4d0954d1d6f9ab66ce62ce64dd04c7be476781531f952a07c678d51638d02ad4b98e16237be29149295b0f7c09cda765 languageName: node linkType: hard @@ -7933,10 +8014,10 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~5.26.4": - version: 5.26.5 - resolution: "undici-types@npm:5.26.5" - checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 +"undici-types@npm:~6.11.1": + version: 6.11.1 + resolution: "undici-types@npm:6.11.1" + checksum: 10c0/d8f5739a8e6c779d72336c82deb49c56d5ac9f9f6e0eb2e8dd4d3f6929ae9db7cde370d2e46516fe6cad04ea53e790c5e16c4c75eed7cd0f9bd31b0763bb2fa3 languageName: node linkType: hard @@ -7965,7 +8046,7 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.16": +"update-browserslist-db@npm:^1.1.0": version: 1.1.0 resolution: "update-browserslist-db@npm:1.1.0" dependencies: @@ -8036,11 +8117,10 @@ __metadata: linkType: hard "vite-plugin-checker@npm:^0.7.0": - version: 0.7.0 - resolution: "vite-plugin-checker@npm:0.7.0" + version: 0.7.2 + resolution: "vite-plugin-checker@npm:0.7.2" dependencies: "@babel/code-frame": "npm:^7.12.13" - "@volar/typescript": "npm:^2.3.0" ansi-escapes: "npm:^4.3.0" chalk: "npm:^4.1.1" chokidar: "npm:^3.5.1" @@ -8055,6 +8135,7 @@ __metadata: vscode-languageserver-textdocument: "npm:^1.0.1" vscode-uri: "npm:^3.0.2" peerDependencies: + "@biomejs/biome": ">=1.7" eslint: ">=7" meow: ^9.0.0 optionator: ^0.9.1 @@ -8065,6 +8146,8 @@ __metadata: vti: "*" vue-tsc: ">=2.0.0" peerDependenciesMeta: + "@biomejs/biome": + optional: true eslint: optional: true meow: @@ -8081,7 +8164,7 @@ __metadata: optional: true vue-tsc: optional: true - checksum: 10c0/6032d8a10442cccfca0dca3d75a19f57bad8cf6bf46552e0207594d44de351b7248bfd7cdd04ef1ff32a3898b1e767b9ac24f402d3a5a24db34807b42e4d126f + checksum: 10c0/0b2b3a540d1f28aa6d89ae404847899a4f1cffc59fbf24bda48c9798c9165ff02f69f0e0072e85ab5317d3c864a2dd4a9a5e8e983253b310b7859214eb1af78e languageName: node linkType: hard @@ -8129,8 +8212,8 @@ __metadata: linkType: hard "vite@npm:^5.0.0, vite@npm:^5.2.12": - version: 5.3.3 - resolution: "vite@npm:5.3.3" + version: 5.3.5 + resolution: "vite@npm:5.3.5" dependencies: esbuild: "npm:^0.21.3" fsevents: "npm:~2.3.3" @@ -8164,7 +8247,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/a796872e1d11875d994615cd00da185c80eeb7753034d35c096050bf3c269c02004070cf623c5fe2a4a90ea2f12488e6f9d13933ec810f117f1b931e1b5e3385 + checksum: 10c0/795c7e0dbc94b96c4a0aff0d5d4b349dd28ad8b7b70979c1010f96b4d83f7d6c1700ebd6fed91de2e021b0a3689b9abc2d8017f6dfa8c9a6ca5c7af637d6afc6 languageName: node linkType: hard @@ -8278,7 +8361,7 @@ __metadata: languageName: node linkType: hard -"vscode-uri@npm:^3.0.2, vscode-uri@npm:^3.0.8": +"vscode-uri@npm:^3.0.2": version: 3.0.8 resolution: "vscode-uri@npm:3.0.8" checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9 @@ -8383,14 +8466,14 @@ __metadata: linkType: hard "why-is-node-running@npm:^2.2.2": - version: 2.2.2 - resolution: "why-is-node-running@npm:2.2.2" + version: 2.3.0 + resolution: "why-is-node-running@npm:2.3.0" dependencies: siginfo: "npm:^2.0.0" stackback: "npm:0.0.2" bin: why-is-node-running: cli.js - checksum: 10c0/805d57eb5d33f0fb4e36bae5dceda7fd8c6932c2aeb705e30003970488f1a2bc70029ee64be1a0e1531e2268b11e65606e88e5b71d667ea745e6dc48fc9014bd + checksum: 10c0/1cde0b01b827d2cf4cb11db962f3958b9175d5d9e7ac7361d1a7b0e2dc6069a263e69118bd974c4f6d0a890ef4eedfe34cf3d5167ec14203dbc9a18620537054 languageName: node linkType: hard @@ -8430,7 +8513,7 @@ __metadata: languageName: node linkType: hard -"ws@npm:^8.15.1, ws@npm:^8.8.1": +"ws@npm:^8.15.1, ws@npm:^8.16.0, ws@npm:^8.8.1": version: 8.18.0 resolution: "ws@npm:8.18.0" peerDependencies: