diff --git a/package.json b/package.json index 5d5db63cf4..cf0f6222f5 100644 --- a/package.json +++ b/package.json @@ -28,11 +28,11 @@ "@polkawatch/ddp-client": "^2.0.20", "@substrate/connect": "^1.1.0", "@w3ux/extension-assets": "^0.4.0", - "@w3ux/hooks": "^1.1.1", + "@w3ux/hooks": "1.2.1-beta.0", "@w3ux/react-connect-kit": "^1.8.0", "@w3ux/react-odometer": "^1.1.0", "@w3ux/react-polkicon": "^1.3.0", - "@w3ux/utils": "1.0.1", + "@w3ux/utils": "^1.1.0", "@w3ux/validator-assets": "^0.2.0", "@zondax/ledger-substrate": "^1.0.0", "bignumber.js": "^9.1.2", @@ -47,7 +47,6 @@ "i18next": "^23.11.5", "i18next-browser-languagedetector": "^8.0.0", "lodash.debounce": "^4.0.8", - "lodash.throttle": "^4.1.1", "qrcode-generator": "1.4.4", "rc-slider": "^11.1.6", "react": "^18.3.1", @@ -67,7 +66,6 @@ "@ledgerhq/logs": "^6.12.0", "@types/chroma-js": "^2.4.4", "@types/lodash.debounce": "^4.0.9", - "@types/lodash.throttle": "^4.1.9", "@types/react": "^18.3.3", "@types/react-dom": "^18.2.25", "@types/react-helmet": "^6.1.11", diff --git a/src/canvas/JoinPool/Overview/PerformanceGraph.tsx b/src/canvas/JoinPool/Overview/PerformanceGraph.tsx index a106f63477..3f94e218a6 100644 --- a/src/canvas/JoinPool/Overview/PerformanceGraph.tsx +++ b/src/canvas/JoinPool/Overview/PerformanceGraph.tsx @@ -24,7 +24,7 @@ import { useHelp } from 'contexts/Help'; import { usePoolPerformance } from 'contexts/Pools/PoolPerformance'; import { useRef } from 'react'; import { formatSize } from 'library/Graphs/Utils'; -import { useSize } from 'hooks/useSize'; +import { useSize } from '@w3ux/hooks'; import type { OverviewSectionProps } from '../types'; import { useTranslation } from 'react-i18next'; import { useUi } from 'contexts/UI'; @@ -59,7 +59,9 @@ export const PerformanceGraph = ({ const graphInnerRef = useRef(null); // Get the size of the graph container. - const size = useSize(graphInnerRef, containerRefs?.mainInterface); + const size = useSize(graphInnerRef, { + outerElement: containerRefs?.mainInterface, + }); const { width, height } = formatSize(size, 150); // Format reward points as an array of strings, or an empty array if syncing. diff --git a/src/hooks/useSize/index.tsx b/src/hooks/useSize/index.tsx deleted file mode 100644 index f161ee2d6a..0000000000 --- a/src/hooks/useSize/index.tsx +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright 2024 @polkadot-cloud/polkadot-staking-dashboard authors & contributors -// SPDX-License-Identifier: GPL-3.0-only - -import throttle from 'lodash.throttle'; -import type { MutableRefObject } from 'react'; -import { useEffect, useState } from 'react'; - -// Custom hook to get the width and height of a specified element. Updates the `size` state when the -// specified "outer element" (or the window by default) resizes. -export const useSize = ( - element: MutableRefObject, - outerElement?: MutableRefObject -) => { - // Helper function to retrieve the width and height of an element - // If no element is found, default dimensions are set to 0. - const getSize = (el: HTMLElement | null = null) => { - const width = el?.offsetWidth || 0; - const height = el?.offsetHeight || 0; - return { width, height }; - }; - - // State to store the current width and height of the specified element. - const [size, setSize] = useState<{ width: number; height: number }>( - getSize(element?.current) - ); - - // Throttle the resize event handler to limit how often size updates occur. - const resizeThrottle = throttle(() => { - setSize(getSize(element?.current)); - }, 100); - - // Set up the resize event listener on mount and clean it up on unmount. - useEffect(() => { - // Determine the target for the resize event listener. - // If `outerElement` is provided, listen to its resize events; otherwise, listen to the window's. - const listenFor = outerElement?.current || window; - - listenFor.addEventListener('resize', resizeThrottle); - - // Clean up event listener when the component unmounts to avoid memory leaks. - return () => { - listenFor.removeEventListener('resize', resizeThrottle); - }; - }, [outerElement]); - - // Return the current size of the element. - return size; -}; diff --git a/src/library/SideMenu/index.tsx b/src/library/SideMenu/index.tsx index 1c572e9c5b..c25c3bc0cf 100644 --- a/src/library/SideMenu/index.tsx +++ b/src/library/SideMenu/index.tsx @@ -4,8 +4,7 @@ import { faCompressAlt, faExpandAlt } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { capitalizeFirstLetter } from '@w3ux/utils'; -import throttle from 'lodash.throttle'; -import { useEffect, useRef } from 'react'; +import { useRef } from 'react'; import { useTranslation } from 'react-i18next'; import { SideMenuMaximisedWidth, PageWidthMediumThreshold } from 'consts'; import { useApi } from 'contexts/Api'; @@ -26,7 +25,7 @@ import { Heading } from './Heading/Heading'; import { Main } from './Main'; import { Secondary } from './Secondary'; import { ConnectionSymbol, Separator, Wrapper } from './Wrapper'; -import { useOutsideAlerter } from '@w3ux/hooks'; +import { useOutsideAlerter, useOnResize } from '@w3ux/hooks'; import { Side } from 'kits/Structure/Side'; export const SideMenu = () => { @@ -44,24 +43,14 @@ export const SideMenu = () => { const { openModal } = useOverlay().modal; const { networkData, network } = useNetwork(); - // listen to window resize to automatically hide the side menu on window resize. - useEffect(() => { - window.addEventListener('resize', windowThrottle); - return () => { - window.removeEventListener('resize', windowThrottle); - }; - }, []); - - const throttleCallback = () => { + // Listen to window resize to automatically hide the side menu on window resize. + useOnResize(() => { if (window.innerWidth >= PageWidthMediumThreshold) { setSideMenu(false); } - }; - const windowThrottle = throttle(throttleCallback, 200, { - trailing: true, - leading: false, }); + // Define side menu ref and close the side menu when clicking outside of it. const ref = useRef(null); useOutsideAlerter(ref, () => { setSideMenu(false); diff --git a/src/modals/ValidatorGeo/index.tsx b/src/modals/ValidatorGeo/index.tsx index bb1d664b7f..17877d7685 100644 --- a/src/modals/ValidatorGeo/index.tsx +++ b/src/modals/ValidatorGeo/index.tsx @@ -10,7 +10,7 @@ import { CardHeaderWrapper, CardWrapper } from 'library/Card/Wrappers'; import { GeoDonut } from 'library/Graphs/GeoDonut'; import { formatSize } from 'library/Graphs/Utils'; import { GraphWrapper } from 'library/Graphs/Wrapper'; -import { useSize } from 'hooks/useSize'; +import { useSize } from '@w3ux/hooks'; import { Title } from 'library/Modal/Title'; import { StatusLabel } from 'library/StatusLabel'; import { PolkawatchApi, type ValidatorDetail } from '@polkawatch/ddp-client'; @@ -31,7 +31,9 @@ export const ValidatorGeo = () => { const { address, identity } = options; const ref = useRef(null); - const size = useSize(ref, containerRefs?.mainInterface); + const size = useSize(ref, { + outerElement: containerRefs?.mainInterface, + }); const { height, minHeight } = formatSize(size, 300); const [pwData, setPwData] = useState({} as ValidatorDetail); diff --git a/src/modals/ValidatorMetrics/index.tsx b/src/modals/ValidatorMetrics/index.tsx index 0e185e0bcd..1b03ca553b 100644 --- a/src/modals/ValidatorMetrics/index.tsx +++ b/src/modals/ValidatorMetrics/index.tsx @@ -12,7 +12,7 @@ import { CardHeaderWrapper, CardWrapper } from 'library/Card/Wrappers'; import { EraPoints as EraPointsGraph } from 'library/Graphs/EraPoints'; import { formatSize } from 'library/Graphs/Utils'; import { GraphWrapper } from 'library/Graphs/Wrapper'; -import { useSize } from 'hooks/useSize'; +import { useSize } from '@w3ux/hooks'; import { Title } from 'library/Modal/Title'; import { StatWrapper, StatsWrapper } from 'library/Modal/Wrappers'; import { StatusLabel } from 'library/StatusLabel'; @@ -61,7 +61,9 @@ export const ValidatorMetrics = () => { const [list, setList] = useState([]); const ref = useRef(null); - const size = useSize(ref, containerRefs?.mainInterface); + const size = useSize(ref, { + outerElement: containerRefs?.mainInterface, + }); const { width, height, minHeight } = formatSize(size, 300); const handleEraPoints = async () => { diff --git a/src/pages/Overview/Payouts.tsx b/src/pages/Overview/Payouts.tsx index e80d468210..4eb73842a7 100644 --- a/src/pages/Overview/Payouts.tsx +++ b/src/pages/Overview/Payouts.tsx @@ -9,7 +9,7 @@ import { PayoutBar } from 'library/Graphs/PayoutBar'; import { PayoutLine } from 'library/Graphs/PayoutLine'; import { formatRewardsForGraphs, formatSize } from 'library/Graphs/Utils'; import { GraphWrapper } from 'library/Graphs/Wrapper'; -import { useSize } from 'hooks/useSize'; +import { useSize } from '@w3ux/hooks'; import { StatusLabel } from 'library/StatusLabel'; import { useSubscanData } from 'hooks/useSubscanData'; import { CardHeaderWrapper } from 'library/Card/Wrappers'; @@ -52,7 +52,9 @@ export const Payouts = () => { const graphInnerRef = useRef(null); // Get the size of the graph container. - const size = useSize(graphInnerRef, containerRefs?.mainInterface); + const size = useSize(graphInnerRef, { + outerElement: containerRefs?.mainInterface, + }); const { width, height, minHeight } = formatSize(size, 260); // Get the last reward with its timestmap. diff --git a/src/pages/Overview/StakeStatus/Tips/index.tsx b/src/pages/Overview/StakeStatus/Tips/index.tsx index 9bce3fc3d9..728ddfb660 100644 --- a/src/pages/Overview/StakeStatus/Tips/index.tsx +++ b/src/pages/Overview/StakeStatus/Tips/index.tsx @@ -2,7 +2,6 @@ // SPDX-License-Identifier: GPL-3.0-only import { setStateWithRef } from '@w3ux/utils'; -import throttle from 'lodash.throttle'; import { useEffect, useRef, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { TipsConfig } from 'config/tips'; @@ -23,6 +22,7 @@ import { useApi } from 'contexts/Api'; import { useBalances } from 'contexts/Balances'; import { useSyncing } from 'hooks/useSyncing'; import { DefaultLocale } from 'locale'; +import { useOnResize } from '@w3ux/hooks'; export const Tips = () => { const { i18n, t } = useTranslation(); @@ -77,16 +77,10 @@ export const Tips = () => { return Math.ceil(start / itemsPerPage); }; - // resize callback - const resizeCallback = () => { + // Re-sync page and items per page on resize. + useOnResize(() => { setStateWithRef(getPage(), setPage, pageRef); setStateWithRef(getItemsPerPage(), setItemsPerPageState, itemsPerPageRef); - }; - - // throttle resize callback - const throttledResizeCallback = throttle(resizeCallback, 200, { - trailing: true, - leading: false, }); // re-sync page when active account changes @@ -94,14 +88,6 @@ export const Tips = () => { setStateWithRef(getPage(), setPage, pageRef); }, [activeAccount, network]); - // resize event listener - useEffect(() => { - window.addEventListener('resize', throttledResizeCallback); - return () => { - window.removeEventListener('resize', throttledResizeCallback); - }; - }, []); - // store the current amount of allowed items on display const [itemsPerPage, setItemsPerPageState] = useState(getItemsPerPage()); diff --git a/src/pages/Payouts/index.tsx b/src/pages/Payouts/index.tsx index a230a755b4..72435c2ceb 100644 --- a/src/pages/Payouts/index.tsx +++ b/src/pages/Payouts/index.tsx @@ -13,7 +13,7 @@ import { PayoutBar } from 'library/Graphs/PayoutBar'; import { PayoutLine } from 'library/Graphs/PayoutLine'; import { formatSize } from 'library/Graphs/Utils'; import { GraphWrapper } from 'library/Graphs/Wrapper'; -import { useSize } from 'hooks/useSize'; +import { useSize } from '@w3ux/hooks'; import { StatBoxList } from 'library/StatBoxList'; import { StatusLabel } from 'library/StatusLabel'; import type { AnySubscan, PageProps } from 'types'; @@ -45,7 +45,9 @@ export const Payouts = ({ page: { key } }: PageProps) => { const [payoutsList, setPayoutLists] = useState([]); const ref = useRef(null); - const size = useSize(ref, containerRefs?.mainInterface); + const size = useSize(ref, { + outerElement: containerRefs?.mainInterface, + }); const { width, height, minHeight } = formatSize(size, 280); // Get data safely from subscan hook. diff --git a/yarn.lock b/yarn.lock index 9ce55c9783..315381894c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -22,169 +22,139 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/code-frame@npm:7.25.7" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" dependencies: - "@babel/highlight": "npm:^7.25.7" + "@babel/helper-validator-identifier": "npm:^7.25.9" + js-tokens: "npm:^4.0.0" picocolors: "npm:^1.0.0" - checksum: 10c0/14825c298bdec914caf3d24d1383b6d4cd6b030714686004992f4fc251831ecf432236652896f99d5d341f17170ae9a07b58d8d7b15aa0df8cfa1c5a7d5474bc + checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 languageName: node linkType: hard -"@babel/compat-data@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/compat-data@npm:7.25.7" - checksum: 10c0/e5cc915abdd18d021236474a96606b2d4a915c4fb620c1ad776b8a08d91111e788cb3b7e9bad43593d4e0bfa4f06894357bcb0984102de1861b9e7322b6bc9f8 +"@babel/compat-data@npm:^7.25.9": + version: 7.26.2 + resolution: "@babel/compat-data@npm:7.26.2" + checksum: 10c0/c9b5f3724828d17f728a778f9d66c19b55c018d0d76de6d731178cca64f182c22b71400a73bf2b65dcc4fcfe52b630088a94d5902911b54206aa90e3ffe07d12 languageName: node linkType: hard "@babel/core@npm:^7.21.3": - version: 7.25.7 - resolution: "@babel/core@npm:7.25.7" + version: 7.26.0 + resolution: "@babel/core@npm:7.26.0" dependencies: "@ampproject/remapping": "npm:^2.2.0" - "@babel/code-frame": "npm:^7.25.7" - "@babel/generator": "npm:^7.25.7" - "@babel/helper-compilation-targets": "npm:^7.25.7" - "@babel/helper-module-transforms": "npm:^7.25.7" - "@babel/helpers": "npm:^7.25.7" - "@babel/parser": "npm:^7.25.7" - "@babel/template": "npm:^7.25.7" - "@babel/traverse": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" + "@babel/code-frame": "npm:^7.26.0" + "@babel/generator": "npm:^7.26.0" + "@babel/helper-compilation-targets": "npm:^7.25.9" + "@babel/helper-module-transforms": "npm:^7.26.0" + "@babel/helpers": "npm:^7.26.0" + "@babel/parser": "npm:^7.26.0" + "@babel/template": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.26.0" 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/dad20af39624086afc3a0910bd97ae712c9ad0e9dda09fc5da93876e8ea1802b63ddd81c44f4aa8a9834db46de801eaab1ce9b81ab54b4fe907ae052c24de136 + checksum: 10c0/91de73a7ff5c4049fbc747930aa039300e4d2670c2a91f5aa622f1b4868600fc89b01b6278385fbcd46f9574186fa3d9b376a9e7538e50f8d118ec13cfbcb63e languageName: node linkType: hard -"@babel/generator@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/generator@npm:7.25.7" +"@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0": + version: 7.26.2 + resolution: "@babel/generator@npm:7.26.2" dependencies: - "@babel/types": "npm:^7.25.7" + "@babel/parser": "npm:^7.26.2" + "@babel/types": "npm:^7.26.0" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^3.0.2" - checksum: 10c0/c03a26c79864d60d04ce36b649c3fa0d6fd7b2bf6a22e22854a0457aa09206508392dd73ee40e7bc8d50b3602f9ff068afa47770cda091d332e7db1ca382ee96 + checksum: 10c0/167ebce8977142f5012fad6bd91da51ac52bcd752f2261a54b7ab605d928aebe57e21636cdd2a9c7757e552652c68d9fcb5d40b06fcb66e02d9ee7526e118a5c languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-compilation-targets@npm:7.25.7" +"@babel/helper-compilation-targets@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-compilation-targets@npm:7.25.9" dependencies: - "@babel/compat-data": "npm:^7.25.7" - "@babel/helper-validator-option": "npm:^7.25.7" + "@babel/compat-data": "npm:^7.25.9" + "@babel/helper-validator-option": "npm:^7.25.9" browserslist: "npm:^4.24.0" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" - checksum: 10c0/705be7e5274a3fdade68e3e2cf42e2b600316ab52794e13b91299a16f16c926f15886b6e9d6df20eb943ccc1cdba5a363d4766f8d01e47b8e6f4e01175f5e66c + checksum: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-module-imports@npm:7.25.7" +"@babel/helper-module-imports@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-module-imports@npm:7.25.9" dependencies: - "@babel/traverse": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" - checksum: 10c0/0fd0c3673835e5bf75558e184bcadc47c1f6dd2fe2016d53ebe1e5a6ae931a44e093015c2f9a6651c1a89f25c76d9246710c2b0b460b95ee069c464f2837fa2c + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-module-transforms@npm:7.25.7" +"@babel/helper-module-transforms@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helper-module-transforms@npm:7.26.0" dependencies: - "@babel/helper-module-imports": "npm:^7.25.7" - "@babel/helper-simple-access": "npm:^7.25.7" - "@babel/helper-validator-identifier": "npm:^7.25.7" - "@babel/traverse": "npm:^7.25.7" + "@babel/helper-module-imports": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/f37fa7d1d4df21690535b278468cbd5faf0133a3080f282000cfa4f3ffc9462a1458f866b04b6a2f2d1eec4691236cba9a867da61270dab3ab19846e62f05090 - languageName: node - linkType: hard - -"@babel/helper-simple-access@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-simple-access@npm:7.25.7" - dependencies: - "@babel/traverse": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" - checksum: 10c0/eed1b499bfb4f613c18debd61517e3de77b6da2727ca025aa05ac81599e0269f1dddb5237db04e8bb598115d015874752e0a7f11ff38672d74a4976097417059 + checksum: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-string-parser@npm:7.25.7" - checksum: 10c0/73ef2ceb81f8294678a0afe8ab0103729c0370cac2e830e0d5128b03be5f6a2635838af31d391d763e3c5a4460ed96f42fd7c9b552130670d525be665913bc4c +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-validator-identifier@npm:7.25.7" - checksum: 10c0/07438e5bf01ab2882a15027fdf39ac3b0ba1b251774a5130917907014684e2f70fef8fd620137ca062c4c4eedc388508d2ea7a3a7d9936a32785f4fe116c68c0 +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-validator-option@npm:7.25.7" - checksum: 10c0/12ed418c8e3ed9ed44c8c80d823f4e42d399b5eb2e423adccb975e31a31a008cd3b5d8eab688b31f740caff4a1bb28fe06ea2fa7d635aee34cc0ad6995d50f0a +"@babel/helper-validator-option@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-option@npm:7.25.9" + checksum: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e languageName: node linkType: hard -"@babel/helpers@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helpers@npm:7.25.7" - dependencies: - "@babel/template": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" - checksum: 10c0/3b3ae9e373bd785414195ef8f59976a69d5a6ebe0ef2165fdcc5165e5c3ee09e0fcee94bb457df2ddb8c0532e4146d0a9b7a96b3497399a4bff4ffe196b30228 - languageName: node - linkType: hard - -"@babel/highlight@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/highlight@npm:7.25.7" +"@babel/helpers@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helpers@npm:7.26.0" dependencies: - "@babel/helper-validator-identifier": "npm:^7.25.7" - chalk: "npm:^2.4.2" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.0.0" - checksum: 10c0/1f5894fdb0a0af6101fb2822369b2eeeae32cbeae2ef73ff73fc6a0a4a20471565cd9cfa589f54ed69df66adeca7c57266031ca9134b7bd244d023a488d419aa + "@babel/template": "npm:^7.25.9" + "@babel/types": "npm:^7.26.0" + checksum: 10c0/343333cced6946fe46617690a1d0789346960910225ce359021a88a60a65bc0d791f0c5d240c0ed46cf8cc63b5fd7df52734ff14e43b9c32feae2b61b1647097 languageName: node linkType: hard -"@babel/parser@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/parser@npm:7.25.7" +"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/parser@npm:7.26.2" dependencies: - "@babel/types": "npm:^7.25.7" + "@babel/types": "npm:^7.26.0" bin: parser: ./bin/babel-parser.js - checksum: 10c0/b771469bb6b636c18a8d642b9df3c73913c3860a979591e1a29a98659efd38b81d3e393047b5251fe382d4c82c681c12da9ce91c98d69316d2604d155a214bcf - 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.25.0": - version: 7.25.7 - resolution: "@babel/runtime@npm:7.25.7" - dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/86b7829d2fc9343714a9afe92757cf96c4dc799006ca61d73cda62f4b9e29bfa1ce36794955bc6cb4c188f5b10db832c949339895e1bbe81a69022d9d578ce29 + checksum: 10c0/751a743087b3a9172a7599f1421830d44c38f065ef781588d2bfb1c98f9b461719a226feb13c868d7a284783eee120c88ea522593118f2668f46ebfb1105c4d7 languageName: node linkType: hard -"@babel/runtime@npm:^7.19.4, @babel/runtime@npm:^7.21.0": +"@babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.19.4, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.25.0": version: 7.26.0 resolution: "@babel/runtime@npm:7.26.0" dependencies: @@ -193,40 +163,39 @@ __metadata: languageName: node linkType: hard -"@babel/template@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/template@npm:7.25.7" +"@babel/template@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/template@npm:7.25.9" dependencies: - "@babel/code-frame": "npm:^7.25.7" - "@babel/parser": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" - checksum: 10c0/8ae9e36e4330ee83d4832531d1d9bec7dc2ef6a2a8afa1ef1229506fd60667abcb17f306d1c3d7e582251270597022990c845d5d69e7add70a5aea66720decb9 + "@babel/code-frame": "npm:^7.25.9" + "@babel/parser": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab languageName: node linkType: hard -"@babel/traverse@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/traverse@npm:7.25.7" +"@babel/traverse@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/traverse@npm:7.25.9" dependencies: - "@babel/code-frame": "npm:^7.25.7" - "@babel/generator": "npm:^7.25.7" - "@babel/parser": "npm:^7.25.7" - "@babel/template": "npm:^7.25.7" - "@babel/types": "npm:^7.25.7" + "@babel/code-frame": "npm:^7.25.9" + "@babel/generator": "npm:^7.25.9" + "@babel/parser": "npm:^7.25.9" + "@babel/template": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" debug: "npm:^4.3.1" globals: "npm:^11.1.0" - checksum: 10c0/75d73e52c507a7a7a4c7971d6bf4f8f26fdd094e0d3a0193d77edf6a5efa36fc3db91ec5cc48e8b94e6eb5d5ad21af0a1040e71309172851209415fd105efb1a + checksum: 10c0/e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1 languageName: node linkType: hard -"@babel/types@npm:^7.21.3, @babel/types@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/types@npm:7.25.7" +"@babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/types@npm:7.26.0" dependencies: - "@babel/helper-string-parser": "npm:^7.25.7" - "@babel/helper-validator-identifier": "npm:^7.25.7" - to-fast-properties: "npm:^2.0.0" - checksum: 10c0/e03e1e2e08600fa1e8eb90632ac9c253dd748176c8d670d85f85b0dc83a0573b26ae748a1cbcb81f401903a3d95f43c3f4f8d516a5ed779929db27de56289633 + "@babel/helper-string-parser": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + checksum: 10c0/b694f41ad1597127e16024d766c33a641508aad037abd08d0d1f73af753e1119fa03b4a107d04b5f92cc19c095a594660547ae9bead1db2299212d644b0a5cb8 languageName: node linkType: hard @@ -290,20 +259,20 @@ __metadata: linkType: hard "@ecies/ciphers@npm:^0.2.0": - version: 0.2.0 - resolution: "@ecies/ciphers@npm:0.2.0" + version: 0.2.1 + resolution: "@ecies/ciphers@npm:0.2.1" peerDependencies: "@noble/ciphers": ^1.0.0 - checksum: 10c0/1aa83fd46c52325e267c67eb2ab1575751da008a18ef806b4ade3ff3db71df7e29155287c3b66e1dcc3c47bf5ce7b302509518569763b6c91cc5b6f9f6f12cb3 + checksum: 10c0/0ce13f5f8216047afde68afe549021c65145af2d2f08da032552487f170c47fd480c11fa358b5cdcc29e70928e5d81e037b6a5963a20ba74d3c242881ba5bb50 languageName: node linkType: hard "@emnapi/runtime@npm:^1.2.0": - version: 1.2.0 - resolution: "@emnapi/runtime@npm:1.2.0" + version: 1.3.1 + resolution: "@emnapi/runtime@npm:1.3.1" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/7005ff8b67724c9e61b6cd79a3decbdb2ce25d24abd4d3d187472f200ee6e573329c30264335125fb136bd813aa9cf9f4f7c9391d04b07dd1e63ce0a3427be57 + checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c languageName: node linkType: hard @@ -492,20 +461,20 @@ __metadata: linkType: hard "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.4.0 - resolution: "@eslint-community/eslint-utils@npm:4.4.0" + version: 4.4.1 + resolution: "@eslint-community/eslint-utils@npm:4.4.1" dependencies: - eslint-visitor-keys: "npm:^3.3.0" + eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e + checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252 languageName: node linkType: hard "@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1": - version: 4.11.1 - resolution: "@eslint-community/regexpp@npm:4.11.1" - checksum: 10c0/fbcc1cb65ef5ed5b92faa8dc542e035269065e7ebcc0b39c81a4fe98ad35cfff20b3c8df048641de15a7757e07d69f85e2579c1a5055f993413ba18c055654f8 + version: 4.12.1 + resolution: "@eslint-community/regexpp@npm:4.12.1" + checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 languageName: node linkType: hard @@ -1612,13 +1581,13 @@ __metadata: linkType: hard "@polkadot-api/merkleize-metadata@npm:^1.1.4": - version: 1.1.4 - resolution: "@polkadot-api/merkleize-metadata@npm:1.1.4" + version: 1.1.9 + resolution: "@polkadot-api/merkleize-metadata@npm:1.1.9" dependencies: - "@polkadot-api/metadata-builders": "npm:0.7.1" - "@polkadot-api/substrate-bindings": "npm:0.8.0" - "@polkadot-api/utils": "npm:0.1.1" - checksum: 10c0/b6f727efb2680d784f7b67d1fc26aca06cecd6d854f28c65fe6197bf71f3e29282d7e2cee8e13ccf5a6712467f28e503f825b67cada958fa7da80e2641f722aa + "@polkadot-api/metadata-builders": "npm:0.9.1" + "@polkadot-api/substrate-bindings": "npm:0.9.3" + "@polkadot-api/utils": "npm:0.1.2" + checksum: 10c0/096ec12790095e6f11e89585caaa061195bcf4724bf8ddec478cf03513c3dc667e8d28ee0aebdbb715674b9763941432d59ab6cbbec4f66a1b12bc8ee3b16f8a languageName: node linkType: hard @@ -1642,13 +1611,13 @@ __metadata: languageName: node linkType: hard -"@polkadot-api/metadata-builders@npm:0.7.1": - version: 0.7.1 - resolution: "@polkadot-api/metadata-builders@npm:0.7.1" +"@polkadot-api/metadata-builders@npm:0.9.1": + version: 0.9.1 + resolution: "@polkadot-api/metadata-builders@npm:0.9.1" dependencies: - "@polkadot-api/substrate-bindings": "npm:0.8.0" - "@polkadot-api/utils": "npm:0.1.1" - checksum: 10c0/f956f15f24b3e3768a8524ad6bc8ff0d74cd9180e72d6bf8b91179f6992acc916b549f8c65b0d12143c140c5abeb7a141f03fe98b37743e49840ff12b4e060b4 + "@polkadot-api/substrate-bindings": "npm:0.9.3" + "@polkadot-api/utils": "npm:0.1.2" + checksum: 10c0/768c14b578fe2d25c58904479a6d37da38f86e84fe11e01d16a86d56640138a2efb67c0706578e871de8529106491b9299173422d29259b045387cf7a35c6210 languageName: node linkType: hard @@ -1690,19 +1659,7 @@ __metadata: languageName: node linkType: hard -"@polkadot-api/substrate-bindings@npm:0.8.0": - version: 0.8.0 - resolution: "@polkadot-api/substrate-bindings@npm:0.8.0" - 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/c42f3850043fba83a347d904d9d75a03e7d75741182f70e9bee27864a968c25b9d5953409fbde425909ce998452d3e192f2e8a03ead1d6cc748e98602707d578 - languageName: node - linkType: hard - -"@polkadot-api/substrate-bindings@npm:^0.9.3": +"@polkadot-api/substrate-bindings@npm:0.9.3, @polkadot-api/substrate-bindings@npm:^0.9.3": version: 0.9.3 resolution: "@polkadot-api/substrate-bindings@npm:0.9.3" dependencies: @@ -1745,13 +1702,6 @@ __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/utils@npm:0.1.2": version: 0.1.2 resolution: "@polkadot-api/utils@npm:0.1.2" @@ -1774,18 +1724,18 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-augment@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/api-augment@npm:14.0.1" +"@polkadot/api-augment@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/api-augment@npm:14.2.2" dependencies: - "@polkadot/api-base": "npm:14.0.1" - "@polkadot/rpc-augment": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-augment": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/ea76c166a0309bb249f8abd527f1c9772aa5982c75bfc32e90ab6f8d7c94fd98703554e3e3565711eea6a3f4c1e94c65271edafd67fc92bf898bfabb993bdc49 + "@polkadot/api-base": "npm:14.2.2" + "@polkadot/rpc-augment": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-augment": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/2daa6f2c69ea8e5ecf0fd80d2a9ff35dc2ef9c6c1f9124e33e978d61a8cdca2f62412360385062315c608cae0f88312b8b0cb75ef96ca93f46db74d7363b6589 languageName: node linkType: hard @@ -1802,16 +1752,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-base@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/api-base@npm:14.0.1" +"@polkadot/api-base@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/api-base@npm:14.2.2" dependencies: - "@polkadot/rpc-core": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" + "@polkadot/rpc-core": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" rxjs: "npm:^7.8.1" - tslib: "npm:^2.7.0" - checksum: 10c0/3b178018b73acc0b642fd13fdaaeaaa22b84cab421c3c0ed527c74adc99d767af7575bc3d2a683f79801c1941fe292850465a2a3215f61427b1ee74984eb4541 + tslib: "npm:^2.8.0" + checksum: 10c0/f0f705484cb2208238bfebf62313664551afbfc8a8f6fd70f6acd9104ca9409b23878dcccc1b573b6a0bca56ac2e9a13707d434a629688e5e8ff98429a2844ed languageName: node linkType: hard @@ -1833,21 +1783,21 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-derive@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/api-derive@npm:14.0.1" +"@polkadot/api-derive@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/api-derive@npm:14.2.2" dependencies: - "@polkadot/api": "npm:14.0.1" - "@polkadot/api-augment": "npm:14.0.1" - "@polkadot/api-base": "npm:14.0.1" - "@polkadot/rpc-core": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - "@polkadot/util-crypto": "npm:^13.1.1" + "@polkadot/api": "npm:14.2.2" + "@polkadot/api-augment": "npm:14.2.2" + "@polkadot/api-base": "npm:14.2.2" + "@polkadot/rpc-core": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + "@polkadot/util-crypto": "npm:^13.2.2" rxjs: "npm:^7.8.1" - tslib: "npm:^2.7.0" - checksum: 10c0/c93b7ca568e17933c98be9bd76d6cb5e3b60ef4fcc1fc3cf22fbce7b78337f3b1867de80e7cb55c374598c6653e77f2081c1f0ff201b9d506389beb40801b7e0 + tslib: "npm:^2.8.0" + checksum: 10c0/c5c5142126e0fcafddd35539d09cb3b4990183818ba52dd92beddc2aeda222ded408dccfa35ab05cd4d7d70642efaa16a9a51825d3993f1dd1df673dd06c772a languageName: node linkType: hard @@ -1876,28 +1826,28 @@ __metadata: languageName: node linkType: hard -"@polkadot/api@npm:14.0.1, @polkadot/api@npm:^14.0.1": - version: 14.0.1 - resolution: "@polkadot/api@npm:14.0.1" - dependencies: - "@polkadot/api-augment": "npm:14.0.1" - "@polkadot/api-base": "npm:14.0.1" - "@polkadot/api-derive": "npm:14.0.1" - "@polkadot/keyring": "npm:^13.1.1" - "@polkadot/rpc-augment": "npm:14.0.1" - "@polkadot/rpc-core": "npm:14.0.1" - "@polkadot/rpc-provider": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-augment": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/types-create": "npm:14.0.1" - "@polkadot/types-known": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - "@polkadot/util-crypto": "npm:^13.1.1" +"@polkadot/api@npm:14.2.2, @polkadot/api@npm:^14.0.1": + version: 14.2.2 + resolution: "@polkadot/api@npm:14.2.2" + dependencies: + "@polkadot/api-augment": "npm:14.2.2" + "@polkadot/api-base": "npm:14.2.2" + "@polkadot/api-derive": "npm:14.2.2" + "@polkadot/keyring": "npm:^13.2.2" + "@polkadot/rpc-augment": "npm:14.2.2" + "@polkadot/rpc-core": "npm:14.2.2" + "@polkadot/rpc-provider": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-augment": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/types-create": "npm:14.2.2" + "@polkadot/types-known": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + "@polkadot/util-crypto": "npm:^13.2.2" eventemitter3: "npm:^5.0.1" rxjs: "npm:^7.8.1" - tslib: "npm:^2.7.0" - checksum: 10c0/8dcaa6ffec5241d1574544a707795d21f008953b08bfdd31b29375d63d1307de0a301459e4bd64f58d522f23a666b84478c00f82fa980e94266ca16d2d12b688 + tslib: "npm:^2.8.0" + checksum: 10c0/e49fb4134cfb69940b503095fdced7fd4c556be82bb909cb86efb38646408f5148a4619c0c5ef438538bf685695a1aab14e6fc665d068c4e3911cabed00b0e4d languageName: node linkType: hard @@ -1933,17 +1883,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/keyring@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/keyring@npm:13.1.1" +"@polkadot/keyring@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/keyring@npm:13.2.2" dependencies: - "@polkadot/util": "npm:13.1.1" - "@polkadot/util-crypto": "npm:13.1.1" - tslib: "npm:^2.7.0" + "@polkadot/util": "npm:13.2.2" + "@polkadot/util-crypto": "npm:13.2.2" + tslib: "npm:^2.8.0" peerDependencies: - "@polkadot/util": 13.1.1 - "@polkadot/util-crypto": 13.1.1 - checksum: 10c0/f746ff4dcf5bc89efbd20b1ddaf01232a2b87b7d1b1d45d76371a3b14361e4aef2045668658df39a738e2b2b70944cd0e5a5210b654778b55ef965b69fc8b2ca + "@polkadot/util": 13.2.2 + "@polkadot/util-crypto": 13.2.2 + checksum: 10c0/f01f0f7ba1d75ac8edb4f380dec8584be09a4a0593df1db5fe2f42a8b2e868547c08903765a1270a2b5c1b76e5bc900ba53132d372879f4dfccec84a42f61c98 languageName: node linkType: hard @@ -1958,14 +1908,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/networks@npm:13.1.1, @polkadot/networks@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/networks@npm:13.1.1" +"@polkadot/networks@npm:13.2.2, @polkadot/networks@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/networks@npm:13.2.2" dependencies: - "@polkadot/util": "npm:13.1.1" - "@substrate/ss58-registry": "npm:^1.50.0" - tslib: "npm:^2.7.0" - checksum: 10c0/30ea310ecfbe1ab7a050b3809a86f6b4564b75d0d35e467ff16428fd4d75e3d685e2964366d9a9130ade71ea7615ac064c8d5704457c72810333d5f9d257b32b + "@polkadot/util": "npm:13.2.2" + "@substrate/ss58-registry": "npm:^1.51.0" + tslib: "npm:^2.8.0" + checksum: 10c0/aeac8733a3f1f0ed2872603b7925441e1016097b5da850f49f860a8e300d10555e73450e2952023de560718b49026937919490749f4075c9b3c4ea78464e027f languageName: node linkType: hard @@ -1982,16 +1932,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-augment@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/rpc-augment@npm:14.0.1" +"@polkadot/rpc-augment@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/rpc-augment@npm:14.2.2" dependencies: - "@polkadot/rpc-core": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/e3ddaaad5bcad11ba7c11c6074dbdb24b9ac78f710b8bb5113be4b9e6f46d0bce958bc844201c6b540564b2fbb5c06276f5fa5d43e5cb510b4873fcae24258fe + "@polkadot/rpc-core": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/8e54ec99567e94d302d224e7a570d4104089d0f17b6cb598ce9484dbbfe4c351b45f572735d569f1271213416ffd2410c969885159b83e9b329b60d76af30687 languageName: node linkType: hard @@ -2009,17 +1959,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-core@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/rpc-core@npm:14.0.1" +"@polkadot/rpc-core@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/rpc-core@npm:14.2.2" dependencies: - "@polkadot/rpc-augment": "npm:14.0.1" - "@polkadot/rpc-provider": "npm:14.0.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" + "@polkadot/rpc-augment": "npm:14.2.2" + "@polkadot/rpc-provider": "npm:14.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" rxjs: "npm:^7.8.1" - tslib: "npm:^2.7.0" - checksum: 10c0/77b42ccd7b0388e1098d0024deecd0ff63ed64c1d3fbdea8fc9bda716c3937603f04386b2f89ff2ac9c45034352b435fbe98b015d26954be3262b4451c12da79 + tslib: "npm:^2.8.0" + checksum: 10c0/57d4eb3a45ac6833646884416bed2065c5a30e2f7a3000fb422e41743af72beea2dfa077a8d3289e8e9c72264498ffc75505df3aa2dcf731428e1b99c36ed7b0 languageName: node linkType: hard @@ -2047,27 +1997,27 @@ __metadata: languageName: node linkType: hard -"@polkadot/rpc-provider@npm:14.0.1, @polkadot/rpc-provider@npm:^14.0.1": - version: 14.0.1 - resolution: "@polkadot/rpc-provider@npm:14.0.1" +"@polkadot/rpc-provider@npm:14.2.2, @polkadot/rpc-provider@npm:^14.0.1": + version: 14.2.2 + resolution: "@polkadot/rpc-provider@npm:14.2.2" dependencies: - "@polkadot/keyring": "npm:^13.1.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-support": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - "@polkadot/util-crypto": "npm:^13.1.1" - "@polkadot/x-fetch": "npm:^13.1.1" - "@polkadot/x-global": "npm:^13.1.1" - "@polkadot/x-ws": "npm:^13.1.1" + "@polkadot/keyring": "npm:^13.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-support": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + "@polkadot/util-crypto": "npm:^13.2.2" + "@polkadot/x-fetch": "npm:^13.2.2" + "@polkadot/x-global": "npm:^13.2.2" + "@polkadot/x-ws": "npm:^13.2.2" "@substrate/connect": "npm:0.8.11" eventemitter3: "npm:^5.0.1" mock-socket: "npm:^9.3.1" - nock: "npm:^13.5.4" - tslib: "npm:^2.7.0" + nock: "npm:^13.5.5" + tslib: "npm:^2.8.0" dependenciesMeta: "@substrate/connect": optional: true - checksum: 10c0/e75f1577117b5f80cfc7d3267eb96ceb431c0ce0bce57744011eae9526e600607e915268a0b06660d7e00d3757b170237c68304188396c16a52ea3a1c65b54a8 + checksum: 10c0/4d2b90aaa6b5695c6e36bea7a9b905db58242303195f059689026687e358bc5f3d7f73f7641d4110013ef3417b3a7dd227bf981632e94c6eb7cfe9b385bdc744 languageName: node linkType: hard @@ -2083,15 +2033,15 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-augment@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types-augment@npm:14.0.1" +"@polkadot/types-augment@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types-augment@npm:14.2.2" dependencies: - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/527e30fce07d8432ddfc6134930d544561bd1e51f0267d02b21a717bea42270c6ebccb28f00239f3248cd9bd2aba6c068779bb54fd6fe41ac605bf53d7212d55 + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/09bd799944e7fb5a64b325337c957815f0a9c2ca9f3d3be115be18a8d80a972b03746eaf75d0a6fbfbadee37a6d379e194dd4a28ba5134958006aae969c0cce4 languageName: node linkType: hard @@ -2106,14 +2056,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-codec@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types-codec@npm:14.0.1" +"@polkadot/types-codec@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types-codec@npm:14.2.2" dependencies: - "@polkadot/util": "npm:^13.1.1" - "@polkadot/x-bigint": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/e47eed41cdb71325ba3412ee400caedb08ef6b5f56e56bf09fa7ed9520a9c7e9dd20de83066cbf8161389050280fa7132802f45ac93aaf4173635a44eb427c21 + "@polkadot/util": "npm:^13.2.2" + "@polkadot/x-bigint": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/0badc13aa0b4357a451e7fc88a1a11df5c4671337bd11111f2ce7e012264287111768e7e87a9fa4163a6d0f02df9c922ecedf796f2635baae649540e0ef02b06 languageName: node linkType: hard @@ -2128,14 +2078,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-create@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types-create@npm:14.0.1" +"@polkadot/types-create@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types-create@npm:14.2.2" dependencies: - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/c5684dd2ff61ce2b5a73bce6b278e9f31fc1d6b15ae949d3a18fd747a8293ec83ae783132d53814cc0b07db9286126dcb15868912880f32896b29ce363ed182f + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/6a1e705a907f35028f1b012b5eb8a468ddca6d7400ef62315ffa7c4142b8a0843452f7ef377dd77bf49a4e395012c438181acda12019dde837439d5c18eb6211 languageName: node linkType: hard @@ -2153,17 +2103,17 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-known@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types-known@npm:14.0.1" +"@polkadot/types-known@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types-known@npm:14.2.2" dependencies: - "@polkadot/networks": "npm:^13.1.1" - "@polkadot/types": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/types-create": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/da263e1769cbea8cdb80d49521f5c47f4a3e6ee044c02a1c85f33e755b2ef02d876d604e2c841ef273a673f1632754ba65064b10804e214d3d6a4ed66cba3e11 + "@polkadot/networks": "npm:^13.2.2" + "@polkadot/types": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/types-create": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/b54e0fe9e2d21aecdd85bb631fa432abb3ecf8e7e278e3f46fc988848ac39866d4b2eb60be3e9e4b3eb28020b2638611d7dadf9e732f54f943a48ebf4665349d languageName: node linkType: hard @@ -2177,13 +2127,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/types-support@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types-support@npm:14.0.1" +"@polkadot/types-support@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types-support@npm:14.2.2" dependencies: - "@polkadot/util": "npm:^13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/d834b06f4761fbc61a5426ea84c2ac890ab31e888021e7cdf6883898156af684f612a677d5e13f7f8a196d971f394947e9eb45507ab3dcf9a57276667306c0dc + "@polkadot/util": "npm:^13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/48037ebc2b9bfcb2f109eb950599db4028a92c70a89b28cbe0f80c289cb2fa4cc4ca29570c7df6c17edbab2dc4341e4752d4e8182a5bd5fd01f21dbd1fb9cf20 languageName: node linkType: hard @@ -2203,19 +2153,19 @@ __metadata: languageName: node linkType: hard -"@polkadot/types@npm:14.0.1": - version: 14.0.1 - resolution: "@polkadot/types@npm:14.0.1" +"@polkadot/types@npm:14.2.2": + version: 14.2.2 + resolution: "@polkadot/types@npm:14.2.2" dependencies: - "@polkadot/keyring": "npm:^13.1.1" - "@polkadot/types-augment": "npm:14.0.1" - "@polkadot/types-codec": "npm:14.0.1" - "@polkadot/types-create": "npm:14.0.1" - "@polkadot/util": "npm:^13.1.1" - "@polkadot/util-crypto": "npm:^13.1.1" + "@polkadot/keyring": "npm:^13.2.2" + "@polkadot/types-augment": "npm:14.2.2" + "@polkadot/types-codec": "npm:14.2.2" + "@polkadot/types-create": "npm:14.2.2" + "@polkadot/util": "npm:^13.2.2" + "@polkadot/util-crypto": "npm:^13.2.2" rxjs: "npm:^7.8.1" - tslib: "npm:^2.7.0" - checksum: 10c0/30599aca74862fff4fd7d1b90f3db80faa5b8972a3f975ee49f5cbbf4ecf857f6948f95b2349b9182802f6a0b3e9a72106b2e7b9a9d387b16e9970362e3ce24c + tslib: "npm:^2.8.0" + checksum: 10c0/b38cff82528f4f383904a1f75a4d95ffb6b5fab97209933dd7ec4b85920499a0aaca79698adbb05af45da32dd2771229fde914633264bc006ec08ebbf1109dcb languageName: node linkType: hard @@ -2239,23 +2189,23 @@ __metadata: languageName: node linkType: hard -"@polkadot/util-crypto@npm:13.1.1, @polkadot/util-crypto@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/util-crypto@npm:13.1.1" +"@polkadot/util-crypto@npm:13.2.2, @polkadot/util-crypto@npm:^13.1.1, @polkadot/util-crypto@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/util-crypto@npm:13.2.2" dependencies: "@noble/curves": "npm:^1.3.0" "@noble/hashes": "npm:^1.3.3" - "@polkadot/networks": "npm:13.1.1" - "@polkadot/util": "npm:13.1.1" - "@polkadot/wasm-crypto": "npm:^7.3.2" - "@polkadot/wasm-util": "npm:^7.3.2" - "@polkadot/x-bigint": "npm:13.1.1" - "@polkadot/x-randomvalues": "npm:13.1.1" + "@polkadot/networks": "npm:13.2.2" + "@polkadot/util": "npm:13.2.2" + "@polkadot/wasm-crypto": "npm:^7.4.1" + "@polkadot/wasm-util": "npm:^7.4.1" + "@polkadot/x-bigint": "npm:13.2.2" + "@polkadot/x-randomvalues": "npm:13.2.2" "@scure/base": "npm:^1.1.7" - tslib: "npm:^2.7.0" + tslib: "npm:^2.8.0" peerDependencies: - "@polkadot/util": 13.1.1 - checksum: 10c0/6ce2f75fd55b9f41a99faf8c16e4a02f7d52ce4caec3d323f1cb08bd792798dd6e1b2d3b75cf4dcc2ff1ed81adcaa0d35499c48f1a653325dce01301f8ee2837 + "@polkadot/util": 13.2.2 + checksum: 10c0/5843cfc599a7d8d6c76921cba679909f3e730d363c62d82cc5755ed67dadcc36ff0cc0fce6017d31041f5f7a62b05311b02aa922ac38608ee5dd04705e19d056 languageName: node linkType: hard @@ -2274,98 +2224,98 @@ __metadata: languageName: node linkType: hard -"@polkadot/util@npm:13.1.1, @polkadot/util@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/util@npm:13.1.1" +"@polkadot/util@npm:13.2.2, @polkadot/util@npm:^13.1.1, @polkadot/util@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/util@npm:13.2.2" dependencies: - "@polkadot/x-bigint": "npm:13.1.1" - "@polkadot/x-global": "npm:13.1.1" - "@polkadot/x-textdecoder": "npm:13.1.1" - "@polkadot/x-textencoder": "npm:13.1.1" - "@types/bn.js": "npm:^5.1.5" + "@polkadot/x-bigint": "npm:13.2.2" + "@polkadot/x-global": "npm:13.2.2" + "@polkadot/x-textdecoder": "npm:13.2.2" + "@polkadot/x-textencoder": "npm:13.2.2" + "@types/bn.js": "npm:^5.1.6" bn.js: "npm:^5.2.1" - tslib: "npm:^2.7.0" - checksum: 10c0/28a77a42bbc7a71fc8647d393ba1ca0e0e7e46968ac03c4f3d78ee7414f6af32c343c4522a588fc5b1e074f08d7b85b120247c43ff00bea971d201b52a6af0f5 + tslib: "npm:^2.8.0" + checksum: 10c0/a63fb46907a77fb99ace488fa61d9005c700ff6504322a3b98a2fca434bbef3a5aa6dd6c52d4b806b71e2f4a3def6f6ecb2548644be0546b8667efc3da4118cd languageName: node linkType: hard -"@polkadot/wasm-bridge@npm:7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-bridge@npm:7.3.2" +"@polkadot/wasm-bridge@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-bridge@npm:7.4.1" dependencies: - "@polkadot/wasm-util": "npm:7.3.2" - tslib: "npm:^2.6.2" + "@polkadot/wasm-util": "npm:7.4.1" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: 10c0/8becfcd4efbabe8ea536c353164c8b767a5510d6d62e376813ab1dc0dd4560906f1dfdb1b349d56b4da657ba7c88bc9f074b658218dcae9b1edbd36f4508b710 + checksum: 10c0/8123c2d72ed24f6900185eb982f228789414c1458c8a291e17a9bd70cd36616f0e04fb40cb01e90d27223eb2ce81391af36f6e5b741cb6d9a83850bb5b9e038e languageName: node linkType: hard -"@polkadot/wasm-crypto-asmjs@npm:7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-crypto-asmjs@npm:7.3.2" +"@polkadot/wasm-crypto-asmjs@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-asmjs@npm:7.4.1" dependencies: - tslib: "npm:^2.6.2" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" - checksum: 10c0/c4eb0b2c6bae2cd7b4ada5211c877a0f0cff4d4a4f2716817430c5aab74f4e8d37099add57c809a098033028378ed3e88ba1c56fd85b6fd0a80b181742f7a3f9 + checksum: 10c0/7b19748b2ccdc2d964c137ae5eabdf022d7860c05981270c82392898ac6641d5602a2c2ea1059ef8f8929dd361a75fdb25bfaa7961f3dfcf497f987145c6850a languageName: node linkType: hard -"@polkadot/wasm-crypto-init@npm:7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-crypto-init@npm:7.3.2" +"@polkadot/wasm-crypto-init@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-init@npm:7.4.1" dependencies: - "@polkadot/wasm-bridge": "npm:7.3.2" - "@polkadot/wasm-crypto-asmjs": "npm:7.3.2" - "@polkadot/wasm-crypto-wasm": "npm:7.3.2" - "@polkadot/wasm-util": "npm:7.3.2" - tslib: "npm:^2.6.2" + "@polkadot/wasm-bridge": "npm:7.4.1" + "@polkadot/wasm-crypto-asmjs": "npm:7.4.1" + "@polkadot/wasm-crypto-wasm": "npm:7.4.1" + "@polkadot/wasm-util": "npm:7.4.1" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: 10c0/4813a87bf44065d4ec7cdc29b00f37cc6859974969710c6a6fefba8e42f5bb0c7e102293a8418b1c6e1b5fd55540d13beebdff777200b69420ce50b8fad803ed + checksum: 10c0/fdcb96b4ba318680837d728b3c60c0bbbe326c9b8c15d70394cfbfdee06c95f8311b6fe13e4c862472faef4a2a9ccb218519fb15ad2f67d15b4cbb1b7c3eecba languageName: node linkType: hard -"@polkadot/wasm-crypto-wasm@npm:7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-crypto-wasm@npm:7.3.2" +"@polkadot/wasm-crypto-wasm@npm:7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto-wasm@npm:7.4.1" dependencies: - "@polkadot/wasm-util": "npm:7.3.2" - tslib: "npm:^2.6.2" + "@polkadot/wasm-util": "npm:7.4.1" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" - checksum: 10c0/546ebc5c42929f2f37565190014ff26f6817024e087c56053c1d8c1dcffd1f02014c4638ca70c79145d540f760339699209bb1dc939c235085a7c78efd56bc60 + checksum: 10c0/2673a567cea785f7b9ec5b8371e05a53064651a9c64ac0fc45d7d5c8a080810cb1bd0f1950e2789d2c8895bcca35e9dc84b8a7b77c59b9b2d30beed8a964d043 languageName: node linkType: hard -"@polkadot/wasm-crypto@npm:^7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-crypto@npm:7.3.2" +"@polkadot/wasm-crypto@npm:^7.3.2, @polkadot/wasm-crypto@npm:^7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-crypto@npm:7.4.1" dependencies: - "@polkadot/wasm-bridge": "npm:7.3.2" - "@polkadot/wasm-crypto-asmjs": "npm:7.3.2" - "@polkadot/wasm-crypto-init": "npm:7.3.2" - "@polkadot/wasm-crypto-wasm": "npm:7.3.2" - "@polkadot/wasm-util": "npm:7.3.2" - tslib: "npm:^2.6.2" + "@polkadot/wasm-bridge": "npm:7.4.1" + "@polkadot/wasm-crypto-asmjs": "npm:7.4.1" + "@polkadot/wasm-crypto-init": "npm:7.4.1" + "@polkadot/wasm-crypto-wasm": "npm:7.4.1" + "@polkadot/wasm-util": "npm:7.4.1" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" "@polkadot/x-randomvalues": "*" - checksum: 10c0/ff3ef6a2a4dcbbdeb257e7a42f906f1bb7e31292600482c1acf9267406011ea75bd9d3d6ceaf4c011f986e25a2416768775ee59ccc7dbfa6c529b11b8ea91eb4 + checksum: 10c0/b896f88ebf6b6864263b9042a14b6e5ef7371e47e56c6f1c297472f6d24b40645ee4e9abed5d32bfd95de4797811cb109c44da6064dd2509db3ce05a53fe2d72 languageName: node linkType: hard -"@polkadot/wasm-util@npm:7.3.2, @polkadot/wasm-util@npm:^7.3.2": - version: 7.3.2 - resolution: "@polkadot/wasm-util@npm:7.3.2" +"@polkadot/wasm-util@npm:7.4.1, @polkadot/wasm-util@npm:^7.3.2, @polkadot/wasm-util@npm:^7.4.1": + version: 7.4.1 + resolution: "@polkadot/wasm-util@npm:7.4.1" dependencies: - tslib: "npm:^2.6.2" + tslib: "npm:^2.7.0" peerDependencies: "@polkadot/util": "*" - checksum: 10c0/58ef58d357e7983c3bb4008b0159262d5c588234d7be64155c031f452fc0daeb078ff0ac8bb4b0377dac307130b0b548c01fd466968869ed308d50e2c162d23b + checksum: 10c0/4e7042f854350a7e0c978d816abc3a8e37adcd6e8a5a35a4893928e79ecc0950fc4073993ad813ad8edd2c5fa6f603a5395018d19c44b8a338f52974747c3a9c languageName: node linkType: hard @@ -2379,13 +2329,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-bigint@npm:13.1.1, @polkadot/x-bigint@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-bigint@npm:13.1.1" +"@polkadot/x-bigint@npm:13.2.2, @polkadot/x-bigint@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-bigint@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/8df11029c9956d38bd6005f1d85cf4c4d67058fdff14f534e487dc30c43003e35f4e89dc102501c216806446ec6f40615dba4bf957a484b8ede78c398bec7568 + "@polkadot/x-global": "npm:13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/5e793b1870c18e631965500693751bf49e7e4fdd0028f93a380fbdeb78d9faaadfb1742af6a52e1faf7943c2fa35bbb2fe1988a43c42a11a87260195311932e9 languageName: node linkType: hard @@ -2400,14 +2350,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-fetch@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-fetch@npm:13.1.1" +"@polkadot/x-fetch@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-fetch@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" + "@polkadot/x-global": "npm:13.2.2" node-fetch: "npm:^3.3.2" - tslib: "npm:^2.7.0" - checksum: 10c0/e6a5ad72f4f2ba9b204ba124ae2ec7b23b03ec0a857037fcd2221e465b3034b8ad48229cb78598ea955d6ea0be5126f0b1a63aad7b5fea2fb632aebcc7971ad2 + tslib: "npm:^2.8.0" + checksum: 10c0/e3004168629e899e633973bb6e0dfcaf0498c1cdf16649dfbaa59b8579da7f1f56df186289d51b717b086885126121a422442f986910473db2df241c7ef91f87 languageName: node linkType: hard @@ -2420,12 +2370,12 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-global@npm:13.1.1, @polkadot/x-global@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-global@npm:13.1.1" +"@polkadot/x-global@npm:13.2.2, @polkadot/x-global@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-global@npm:13.2.2" dependencies: - tslib: "npm:^2.7.0" - checksum: 10c0/07a69f24a94c6bd8934dc39f52dee620f9a0cbac368f0a8e6b5e4637f8e90ba48e110fa4cf8ac1d6b8e80f4acd41af8be5c493d89abe7fe29c0523d7aac3eefb + tslib: "npm:^2.8.0" + checksum: 10c0/8129a33319be3f48e7cd540324e97f6108799ef2aeb026157bfd313fbf22146f3a2ebefd1d8dfa1fbc57987d2157a3169a33b5cbb4f26f9abf49765bbb1874fe languageName: node linkType: hard @@ -2442,16 +2392,16 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-randomvalues@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-randomvalues@npm:13.1.1" +"@polkadot/x-randomvalues@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-randomvalues@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" - tslib: "npm:^2.7.0" + "@polkadot/x-global": "npm:13.2.2" + tslib: "npm:^2.8.0" peerDependencies: - "@polkadot/util": 13.1.1 + "@polkadot/util": 13.2.2 "@polkadot/wasm-util": "*" - checksum: 10c0/425512c16d66fa9e8badcb14305b1547c11f38dbe3640c3e8fe6f5504baed80764398df783322c92d2a7e53b568414898f28917606f346a30b6ee4a9dcb97628 + checksum: 10c0/383636261de6c2986302a8bd65e610826dba1e72cb15623af10c513c003f4eabd235396abc5e7e3dc3799d026204f7dc2a752945f0eef020029a005c6716715d languageName: node linkType: hard @@ -2465,13 +2415,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textdecoder@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-textdecoder@npm:13.1.1" +"@polkadot/x-textdecoder@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-textdecoder@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/bc9671db97ace14383b27de22f301d3b5621aedc74d7ebb4c723eed3b74b952850b697be50b09b8456eed6196edec71b324aa6d1dd3558515fe639a51bcc52d2 + "@polkadot/x-global": "npm:13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/4f0fbfb6a575b0c77831fd4602d36f84367fc20247882a1bd7ff1f327c38a9c8c17f6ad151930ee0a4687698e4411960546b7b54772bd4de7d215edc9dbdf192 languageName: node linkType: hard @@ -2485,13 +2435,13 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-textencoder@npm:13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-textencoder@npm:13.1.1" +"@polkadot/x-textencoder@npm:13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-textencoder@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" - tslib: "npm:^2.7.0" - checksum: 10c0/819d9dc729a8d635c0269f5a2b8dbec1350c766040946ea750f4df872e9d4be397be74e3ad5d425f3d6df51eff021a7a86966223f4c58694c0bdeadf741312a6 + "@polkadot/x-global": "npm:13.2.2" + tslib: "npm:^2.8.0" + checksum: 10c0/ce3e6b2b2fb4a5225629f4cbbeba3d71cd38f35f4b4c26e5a0725b23b91c8a085f94da73d22b4b338a6a4f6d3336c49122cdf69b761a32d528ac1d93862fa396 languageName: node linkType: hard @@ -2506,14 +2456,14 @@ __metadata: languageName: node linkType: hard -"@polkadot/x-ws@npm:^13.1.1": - version: 13.1.1 - resolution: "@polkadot/x-ws@npm:13.1.1" +"@polkadot/x-ws@npm:^13.2.2": + version: 13.2.2 + resolution: "@polkadot/x-ws@npm:13.2.2" dependencies: - "@polkadot/x-global": "npm:13.1.1" - tslib: "npm:^2.7.0" - ws: "npm:^8.16.0" - checksum: 10c0/6d485fb62218beee0ea38e3dc275385ad9fa64677f451833447a5e54bbf70c3827e5a4d4e7d9531988109e8f1760437f854c7cb19e2df488f35b4c20bf8a6b1e + "@polkadot/x-global": "npm:13.2.2" + tslib: "npm:^2.8.0" + ws: "npm:^8.18.0" + checksum: 10c0/2357628b0c71a4298c79f46c424e62ba3b80e160466aac772265071439b443f440390f5d393775bfe949ee7c4ea840a4197df4187fceddc71e9d8fa95b4c3d44 languageName: node linkType: hard @@ -2550,10 +2500,10 @@ __metadata: languageName: node linkType: hard -"@remix-run/router@npm:1.19.2": - version: 1.19.2 - resolution: "@remix-run/router@npm:1.19.2" - checksum: 10c0/ac7fc813350686705f2c29219e70e1e299d9a8e3b301e9e81f7e84f578c40c6462b590cf0d78863bac40dbc325b68c71ae070f4a1465793d1d1971b619618295 +"@remix-run/router@npm:1.20.0": + version: 1.20.0 + resolution: "@remix-run/router@npm:1.20.0" + checksum: 10c0/2e017dea530717a6e93a16d478714c4c9165313a1c48e39172ec609bc20324ca6362e8ee2243602df6343644c9268d82a3f50f154d3bb8a17dddde6c37be6e83 languageName: node linkType: hard @@ -2603,130 +2553,144 @@ __metadata: languageName: node linkType: hard -"@rollup/pluginutils@npm:^5.0.5": - version: 5.1.2 - resolution: "@rollup/pluginutils@npm:5.1.2" +"@rollup/pluginutils@npm:^5.1.3": + version: 5.1.3 + resolution: "@rollup/pluginutils@npm:5.1.3" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" - picomatch: "npm:^2.3.1" + picomatch: "npm:^4.0.2" peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - checksum: 10c0/30f4a98e91a8699b6666b64ecdc665439bd53dddbe964bbeca56da81ff889cfde3a3e059144b80c5a2d9b48aa158df18a45e9a847a33b757d3e8336b278b8836 + checksum: 10c0/ba46ad588733fb01d184ee3bc7a127d626158bc840b5874a94c129ff62689d12f16f537530709c54da6f3b71f67d705c4e09235b1dc9542e9d47ee8f2d0b8b9e languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.0" +"@rollup/rollup-android-arm-eabi@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.3" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-android-arm64@npm:4.24.0" +"@rollup/rollup-android-arm64@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-android-arm64@npm:4.24.3" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.24.0" +"@rollup/rollup-darwin-arm64@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-darwin-arm64@npm:4.24.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.24.0" +"@rollup/rollup-darwin-x64@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-darwin-x64@npm:4.24.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.0" +"@rollup/rollup-freebsd-arm64@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.3" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-freebsd-x64@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-freebsd-x64@npm:4.24.3" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.3" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.0" +"@rollup/rollup-linux-arm-musleabihf@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.3" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.0" +"@rollup/rollup-linux-arm64-gnu@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.3" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.0" +"@rollup/rollup-linux-arm64-musl@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.3" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.3" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.0" +"@rollup/rollup-linux-riscv64-gnu@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.3" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.0" +"@rollup/rollup-linux-s390x-gnu@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.3" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.0" +"@rollup/rollup-linux-x64-gnu@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.3" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.0" +"@rollup/rollup-linux-x64-musl@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.3" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.0" +"@rollup/rollup-win32-arm64-msvc@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.0" +"@rollup/rollup-win32-ia32-msvc@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.24.0": - version: 4.24.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.0" +"@rollup/rollup-win32-x64-msvc@npm:4.24.3": + version: 4.24.3 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -2998,17 +2962,17 @@ __metadata: languageName: node linkType: hard -"@substrate/connect-extension-protocol@npm:^2.0.0, @substrate/connect-extension-protocol@npm:^2.1.0": - version: 2.1.0 - resolution: "@substrate/connect-extension-protocol@npm:2.1.0" - checksum: 10c0/950898136d591fadf4086b040357cbb5f28fbd4b069df48fba2d78eda09025c52cb9c8766d8bad278e9b26431500cc570bc7afa242d43ffbf86405b4d820eaf3 +"@substrate/connect-extension-protocol@npm:^2.0.0, @substrate/connect-extension-protocol@npm:^2.2.0": + version: 2.2.0 + resolution: "@substrate/connect-extension-protocol@npm:2.2.0" + checksum: 10c0/ab3a76adc233376e511b6c585ebe3bbac6ef6d7d3ccaf06fb13f19b88207341f22590c6e6ccda5f404e952291e2d8651328ab5fe1eac03a5ac8049b56d9f096c languageName: node linkType: hard -"@substrate/connect-known-chains@npm:^1.1.1, @substrate/connect-known-chains@npm:^1.1.5, @substrate/connect-known-chains@npm:^1.4.1": - version: 1.4.1 - resolution: "@substrate/connect-known-chains@npm:1.4.1" - checksum: 10c0/fbfe7e7af93bbf5209332e059b54baa71f63a2cc05c4f4dd9f010862e4b36e46de73585f90b9d1c07b8ddd60ef75cecab0fc9e43faeec034976195e9a02f23ab +"@substrate/connect-known-chains@npm:^1.1.1, @substrate/connect-known-chains@npm:^1.1.5, @substrate/connect-known-chains@npm:^1.6.0": + version: 1.6.0 + resolution: "@substrate/connect-known-chains@npm:1.6.0" + checksum: 10c0/4ddf3c06d08bbfedf8e0c2e183a236656cb3411e373b8abf90601bfca1f066565734188f9b2731ace4a4810edfe26e64e32d212be0af54cc5a6b9913768bb89b languageName: node linkType: hard @@ -3037,21 +3001,21 @@ __metadata: linkType: hard "@substrate/connect@npm:^1.1.0": - version: 1.2.1 - resolution: "@substrate/connect@npm:1.2.1" + version: 1.3.1 + resolution: "@substrate/connect@npm:1.3.1" dependencies: - "@substrate/connect-extension-protocol": "npm:^2.1.0" - "@substrate/connect-known-chains": "npm:^1.4.1" - "@substrate/smoldot-discovery": "npm:^1.1.0" + "@substrate/connect-extension-protocol": "npm:^2.2.0" + "@substrate/connect-known-chains": "npm:^1.6.0" + "@substrate/smoldot-discovery": "npm:^1.2.0" smoldot: "npm:2.0.30" - checksum: 10c0/a00f496cb910464744c4e6602bbbeb2854897b5a33df9571957cf99c377fadeac10a14b503d31367fff562b49183f72e8537c7e4e8222258c59e6e6314c2e814 + checksum: 10c0/4103ff6d8b42bdcce9156743d1ec29d04bf2ce1de1e524b5ee9266d15d985aca41f683ad01a9b39c11f5a439d68d36e2d3d13968edd477357f3cfd92876abd7b languageName: node linkType: hard -"@substrate/discovery@npm:^0.1.0": - version: 0.1.0 - resolution: "@substrate/discovery@npm:0.1.0" - checksum: 10c0/aafdfaadba22130966ac42c04bbb457b85bc1606c86dea6a4218142791387939fd1f10544b07ecd4845eb504bbec423e9ab67fef8a707ced6a1c5ce5d73d755b +"@substrate/discovery@npm:^0.2.0": + version: 0.2.0 + resolution: "@substrate/discovery@npm:0.2.0" + checksum: 10c0/7b258764022f1522d1cb7eb06bf0366a610580de05f740c6c92745814b209bf4c3ad52cf27a433fca1665cf54dbec892c29bd7fd9fa49e2c68634d82431f1fbf languageName: node linkType: hard @@ -3089,19 +3053,19 @@ __metadata: languageName: node linkType: hard -"@substrate/smoldot-discovery@npm:^1.1.0": - version: 1.1.0 - resolution: "@substrate/smoldot-discovery@npm:1.1.0" +"@substrate/smoldot-discovery@npm:^1.2.0": + version: 1.2.0 + resolution: "@substrate/smoldot-discovery@npm:1.2.0" dependencies: - "@substrate/discovery": "npm:^0.1.0" - checksum: 10c0/d30382c0882a04f23495a600fb9514e3402eca56945b5a30218757053e5e78da3de19cddd154b4410daf7bafa7a61ac5e6ec607848692f8d9b09e0fc0f0ef2af + "@substrate/discovery": "npm:^0.2.0" + checksum: 10c0/4ce1db4ddc2d90bfefd692956539681199612102dd2bb836697c6eb64cd0c1a22e311ca37eae774fcbb8d5442cd5b370f8bba7e34f44963db687f10d7ec0bdd9 languageName: node linkType: hard -"@substrate/ss58-registry@npm:^1.44.0, @substrate/ss58-registry@npm:^1.50.0": - version: 1.50.0 - resolution: "@substrate/ss58-registry@npm:1.50.0" - checksum: 10c0/49178248445d88b2f06f6e45e7890bd292f91b9d5d6bfa2788f27b5d9e3a08d3f18462440ea905b2fe7fa60dafb690d40ce1f549929bdbbe48562be622748717 +"@substrate/ss58-registry@npm:^1.44.0, @substrate/ss58-registry@npm:^1.51.0": + version: 1.51.0 + resolution: "@substrate/ss58-registry@npm:1.51.0" + checksum: 10c0/f568ea2a5011ee1c288e577d23dd48a6ba0dc0db3611f268b1c35f41636b8ec39ae09fe0184f88d411e331b60d924e90054be736b1ff624cdcb9b742c94a9bf6 languageName: node linkType: hard @@ -3232,92 +3196,92 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-darwin-arm64@npm:1.7.28" +"@swc/core-darwin-arm64@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-darwin-arm64@npm:1.7.42" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-darwin-x64@npm:1.7.28" +"@swc/core-darwin-x64@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-darwin-x64@npm:1.7.42" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.7.28" +"@swc/core-linux-arm-gnueabihf@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.7.42" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-linux-arm64-gnu@npm:1.7.28" +"@swc/core-linux-arm64-gnu@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-linux-arm64-gnu@npm:1.7.42" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-linux-arm64-musl@npm:1.7.28" +"@swc/core-linux-arm64-musl@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-linux-arm64-musl@npm:1.7.42" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-linux-x64-gnu@npm:1.7.28" +"@swc/core-linux-x64-gnu@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-linux-x64-gnu@npm:1.7.42" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-linux-x64-musl@npm:1.7.28" +"@swc/core-linux-x64-musl@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-linux-x64-musl@npm:1.7.42" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-win32-arm64-msvc@npm:1.7.28" +"@swc/core-win32-arm64-msvc@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-win32-arm64-msvc@npm:1.7.42" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-win32-ia32-msvc@npm:1.7.28" +"@swc/core-win32-ia32-msvc@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-win32-ia32-msvc@npm:1.7.42" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.7.28": - version: 1.7.28 - resolution: "@swc/core-win32-x64-msvc@npm:1.7.28" +"@swc/core-win32-x64-msvc@npm:1.7.42": + version: 1.7.42 + resolution: "@swc/core-win32-x64-msvc@npm:1.7.42" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.7.26": - version: 1.7.28 - resolution: "@swc/core@npm:1.7.28" - dependencies: - "@swc/core-darwin-arm64": "npm:1.7.28" - "@swc/core-darwin-x64": "npm:1.7.28" - "@swc/core-linux-arm-gnueabihf": "npm:1.7.28" - "@swc/core-linux-arm64-gnu": "npm:1.7.28" - "@swc/core-linux-arm64-musl": "npm:1.7.28" - "@swc/core-linux-x64-gnu": "npm:1.7.28" - "@swc/core-linux-x64-musl": "npm:1.7.28" - "@swc/core-win32-arm64-msvc": "npm:1.7.28" - "@swc/core-win32-ia32-msvc": "npm:1.7.28" - "@swc/core-win32-x64-msvc": "npm:1.7.28" + version: 1.7.42 + resolution: "@swc/core@npm:1.7.42" + dependencies: + "@swc/core-darwin-arm64": "npm:1.7.42" + "@swc/core-darwin-x64": "npm:1.7.42" + "@swc/core-linux-arm-gnueabihf": "npm:1.7.42" + "@swc/core-linux-arm64-gnu": "npm:1.7.42" + "@swc/core-linux-arm64-musl": "npm:1.7.42" + "@swc/core-linux-x64-gnu": "npm:1.7.42" + "@swc/core-linux-x64-musl": "npm:1.7.42" + "@swc/core-win32-arm64-msvc": "npm:1.7.42" + "@swc/core-win32-ia32-msvc": "npm:1.7.42" + "@swc/core-win32-x64-msvc": "npm:1.7.42" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.12" + "@swc/types": "npm:^0.1.13" peerDependencies: "@swc/helpers": "*" dependenciesMeta: @@ -3344,7 +3308,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10c0/e7a5764fe9c476b606b3c68e9bfcb1945a2a1576458176dbd93edd06bd57e3e0837a119c21162904fa2b0c3f5c3a7049d77b52c4f793e0d4f4f345ba959c5456 + checksum: 10c0/bf5e242ad4098b5f02c084460fdaac486b420fb3b2ee8e96271e471c100ac6f446cc27c3840eed106130be149e20c8165df23ba5fe1a89364650c07aaa507177 languageName: node linkType: hard @@ -3355,7 +3319,7 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.12": +"@swc/types@npm:^0.1.13": version: 0.1.13 resolution: "@swc/types@npm:0.1.13" dependencies: @@ -3364,7 +3328,7 @@ __metadata: languageName: node linkType: hard -"@types/bn.js@npm:^5.1.5": +"@types/bn.js@npm:^5.1.5, @types/bn.js@npm:^5.1.6": version: 5.1.6 resolution: "@types/bn.js@npm:5.1.6" dependencies: @@ -3429,19 +3393,10 @@ __metadata: languageName: node linkType: hard -"@types/lodash.throttle@npm:^4.1.9": - version: 4.1.9 - resolution: "@types/lodash.throttle@npm:4.1.9" - dependencies: - "@types/lodash": "npm:*" - checksum: 10c0/93f7096dcaea8f54a4f52d5175d97a471f155f5bae4649c967cc29bcae506a456476d13b4392361799b31c3b96659560e1bbfddf00f550a50c685f6c037411a6 - languageName: node - linkType: hard - "@types/lodash@npm:*": - version: 4.17.10 - resolution: "@types/lodash@npm:4.17.10" - checksum: 10c0/149b2b9fcc277204393423ed14df28894980c2322ec522fc23f2c6f7edef6ee8d876ee09ed4520f45d128adc0a7a6e618bb0017668349716cd99c6ef54a21621 + version: 4.17.13 + resolution: "@types/lodash@npm:4.17.13" + checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9 languageName: node linkType: hard @@ -3453,11 +3408,11 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 22.7.4 - resolution: "@types/node@npm:22.7.4" + version: 22.8.6 + resolution: "@types/node@npm:22.8.6" dependencies: - undici-types: "npm:~6.19.2" - checksum: 10c0/c22bf54515c78ff3170142c1e718b90e2a0003419dc2d55f79c9c9362edd590a6ab1450deb09ff6e1b32d1b4698da407930b16285e8be3a009ea6cd2695cac01 + undici-types: "npm:~6.19.8" + checksum: 10c0/d3a11f2549234a91a4c5d0ff35ab4bdcb7ba34db4d3f1d189be39b8bd41c19aac98d117150a95a9c5a9d45b1014135477ea240b2b8317c86ae3d3cf1c3b3f8f4 languageName: node linkType: hard @@ -3469,11 +3424,11 @@ __metadata: linkType: hard "@types/react-dom@npm:^18.2.25": - version: 18.3.0 - resolution: "@types/react-dom@npm:18.3.0" + version: 18.3.1 + resolution: "@types/react-dom@npm:18.3.1" dependencies: "@types/react": "npm:*" - checksum: 10c0/6c90d2ed72c5a0e440d2c75d99287e4b5df3e7b011838cdc03ae5cd518ab52164d86990e73246b9d812eaf02ec351d74e3b4f5bd325bf341e13bf980392fd53b + checksum: 10c0/8b416551c60bb6bd8ec10e198c957910cfb271bc3922463040b0d57cf4739cdcd24b13224f8d68f10318926e1ec3cd69af0af79f0291b599a992f8c80d47f1eb languageName: node linkType: hard @@ -3496,12 +3451,12 @@ __metadata: linkType: hard "@types/react@npm:*, @types/react@npm:^18.3.3": - version: 18.3.11 - resolution: "@types/react@npm:18.3.11" + version: 18.3.12 + resolution: "@types/react@npm:18.3.12" dependencies: "@types/prop-types": "npm:*" csstype: "npm:^3.0.2" - checksum: 10c0/ce80512246ca5bda69db85b9f4f1835189334acfb6b2c4f3eda8cabff1ff1a3ea9ce4f3b895bdbc18c94140aa45592331aa3fdeb557f525c1b048de7ce84fc0e + checksum: 10c0/8bae8d9a41619804561574792e29112b413044eb0d53746dde2b9720c1f9a59f71c895bbd7987cd8ce9500b00786e53bc032dced38cddf42910458e145675290 languageName: node linkType: hard @@ -3718,21 +3673,21 @@ __metadata: languageName: node linkType: hard -"@w3ux/hooks@npm:^1.1.0": - version: 1.1.0 - resolution: "@w3ux/hooks@npm:1.1.0" +"@w3ux/hooks@npm:1.2.1-beta.0": + version: 1.2.1-beta.0 + resolution: "@w3ux/hooks@npm:1.2.1-beta.0" peerDependencies: react: ^18 - checksum: 10c0/7889411294f9b33c2f43bdf7ac174e483ebfc6f415a866ed3ed4f31f8d0196704248f04d20915a0168412bff64d3a14439d0a97fa96cb07c6ac7b8985bcdf7af + checksum: 10c0/d9abedf6a2508bb7b321d0b5c69c015481122939cc2bc39e44030f3b8a5f99b7d432e0ce38dc273d4614cceb711882fd60b7823836c099aaa895758dc48c7de7 languageName: node linkType: hard -"@w3ux/hooks@npm:^1.1.1": - version: 1.1.1 - resolution: "@w3ux/hooks@npm:1.1.1" +"@w3ux/hooks@npm:^1.1.0": + version: 1.2.0 + resolution: "@w3ux/hooks@npm:1.2.0" peerDependencies: react: ^18 - checksum: 10c0/abd315cd4cd5cb45f5dd73d1d661e82de64230d0c9b167d5cb64c768044efc9a52c7a2fe0a88cc951072b2295835738fae05abd1a8f9ac2e07cb811dba184375 + checksum: 10c0/bd8163cb95a722864274dee3b81f49b64b7f2432ec8d13cb8b91f5757c56d889b02f105d0e65cbfa146b6f3e8817d6649d5dfcd903d5ba4985bb900d44de9dee languageName: node linkType: hard @@ -3775,23 +3730,23 @@ __metadata: languageName: node linkType: hard -"@w3ux/utils@npm:1.0.1": - version: 1.0.1 - resolution: "@w3ux/utils@npm:1.0.1" - dependencies: - "@polkadot-api/substrate-bindings": "npm:^0.9.3" - checksum: 10c0/99ec531fca18b53eaaa1f3979f48049f2cdef77b7a3c2eac0626d6fbd67e287057c1feba2832022b3167ff01792ab590421d7b148cc9d42d72984c53994cf67e - languageName: node - linkType: hard - "@w3ux/utils@npm:^0.9.0": - version: 0.9.0 - resolution: "@w3ux/utils@npm:0.9.0" + version: 0.9.1 + resolution: "@w3ux/utils@npm:0.9.1" dependencies: "@polkadot/util": "npm:^13.1.1" "@polkadot/util-crypto": "npm:^13.1.1" bignumber.js: "npm:^9.1.1" - checksum: 10c0/f2ffaabce464abfcd76608aafbbe7b342f69b618cac1b968be33db17860f4e55c5b7d6306183fc84a674ae191238950fe135e164cd80669d78c4b57320fe45ba + checksum: 10c0/624ca3fd80cd5a0ed16b28342b41d643cc1aac7dbe68e00f3c4a9e460da21ac28d09e86582aad7c642e5907069c4544705c3bc638d836625916694e21774861c + languageName: node + linkType: hard + +"@w3ux/utils@npm:^1.1.0": + version: 1.1.0 + resolution: "@w3ux/utils@npm:1.1.0" + dependencies: + "@polkadot-api/substrate-bindings": "npm:^0.9.3" + checksum: 10c0/98edea2d49ee40b3735a62d2f239b203d2bcfa643db5ddb9424c013dfb175afa940dc0c2752daace04e171d39db0a5e55c0f5674ac526918ead132a5878188dc languageName: node linkType: hard @@ -4231,12 +4186,12 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.11.0, acorn@npm:^8.11.3, acorn@npm:^8.9.0": - version: 8.12.1 - resolution: "acorn@npm:8.12.1" +"acorn@npm:^8.11.0, acorn@npm:^8.12.1, acorn@npm:^8.9.0": + version: 8.14.0 + resolution: "acorn@npm:8.14.0" bin: acorn: bin/acorn - checksum: 10c0/51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386 + checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 languageName: node linkType: hard @@ -4294,15 +4249,6 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: "npm:^1.9.0" - checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b - languageName: node - linkType: hard - "ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": version: 4.3.0 resolution: "ansi-styles@npm:4.3.0" @@ -4610,16 +4556,16 @@ __metadata: linkType: hard "browserslist@npm:^4.24.0": - version: 4.24.0 - resolution: "browserslist@npm:4.24.0" + version: 4.24.2 + resolution: "browserslist@npm:4.24.2" dependencies: - caniuse-lite: "npm:^1.0.30001663" - electron-to-chromium: "npm:^1.5.28" + caniuse-lite: "npm:^1.0.30001669" + electron-to-chromium: "npm:^1.5.41" node-releases: "npm:^2.0.18" - update-browserslist-db: "npm:^1.1.0" + update-browserslist-db: "npm:^1.1.1" bin: browserslist: cli.js - checksum: 10c0/95e76ad522753c4c470427f6e3c8a4bb5478ff448841e22b3d3e53f89ecaf17b6984666d6c7e715c370f1e7fa0cf684f42e34e554236a8b2fab38ea76b9e4c52 + checksum: 10c0/d747c9fb65ed7b4f1abcae4959405707ed9a7b835639f8a9ba0da2911995a6ab9b0648fd05baf2a4d4e3cf7f9fdbad56d3753f91881e365992c1d49c8d88ff7a languageName: node linkType: hard @@ -4711,10 +4657,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001663": - version: 1.0.30001666 - resolution: "caniuse-lite@npm:1.0.30001666" - checksum: 10c0/2d49e9be676233c24717f12aad3d01b3e5f902b457fe1deefaa8d82e64786788a8f79381ae437c61b50e15c9aea8aeb59871b1d54cb4c28b9190d53d292e2339 +"caniuse-lite@npm:^1.0.30001669": + version: 1.0.30001676 + resolution: "caniuse-lite@npm:1.0.30001676" + checksum: 10c0/53d310d76b5282947c99638a65d7534ac28a80aae1920de085a616ec8ad603358fad67cebacfc0452b1efdea12cce24fd37a50a712d074986b4962110e87d82b languageName: node linkType: hard @@ -4750,17 +4696,6 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^2.4.2": - version: 2.4.2 - resolution: "chalk@npm:2.4.2" - dependencies: - ansi-styles: "npm:^3.2.1" - escape-string-regexp: "npm:^1.0.5" - supports-color: "npm:^5.3.0" - checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 - languageName: node - linkType: hard - "chalk@npm:^4.0.0, chalk@npm:^4.1.1": version: 4.1.2 resolution: "chalk@npm:4.1.2" @@ -4772,11 +4707,11 @@ __metadata: linkType: hard "chart.js@npm:^4.4.4": - version: 4.4.4 - resolution: "chart.js@npm:4.4.4" + version: 4.4.6 + resolution: "chart.js@npm:4.4.6" dependencies: "@kurkle/color": "npm:^0.3.0" - checksum: 10c0/9fa3206403a6103916f7762c2665d322c42b0cc07fba91526b1d033ddb887c1ba74b3ebc0bd0748a9e55abd1017f25fdb2292cdd6579d8c2d3bcb1c58f71281c + checksum: 10c0/456d16a030c35fa16182945e91d4fdd89510343454309b783f5e060ea89baaed3bc9b43d2d9b3acadd385e5921718e27ed2fcae8b5efa277d27bc4da4af639f2 languageName: node linkType: hard @@ -4816,9 +4751,9 @@ __metadata: linkType: hard "chroma-js@npm:^3.1.1": - version: 3.1.1 - resolution: "chroma-js@npm:3.1.1" - checksum: 10c0/fb5e3cd958a954b8cd44017f70aff42ae37bc561cdcea0ebeeb6d2df5989e7402e02c674274af2eefd1478ee172e05ce51ac353e3cbe1db139f599b338523339 + version: 3.1.2 + resolution: "chroma-js@npm:3.1.2" + checksum: 10c0/145ce9aea91dac81c6158082675084778e8c83e6959032e37fd4ba9b01db9f5c29c520453ec4bab7e87689f12756fcc63821e3c6b866e083ea41d341c7b2bf71 languageName: node linkType: hard @@ -4885,15 +4820,6 @@ __metadata: languageName: node linkType: hard -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: "npm:1.1.3" - checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c - languageName: node - linkType: hard - "color-convert@npm:^2.0.1": version: 2.0.1 resolution: "color-convert@npm:2.0.1" @@ -4903,13 +4829,6 @@ __metadata: languageName: node linkType: hard -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 - languageName: node - linkType: hard - "color-name@npm:^1.0.0, color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" @@ -4967,10 +4886,10 @@ __metadata: languageName: node linkType: hard -"confbox@npm:^0.1.7": - version: 0.1.7 - resolution: "confbox@npm:0.1.7" - checksum: 10c0/18b40c2f652196a833f3f1a5db2326a8a579cd14eacabfe637e4fc8cb9b68d7cf296139a38c5e7c688ce5041bf46f9adce05932d43fde44cf7e012840b5da111 +"confbox@npm:^0.1.8": + version: 0.1.8 + resolution: "confbox@npm:0.1.8" + checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418 languageName: node linkType: hard @@ -5360,10 +5279,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.28": - version: 1.5.31 - resolution: "electron-to-chromium@npm:1.5.31" - checksum: 10c0/e8aecd88c4c6d50a9d459b4b222865b855bab8f1b52e82913804e18b7884f2887bd76c61b3aa08c2ccbdcda098dd8486443f75bf770f0138f21dd9e63548fca7 +"electron-to-chromium@npm:^1.5.41": + version: 1.5.50 + resolution: "electron-to-chromium@npm:1.5.50" + checksum: 10c0/8b77b18ae833bfe2173e346ac33b8d66b5b5acf0cf5de65df9799f4d482334c938aa0950e4d01391d5fab8994f46c0e9059f4517843e7b8d861f9b0c49eb4c5d languageName: node linkType: hard @@ -5560,9 +5479,9 @@ __metadata: languageName: node linkType: hard -"es-iterator-helpers@npm:^1.0.19": - version: 1.0.19 - resolution: "es-iterator-helpers@npm:1.0.19" +"es-iterator-helpers@npm:^1.1.0": + version: 1.1.0 + resolution: "es-iterator-helpers@npm:1.1.0" dependencies: call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" @@ -5571,14 +5490,14 @@ __metadata: es-set-tostringtag: "npm:^2.0.3" function-bind: "npm:^1.1.2" get-intrinsic: "npm:^1.2.4" - globalthis: "npm:^1.0.3" + globalthis: "npm:^1.0.4" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.0.3" has-symbols: "npm:^1.0.3" internal-slot: "npm:^1.0.7" - iterator.prototype: "npm:^1.1.2" + iterator.prototype: "npm:^1.1.3" safe-array-concat: "npm:^1.1.2" - checksum: 10c0/ae8f0241e383b3d197383b9842c48def7fce0255fb6ed049311b686ce295595d9e389b466f6a1b7d4e7bb92d82f5e716d6fae55e20c1040249bf976743b038c5 + checksum: 10c0/84d6c240c7da6e62323b336cb1497781546dab16bebdbd879ccfdf588979712d3e941d41165b6c2ffce5a03a7b929d4e6131d3124d330da1a0e2bfa1da7cd99f languageName: node linkType: hard @@ -5716,13 +5635,6 @@ __metadata: languageName: node linkType: hard -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 - languageName: node - linkType: hard - "escape-string-regexp@npm:^4.0.0": version: 4.0.0 resolution: "escape-string-regexp@npm:4.0.0" @@ -5777,7 +5689,7 @@ __metadata: languageName: node linkType: hard -"eslint-module-utils@npm:^2.8.1, eslint-module-utils@npm:^2.9.0": +"eslint-module-utils@npm:^2.12.0, eslint-module-utils@npm:^2.8.1": version: 2.12.0 resolution: "eslint-module-utils@npm:2.12.0" dependencies: @@ -5790,8 +5702,8 @@ __metadata: linkType: hard "eslint-plugin-import@npm:^2.29.1": - version: 2.30.0 - resolution: "eslint-plugin-import@npm:2.30.0" + version: 2.31.0 + resolution: "eslint-plugin-import@npm:2.31.0" dependencies: "@rtsao/scc": "npm:^1.1.0" array-includes: "npm:^3.1.8" @@ -5801,7 +5713,7 @@ __metadata: debug: "npm:^3.2.7" doctrine: "npm:^2.1.0" eslint-import-resolver-node: "npm:^0.3.9" - eslint-module-utils: "npm:^2.9.0" + eslint-module-utils: "npm:^2.12.0" hasown: "npm:^2.0.2" is-core-module: "npm:^2.15.1" is-glob: "npm:^4.0.3" @@ -5810,10 +5722,11 @@ __metadata: object.groupby: "npm:^1.0.3" object.values: "npm:^1.2.0" semver: "npm:^6.3.1" + string.prototype.trimend: "npm:^1.0.8" tsconfig-paths: "npm:^3.15.0" peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: 10c0/4c9dcb1f27505c4d5dd891d2b551f56c70786d136aa3992a77e785bdc67c9f60200a2c7fb0ce55b7647fe550b12bc433d5dfa59e2c00ab44227791c5ab86badf + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + checksum: 10c0/e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a languageName: node linkType: hard @@ -5865,15 +5778,15 @@ __metadata: linkType: hard "eslint-plugin-react@npm:^7.34.2": - version: 7.37.1 - resolution: "eslint-plugin-react@npm:7.37.1" + version: 7.37.2 + resolution: "eslint-plugin-react@npm:7.37.2" dependencies: array-includes: "npm:^3.1.8" array.prototype.findlast: "npm:^1.2.5" array.prototype.flatmap: "npm:^1.3.2" array.prototype.tosorted: "npm:^1.1.4" doctrine: "npm:^2.1.0" - es-iterator-helpers: "npm:^1.0.19" + es-iterator-helpers: "npm:^1.1.0" estraverse: "npm:^5.3.0" hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" @@ -5888,7 +5801,7 @@ __metadata: string.prototype.repeat: "npm:^1.0.0" peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 - checksum: 10c0/13cf55666f16d2ca45b14aad1b0e14741d1817679c86d20aff0bc1e802439a8541f40a42c4c8e3486ffb710f1bcc2f3e56697f2b5f724306a7fca174e1ad6433 + checksum: 10c0/01c498f263c201698bf653973760f86a07fa0cdec56c044f3eaa5ddaae71c64326015dfa5fde76ca8c5386ffe789fc79932624b614e13b6a1ad789fee3f7c491 languageName: node linkType: hard @@ -5924,7 +5837,7 @@ __metadata: languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": +"eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 @@ -6331,13 +6244,13 @@ __metadata: linkType: hard "form-data@npm:^4.0.0": - version: 4.0.0 - resolution: "form-data@npm:4.0.0" + version: 4.0.1 + resolution: "form-data@npm:4.0.1" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" mime-types: "npm:^2.1.12" - checksum: 10c0/cb6f3ac49180be03ff07ba3ff125f9eba2ff0b277fb33c7fc47569fc5e616882c5b1c69b9904c4c4187e97dd0419dd03b134174756f296dec62041e6527e2c6e + checksum: 10c0/bb102d570be8592c23f4ea72d7df9daa50c7792eb0cf1c5d7e506c1706e7426a4e4ae48a35b109e91c85f1c0ec63774a21ae252b66f4eb981cb8efef7d0463c8 languageName: node linkType: hard @@ -6350,29 +6263,9 @@ __metadata: languageName: node linkType: hard -"framer-motion@npm:^11.11.1": - version: 11.11.1 - resolution: "framer-motion@npm:11.11.1" - dependencies: - tslib: "npm:^2.4.0" - peerDependencies: - "@emotion/is-prop-valid": "*" - react: ^18.0.0 - react-dom: ^18.0.0 - peerDependenciesMeta: - "@emotion/is-prop-valid": - optional: true - react: - optional: true - react-dom: - optional: true - checksum: 10c0/ef02a4194fcc791c31c1dc00db7eeeebd5c39aa594fd999b91dcc4036e08870d512c9a743132f2914e36ea39839ee1ea723850b920acedb3b545b1b50194b28a - languageName: node - linkType: hard - -"framer-motion@npm:^11.2.10": - version: 11.10.0 - resolution: "framer-motion@npm:11.10.0" +"framer-motion@npm:^11.11.1, framer-motion@npm:^11.2.10": + version: 11.11.11 + resolution: "framer-motion@npm:11.11.11" dependencies: tslib: "npm:^2.4.0" peerDependencies: @@ -6386,7 +6279,7 @@ __metadata: optional: true react-dom: optional: true - checksum: 10c0/06ead52252f30d180f0594999d877a882b6892c334053881b47decfad946b9ea68d84404cb91757cf707aac2c5f2d3d87197e0f43732a6a0eabfea4b75ecac13 + checksum: 10c0/9a9e86d0e211809a184c0ee9fb3b1d692244103c12b6a666581b782dba13e00363c383e590c503cf06cde49626439a5e92a06f40b075ed3139dd8c54375b7796 languageName: node linkType: hard @@ -6603,7 +6496,7 @@ __metadata: languageName: node linkType: hard -"globalthis@npm:^1.0.3": +"globalthis@npm:^1.0.3, globalthis@npm:^1.0.4": version: 1.0.4 resolution: "globalthis@npm:1.0.4" dependencies: @@ -6657,7 +6550,7 @@ __metadata: languageName: node linkType: hard -"h3@npm:^1.12.0": +"h3@npm:^1.12.0, h3@npm:^1.13.0": version: 1.13.0 resolution: "h3@npm:1.13.0" dependencies: @@ -6682,13 +6575,6 @@ __metadata: languageName: node linkType: hard -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 - languageName: node - linkType: hard - "has-flag@npm:^4.0.0": version: 4.0.0 resolution: "has-flag@npm:4.0.0" @@ -6857,11 +6743,11 @@ __metadata: linkType: hard "i18next@npm:^23.11.5": - version: 23.15.1 - resolution: "i18next@npm:23.15.1" + version: 23.16.4 + resolution: "i18next@npm:23.16.4" dependencies: "@babel/runtime": "npm:^7.23.2" - checksum: 10c0/06bf6c45c70ebe8cc1181ce5f367f6a60acc798abb1926329e67e092a25762cabbfed64ac149745d515f724d2a6fef3bf809bd4fd8f505a7966e9e4dd2e3fd69 + checksum: 10c0/b016d98bb8a11fa16e2598897b0ea388b664e28e38acbd7e6580ce8ff300a9b4c66eb849883b1c36dbee9800abb830887293adbb1e598b679ea29006a3bc6af9 languageName: node linkType: hard @@ -7382,16 +7268,16 @@ __metadata: languageName: node linkType: hard -"iterator.prototype@npm:^1.1.2": - version: 1.1.2 - resolution: "iterator.prototype@npm:1.1.2" +"iterator.prototype@npm:^1.1.3": + version: 1.1.3 + resolution: "iterator.prototype@npm:1.1.3" dependencies: define-properties: "npm:^1.2.1" get-intrinsic: "npm:^1.2.1" has-symbols: "npm:^1.0.3" reflect.getprototypeof: "npm:^1.0.4" set-function-name: "npm:^2.0.1" - checksum: 10c0/a32151326095e916f306990d909f6bbf23e3221999a18ba686419535dcd1749b10ded505e89334b77dc4c7a58a8508978f0eb16c2c8573e6d412eb7eb894ea79 + checksum: 10c0/68b0320c14291fbb3d8ed5a17e255d3127e7971bec19108076667e79c9ff4c7d69f99de4b0b3075c789c3f318366d7a0a35bb086eae0f2cf832dd58465b2f9e6 languageName: node linkType: hard @@ -7409,11 +7295,11 @@ __metadata: linkType: hard "jiti@npm:^2.1.2": - version: 2.3.3 - resolution: "jiti@npm:2.3.3" + version: 2.4.0 + resolution: "jiti@npm:2.4.0" bin: jiti: lib/jiti-cli.mjs - checksum: 10c0/d71e40fb3c359cddafa2a6a03aea7e5e3a571aedeb5bec7627d5bc67c1e66c6275be5c03b4e0b10cd22cde9d39c892f27f6598a4e63bde030b607efc5051fd7f + checksum: 10c0/f97365a83169e0544b0a6e7f415f1ee69ca9c0bdd55e336035490b4b7a6ff99b63b9df89c70babfc49e924247dfbdc730f9eb0c5ed4771d3db989ac70e49bf18 languageName: node linkType: hard @@ -7600,7 +7486,7 @@ __metadata: languageName: node linkType: hard -"listhen@npm:^1.7.2": +"listhen@npm:^1.9.0": version: 1.9.0 resolution: "listhen@npm:1.9.0" dependencies: @@ -7769,11 +7655,11 @@ __metadata: linkType: hard "magic-string@npm:^0.30.5": - version: 0.30.11 - resolution: "magic-string@npm:0.30.11" + version: 0.30.12 + resolution: "magic-string@npm:0.30.12" dependencies: "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/b9eb370773d0bd90ca11a848753409d8e5309b1ad56d2a1aa49d6649da710a6d2fe7237ad1a643c5a5d3800de2b9946ed9690acdfc00e6cc1aeafff3ab1752c4 + checksum: 10c0/469f457d18af37dfcca8617086ea8a65bcd8b60ba8a1182cb024ce43e470ace3c9d1cb6bee58d3b311768fb16bc27bd50bdeebcaa63dadd0fd46cac4d2e11d5f languageName: node linkType: hard @@ -8004,15 +7890,15 @@ __metadata: languageName: node linkType: hard -"mlly@npm:^1.4.2, mlly@npm:^1.7.1": - version: 1.7.1 - resolution: "mlly@npm:1.7.1" +"mlly@npm:^1.4.2, mlly@npm:^1.7.1, mlly@npm:^1.7.2": + version: 1.7.2 + resolution: "mlly@npm:1.7.2" dependencies: - acorn: "npm:^8.11.3" + acorn: "npm:^8.12.1" pathe: "npm:^1.1.2" - pkg-types: "npm:^1.1.1" - ufo: "npm:^1.5.3" - checksum: 10c0/d836a7b0adff4d118af41fb93ad4d9e57f80e694a681185280ba220a4607603c19e86c80f9a6c57512b04280567f2599e3386081705c5b5fd74c9ddfd571d0fa + pkg-types: "npm:^1.2.0" + ufo: "npm:^1.5.4" + checksum: 10c0/e5a990b9d895477f3d3dfceec9797e41d6f029ce3b1b2dcf787d4b7500b4caff4b3cdc0ae5cb82c14b469b85209fe3d7368286415c0ca5415b163219fc6b5f21 languageName: node linkType: hard @@ -8037,13 +7923,6 @@ __metadata: languageName: node linkType: hard -"mri@npm:^1.2.0": - version: 1.2.0 - resolution: "mri@npm:1.2.0" - checksum: 10c0/a3d32379c2554cf7351db6237ddc18dc9e54e4214953f3da105b97dc3babe0deb3ffe99cf409b38ea47cc29f9430561ba6b53b24ab8f9ce97a4b50409e4a50e7 - languageName: node - linkType: hard - "ms@npm:^2.1.1, ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" @@ -8082,9 +7961,9 @@ __metadata: linkType: hard "negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: 10c0/3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 + version: 0.6.4 + resolution: "negotiator@npm:0.6.4" + checksum: 10c0/3e677139c7fb7628a6f36335bf11a885a62c21d5390204590a1a214a5631fcbe5ea74ef6a610b60afe84b4d975cbe0566a23f20ee17c77c73e74b80032108dea languageName: node linkType: hard @@ -8098,7 +7977,7 @@ __metadata: languageName: node linkType: hard -"nock@npm:^13.5.0, nock@npm:^13.5.4": +"nock@npm:^13.5.0, nock@npm:^13.5.5": version: 13.5.5 resolution: "nock@npm:13.5.5" dependencies: @@ -8336,7 +8215,7 @@ __metadata: languageName: node linkType: hard -"ofetch@npm:^1.3.4": +"ofetch@npm:^1.4.1": version: 1.4.1 resolution: "ofetch@npm:1.4.1" dependencies: @@ -8567,9 +8446,9 @@ __metadata: linkType: hard "picocolors@npm:^1.0.0, picocolors@npm:^1.1.0": - version: 1.1.0 - resolution: "picocolors@npm:1.1.0" - checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023 + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 languageName: node linkType: hard @@ -8580,6 +8459,13 @@ __metadata: languageName: node linkType: hard +"picomatch@npm:^4.0.2": + version: 4.0.2 + resolution: "picomatch@npm:4.0.2" + checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc + languageName: node + linkType: hard + "pify@npm:^3.0.0": version: 3.0.0 resolution: "pify@npm:3.0.0" @@ -8632,14 +8518,14 @@ __metadata: languageName: node linkType: hard -"pkg-types@npm:^1.0.3, pkg-types@npm:^1.1.1": - version: 1.2.0 - resolution: "pkg-types@npm:1.2.0" +"pkg-types@npm:^1.0.3, pkg-types@npm:^1.2.0": + version: 1.2.1 + resolution: "pkg-types@npm:1.2.1" dependencies: - confbox: "npm:^0.1.7" - mlly: "npm:^1.7.1" + confbox: "npm:^0.1.8" + mlly: "npm:^1.7.2" pathe: "npm:^1.1.2" - checksum: 10c0/111cf6ad4235438821ea195a0d70570b1bd36a71d094d258349027c9c304dea8b4f9669c9f7ce813f9a48a02942fb0d7fe9809127dbe7bb4b18a8de71583a081 + checksum: 10c0/4aef765c039e3ec3ca55171bb8ad776cf060d894c45ddf92b9d680b3fdb1817c8d1c428f74ea6aae144493fa1d6a97df6b8caec6dc31e418f1ce1f728d38014e languageName: node linkType: hard @@ -8669,7 +8555,6 @@ __metadata: "@substrate/connect": "npm:^1.1.0" "@types/chroma-js": "npm:^2.4.4" "@types/lodash.debounce": "npm:^4.0.9" - "@types/lodash.throttle": "npm:^4.1.9" "@types/react": "npm:^18.3.3" "@types/react-dom": "npm:^18.2.25" "@types/react-helmet": "npm:^6.1.11" @@ -8678,12 +8563,12 @@ __metadata: "@typescript-eslint/parser": "npm:^7.12.0" "@vitejs/plugin-react-swc": "npm:^3.7.0" "@w3ux/extension-assets": "npm:^0.4.0" - "@w3ux/hooks": "npm:^1.1.1" + "@w3ux/hooks": "npm:1.2.1-beta.0" "@w3ux/react-connect-kit": "npm:^1.8.0" "@w3ux/react-odometer": "npm:^1.1.0" "@w3ux/react-polkicon": "npm:^1.3.0" "@w3ux/types": "npm:^0.2.0" - "@w3ux/utils": "npm:1.0.1" + "@w3ux/utils": "npm:^1.1.0" "@w3ux/validator-assets": "npm:^0.2.0" "@zondax/ledger-substrate": "npm:^1.0.0" bignumber.js: "npm:^9.1.2" @@ -8708,7 +8593,6 @@ __metadata: i18next: "npm:^23.11.5" i18next-browser-languagedetector: "npm:^8.0.0" lodash.debounce: "npm:^4.0.8" - lodash.throttle: "npm:^4.1.1" prettier: "npm:^3.3.1" prettier-plugin-organize-imports: "npm:^4.0.0" qrcode-generator: "npm:1.4.4" @@ -8997,8 +8881,8 @@ __metadata: linkType: hard "rc-slider@npm:^11.1.6": - version: 11.1.6 - resolution: "rc-slider@npm:11.1.6" + version: 11.1.7 + resolution: "rc-slider@npm:11.1.7" dependencies: "@babel/runtime": "npm:^7.10.1" classnames: "npm:^2.2.5" @@ -9006,7 +8890,7 @@ __metadata: peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10c0/9b1fbf056155487781c9abe338d37708985ddf4e38eb2d4482aebc139e785ec5d8082cc009e0ff0d2c5f59b99aeb545a96cb2eeafef6162993262681d3ba413d + checksum: 10c0/ddb870a8f9982565c3ab4e7ece12a224c4d6f1983a0760d516561fa8963c2bc6d9e25bed6b87cad007b3d4962194398e1490231d0b5ab062262c0ea0ba734b85 languageName: node linkType: hard @@ -9046,13 +8930,13 @@ __metadata: linkType: hard "react-error-boundary@npm:^4.0.13": - version: 4.0.13 - resolution: "react-error-boundary@npm:4.0.13" + version: 4.1.2 + resolution: "react-error-boundary@npm:4.1.2" dependencies: "@babel/runtime": "npm:^7.12.5" peerDependencies: react: ">=16.13.1" - checksum: 10c0/6f3e0e4d7669f680ccf49c08c9571519c6e31f04dcfc30a765a7136c7e6fbbbe93423dd5a9fce12107f8166e54133e9dd5c2079a00c7a38201ac811f7a28b8e7 + checksum: 10c0/0737e5259bed40ce14eb0823b3c7b152171921f2179e604f48f3913490cdc594d6c22d43d7abb4ffb1512c832850228db07aa69d3b941db324953a5e393cb399 languageName: node linkType: hard @@ -9078,8 +8962,8 @@ __metadata: linkType: hard "react-i18next@npm:^15.0.2": - version: 15.0.2 - resolution: "react-i18next@npm:15.0.2" + version: 15.1.0 + resolution: "react-i18next@npm:15.1.0" dependencies: "@babel/runtime": "npm:^7.25.0" html-parse-stringify: "npm:^3.0.1" @@ -9091,7 +8975,7 @@ __metadata: optional: true react-native: optional: true - checksum: 10c0/59ff253978f8341464712cf5e8df33d5ec856ada5995384e9b282bdcd82b2f3fa687b2f48eb12691aa923596115a7aab5d5c3187f26e3c4f33fece51f54b3cca + checksum: 10c0/a812a8345222e4c0b9423cec6bf0997abf5b72802d29c4b5c91c3a8ba0be87f536f5968456d6e3b6526e978ea5db7addde24d5855dd98a1d4ca7eb9aed8a9b20 languageName: node linkType: hard @@ -9123,26 +9007,26 @@ __metadata: linkType: hard "react-router-dom@npm:^6.23.1": - version: 6.26.2 - resolution: "react-router-dom@npm:6.26.2" + version: 6.27.0 + resolution: "react-router-dom@npm:6.27.0" dependencies: - "@remix-run/router": "npm:1.19.2" - react-router: "npm:6.26.2" + "@remix-run/router": "npm:1.20.0" + react-router: "npm:6.27.0" peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 10c0/7515128a98eef0a6b2bf354ef9dfefad03556a06be00fa9220eda6526aaada8a42f294911083473d7ced6d7128c3088bd193218bbb3d62593f9f4f7053781c23 + checksum: 10c0/7db48ffd0b387af0eed060ceaf42075d074e63fbd30f4cf60993526b3610883a9ff82615965001165ed69d2bf2f1bce05c594a21c8d0d845e7b9bf203201116e languageName: node linkType: hard -"react-router@npm:6.26.2": - version: 6.26.2 - resolution: "react-router@npm:6.26.2" +"react-router@npm:6.27.0": + version: 6.27.0 + resolution: "react-router@npm:6.27.0" dependencies: - "@remix-run/router": "npm:1.19.2" + "@remix-run/router": "npm:1.20.0" peerDependencies: react: ">=16.8" - checksum: 10c0/0d15a39b419c99fb5ccad76388bfc4ee2b01323b3b1b694595a9f9ea28e1fbeea25486b5398f5d3d93922f5c6a9aa751b6bb27419488d85279f6ca5ff9e0a6bb + checksum: 10c0/440d6ee00890cec92a0c2183164149fbb96363efccf52bb132a964f44e51aec2f4b5a0520c67f6f17faddaa4097090fd76f7efe58263947532fceeb11dd4cdf3 languageName: node linkType: hard @@ -9405,25 +9289,27 @@ __metadata: linkType: hard "rollup@npm:^4.20.0": - version: 4.24.0 - resolution: "rollup@npm:4.24.0" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.24.0" - "@rollup/rollup-android-arm64": "npm:4.24.0" - "@rollup/rollup-darwin-arm64": "npm:4.24.0" - "@rollup/rollup-darwin-x64": "npm:4.24.0" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.0" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.24.0" - "@rollup/rollup-linux-arm64-gnu": "npm:4.24.0" - "@rollup/rollup-linux-arm64-musl": "npm:4.24.0" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.0" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.24.0" - "@rollup/rollup-linux-s390x-gnu": "npm:4.24.0" - "@rollup/rollup-linux-x64-gnu": "npm:4.24.0" - "@rollup/rollup-linux-x64-musl": "npm:4.24.0" - "@rollup/rollup-win32-arm64-msvc": "npm:4.24.0" - "@rollup/rollup-win32-ia32-msvc": "npm:4.24.0" - "@rollup/rollup-win32-x64-msvc": "npm:4.24.0" + version: 4.24.3 + resolution: "rollup@npm:4.24.3" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.24.3" + "@rollup/rollup-android-arm64": "npm:4.24.3" + "@rollup/rollup-darwin-arm64": "npm:4.24.3" + "@rollup/rollup-darwin-x64": "npm:4.24.3" + "@rollup/rollup-freebsd-arm64": "npm:4.24.3" + "@rollup/rollup-freebsd-x64": "npm:4.24.3" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.3" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.24.3" + "@rollup/rollup-linux-arm64-gnu": "npm:4.24.3" + "@rollup/rollup-linux-arm64-musl": "npm:4.24.3" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.3" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.24.3" + "@rollup/rollup-linux-s390x-gnu": "npm:4.24.3" + "@rollup/rollup-linux-x64-gnu": "npm:4.24.3" + "@rollup/rollup-linux-x64-musl": "npm:4.24.3" + "@rollup/rollup-win32-arm64-msvc": "npm:4.24.3" + "@rollup/rollup-win32-ia32-msvc": "npm:4.24.3" + "@rollup/rollup-win32-x64-msvc": "npm:4.24.3" "@types/estree": "npm:1.0.6" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -9435,6 +9321,10 @@ __metadata: optional: true "@rollup/rollup-darwin-x64": optional: true + "@rollup/rollup-freebsd-arm64": + optional: true + "@rollup/rollup-freebsd-x64": + optional: true "@rollup/rollup-linux-arm-gnueabihf": optional: true "@rollup/rollup-linux-arm-musleabihf": @@ -9463,7 +9353,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/77fb549c1de8afd1142d2da765adbb0cdab9f13c47df5217f00b5cf40b74219caa48c6ba2157f6249313ee81b6fa4c4fa8b3d2a0347ad6220739e00e580a808d + checksum: 10c0/32425475db7a0bcb8937f92488ee8e48f7adaff711b5b5c52d86d37114c9f21fe756e21a91312d12d30da146d33d8478a11dfeb6249dbecc54fbfcc78da46005 languageName: node linkType: hard @@ -9549,14 +9439,7 @@ __metadata: languageName: node linkType: hard -"scale-ts@npm:^1.6.0": - version: 1.6.0 - resolution: "scale-ts@npm:1.6.0" - checksum: 10c0/ce4ea3559c6b6bdf2a62454aac83cc3151ae93d1a507ddb8e95e83ce1190085aed61c46901bd42d41d8f8ba58279d7e37057c68c2b674c2d39b8cf5d169e90dd - languageName: node - linkType: hard - -"scale-ts@npm:^1.6.1": +"scale-ts@npm:^1.6.0, scale-ts@npm:^1.6.1": version: 1.6.1 resolution: "scale-ts@npm:1.6.1" checksum: 10c0/bbcf476029095152189c5bd210922b43342e8bfb712bf56237de172d55b528e090419e80da67c627a8f706a228237346b82de527755d7f197bb4d822c6383dfd @@ -9643,11 +9526,11 @@ __metadata: linkType: hard "sharp-phash@npm:^2.1.0": - version: 2.1.0 - resolution: "sharp-phash@npm:2.1.0" + version: 2.2.0 + resolution: "sharp-phash@npm:2.2.0" peerDependencies: - sharp: ">= 0.25.4" - checksum: 10c0/b2846fbf650ec3eb407cfa232790cee282cc1acb5ca938fe81bd430bd312c70060227e5df7cb88630140fecbf2e882cb098d94fbb1765a41d05b948a76048621 + sharp: ">= 0.32.0" + checksum: 10c0/9094b231cc98581dc0bb846a7a8c7d776a1aa236336242685e7fdf15dd728d4b7f737d1a32f2fd80b0466d814655e63ef24de9ae4666dae49a3c95a13a3ad2f0 languageName: node linkType: hard @@ -10176,15 +10059,6 @@ __metadata: languageName: node linkType: hard -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: "npm:^3.0.0" - checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 - languageName: node - linkType: hard - "supports-color@npm:^7.1.0": version: 7.2.0 resolution: "supports-color@npm:7.2.0" @@ -10209,12 +10083,12 @@ __metadata: linkType: hard "synckit@npm:^0.9.1": - version: 0.9.1 - resolution: "synckit@npm:0.9.1" + version: 0.9.2 + resolution: "synckit@npm:0.9.2" dependencies: "@pkgr/core": "npm:^0.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/d8b89e1bf30ba3ffb469d8418c836ad9c0c062bf47028406b4d06548bc66af97155ea2303b96c93bf5c7c0f0d66153a6fbd6924c76521b434e6a9898982abc2e + checksum: 10c0/e0c262817444e5b872708adb6f5ad37951ba33f6b2d1d4477d45db1f57573a784618ceed5e6614e0225db330632b1f6b95bb74d21e4d013e45ad4bde03d0cb59 languageName: node linkType: hard @@ -10297,13 +10171,6 @@ __metadata: languageName: node linkType: hard -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: 10c0/b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 - languageName: node - linkType: hard - "to-regex-range@npm:^5.0.1": version: 5.0.1 resolution: "to-regex-range@npm:5.0.1" @@ -10321,17 +10188,17 @@ __metadata: linkType: hard "ts-api-utils@npm:^1.3.0": - version: 1.3.0 - resolution: "ts-api-utils@npm:1.3.0" + version: 1.4.0 + resolution: "ts-api-utils@npm:1.4.0" peerDependencies: typescript: ">=4.2.0" - checksum: 10c0/f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c + checksum: 10c0/1b2bfa50ea52771d564bb143bb69010d25cda03ed573095fbac9b86f717012426443af6647e00e3db70fca60360482a30c1be7cf73c3521c321f6bf5e3594ea0 languageName: node linkType: hard "tsconfck@npm:^3.0.3": - version: 3.1.3 - resolution: "tsconfck@npm:3.1.3" + version: 3.1.4 + resolution: "tsconfck@npm:3.1.4" peerDependencies: typescript: ^5.0.0 peerDependenciesMeta: @@ -10339,7 +10206,7 @@ __metadata: optional: true bin: tsconfck: bin/tsconfck.js - checksum: 10c0/64f7a8ed0a6d36b0902dfc0075e791d2242f7634644f124343ec0dec4f3f70092f929c5a9f59496d51883aa81bb1e595deb92a219593575d2e75b849064713d1 + checksum: 10c0/5120e91b3388574b449d57d08f45d05d9966cf4b9d6aa1018652c1fff6d7d37b1ed099b07e6ebf6099aa40b8a16968dd337198c55b7274892849112b942861ed languageName: node linkType: hard @@ -10369,17 +10236,10 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.0, tslib@npm:^2.3.1": - version: 2.8.0 - resolution: "tslib@npm:2.8.0" - checksum: 10c0/31e4d14dc1355e9b89e4d3c893a18abb7f90b6886b089c2da91224d0a7752c79f3ddc41bc1aa0a588ac895bd97bb99c5bc2bfdb2f86de849f31caeb3ba79bbe5 - languageName: node - linkType: hard - -"tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.7.0": - version: 2.7.0 - resolution: "tslib@npm:2.7.0" - checksum: 10c0/469e1d5bf1af585742128827000711efa61010b699cb040ab1800bcd3ccdd37f63ec30642c9e07c4439c1db6e46345582614275daca3e0f4abae29b0083f04a6 +"tslib@npm:^2.0.0, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.7.0, tslib@npm:^2.8.0": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 languageName: node linkType: hard @@ -10466,26 +10326,26 @@ __metadata: linkType: hard "typescript@npm:^5.4.3": - version: 5.6.2 - resolution: "typescript@npm:5.6.2" + version: 5.6.3 + resolution: "typescript@npm:5.6.3" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/3ed8297a8c7c56b7fec282532503d1ac795239d06e7c4966b42d4330c6cf433a170b53bcf93a130a7f14ccc5235de5560df4f1045eb7f3550b46ebed16d3c5e5 + checksum: 10c0/44f61d3fb15c35359bc60399cb8127c30bae554cd555b8e2b46d68fa79d680354b83320ad419ff1b81a0bdf324197b29affe6cc28988cd6a74d4ac60c94f9799 languageName: node linkType: hard "typescript@patch:typescript@npm%3A^5.4.3#optional!builtin": - version: 5.6.2 - resolution: "typescript@patch:typescript@npm%3A5.6.2#optional!builtin::version=5.6.2&hash=5adc0c" + version: 5.6.3 + resolution: "typescript@patch:typescript@npm%3A5.6.3#optional!builtin::version=5.6.3&hash=5adc0c" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/e6c1662e4852e22fe4bbdca471dca3e3edc74f6f1df043135c44a18a7902037023ccb0abdfb754595ca9028df8920f2f8492c00fc3cbb4309079aae8b7de71cd + checksum: 10c0/ac8307bb06bbfd08ae7137da740769b7d8c3ee5943188743bb622c621f8ad61d244767480f90fbd840277fbf152d8932aa20c33f867dea1bb5e79b187ca1a92f languageName: node linkType: hard -"ufo@npm:^1.5.3, ufo@npm:^1.5.4": +"ufo@npm:^1.5.4": version: 1.5.4 resolution: "ufo@npm:1.5.4" checksum: 10c0/b5dc4dc435c49c9ef8890f1b280a19ee4d0954d1d6f9ab66ce62ce64dd04c7be476781531f952a07c678d51638d02ad4b98e16237be29149295b0f7c09cda765 @@ -10529,7 +10389,7 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~6.19.2": +"undici-types@npm:~6.19.8": version: 6.19.8 resolution: "undici-types@npm:6.19.8" checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344 @@ -10575,30 +10435,30 @@ __metadata: linkType: hard "unstorage@npm:^1.9.0": - version: 1.12.0 - resolution: "unstorage@npm:1.12.0" + version: 1.13.1 + resolution: "unstorage@npm:1.13.1" dependencies: anymatch: "npm:^3.1.3" chokidar: "npm:^3.6.0" + citty: "npm:^0.1.6" destr: "npm:^2.0.3" - h3: "npm:^1.12.0" - listhen: "npm:^1.7.2" + h3: "npm:^1.13.0" + listhen: "npm:^1.9.0" lru-cache: "npm:^10.4.3" - mri: "npm:^1.2.0" node-fetch-native: "npm:^1.6.4" - ofetch: "npm:^1.3.4" + ofetch: "npm:^1.4.1" ufo: "npm:^1.5.4" peerDependencies: "@azure/app-configuration": ^1.7.0 "@azure/cosmos": ^4.1.1 "@azure/data-tables": ^13.2.2 - "@azure/identity": ^4.4.1 - "@azure/keyvault-secrets": ^4.8.0 - "@azure/storage-blob": ^12.24.0 + "@azure/identity": ^4.5.0 + "@azure/keyvault-secrets": ^4.9.0 + "@azure/storage-blob": ^12.25.0 "@capacitor/preferences": ^6.0.2 - "@netlify/blobs": ^6.5.0 || ^7.0.0 + "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 "@planetscale/database": ^1.19.0 - "@upstash/redis": ^1.34.0 + "@upstash/redis": ^1.34.3 "@vercel/kv": ^1.0.1 idb-keyval: ^6.2.1 ioredis: ^5.4.1 @@ -10629,7 +10489,7 @@ __metadata: optional: true ioredis: optional: true - checksum: 10c0/66fc3938e6b840c326d171de34ad05b0d2752f65c67a297ad1bda5e135f1975491bab8829e1885e2a74b579015c1e2cd0db280a0fc16d205783459493643c6f6 + checksum: 10c0/809f79b76d8fe0e72579dfee1e17b5fb9faec476d02d5b9ab664b9f6eb8822ddeb14aa1aa6a2bfa8e58cda9db133995d487aaa201882e2d83f703df5c7fc4e73 languageName: node linkType: hard @@ -10646,7 +10506,7 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.0": +"update-browserslist-db@npm:^1.1.1": version: 1.1.1 resolution: "update-browserslist-db@npm:1.1.1" dependencies: @@ -10770,8 +10630,8 @@ __metadata: linkType: hard "viem@npm:^2.1.1, viem@npm:^2.21.35": - version: 2.21.35 - resolution: "viem@npm:2.21.35" + version: 2.21.38 + resolution: "viem@npm:2.21.38" dependencies: "@adraffy/ens-normalize": "npm:1.11.0" "@noble/curves": "npm:1.6.0" @@ -10787,7 +10647,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/d35c0004aa46099c45fdde142f074da124246cf9b58304246bf29c4ddd9218a1114ebc9eae08e7907238daabee6bb870fbf72219d5655c9980cd377c8e66941d + checksum: 10c0/eca1ba239b20b97f06c77d095b93e72bf11331e80d7720325aff07873c228babed3a06dbd7a66a6052cabb8304e9df025dfde75206e2beb763ca5d9a74d43c6f languageName: node linkType: hard @@ -10887,15 +10747,15 @@ __metadata: linkType: hard "vite-plugin-svgr@npm:^4.2.0": - version: 4.2.0 - resolution: "vite-plugin-svgr@npm:4.2.0" + version: 4.3.0 + resolution: "vite-plugin-svgr@npm:4.3.0" dependencies: - "@rollup/pluginutils": "npm:^5.0.5" + "@rollup/pluginutils": "npm:^5.1.3" "@svgr/core": "npm:^8.1.0" "@svgr/plugin-jsx": "npm:^8.1.0" peerDependencies: - vite: ^2.6.0 || 3 || 4 || 5 - checksum: 10c0/0a6400f20905f53d08f1ce7d1f22d9a57db403e110e790f80c2e0411a0064a071a36b781f56f6823654f98052219171003f9ea023d4a31d930b4a4fc01776d1f + vite: ">=2.6.0" + checksum: 10c0/a73f10d319f72cd8c16bf9701cf18170f2300f98c72c6bf939565de0b1e93916bd70c6f5a446dc034b4405c72d382655c7c16be4bd1cbf35bbcde5febf7aeffc languageName: node linkType: hard @@ -10916,8 +10776,8 @@ __metadata: linkType: hard "vite@npm:^5.0.0, vite@npm:^5.2.12": - version: 5.4.8 - resolution: "vite@npm:5.4.8" + version: 5.4.10 + resolution: "vite@npm:5.4.10" dependencies: esbuild: "npm:^0.21.3" fsevents: "npm:~2.3.3" @@ -10954,7 +10814,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/af70af6d6316a3af71f44ebe3ab343bd66450d4157af73af3b32239e1b6ec43ff6f651d7cc4193b21ed3bff2e9356a3de9e96aee53857f39922e4a2d9fad75a1 + checksum: 10c0/4ef4807d2fd166a920de244dbcec791ba8a903b017a7d8e9f9b4ac40d23f8152c1100610583d08f542b47ca617a0505cfc5f8407377d610599d58296996691ed languageName: node linkType: hard @@ -11298,7 +11158,7 @@ __metadata: languageName: node linkType: hard -"ws@npm:8.18.0, ws@npm:^8.15.1, ws@npm:^8.16.0, ws@npm:^8.8.1": +"ws@npm:8.18.0, ws@npm:^8.15.1, ws@npm:^8.18.0, ws@npm:^8.8.1": version: 8.18.0 resolution: "ws@npm:8.18.0" peerDependencies: