diff --git a/metro.config.js b/metro.config.js index 9d7f2ce8e..c844250c3 100644 --- a/metro.config.js +++ b/metro.config.js @@ -15,8 +15,6 @@ const config = { resolver: { assetExts: assetExts.filter(ext => ext !== 'svg'), sourceExts: [...sourceExts, 'svg'], - unstable_enablePackageExports: true, - unstable_conditionNames: ['browser', 'import', 'react-native'], }, }; diff --git a/package.json b/package.json index a6b5ba0c9..f2db17cb6 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "prepare": "husky install" }, "dependencies": { - "@chainflip/sdk": "1.6.0-beta.2", + "@chainflip/sdk": "^1.3.0", "@coinbase/cbpay-js": "^1.7.0", "@fortawesome/fontawesome-svg-core": "^6.2.1", "@fortawesome/free-brands-svg-icons": "^6.2.1", @@ -151,7 +151,7 @@ "@react-native/eslint-config": "^0.72.2", "@react-native/metro-config": "^0.72.11", "@subwallet/chain-list": "0.2.88-beta.1", - "@subwallet/extension-base": "1.2.30-0", + "@subwallet/extension-base": "1.2.29-0", "@tsconfig/react-native": "^3.0.0", "@types/humanize-duration": "^3.27.3", "@types/jest": "^29.2.3", @@ -167,6 +167,7 @@ "@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/parser": "^5.45.0", "assert": "^2.0.0", + "axios": "^1.4.0", "babel-jest": "^29.3.1", "babel-loader": "^9.1.0", "babel-plugin-module-resolver": "^4.1.0", @@ -203,10 +204,10 @@ "@polkadot/util-crypto": "^12.6.2", "@polkadot/types": "^12.0.2", "@subwallet/chain-list": "0.2.88-beta.1", - "@subwallet/extension-base": "1.2.30-0", + "@subwallet/extension-base": "1.2.29-0", "react-native-svg": "^13.6.0", "sails-js": "0.1.6", - "@chainflip/sdk": "1.6.0-beta.2" + "@chainflip/sdk": "^1.3.0" }, "engines": { "node": ">=16" diff --git a/patches/@subwallet+extension-base+1.2.30-0.patch b/patches/@subwallet+extension-base+1.2.29-0.patch similarity index 90% rename from patches/@subwallet+extension-base+1.2.30-0.patch rename to patches/@subwallet+extension-base+1.2.29-0.patch index f0abcedaa..1844be9fe 100644 --- a/patches/@subwallet+extension-base+1.2.30-0.patch +++ b/patches/@subwallet+extension-base+1.2.29-0.patch @@ -1,5 +1,5 @@ diff --git a/node_modules/@subwallet/extension-base/services/swap-service/utils.js b/node_modules/@subwallet/extension-base/services/swap-service/utils.js -index 77ffa31..5bf8666 100644 +index 1b57d06..ee7c93f 100644 --- a/node_modules/@subwallet/extension-base/services/swap-service/utils.js +++ b/node_modules/@subwallet/extension-base/services/swap-service/utils.js @@ -1,7 +1,6 @@ @@ -9,8 +9,8 @@ index 77ffa31..5bf8666 100644 -import { Assets, Chains } from '@chainflip/sdk/swap'; import { COMMON_ASSETS, COMMON_CHAIN_SLUGS } from '@subwallet/chain-list'; import { _getAssetDecimals } from '@subwallet/extension-base/services/chain-service/utils'; - import { CHAINFLIP_BROKER_API } from '@subwallet/extension-base/services/swap-service/handler/chainflip-handler'; -@@ -10,22 +9,22 @@ import BigN from 'bignumber.js'; + import { SwapProviderId } from '@subwallet/extension-base/types/swap'; +@@ -9,22 +8,22 @@ import BigN from 'bignumber.js'; export const CHAIN_FLIP_TESTNET_EXPLORER = 'https://blocks-perseverance.chainflip.io'; export const CHAIN_FLIP_MAINNET_EXPLORER = 'https://scan.chainflip.io'; export const CHAIN_FLIP_SUPPORTED_MAINNET_MAPPING = { diff --git a/src/components/common/ErrorFallbackScreen/index.tsx b/src/components/common/ErrorFallbackScreen/index.tsx index 0e751deae..03d30ee12 100644 --- a/src/components/common/ErrorFallbackScreen/index.tsx +++ b/src/components/common/ErrorFallbackScreen/index.tsx @@ -8,6 +8,7 @@ import { House, Share } from 'phosphor-react-native'; import ErrorStyles from './style'; import { useSubWalletTheme } from 'hooks/useSubWalletTheme'; import { Images } from 'assets/index'; +import axios from 'axios'; import { FallbackComponentProps } from 'react-native-error-boundary'; import { Toast } from 'react-native-toast-notifications'; import { getBrand, getBuildNumber, getSystemVersion, getVersion } from 'react-native-device-info'; @@ -43,7 +44,8 @@ const ErrorFallbackScreen: React.FC = ({ error, resetErr app_version: `${getVersion()}-(${getBuildNumber()}) b-${bundleVersion}`, current_routes: JSON.stringify(currentRoutes.current), }; - fetch('https://mobile-feedback.subwallet.app/gelf', { method: 'POST', body: JSON.stringify(body) }) + axios + .post('https://mobile-feedback.subwallet.app/gelf', body) .then(() => { resetError(); }) diff --git a/src/hooks/static-content/useGetAppInstructionData.ts b/src/hooks/static-content/useGetAppInstructionData.ts index d7f82bcf1..0da2efe33 100644 --- a/src/hooks/static-content/useGetAppInstructionData.ts +++ b/src/hooks/static-content/useGetAppInstructionData.ts @@ -1,4 +1,5 @@ import { useCallback } from 'react'; +import axios from 'axios'; import { STATIC_DATA_DOMAIN } from 'constants/index'; import { mmkvStore } from 'utils/storage'; import { StaticDataProps } from 'components/Modal/Earning/EarningPoolDetailModal'; @@ -8,13 +9,14 @@ import { EARNING_POOL_DETAIL_DATA, UNSTAKE_ALERT_DATA } from 'constants/earning/ export const useGetAppInstructionData = (language: string) => { const getAppInstructionData = useCallback(async () => { - fetch(`${STATIC_DATA_DOMAIN}/instructions/preview-${language}.json`) - .then(data => { + axios + .get(`${STATIC_DATA_DOMAIN}/instructions/preview-${language}.json`) + .then(({ data }) => { const earningDetailData: StaticDataProps[] = []; const unstakeStaticData: StaticDataProps[] = []; const mktCampaignStaticData: StaticDataProps[] = []; - (data as unknown as StaticDataProps[]).forEach(item => { + (data as StaticDataProps[]).forEach(item => { if (item.group && item.group === 'earning') { if (item.slug === 'UNSTAKE_INFO') { unstakeStaticData.push(item); diff --git a/src/hooks/static-content/useGetConfig.ts b/src/hooks/static-content/useGetConfig.ts index edfbeadd4..bb90f93a7 100644 --- a/src/hooks/static-content/useGetConfig.ts +++ b/src/hooks/static-content/useGetConfig.ts @@ -1,3 +1,4 @@ +import axios from 'axios'; import { useCallback } from 'react'; import { getStaticContentByDevMode, mmkvStore } from 'utils/storage'; import { STATIC_DATA_DOMAIN } from 'constants/index'; @@ -6,9 +7,10 @@ const dataByDevModeStatus = getStaticContentByDevMode(); export function useGetConfig() { const getConfig = useCallback(async () => { - fetch(`${STATIC_DATA_DOMAIN}/config/remind-backup/${dataByDevModeStatus}.json`) + axios + .get(`${STATIC_DATA_DOMAIN}/config/remind-backup/${dataByDevModeStatus}.json`) .then(res => { - mmkvStore.set('storedRemindBackupTimeout', res.backupTimeout); + mmkvStore.set('storedRemindBackupTimeout', res.data.backupTimeout); }) .catch(() => { const remindBackupTimeout = mmkvStore.getNumber('storedRemindBackupTimeout'); diff --git a/src/hooks/static-content/useGetDAppList.ts b/src/hooks/static-content/useGetDAppList.ts index d0ea0097d..344025457 100644 --- a/src/hooks/static-content/useGetDAppList.ts +++ b/src/hooks/static-content/useGetDAppList.ts @@ -1,11 +1,14 @@ import { useCallback } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { RootState } from 'stores/index'; +import axios from 'axios'; import { updateBrowserDApps } from 'stores/base/Settings'; -import { DAppCategory, DAppInfo } from 'types/browser'; +import { DAppInfo } from 'types/browser'; import { useGetDesktopMode } from 'hooks/screen/Home/Browser/DesktopMode/useGetDesktopMode'; -import { fetchStaticData } from 'utils/fetchStaticData'; +import { getStaticContentByDevMode } from 'utils/storage'; +import { STATIC_DATA_DOMAIN } from 'constants/index'; +const dataByDevModeStatus = getStaticContentByDevMode(); export function useGetDAppList() { const browserDApps = useSelector((state: RootState) => state.settings.browserDApps); const { @@ -19,15 +22,15 @@ export function useGetDAppList() { const dispatch = useDispatch(); const getDAppsData = useCallback(async () => { - const dApps = await fetchStaticData('dapps'); - const dAppCategories = await fetchStaticData('categories'); - const payload = { dApps: dApps, dAppCategories: dAppCategories }; - if (!!dApps && dApps.length) { + const dApps = await axios.get(`${STATIC_DATA_DOMAIN}/dapps/${dataByDevModeStatus}.json`); + const dAppCategories = await axios.get(`${STATIC_DATA_DOMAIN}/categories/${dataByDevModeStatus}.json`); + const payload = { dApps: dApps.data, dAppCategories: dAppCategories.data }; + if (!!dApps && dApps.data.length) { dispatch(updateBrowserDApps(payload)); } - if (dApps) { + if (dApps.data) { // Add default desktop mode DApps. - const notFlagedDApps = dApps.filter((dApp: DAppInfo) => desktopModeData.indexOf(dApp.url || '') === -1); + const notFlagedDApps = dApps.data.filter((dApp: DAppInfo) => desktopModeData.indexOf(dApp.url || '') === -1); const needFlagedDApps = notFlagedDApps.filter((dApp: DAppInfo) => !!dApp.desktop_mode); const newDefaultDesktopModeDApps: string[] = []; needFlagedDApps.forEach((dApp: DAppInfo) => { @@ -42,7 +45,7 @@ export function useGetDAppList() { } // Remove not default desktop mode DApps. - const flagedDApps = dApps.filter((dApp: DAppInfo) => desktopModeData.indexOf(dApp.url || '') !== -1); + const flagedDApps = dApps.data.filter((dApp: DAppInfo) => desktopModeData.indexOf(dApp.url || '') !== -1); const needRemoveFlaggedDapps = flagedDApps.filter((dApp: DAppInfo) => !dApp.desktop_mode); const newRemoveDefaultDesktopModeDApps: string[] = []; needRemoveFlaggedDapps.forEach((dApp: DAppInfo) => { diff --git a/src/hooks/static-content/useGetTermAndConditionData.ts b/src/hooks/static-content/useGetTermAndConditionData.ts index 1046b1c71..092081148 100644 --- a/src/hooks/static-content/useGetTermAndConditionData.ts +++ b/src/hooks/static-content/useGetTermAndConditionData.ts @@ -3,6 +3,7 @@ import { RootState } from 'stores/index'; import { useCallback } from 'react'; import { getStaticContentByDevMode, mmkvStore } from 'utils/storage'; import { STATIC_DATA_DOMAIN } from 'constants/index'; +import axios from 'axios'; import { TermAndCondition } from 'constants/termAndCondition'; const dataByDevModeStatus = getStaticContentByDevMode(); @@ -11,9 +12,10 @@ export function useGetTermAndCondition() { const language = useSelector((state: RootState) => state.settings.language); const getTermAndCondition = useCallback(async () => { - fetch(`${STATIC_DATA_DOMAIN}/markdown-contents/term_and_condition/${dataByDevModeStatus}-${language}.json`) + axios + .get(`${STATIC_DATA_DOMAIN}/markdown-contents/term_and_condition/${dataByDevModeStatus}-${language}.json`) .then(res => { - mmkvStore.set('generalTermContent', res.content); + mmkvStore.set('generalTermContent', res.data.content); }) .catch(() => { const generalTermData = mmkvStore.getString(`generalTerm${language}Content`); diff --git a/src/hooks/static-content/useShowBuyToken.ts b/src/hooks/static-content/useShowBuyToken.ts index 7de8bece7..d608b757f 100644 --- a/src/hooks/static-content/useShowBuyToken.ts +++ b/src/hooks/static-content/useShowBuyToken.ts @@ -1,5 +1,6 @@ import { Platform } from 'react-native'; import { getVersion } from 'react-native-device-info'; +import axios from 'axios'; import { TOKEN_CONFIG_URL } from 'constants/index'; import { useDispatch, useSelector } from 'react-redux'; import { updateIsShowByToken } from 'stores/base/Settings'; @@ -15,8 +16,10 @@ export function useShowBuyToken() { return; } const currentAppVersion = getVersion(); - fetch(TOKEN_CONFIG_URL).then(res => { - if (res?.buy?.includes(currentAppVersion)) { + axios.get(TOKEN_CONFIG_URL).then(res => { + const tokenConfig = res.data; + + if (tokenConfig?.buy?.includes(currentAppVersion)) { dispatch(updateIsShowByToken(true)); return; } diff --git a/src/utils/fetchStaticData.ts b/src/utils/fetchStaticData.ts index 700facb11..d36f41f2d 100644 --- a/src/utils/fetchStaticData.ts +++ b/src/utils/fetchStaticData.ts @@ -1,20 +1,11 @@ +import axios from 'axios'; import { getStaticContentByDevMode } from './storage'; -import { fetchJson, fetchText } from '@subwallet/extension-base/utils'; -import { staticData, StaticKey } from '@subwallet/extension-base/utils/staticData'; +import { STATIC_DATA_DOMAIN } from 'constants/index'; -export async function fetchStaticData(slug: string, targetFile?: string, isJson = true) { +export async function fetchStaticData(slug: string, targetFile?: string) { const dataByDevModeStatus = getStaticContentByDevMode(); const fetchFile = targetFile || dataByDevModeStatus; + const rs = await axios.get(`${STATIC_DATA_DOMAIN}/${slug}/${fetchFile}.json`); - try { - if (isJson) { - return await fetchJson(`https://static-data.subwallet.app/${slug}/${fetchFile}`); - } else { - return await fetchText(`https://static-data.subwallet.app/${slug}/${fetchFile}`); - } - } catch (e) { - console.log('error fetching static data', e); - - return staticData[slug as StaticKey] as T; - } + return rs.data as T; } diff --git a/yarn.lock b/yarn.lock index 84ea742ad..f0acdeb70 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,11 +34,6 @@ dependencies: "@acala-network/type-definitions" "5.1.2" -"@adraffy/ens-normalize@1.10.0": - version "1.10.0" - resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" - integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== - "@adraffy/ens-normalize@1.10.1": version "1.10.1" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz#63430d04bd8c5e74f8d7d049338f1cd9d4f02069" @@ -101,9 +96,9 @@ throttle-debounce "^5.0.0" "@apollo/client@^3.7.14": - version "3.9.3" - resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.9.3.tgz#8b77a938e5109c6588be93c9fabdcbaf112dd5c1" - integrity sha512-ACWWvWEwwws8V2SO2FoLVAKD7Nc34N/WqnfHIsbtoHoo90ym5vFQp53nGruaWK+bNcb46z53C/fcp4s8P8bXKw== + version "3.11.8" + resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.11.8.tgz#f6bacdc7e1b243807c1387113e1d445a53471a9c" + integrity sha512-CgG1wbtMjsV2pRGe/eYITmV5B8lXUCYljB2gB/6jWTFQcrvirUVvKg7qtFdjYkQSFbIffU1IDyxgeaN81eTjbA== dependencies: "@graphql-typed-document-node/core" "^3.1.1" "@wry/caches" "^1.0.0" @@ -113,7 +108,7 @@ hoist-non-react-statics "^3.3.2" optimism "^0.18.0" prop-types "^15.7.2" - rehackt "0.0.4" + rehackt "^0.1.0" response-iterator "^0.2.6" symbol-observable "^4.0.0" ts-invariant "^0.10.3" @@ -121,9 +116,9 @@ zen-observable-ts "^1.2.5" "@azns/resolver-core@^1.4.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@azns/resolver-core/-/resolver-core-1.6.0.tgz#0de3b6a6055527e60dc4876f47bf45c7456dc601" - integrity sha512-3yhZanhezcw5FZLnFb5fPJ34xEmjWy2PtYkKsqbfHrQ8Pn3xql0c0nOqrlXn2P55FzkMvnQJTqEJ5zxzUj48Cg== + version "1.7.0" + resolved "https://registry.yarnpkg.com/@azns/resolver-core/-/resolver-core-1.7.0.tgz#aaa647616ebbb848e71b965c4010bf77610eae0c" + integrity sha512-Y/ha53X/i627pTAXZ2eIJiMFzFGcbZtdWxyRsANkQia6Y9ru7GYNN4uz61N+yaN7NAPBbVc8v6rYdBge10w7BQ== dependencies: bufferutil "^4.0.7" loglevel "^1.8.1" @@ -1277,13 +1272,20 @@ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.16.7", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6", "@babel/runtime@^7.20.7", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.7", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6", "@babel/runtime@^7.20.7", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": version "7.23.9" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== dependencies: regenerator-runtime "^0.14.0" +"@babel/runtime@^7.10.2", "@babel/runtime@^7.14.6", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2" + integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ== + dependencies: + regenerator-runtime "^0.14.0" + "@babel/runtime@^7.20.13": version "7.24.8" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.8.tgz#5d958c3827b13cc6d05e038c07fb2e5e3420d82e" @@ -1335,20 +1337,20 @@ resolved "https://registry.yarnpkg.com/@bifrost-finance/type-definitions/-/type-definitions-1.11.3.tgz#6a08c191d37fd4655c6a601af4d3791241dd8eae" integrity sha512-mNW+FfvKZqa1axChEd1ReRpw3P8siiW28YQ8BBJpR2syZqb5cJWOG4Sr/dj3lBcBNQqcqnAUkZPnBxQj8+Ftvg== -"@chainflip/rpc@^1.6.6": - version "1.6.6" - resolved "https://registry.yarnpkg.com/@chainflip/rpc/-/rpc-1.6.6.tgz#651074e5f9b366d3f200d28435af968a198a6906" - integrity sha512-JUhwo7AhsIH85s59AX4P38/VSt0Aj899s85Ey1QWBl3/PuHmt6EO1qSzV0ZhOOgRdV4Z+ZKrJCxOPKUFFPOYFw== +"@chainflip/rpc@^1.6.7": + version "1.6.7" + resolved "https://registry.yarnpkg.com/@chainflip/rpc/-/rpc-1.6.7.tgz#41064fa2537ba9b0f72b035ee29ce871f71b8dd7" + integrity sha512-OIE2cqzDy9Oq9sHuxJKOtbjP438QwMFdc6tuWdAmjjPcHGATI0Ft/lIKeCutD/8uH/CumOzaOoBaT2pI6G78Gg== dependencies: "@chainflip/utils" "^0.3.0" zod "^3.22.8" -"@chainflip/sdk@1.6.0-beta.2", "@chainflip/sdk@^1.5.2": - version "1.6.0-beta.2" - resolved "https://registry.yarnpkg.com/@chainflip/sdk/-/sdk-1.6.0-beta.2.tgz#d30229109c31218a3accecc24354e7c8d1121d41" - integrity sha512-1KdM66Y3f7TX4tDQ34QhxeDbe19bmJXU0678UnQsjVpZVQ06AQqgy7GWM3HvPmUjOcS83V7lqgRb3vp5OSnVnw== +"@chainflip/sdk@^1.3.0": + version "1.6.2" + resolved "https://registry.yarnpkg.com/@chainflip/sdk/-/sdk-1.6.2.tgz#da09f2074c6e719259ad51c89c773de981897eeb" + integrity sha512-EFIX/Dse/ToL3mF7sGptm87KJ2flWnZGcbrWjllNdIQqHam1nH4B89FbdQcdAIsp5x07XVbqmc7CinP2ThtYnQ== dependencies: - "@chainflip/rpc" "^1.6.6" + "@chainflip/rpc" "^1.6.7" "@chainflip/utils" "^0.4.0" axios "^1.7.7" ethers "^6.13.2" @@ -1541,6 +1543,13 @@ "@ethereumjs/util" "^9.0.1" crc "^4.3.2" +"@ethereumjs/common@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-4.4.0.tgz#fba41612f527a815bf304e98653d6b5fc5d6d4de" + integrity sha512-Fy5hMqF6GsE6DpYTyqdDIJPJgUtDn4dL120zKw+Pswuo+iLyBsEYuSyzMw6NVzD2vDzcBG9fE4+qX4X2bPc97w== + dependencies: + "@ethereumjs/util" "^9.1.0" + "@ethereumjs/rlp@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-4.0.1.tgz#626fabfd9081baab3d0a3074b0c7ecaf674aaa41" @@ -1551,6 +1560,11 @@ resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-5.0.1.tgz#56c5433b9242f956e354fd7e4ce3523815e24854" integrity sha512-Ab/Hfzz+T9Zl+65Nkg+9xAmwKPLicsnQ4NW49pgvJp9ovefuic95cgOS9CbPc9izIEgsqm1UitV0uNveCvud9w== +"@ethereumjs/rlp@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-5.0.2.tgz#c89bd82f2f3bec248ab2d517ae25f5bbc4aac842" + integrity sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== + "@ethereumjs/tx@3.3.2": version "3.3.2" resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.3.2.tgz#348d4624bf248aaab6c44fec2ae67265efe3db00" @@ -1577,7 +1591,7 @@ "@ethereumjs/util" "^8.1.0" ethereum-cryptography "^2.0.0" -"@ethereumjs/tx@^5.0.0", "@ethereumjs/tx@^5.1.0": +"@ethereumjs/tx@^5.0.0": version "5.1.0" resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-5.1.0.tgz#c61a9048ec09fff360b18188224aae90c370e57f" integrity sha512-VUhw2+4yXArJZRWhPjmZFrN4WUjUo0qUZUszVpW2KzsGlqCFf67kwJcH9Rca5eS0CRHjr2qHJLpvYOjNuaXVdA== @@ -1587,6 +1601,16 @@ "@ethereumjs/util" "^9.0.1" ethereum-cryptography "^2.1.2" +"@ethereumjs/tx@^5.1.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-5.4.0.tgz#6f47894cc3e2d4e63d87c62b41ed7e8180a1de58" + integrity sha512-SCHnK7m/AouZ7nyoR0MEXw1OO/tQojSbp88t8oxhwes5iZkZCtfFdUrJaiIb72qIpH2FVw6s1k1uP7LXuH7PsA== + dependencies: + "@ethereumjs/common" "^4.4.0" + "@ethereumjs/rlp" "^5.0.2" + "@ethereumjs/util" "^9.1.0" + ethereum-cryptography "^2.2.1" + "@ethereumjs/util@^8.1.0": version "8.1.0" resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.1.0.tgz#299df97fb6b034e0577ce9f94c7d9d1004409ed4" @@ -1604,6 +1628,14 @@ "@ethereumjs/rlp" "^5.0.1" ethereum-cryptography "^2.1.2" +"@ethereumjs/util@^9.1.0": + version "9.1.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-9.1.0.tgz#75e3898a3116d21c135fa9e29886565609129bce" + integrity sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog== + dependencies: + "@ethereumjs/rlp" "^5.0.2" + ethereum-cryptography "^2.2.1" + "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" @@ -1873,9 +1905,9 @@ integrity sha512-n44M7jKes5Rxr4RQZ5W7kscTfoO4xwhW3VL/VyaEP1KEHMavlICpDNOlCwO/k6RTr+UXU8cHLJZdBzGFa2soJA== "@galacticcouncil/sdk@^4.2.0": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@galacticcouncil/sdk/-/sdk-4.2.0.tgz#20ab698004f0a56987e32d578e6e7f439c1e08fb" - integrity sha512-HU87S2IpykMXHcQX4b9zMOTsO3w80dsGDwa6PL6fI8W2fmMoMM1Ol4NH6mXu5tEru89LbtkJGQ17uCOfrysxVg== + version "4.2.1" + resolved "https://registry.yarnpkg.com/@galacticcouncil/sdk/-/sdk-4.2.1.tgz#a6ae0159a7792ecea20bbc1c672177480b8d7ef2" + integrity sha512-C5krWoCdSxYt4ovGeeIzt8Te0jtrk8FdTeSNZwRU9MuFs554LujtSq8PbcbjP9PH3o5zqBBKkBbg5Drjc06LDg== dependencies: "@galacticcouncil/math-lbp" "^1.0.0" "@galacticcouncil/math-liquidity-mining" "^1.0.0" @@ -2275,72 +2307,72 @@ dependencies: "@open-web3/orml-type-definitions" "^0.8.2-9" -"@ledgerhq/devices@^8.2.0": - version "8.2.0" - resolved "https://registry.yarnpkg.com/@ledgerhq/devices/-/devices-8.2.0.tgz#ef67bf49628252d1779acaa151b1a941acba790e" - integrity sha512-XROTW2gTmmuy+YPPDjdtKKTQ3mfxrPtKtV+a9QFbj8f5MnjVMV0Zpy1BIB4CyIMsVVi4z6+nI67auT7IlsM3SQ== +"@ledgerhq/devices@^8.4.3": + version "8.4.3" + resolved "https://registry.yarnpkg.com/@ledgerhq/devices/-/devices-8.4.3.tgz#4c296df4dd4af6f1085d728609b6931a640baf86" + integrity sha512-+ih+M27E6cm6DHrmw3GbS3mEaznCyFc0e62VdQux40XK2psgYhL2yBPftM4KCrBYm1UbHqXzqLN+Jb7rNIzsHg== dependencies: - "@ledgerhq/errors" "^6.16.1" + "@ledgerhq/errors" "^6.19.0" "@ledgerhq/logs" "^6.12.0" rxjs "^7.8.1" semver "^7.3.5" -"@ledgerhq/errors@^6.16.1": - version "6.16.1" - resolved "https://registry.yarnpkg.com/@ledgerhq/errors/-/errors-6.16.1.tgz#df650a9ba105397dee2e8c0ceddf6931c5b25ede" - integrity sha512-4D4wKecGzQpIu7sx03Sg4uE1e8g1oZUndWgw9gw776H8h9ov9c5TxPaldTn2j6orPECAERViLf7LTO4L5pE2Cw== +"@ledgerhq/errors@^6.19.0": + version "6.19.0" + resolved "https://registry.yarnpkg.com/@ledgerhq/errors/-/errors-6.19.0.tgz#ed4f01df3dabfcdeb0b073159d66cb5f2d086243" + integrity sha512-c3Jid7euMSnpHFp8H7iPtsmKDjwbTjlG46YKdw+RpCclsqtBx1uQDlYmcbP1Yv9201kVlUFUhhP4H623k8xzlQ== -"@ledgerhq/hw-transport-node-hid-noevents@^6.29.3": - version "6.29.3" - resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.29.3.tgz#a9f20779ee2fac0edaa1f4b4b820ba9ce2a8a153" - integrity sha512-zEBUEi7l0TgDncSVPEw0mD5tzgm9zhkRH/ghg3+Xpv0/l4SOSaHjz5K9uu/MXHbZ2RvI9gGwuOfPi1B4RSuebg== +"@ledgerhq/hw-transport-node-hid-noevents@^6.30.4": + version "6.30.4" + resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.30.4.tgz#b21d635b2869e21483938296ada49ab321a896c7" + integrity sha512-01cPvdIe8xwfrcOoR7vr2kN/4HHYVvAydU7hAHvLMC76irbhkbuTZiWzhr54FmEOdqz+fZnC+MUDIQHLQsjXQw== dependencies: - "@ledgerhq/devices" "^8.2.0" - "@ledgerhq/errors" "^6.16.1" - "@ledgerhq/hw-transport" "^6.30.3" + "@ledgerhq/devices" "^8.4.3" + "@ledgerhq/errors" "^6.19.0" + "@ledgerhq/hw-transport" "^6.31.3" "@ledgerhq/logs" "^6.12.0" - node-hid "^2.1.2" + node-hid "2.1.2" "@ledgerhq/hw-transport-node-hid-singleton@^6.30.1": - version "6.30.3" - resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-node-hid-singleton/-/hw-transport-node-hid-singleton-6.30.3.tgz#b8c98b213f51682395b48c50ea05e046c8f74f21" - integrity sha512-+2QfQ/I/hi8QTNh59PV3buIsVY2yvYCqBj7g/mmqJdBQVpk71KbJxy1VyDaFgFRbhXbWjbjr9dMpNfuER5LPYg== - dependencies: - "@ledgerhq/devices" "^8.2.0" - "@ledgerhq/errors" "^6.16.1" - "@ledgerhq/hw-transport" "^6.30.3" - "@ledgerhq/hw-transport-node-hid-noevents" "^6.29.3" + version "6.31.4" + resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-node-hid-singleton/-/hw-transport-node-hid-singleton-6.31.4.tgz#425961604826669d5d6879dd2fb61bc38f69789b" + integrity sha512-gXhA1ziTuAS+RNIOk8JB5CF8qg5JOUHnL5NMR6ICnr/tcZVmKqVpAG3t+deL5lhnVIoYr3I7beaUZi+NGpXhcw== + dependencies: + "@ledgerhq/devices" "^8.4.3" + "@ledgerhq/errors" "^6.19.0" + "@ledgerhq/hw-transport" "^6.31.3" + "@ledgerhq/hw-transport-node-hid-noevents" "^6.30.4" "@ledgerhq/logs" "^6.12.0" - node-hid "^2.1.2" + node-hid "2.1.2" usb "2.9.0" "@ledgerhq/hw-transport-webhid@^6.28.1": - version "6.28.3" - resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-webhid/-/hw-transport-webhid-6.28.3.tgz#4006788713944e083870101dd35de9a12aeb2be4" - integrity sha512-MNxdK1M+35QA9A+8e4ETSefK3iTO6MaHjB1tKClEngcmcJ2no+Mw8GuMyfaKkrKs2N7KbSQdVHcu9ouCL1NZhw== + version "6.29.3" + resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-webhid/-/hw-transport-webhid-6.29.3.tgz#6be013797fcb25e48f6e6a823eaecac1ce7f8e88" + integrity sha512-Adh77wXJJ4SyLfbdfejFzYPA3DrS01EweBy/Wa0CnhjmF1nOAajnc0WoP5aCiKdMud12haUM1v1hiiFIEriRFA== dependencies: - "@ledgerhq/devices" "^8.2.0" - "@ledgerhq/errors" "^6.16.1" - "@ledgerhq/hw-transport" "^6.30.3" + "@ledgerhq/devices" "^8.4.3" + "@ledgerhq/errors" "^6.19.0" + "@ledgerhq/hw-transport" "^6.31.3" "@ledgerhq/logs" "^6.12.0" "@ledgerhq/hw-transport-webusb@^6.28.1": - version "6.28.3" - resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-webusb/-/hw-transport-webusb-6.28.3.tgz#6a73b7ae03dcd25e4ed18e38e74d097975645e74" - integrity sha512-Zb6UfXVuPOFUiIA9alGzE4wZfjmFfLGQR04Zc1qbdeZ9Tf89g+tgJp7zgLRVMaQF2DPO2oOwajgSiPCg8f9ZDA== + version "6.29.3" + resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-webusb/-/hw-transport-webusb-6.29.3.tgz#ad507563c10f38626d8f747fd15efcde2356689c" + integrity sha512-8XGeJAOhWz8iulv2kpi/XPPkm0hGxPVcuhla/VOXSegVF8XKqZBgQGJmIzeJSMf9vSdzAmaGLpn4OtxB1nnJog== dependencies: - "@ledgerhq/devices" "^8.2.0" - "@ledgerhq/errors" "^6.16.1" - "@ledgerhq/hw-transport" "^6.30.3" + "@ledgerhq/devices" "^8.4.3" + "@ledgerhq/errors" "^6.19.0" + "@ledgerhq/hw-transport" "^6.31.3" "@ledgerhq/logs" "^6.12.0" -"@ledgerhq/hw-transport@^6.27.1", "@ledgerhq/hw-transport@^6.30.1", "@ledgerhq/hw-transport@^6.30.3": - version "6.30.3" - resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport/-/hw-transport-6.30.3.tgz#5904adb57ac4459e219551aa97ce2d0772393f2b" - integrity sha512-eqtTCGy8wFCxl+hZSEpjVqn1EDjQhFCne/qUyY0aA36efhWUF6bCRAhkq1e5i7g2P6TbxcIM5P5PW67dILuqIQ== +"@ledgerhq/hw-transport@^6.27.1", "@ledgerhq/hw-transport@^6.30.1", "@ledgerhq/hw-transport@^6.31.3": + version "6.31.3" + resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport/-/hw-transport-6.31.3.tgz#ceecea278ee200dbb8d7e2ce5e47e09a287c1611" + integrity sha512-rFplkHWF5NXtlYwAusqLlMu298NHtRD+2q/jrTYc//uu/xJO9LkDIgKid6IVF2+e1Wj7yX6YQVrU6L0Yu1ntEw== dependencies: - "@ledgerhq/devices" "^8.2.0" - "@ledgerhq/errors" "^6.16.1" + "@ledgerhq/devices" "^8.4.3" + "@ledgerhq/errors" "^6.19.0" "@ledgerhq/logs" "^6.12.0" events "^3.3.0" @@ -2509,21 +2541,33 @@ dependencies: "@noble/hashes" "1.3.3" +"@noble/curves@1.4.2", "@noble/curves@~1.4.0": + version "1.4.2" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.4.2.tgz#40309198c76ed71bc6dbf7ba24e81ceb4d0d1fe9" + integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw== + dependencies: + "@noble/hashes" "1.4.0" + "@noble/hashes@1.3.2": version "1.3.2" resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== -"@noble/hashes@1.3.3", "@noble/hashes@^1.2.0", "@noble/hashes@^1.3.1", "@noble/hashes@^1.3.3", "@noble/hashes@~1.3.2": +"@noble/hashes@1.3.3", "@noble/hashes@^1.3.1", "@noble/hashes@^1.3.3", "@noble/hashes@~1.3.2": version "1.3.3" resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699" integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== -"@noble/hashes@^1.4.0": +"@noble/hashes@1.4.0", "@noble/hashes@~1.4.0": version "1.4.0" resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426" integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== +"@noble/hashes@^1.2.0", "@noble/hashes@^1.4.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.5.0.tgz#abadc5ca20332db2b1b2aa3e496e9af1213570b0" + integrity sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -2823,7 +2867,12 @@ resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#cc28fb801db6a47824261a709ab924ec6951eb96" integrity sha512-0hZ8vtjcsyCX8AyqP2sqUHa1TFFfxGWmlXJkit0Nqp9b32MwZqn5eaUAiV2rNuEpoglKOdKnkGtUF8t5MoodKw== -"@polkadot-api/json-rpc-provider@0.0.1": +"@polkadot-api/json-rpc-provider-proxy@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider-proxy/-/json-rpc-provider-proxy-0.1.0.tgz#6e191f28e7d0fbbe8b540fc51d12a0adaeba297e" + integrity sha512-8GSFE5+EF73MCuLQm8tjrbCqlgclcHBSRaswvXziJ0ZW7iw3UEMsKkkKvELayWyBuOPa2T5i1nj6gFOeIsqvrg== + +"@polkadot-api/json-rpc-provider@0.0.1", "@polkadot-api/json-rpc-provider@^0.0.1": version "0.0.1" resolved "https://registry.yarnpkg.com/@polkadot-api/json-rpc-provider/-/json-rpc-provider-0.0.1.tgz#333645d40ccd9bccfd1f32503f17e4e63e76e297" integrity sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA== @@ -2834,11 +2883,12 @@ integrity sha512-EaUS9Fc3wsiUr6ZS43PQqaRScW7kM6DYbuM/ou0aYjm8N9MBqgDbGm2oL6RE1vAVmOfEuHcXZuZkhzWtyvQUtA== "@polkadot-api/merkleize-metadata@^1.1.0": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@polkadot-api/merkleize-metadata/-/merkleize-metadata-1.1.2.tgz#e77bfc56eaae6c0d16978a57ce21a854e76d545b" - integrity sha512-CzCwEUZaoshYKBPYI3lmOY+V3SEEZmErVrmRL50+Axlrs+wHxeu4fL/E3DIhdM1kKndnCazRnlB3oiiJ95AhxA== + version "1.1.4" + resolved "https://registry.yarnpkg.com/@polkadot-api/merkleize-metadata/-/merkleize-metadata-1.1.4.tgz#f4b4179640a3bcb075d34f460cc715ed048f36eb" + integrity sha512-WlVqZjFqQIomfKxW7QIl68YAvA0YF6orsicV1rCsqkgHe7rMzj1JjkntEgPMcL3aksSDShdyb7SLinvOJgSa2Q== dependencies: - "@polkadot-api/substrate-bindings" "0.6.2" + "@polkadot-api/metadata-builders" "0.7.1" + "@polkadot-api/substrate-bindings" "0.8.0" "@polkadot-api/utils" "0.1.1" "@polkadot-api/metadata-builders@0.0.1": @@ -2857,6 +2907,22 @@ "@polkadot-api/substrate-bindings" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" "@polkadot-api/utils" "0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0" +"@polkadot-api/metadata-builders@0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@polkadot-api/metadata-builders/-/metadata-builders-0.3.2.tgz#007f158c9e0546cf79ba440befc0c753ab1a6629" + integrity sha512-TKpfoT6vTb+513KDzMBTfCb/ORdgRnsS3TDFpOhAhZ08ikvK+hjHMt5plPiAX/OWkm1Wc9I3+K6W0hX5Ab7MVg== + dependencies: + "@polkadot-api/substrate-bindings" "0.6.0" + "@polkadot-api/utils" "0.1.0" + +"@polkadot-api/metadata-builders@0.7.1": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@polkadot-api/metadata-builders/-/metadata-builders-0.7.1.tgz#bac5eaea102daf2c1e7061a012ed63fbcad2eb4c" + integrity sha512-4P9sf4/HINcLubsDvHbS8ezfTKvOBNnRy18lOLyVDJsSwSPyaTKPpHbYl4vV0XCr7kwJJz8myyYjNadfhbmTaA== + dependencies: + "@polkadot-api/substrate-bindings" "0.8.0" + "@polkadot-api/utils" "0.1.1" + "@polkadot-api/observable-client@0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@polkadot-api/observable-client/-/observable-client-0.1.0.tgz#472045ea06a2bc4bccdc2db5c063eadcbf6f5351" @@ -2867,6 +2933,15 @@ "@polkadot-api/substrate-client" "0.0.1" "@polkadot-api/utils" "0.0.1" +"@polkadot-api/observable-client@^0.3.0": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@polkadot-api/observable-client/-/observable-client-0.3.2.tgz#fd91efee350595a6e0ecfd3f294cc80de86c0cf7" + integrity sha512-HGgqWgEutVyOBXoGOPp4+IAq6CNdK/3MfQJmhCJb8YaJiaK4W6aRGrdQuQSTPHfERHCARt9BrOmEvTXAT257Ug== + dependencies: + "@polkadot-api/metadata-builders" "0.3.2" + "@polkadot-api/substrate-bindings" "0.6.0" + "@polkadot-api/utils" "0.1.0" + "@polkadot-api/substrate-bindings@0.0.1": version "0.0.1" resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.0.1.tgz#c4b7f4d6c3672d2c15cbc6c02964f014b73cbb0b" @@ -2887,10 +2962,20 @@ "@scure/base" "^1.1.1" scale-ts "^1.6.0" -"@polkadot-api/substrate-bindings@0.6.2": - version "0.6.2" - resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.6.2.tgz#c131bbf7e2116eecdeb0905b6e5bf7ad87c507bc" - integrity sha512-47XEbXeR2bL/3wsTGcCPFGoBkv2p1OYObr80JC7INizZ+qsvNokzziEmrKNXUPW66RqHmbpbYaNFF45JSNbPlQ== +"@polkadot-api/substrate-bindings@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.6.0.tgz#889b0c3ba19dc95282286506bf6e370a43ce119a" + integrity sha512-lGuhE74NA1/PqdN7fKFdE5C1gNYX357j1tWzdlPXI0kQ7h3kN0zfxNOpPUN7dIrPcOFZ6C0tRRVrBylXkI6xPw== + dependencies: + "@noble/hashes" "^1.3.1" + "@polkadot-api/utils" "0.1.0" + "@scure/base" "^1.1.1" + scale-ts "^1.6.0" + +"@polkadot-api/substrate-bindings@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-bindings/-/substrate-bindings-0.8.0.tgz#8acf1e36ee49adffa79c36953d6f38ba41c0f290" + integrity sha512-nHj0tUIlrvm3tW8tSG7uvv4QBhfgjcwyNRFWdKQQ77gx83mfLdaBBrz9e2rPggwkWbptDZe2+IXE20OFF/G79w== dependencies: "@noble/hashes" "^1.4.0" "@polkadot-api/utils" "0.1.1" @@ -2907,6 +2992,14 @@ resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-client/-/substrate-client-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#55ae463f4143495e328465dd16b03e71663ef4c4" integrity sha512-lcdvd2ssUmB1CPzF8s2dnNOqbrDa+nxaaGbuts+Vo8yjgSKwds2Lo7Oq+imZN4VKW7t9+uaVcKFLMF7PdH0RWw== +"@polkadot-api/substrate-client@^0.1.2": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@polkadot-api/substrate-client/-/substrate-client-0.1.4.tgz#7a808e5cb85ecb9fa2b3a43945090a6c807430ce" + integrity sha512-MljrPobN0ZWTpn++da9vOvt+Ex+NlqTlr/XT7zi9sqPtDJiQcYl+d29hFAgpaeTqbeQKZwz3WDE9xcEfLE8c5A== + dependencies: + "@polkadot-api/json-rpc-provider" "0.0.1" + "@polkadot-api/utils" "0.1.0" + "@polkadot-api/utils@0.0.1": version "0.0.1" resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.0.1.tgz#908b22becac705149d7cc946532143d0fb003bfc" @@ -2917,6 +3010,11 @@ resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0.tgz#759698dcf948745ea37cc5ab6abd49a00f1b0c31" integrity sha512-0CYaCjfLQJTCRCiYvZ81OncHXEKPzAexCMoVloR+v2nl/O2JRya/361MtPkeNLC6XBoaEgLAG9pWQpH3WePzsw== +"@polkadot-api/utils@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.1.0.tgz#d36937cdc465c2ea302f3278cf53157340ab33a0" + integrity sha512-MXzWZeuGxKizPx2Xf/47wx9sr/uxKw39bVJUptTJdsaQn/TGq+z310mHzf1RCGvC1diHM8f593KrnDgc9oNbJA== + "@polkadot-api/utils@0.1.1": version "0.1.1" resolved "https://registry.yarnpkg.com/@polkadot-api/utils/-/utils-0.1.1.tgz#4373b3efee8d9630f18294e156bac28206c06064" @@ -3193,7 +3291,7 @@ "@polkadot/hw-ledger@^12.6.2": version "12.6.2" - resolved "https://repo.huaweicloud.com/repository/npm/@polkadot/hw-ledger/-/hw-ledger-12.6.2.tgz#61a916b0148cfecc56f34df59301bcf14e4d5eae" + resolved "https://registry.yarnpkg.com/@polkadot/hw-ledger/-/hw-ledger-12.6.2.tgz#61a916b0148cfecc56f34df59301bcf14e4d5eae" integrity sha512-hD+74wluD75YNdzj4M6/lETRz8d5ic+TKfYg+1/dXBMIFiE+KS4CENma8tBoc+Q+VcYy9LfJ6ChYYIHCTxgbHA== dependencies: "@polkadot/hw-ledger-transports" "12.6.2" @@ -3228,6 +3326,15 @@ "@polkadot/util-crypto" "13.0.2" tslib "^2.6.2" +"@polkadot/keyring@^13.1.1": + version "13.1.1" + resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-13.1.1.tgz#14b85d4e73ebfa8ccb0fadcdee127e102624dc11" + integrity sha512-Wm+9gn946GIPjGzvueObLGBBS9s541HE6mvKdWGEmPFMzH93ESN931RZlOd67my5MWryiSP05h5SHTp7bSaQTA== + dependencies: + "@polkadot/util" "13.1.1" + "@polkadot/util-crypto" "13.1.1" + tslib "^2.7.0" + "@polkadot/keyring@^6.9.1": version "6.11.1" resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-6.11.1.tgz#2510c349c965c74cc2f108f114f1048856940604" @@ -3282,10 +3389,19 @@ "@substrate/ss58-registry" "^1.46.0" tslib "^2.6.2" +"@polkadot/networks@^13.1.1": + version "13.1.1" + resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-13.1.1.tgz#e1a05ef6f78ffc37272c6474df7b55244b311f9c" + integrity sha512-eEQ4+Mfl1xFtApeU5PdXZ2XBhxNSvUz9yW+YQVGUCkXRjWFbqNRsTOYWGd9uFbiAOXiiiXbtqfZpxSDzIm4XOg== + dependencies: + "@polkadot/util" "13.1.1" + "@substrate/ss58-registry" "^1.50.0" + tslib "^2.7.0" + "@polkadot/phishing@^0.22.7": - version "0.22.7" - resolved "https://registry.yarnpkg.com/@polkadot/phishing/-/phishing-0.22.7.tgz#38765f5c5d0e7c6ec24bc5897a3ec8f280032ca3" - integrity sha512-dtgWXD9upRqpCjPlXYV5FZmuRyeaw/mjCdNR+38O64CA7RewftZhGeALTIAo+tIukrgBpJL2VZt+gM4SNVvmkQ== + version "0.22.10" + resolved "https://registry.yarnpkg.com/@polkadot/phishing/-/phishing-0.22.10.tgz#d04d3fb9e54b3cbdc4171217e3f76328fbfe44e2" + integrity sha512-Nyi1gzSGvIYy2uioJ4C+FJhaqts6Npr8HT7SVTw1Lp+0zr+4tD1+heW4sfuiWcggtlkiar6kYmgiwT+5wtMA3Q== dependencies: "@polkadot/util" "^12.6.2" "@polkadot/util-crypto" "^12.6.2" @@ -3309,15 +3425,15 @@ tslib "^2.6.2" "@polkadot/react-identicon@^3.6.6": - version "3.6.6" - resolved "https://registry.yarnpkg.com/@polkadot/react-identicon/-/react-identicon-3.6.6.tgz#815a58ae84985f96551b38582738497b04e7542d" - integrity sha512-fcIqfXdQqmfVPquytfCPtG//4CEcdYCZQI7mO0zJCwH1RlUuxmhp5Gmm8TS+4ATOZ5utO6/IB+et9yAZ99PSNg== - dependencies: - "@polkadot/keyring" "^12.6.2" - "@polkadot/ui-settings" "3.6.6" - "@polkadot/ui-shared" "3.6.6" - "@polkadot/util" "^12.6.2" - "@polkadot/util-crypto" "^12.6.2" + version "3.10.1" + resolved "https://registry.yarnpkg.com/@polkadot/react-identicon/-/react-identicon-3.10.1.tgz#8c77d26e8efc792b8e7ba6d511ae712db927dcbf" + integrity sha512-zzcKixDj27YdA4gTN+IvKFFSgatKliHuqsEjOJxAidLsbD1EUJUqeYuNhUftLFGO7JEJG0qrKJhCNLBvDJcJlg== + dependencies: + "@polkadot/keyring" "^13.1.1" + "@polkadot/ui-settings" "3.10.1" + "@polkadot/ui-shared" "3.10.1" + "@polkadot/util" "^13.1.1" + "@polkadot/util-crypto" "^13.1.1" ethereum-blockies-base64 "^1.0.2" jdenticon "3.2.0" react-copy-to-clipboard "^5.1.0" @@ -3497,7 +3613,7 @@ optionalDependencies: "@substrate/connect" "0.7.19" -"@polkadot/types-augment@11.3.1": +"@polkadot/types-augment@11.3.1", "@polkadot/types-augment@^11.0.3": version "11.3.1" resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-11.3.1.tgz#1f7f553f0ca6eb8fbc0306901edc045fe18729e1" integrity sha512-eR3HVpvUmB3v7q2jTWVmVfAVfb1/kuNn7ij94Zqadg/fuUq0pKqIOKwkUj3OxRM3A/5BnW3MbgparjKD3r+fyw== @@ -3517,17 +3633,7 @@ "@polkadot/util" "^13.0.2" tslib "^2.6.2" -"@polkadot/types-augment@^11.0.3": - version "11.1.1" - resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-11.1.1.tgz#2d65b416b0d6ddce25e0185692ef52e4cc122365" - integrity sha512-aBfM+vu76YIym8Dvy00FJZRVz9cHqeghlTj3Lj1WjolVc+GuFxAWDx87p778Sb9d+iebA3pVY0wXNF+ZlRNDtg== - dependencies: - "@polkadot/types" "11.1.1" - "@polkadot/types-codec" "11.1.1" - "@polkadot/util" "^12.6.2" - tslib "^2.6.2" - -"@polkadot/types-codec@10.13.1", "@polkadot/types-codec@11.1.1", "@polkadot/types-codec@11.3.1", "@polkadot/types-codec@12.2.1", "@polkadot/types-codec@^11.0.2", "@polkadot/types-codec@^12.0.2": +"@polkadot/types-codec@10.13.1", "@polkadot/types-codec@11.3.1", "@polkadot/types-codec@12.2.1", "@polkadot/types-codec@^11.0.2", "@polkadot/types-codec@^12.0.2": version "12.2.1" resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-12.2.1.tgz#a0bb6bddea02c0b6c89c1336420e279c6b4ca493" integrity sha512-lOtY/9rTHrk8c9cQsks3vcNjd2VAC7KEgaCgn/FNyIFuwWP16lBH7SZXJBFq362nGJBiBEvembSDUdtpSYfRng== @@ -3619,7 +3725,7 @@ "@babel/runtime" "^7.20.13" "@polkadot/util" "^10.4.2" -"@polkadot/types@10.13.1", "@polkadot/types@11.1.1", "@polkadot/types@11.3.1", "@polkadot/types@12.2.1", "@polkadot/types@9.14.2", "@polkadot/types@^10.11.2", "@polkadot/types@^10.9.1", "@polkadot/types@^11.0.2", "@polkadot/types@^11.0.3", "@polkadot/types@^12.0.2", "@polkadot/types@^4.13.1", "@polkadot/types@^6.0.5", "@polkadot/types@^7.2.1", "@polkadot/types@^9.13.2": +"@polkadot/types@10.13.1", "@polkadot/types@11.3.1", "@polkadot/types@12.2.1", "@polkadot/types@9.14.2", "@polkadot/types@^10.11.2", "@polkadot/types@^10.9.1", "@polkadot/types@^11.0.2", "@polkadot/types@^11.0.3", "@polkadot/types@^12.0.2", "@polkadot/types@^4.13.1", "@polkadot/types@^6.0.5", "@polkadot/types@^7.2.1", "@polkadot/types@^9.13.2": version "12.2.1" resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-12.2.1.tgz#99192d3a35c3f8199277baaed0df7d88f0bde3ef" integrity sha512-axVbEnWLU9H7TMgRyECV79FWbfB4bNU9tkrCrBiOifTpJ4DT9AIbkNTgxI+wexywFbn8ATG6y1kw8leUnLDYvg== @@ -3658,6 +3764,17 @@ eventemitter3 "^4.0.7" store "^2.0.12" +"@polkadot/ui-settings@3.10.1", "@polkadot/ui-settings@^3.6.6": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@polkadot/ui-settings/-/ui-settings-3.10.1.tgz#e1763644f966873bd0f267e60eeab36f8671ef38" + integrity sha512-FD22MWrTue0Ry4gk+tnCRUOju0tzMwNZoUutSMaYJwIFqiLw4PZu8YRle2uwWI/XioUfjzYC59WDJcYhtY3y4w== + dependencies: + "@polkadot/networks" "^13.1.1" + "@polkadot/util" "^13.1.1" + eventemitter3 "^5.0.1" + store "^2.0.12" + tslib "^2.6.2" + "@polkadot/ui-settings@3.6.4", "@polkadot/ui-settings@^3.5.1": version "3.6.4" resolved "https://registry.yarnpkg.com/@polkadot/ui-settings/-/ui-settings-3.6.4.tgz#459ee4bee8aa9a81c21ad1bac96130a43a0f14bd" @@ -3669,15 +3786,12 @@ store "^2.0.12" tslib "^2.6.2" -"@polkadot/ui-settings@3.6.6", "@polkadot/ui-settings@^3.6.6": - version "3.6.6" - resolved "https://registry.yarnpkg.com/@polkadot/ui-settings/-/ui-settings-3.6.6.tgz#99091457cde3a8e39880abdb1fb7171387172880" - integrity sha512-DoXXnj4KASxZWE+hnBkNXOkm3AX6CbyyZLzPBAPR4ZyyGTqushJNmyaiTiArqMtBh7rYFT2cDStt+qOa/hjyhQ== +"@polkadot/ui-shared@3.10.1": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@polkadot/ui-shared/-/ui-shared-3.10.1.tgz#b60282f7fb8c486d864370ac3756e177db52c1da" + integrity sha512-g7cjZhIYEUsV2MPolRhBY/41Mhpg1b1J3S3DQMIO2Q/Kg78askeypBdMspOrpVO/UGpWWCGUh07ix3xpJWiGMw== dependencies: - "@polkadot/networks" "^12.6.2" - "@polkadot/util" "^12.6.2" - eventemitter3 "^5.0.1" - store "^2.0.12" + colord "^2.9.3" tslib "^2.6.2" "@polkadot/ui-shared@3.6.4": @@ -3688,15 +3802,7 @@ colord "^2.9.3" tslib "^2.6.2" -"@polkadot/ui-shared@3.6.6": - version "3.6.6" - resolved "https://registry.yarnpkg.com/@polkadot/ui-shared/-/ui-shared-3.6.6.tgz#b52b9ec2775a5b919640eb4871b9d6553e13cf5e" - integrity sha512-cZkgis83y9U0SxsXZalvOqRWvq0tLHnFIYlyMzitolC4xePUQjamSar6mUedp+mneyPIq+GW46wyUzPbuBFuhw== - dependencies: - colord "^2.9.3" - tslib "^2.6.2" - -"@polkadot/util-crypto@10.4.2", "@polkadot/util-crypto@12.6.2", "@polkadot/util-crypto@13.0.2", "@polkadot/util-crypto@6.11.1", "@polkadot/util-crypto@7.9.2", "@polkadot/util-crypto@8.7.1", "@polkadot/util-crypto@^10.4.2", "@polkadot/util-crypto@^12.2.1", "@polkadot/util-crypto@^12.5.1", "@polkadot/util-crypto@^12.6.1", "@polkadot/util-crypto@^12.6.2", "@polkadot/util-crypto@^13.0.2": +"@polkadot/util-crypto@10.4.2", "@polkadot/util-crypto@12.6.2", "@polkadot/util-crypto@13.0.2", "@polkadot/util-crypto@13.1.1", "@polkadot/util-crypto@6.11.1", "@polkadot/util-crypto@7.9.2", "@polkadot/util-crypto@8.7.1", "@polkadot/util-crypto@^10.4.2", "@polkadot/util-crypto@^12.2.1", "@polkadot/util-crypto@^12.5.1", "@polkadot/util-crypto@^12.6.1", "@polkadot/util-crypto@^12.6.2", "@polkadot/util-crypto@^13.0.2", "@polkadot/util-crypto@^13.1.1": version "12.6.2" resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-12.6.2.tgz#d2d51010e8e8ca88951b7d864add797dad18bbfc" integrity sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg== @@ -3712,7 +3818,7 @@ "@scure/base" "^1.1.5" tslib "^2.6.2" -"@polkadot/util@10.4.2", "@polkadot/util@12.6.2", "@polkadot/util@13.0.2", "@polkadot/util@6.11.1", "@polkadot/util@7.9.2", "@polkadot/util@8.7.1", "@polkadot/util@^10.2.1", "@polkadot/util@^10.4.2", "@polkadot/util@^12.2.1", "@polkadot/util@^12.5.1", "@polkadot/util@^12.6.1", "@polkadot/util@^12.6.2", "@polkadot/util@^13.0.2": +"@polkadot/util@10.4.2", "@polkadot/util@12.6.2", "@polkadot/util@13.0.2", "@polkadot/util@13.1.1", "@polkadot/util@6.11.1", "@polkadot/util@7.9.2", "@polkadot/util@8.7.1", "@polkadot/util@^10.2.1", "@polkadot/util@^10.4.2", "@polkadot/util@^12.2.1", "@polkadot/util@^12.5.1", "@polkadot/util@^12.6.1", "@polkadot/util@^12.6.2", "@polkadot/util@^13.0.2", "@polkadot/util@^13.1.1": version "12.6.2" resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-12.6.2.tgz#9396eff491221e1f0fd28feac55fc16ecd61a8dc" integrity sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw== @@ -4726,10 +4832,10 @@ resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.8.tgz#8f23646c352f020c83bca750a82789e246d42b50" integrity sha512-6CyAclxj3Nb0XT7GHK6K4zK6k2xJm6E4Ft0Ohjt4WgegiFUHEtFb2CGzmPmGBwoIhrLsqNLYfLr04Y1GePrzZg== -"@scure/base@^1.1.7": - version "1.1.7" - resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.7.tgz#fe973311a5c6267846aa131bc72e96c5d40d2b30" - integrity sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g== +"@scure/base@^1.1.7", "@scure/base@~1.1.6": + version "1.1.9" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.9.tgz#e5e142fbbfe251091f9c5f1dd4c834ac04c3dbd1" + integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== "@scure/bip32@1.3.3": version "1.3.3" @@ -4740,6 +4846,15 @@ "@noble/hashes" "~1.3.2" "@scure/base" "~1.1.4" +"@scure/bip32@1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.4.0.tgz#4e1f1e196abedcef395b33b9674a042524e20d67" + integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg== + dependencies: + "@noble/curves" "~1.4.0" + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + "@scure/bip39@1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.2.tgz#f3426813f4ced11a47489cbcf7294aa963966527" @@ -4748,6 +4863,14 @@ "@noble/hashes" "~1.3.2" "@scure/base" "~1.1.4" +"@scure/bip39@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.3.0.tgz#0f258c16823ddd00739461ac31398b4e7d6a18c3" + integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ== + dependencies: + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + "@shopify/flash-list@^1.7.1": version "1.7.1" resolved "https://registry.yarnpkg.com/@shopify/flash-list/-/flash-list-1.7.1.tgz#11644551d86b8a9ef83f521487bebba478bfc011" @@ -4819,9 +4942,9 @@ "@open-web3/orml-type-definitions" "1.1.4" "@sora-substrate/type-definitions@^1.17.7": - version "1.28.0" - resolved "https://registry.yarnpkg.com/@sora-substrate/type-definitions/-/type-definitions-1.28.0.tgz#64b99491622ad4923c70c652db28e39ef17c5403" - integrity sha512-BYfv5ZXl8fGnXoUgQkB55UaF5jM2k1aCjVz0l6o19dlXJeXDRNAeLzr2GRcvuEyb57AifqceTPEchcghDqe1Pw== + version "1.40.4" + resolved "https://registry.yarnpkg.com/@sora-substrate/type-definitions/-/type-definitions-1.40.4.tgz#be845d39fa0cbcfd17af5a653457ccafda79f6a5" + integrity sha512-KAFiSYCDNdQKlGNFDXHn6kNtsk4SstrRnauy9ztVkbikVzmkUYB+Ao0+8Eqm4QAzZU4ILUZ1RMIJ0fpbEmmTmg== dependencies: "@open-web3/orml-type-definitions" "1.1.4" @@ -4977,10 +5100,10 @@ resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-2.0.0.tgz#badaa6e6b5f7c7d56987d778f4944ddb83cd9ea7" integrity sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg== -"@substrate/connect-known-chains@^1.1.1": - version "1.1.9" - resolved "https://registry.yarnpkg.com/@substrate/connect-known-chains/-/connect-known-chains-1.1.9.tgz#dcfbe15736a97e11ffaec141704ef128f9ad15ac" - integrity sha512-P11S0GtHaOGm4lnwZ2YUSugH3PZ9eYpRtaZGEx0yG7f/A9UBh7KhinRBMgC/NIGAi58l5uQeWm0HFZG09PF7CQ== +"@substrate/connect-known-chains@^1.1.1", "@substrate/connect-known-chains@^1.1.5": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@substrate/connect-known-chains/-/connect-known-chains-1.4.1.tgz#a8bb561c651cd2a44f1d3ad34facb0cc71249ca0" + integrity sha512-WlFKGEE3naIa7iTyy7hJ0RV0dyGpP7Zic1Z8sXr4bJmSEzZoHcfLRbM1D3T+zFAaitffVCu6k55Vj+CFzMPw1Q== "@substrate/connect-known-chains@^1.1.4": version "1.1.4" @@ -4996,7 +5119,7 @@ "@substrate/smoldot-light" "0.7.9" eventemitter3 "^4.0.7" -"@substrate/connect@0.8.10", "@substrate/connect@^0.8.9": +"@substrate/connect@0.8.10": version "0.8.10" resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.8.10.tgz#810b6589f848828aa840c731a1f36b84fe0e5956" integrity sha512-DIyQ13DDlXqVFnLV+S6/JDgiGowVRRrh18kahieJxhgvzcWicw5eLc6jpfQ0moVVLBYkO7rctB5Wreldwpva8w== @@ -5016,6 +5139,16 @@ "@substrate/light-client-extension-helpers" "^0.0.4" smoldot "2.0.22" +"@substrate/connect@^0.8.9": + version "0.8.11" + resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.8.11.tgz#983ec69a05231636e217b573b8130a6b942af69f" + integrity sha512-ofLs1PAO9AtDdPbdyTYj217Pe+lBfTLltdHDs3ds8no0BseoLeAGxpz1mHfi7zB4IxI3YyAiLjH6U8cw4pj4Nw== + dependencies: + "@substrate/connect-extension-protocol" "^2.0.0" + "@substrate/connect-known-chains" "^1.1.5" + "@substrate/light-client-extension-helpers" "^1.0.0" + smoldot "2.0.26" + "@substrate/light-client-extension-helpers@^0.0.4": version "0.0.4" resolved "https://registry.yarnpkg.com/@substrate/light-client-extension-helpers/-/light-client-extension-helpers-0.0.4.tgz#a5958d5c1aac7df69f55bd90991aa935500f8124" @@ -5042,6 +5175,19 @@ "@substrate/connect-known-chains" "^1.1.4" rxjs "^7.8.1" +"@substrate/light-client-extension-helpers@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@substrate/light-client-extension-helpers/-/light-client-extension-helpers-1.0.0.tgz#7b60368c57e06e5cf798c6557422d12e6d81f1ff" + integrity sha512-TdKlni1mBBZptOaeVrKnusMg/UBpWUORNDv5fdCaJklP4RJiFOzBCrzC+CyVI5kQzsXBisZ+2pXm+rIjS38kHg== + dependencies: + "@polkadot-api/json-rpc-provider" "^0.0.1" + "@polkadot-api/json-rpc-provider-proxy" "^0.1.0" + "@polkadot-api/observable-client" "^0.3.0" + "@polkadot-api/substrate-client" "^0.1.2" + "@substrate/connect-extension-protocol" "^2.0.0" + "@substrate/connect-known-chains" "^1.1.5" + rxjs "^7.8.1" + "@substrate/smoldot-light@0.7.9": version "0.7.9" resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.7.9.tgz#68449873a25558e547e9468289686ee228a9930f" @@ -5060,7 +5206,12 @@ resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.46.0.tgz#bfe3e6a30d39929f57ecc178acde4e74a773e2b6" integrity sha512-rBvWnlrBeFTd5LVG7oX3rOHzR16yqyffOFHKmUiVcblpXI3D89CXOvAljW9tWlA1H/2/FegaZnHPhdObPsvi+w== -"@subwallet/chain-list@0.2.87", "@subwallet/chain-list@0.2.88-beta.1": +"@substrate/ss58-registry@^1.50.0": + version "1.50.0" + resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.50.0.tgz#2d2a3d060cd4eadd200e4538078461ba73e13d6d" + integrity sha512-mkmlMlcC+MSd9rA+PN8ljGAm5fVZskvVwkXIsbx4NFwaT8kt38r7e9cyDWscG3z2Zn40POviZvEMrJSk+r2SgQ== + +"@subwallet/chain-list@0.2.86", "@subwallet/chain-list@0.2.88-beta.1": version "0.2.88-beta.1" resolved "https://registry.yarnpkg.com/@subwallet/chain-list/-/chain-list-0.2.88-beta.1.tgz#57501763b883c332c8b4fdd7cf9147a3a878dda5" integrity sha512-R0NFrdgDZsDAFoDNjGZb3yTb7oga6uEqoAQgRH0HPU9Vt2tKTqL+K2DDK6H978IXk7Gm+ghFAzzVtt+jTR4bWA== @@ -5069,15 +5220,15 @@ "@polkadot/util" "^12.5.1" eventemitter3 "^5.0.1" -"@subwallet/extension-base@1.2.30-0", "@subwallet/extension-base@^1.2.30-0": - version "1.2.30-0" - resolved "https://registry.yarnpkg.com/@subwallet/extension-base/-/extension-base-1.2.30-0.tgz#80edd4b4a401fb1f467e402420d31ae2952e6874" - integrity sha512-WGUkjYbEklcPwF/SyR2anhwBxPhGrT/7FB5j6PZNVP5vSja/qfNsPsA0+3SMrhINLEMjxpfLU9lmfZd8G1yI+A== +"@subwallet/extension-base@1.2.29-0", "@subwallet/extension-base@^1.2.29-0": + version "1.2.29-0" + resolved "https://registry.yarnpkg.com/@subwallet/extension-base/-/extension-base-1.2.29-0.tgz#aa1191df2a47008761e6076fd4183f3cfda30fde" + integrity sha512-BGMeFCOsk9c+RgK0ghSZ258zTfOyNYrV9i4y/Lp4eOYnRGcDXSYzv/KacEdaOrutAOP0h902OrAShEjLFk5nVQ== dependencies: "@acala-network/api" "^5.0.2" "@apollo/client" "^3.7.14" "@azns/resolver-core" "^1.4.0" - "@chainflip/sdk" "^1.5.2" + "@chainflip/sdk" "^1.3.0" "@equilab/api" "~1.14.25" "@ethereumjs/common" "^4.1.0" "@ethereumjs/tx" "^5.1.0" @@ -5109,11 +5260,11 @@ "@reduxjs/toolkit" "^1.9.1" "@sora-substrate/type-definitions" "^1.17.7" "@substrate/connect" "^0.8.9" - "@subwallet/chain-list" "0.2.87" - "@subwallet/extension-base" "^1.2.30-0" - "@subwallet/extension-chains" "^1.2.30-0" - "@subwallet/extension-dapp" "^1.2.30-0" - "@subwallet/extension-inject" "^1.2.30-0" + "@subwallet/chain-list" "0.2.86" + "@subwallet/extension-base" "^1.2.29-0" + "@subwallet/extension-chains" "^1.2.29-0" + "@subwallet/extension-dapp" "^1.2.29-0" + "@subwallet/extension-inject" "^1.2.29-0" "@subwallet/keyring" "^0.1.6" "@subwallet/ui-keyring" "^0.1.6" "@walletconnect/keyvaluestorage" "^1.1.1" @@ -5153,7 +5304,7 @@ web3-eth-contract "^1.10.0" web3-utils "^1.10.0" -"@subwallet/extension-chains@1.2.30-0", "@subwallet/extension-chains@^1.2.30-0": +"@subwallet/extension-chains@1.2.30-0": version "1.2.30-0" resolved "https://registry.yarnpkg.com/@subwallet/extension-chains/-/extension-chains-1.2.30-0.tgz#31935334a2d88ddc7a37584a29e1149c7f2ecc79" integrity sha512-Lwy5hjiuizt5Ua2vlBuHUNwf+unkVROZyAJHr3AuRfbMTidOkgmnWidKLaVXeFZlLC264bCCkR6dfhuniNKohg== @@ -5164,7 +5315,18 @@ "@polkadot/util-crypto" "^12.6.2" "@subwallet/extension-inject" "^1.2.30-0" -"@subwallet/extension-dapp@1.2.30-0", "@subwallet/extension-dapp@^1.2.30-0": +"@subwallet/extension-chains@^1.2.29-0": + version "1.2.29-0" + resolved "https://registry.yarnpkg.com/@subwallet/extension-chains/-/extension-chains-1.2.29-0.tgz#f091e5b9f11a1c9020d196524029f8040ceac391" + integrity sha512-Ut1l1xnPbSuqSnQWYahzXxcYuK9eV6MrMXcFlNEgiu5lVs9E3qjLrTWE0IwHceJrsDcfPjpX4PC8Jy/H/EP1og== + dependencies: + "@babel/runtime" "^7.20.6" + "@polkadot/networks" "^12.6.2" + "@polkadot/util" "^12.6.2" + "@polkadot/util-crypto" "^12.6.2" + "@subwallet/extension-inject" "^1.2.29-0" + +"@subwallet/extension-dapp@1.2.30-0": version "1.2.30-0" resolved "https://registry.yarnpkg.com/@subwallet/extension-dapp/-/extension-dapp-1.2.30-0.tgz#8b920d71eec629df9ffa2e6085b7854124410b87" integrity sha512-XxHBwGHN/Pps8Shn/mtM+Ua/z9EY/rK+mGhb6KTG0OrJ+2hu6MV8KAFP2TltazYVPbPu6iwXwMYf3wyRjlVU0A== @@ -5174,6 +5336,16 @@ "@polkadot/util-crypto" "^12.6.2" "@subwallet/extension-inject" "^1.2.30-0" +"@subwallet/extension-dapp@^1.2.29-0": + version "1.2.29-0" + resolved "https://registry.yarnpkg.com/@subwallet/extension-dapp/-/extension-dapp-1.2.29-0.tgz#c6131a97b36401622a4c17490a9fa4f1b18bd520" + integrity sha512-zabyw2a3vCLHzkavXlKMvUZL5H18PS9UINR0RQof5fUCYFwclwQTU2gfSS6CzwOdqa0RqBCN2m5zn3iBqRXskA== + dependencies: + "@babel/runtime" "^7.20.6" + "@polkadot/util" "^12.6.2" + "@polkadot/util-crypto" "^12.6.2" + "@subwallet/extension-inject" "^1.2.29-0" + "@subwallet/extension-inject@1.2.30-0", "@subwallet/extension-inject@^1.2.30-0": version "1.2.30-0" resolved "https://registry.yarnpkg.com/@subwallet/extension-inject/-/extension-inject-1.2.30-0.tgz#a15d0509bfa90a707e7c423d2d928b44abf2adf4" @@ -5187,6 +5359,19 @@ "@polkadot/x-global" "^12.2.1" web3-core "^1.10.0" +"@subwallet/extension-inject@^1.2.29-0": + version "1.2.29-0" + resolved "https://registry.yarnpkg.com/@subwallet/extension-inject/-/extension-inject-1.2.29-0.tgz#7408b11ca186b68931218c51c61960fbbdc594b0" + integrity sha512-z1ApPF0Js2jkK+IaAobxCe6llwbJyOuQ7/a144fjTGMM7MiXZRyVad21mTX9uYEzroeE86b1mspcD72+nmfIxA== + dependencies: + "@babel/runtime" "^7.20.6" + "@polkadot/rpc-provider" "^11.0.3" + "@polkadot/types" "^11.0.3" + "@polkadot/util" "^12.6.2" + "@polkadot/util-crypto" "^12.6.2" + "@polkadot/x-global" "^12.2.1" + web3-core "^1.10.0" + "@subwallet/keyring@0.1.6", "@subwallet/keyring@^0.1.6": version "0.1.6" resolved "https://registry.yarnpkg.com/@subwallet/keyring/-/keyring-0.1.6.tgz#effaf6a584b9a500802c341e150568378c3565a0" @@ -5403,112 +5588,104 @@ dependencies: defer-to-connect "^2.0.1" -"@thi.ng/api@^8.10.1": - version "8.10.1" - resolved "https://registry.yarnpkg.com/@thi.ng/api/-/api-8.10.1.tgz#0ea0f285a0c3dd594d2e9d802727b0e69e22b505" - integrity sha512-US1MziG0YlyacscmMBGitQhxjnd3wna/zzMPiIkiXLXT7T8h66E36ySLsg2Qve+4QK82tCzaYzAS1PusOPSSbw== +"@thi.ng/api@^8.11.10": + version "8.11.10" + resolved "https://registry.yarnpkg.com/@thi.ng/api/-/api-8.11.10.tgz#7fd7089c6a57b0447a8a859867e4c565be1a3cc7" + integrity sha512-X2Dc3uArqR5IpGPs12do6w6SZI+h3HQM/sWAE3URXFZMuKuWrUtK4ollHv5Ubx96rSJvhzxk2TjJW0ek+c8cSg== -"@thi.ng/arrays@^2.9.3": - version "2.9.3" - resolved "https://registry.yarnpkg.com/@thi.ng/arrays/-/arrays-2.9.3.tgz#595b0a9969446628d21f6edd5cbc64fe3a2ab23b" - integrity sha512-kblEIAMyuS/mWXgjvKNDWLdKx5J+tbGWnriH6KUwS5j37lqBuqLN0LRI2IMb/AcWchPcHJmgeKQM/s7s5oUWgw== +"@thi.ng/arrays@^2.10.1": + version "2.10.1" + resolved "https://registry.yarnpkg.com/@thi.ng/arrays/-/arrays-2.10.1.tgz#9697590b21735a25eba0031af0540e12d56e474c" + integrity sha512-TWKO3/OvmfNGKexcDH/akmtN2tgRGGIXqltIxxNgoEpjUg/PbvBI9Nju8nGszsRRrbgf8dbiUewyHNYhhwkbhw== dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/checks" "^3.6.1" - "@thi.ng/compare" "^2.3.2" - "@thi.ng/equiv" "^2.1.55" - "@thi.ng/errors" "^2.5.4" - "@thi.ng/random" "^3.7.3" + "@thi.ng/api" "^8.11.10" + "@thi.ng/checks" "^3.6.12" + "@thi.ng/compare" "^2.4.2" + "@thi.ng/equiv" "^2.1.66" + "@thi.ng/errors" "^2.5.16" + "@thi.ng/random" "^4.0.4" "@thi.ng/cache@^2.1.35": - version "2.2.10" - resolved "https://registry.yarnpkg.com/@thi.ng/cache/-/cache-2.2.10.tgz#8f3a691311b8ad2ff679fbaf9b66638f19a92d18" - integrity sha512-f8EjjZs+FrDP/PnM1KOxHOejchFDVOgRdWn+isC6n0jGeoDgQFq/JqXMwsuDsAsTHP5zR3TI0jiIsiw3t0/asA== - dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/dcons" "^3.2.109" - "@thi.ng/transducers" "^9.0.1" - -"@thi.ng/checks@^3.6.1": - version "3.6.1" - resolved "https://registry.yarnpkg.com/@thi.ng/checks/-/checks-3.6.1.tgz#a523c45f108e12d4d672db8f465f42b4ce9ebb3b" - integrity sha512-Q8ZnXmjSvxyhjOORDXdCNMe1M0ceSdhTlYi1CE0kS5KtZwTN7bsYwj7p5pX9iEZLxQMox7aISV1PcL5u+Laklg== + version "2.3.8" + resolved "https://registry.yarnpkg.com/@thi.ng/cache/-/cache-2.3.8.tgz#29250e44b95636ec9f88b5b2efb879aa01c2a94c" + integrity sha512-Y6+0hVjXENwTRbY1P0Qc2xoPit2Y9AFPIIIvf/OSXf/Z7Zp7DFjjyRr9k4uIsx2BVGq14sBBI/Qxp41jVP/HfA== dependencies: - tslib "^2.6.2" + "@thi.ng/api" "^8.11.10" + "@thi.ng/dcons" "^3.2.128" -"@thi.ng/compare@^2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@thi.ng/compare/-/compare-2.3.2.tgz#1a9faa3fd9651b9c9dee97d24ae50184dc02d087" - integrity sha512-u/GFWkSU8mARqDD6cPMb8DfQKTcsCA8Wxd0t11Es+mJlZmaRisRSngNdRwOtOaPM6KnHezfH113RyYRHuq4spw== +"@thi.ng/checks@^3.6.12": + version "3.6.12" + resolved "https://registry.yarnpkg.com/@thi.ng/checks/-/checks-3.6.12.tgz#52e2bbd8f6d1eaf3fa4792cc1bbf7262c21addb6" + integrity sha512-wce2ZHH07V6n0FM+ZqxyMf6+Gsuu3jBUF2dNbfu8tT+NstGsZk9CFSQF5AnPyiVQ/iWO8dX+CTSc7ec36g0T+w== dependencies: - "@thi.ng/api" "^8.10.1" + tslib "^2.7.0" -"@thi.ng/compose@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@thi.ng/compose/-/compose-3.0.1.tgz#2f8b113a27ade6e63f6af8a7ca803b630cc70a6b" - integrity sha512-CFm9OBo07K2sYM3YzAVGunFZd4RqPMhZu8xnqZN65HKIhWhRIR3zfHdirxZ1QAFix4ZGSPUJ008nLerk/gwXoA== - dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/errors" "^2.5.4" - -"@thi.ng/dcons@^3.2.109": - version "3.2.109" - resolved "https://registry.yarnpkg.com/@thi.ng/dcons/-/dcons-3.2.109.tgz#17e9229e5726e30c3792e91b28c6f4c9341347fe" - integrity sha512-XxzDyLZMDJRl3TjjLU1QbMMpBwIWKB24ylU4huF3mOQyQzbdUcbpqdRxE7JuMlEsgpRa2394RuVgdaCcyMIsrg== - dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/checks" "^3.6.1" - "@thi.ng/compare" "^2.3.2" - "@thi.ng/equiv" "^2.1.55" - "@thi.ng/errors" "^2.5.4" - "@thi.ng/random" "^3.7.3" - "@thi.ng/transducers" "^9.0.1" - -"@thi.ng/equiv@^2.1.55": - version "2.1.55" - resolved "https://registry.yarnpkg.com/@thi.ng/equiv/-/equiv-2.1.55.tgz#1cbcb5fc528e5dcb1ac4ed80c785fb8e10e28064" - integrity sha512-fTY7c2cXEbWdNf7oLIb5yWXMHRyZtHAf1MS639QKOQXbMrSFS7WB4NKAiOXHGh2HIFoJLjRXjzE0KPVQf3XQxA== - -"@thi.ng/errors@^2.5.4": - version "2.5.4" - resolved "https://registry.yarnpkg.com/@thi.ng/errors/-/errors-2.5.4.tgz#c87be6921a58bf2d7881c0acc93435d9447ef253" - integrity sha512-ZwlKNchTWg5vKWFZ+YgjLm509JCrKnxCwVTCY0NFpu/KbEXAvjdObfY8bGXI3rBj9rRlzJ3HAQGNYB8ieSuj4w== - -"@thi.ng/hex@^2.3.43": - version "2.3.43" - resolved "https://registry.yarnpkg.com/@thi.ng/hex/-/hex-2.3.43.tgz#945d67a9f011bdac41a83d79f531d6a54e1ffa4b" - integrity sha512-DHMY+TqifDPPW4BCF1ftVPjXx1rvOJRPFGtwOsmg3TBbPtVqT93qZivb1/vCapPRsS3wXehNRmaJ87xiZWGwKw== - -"@thi.ng/math@^5.10.10": - version "5.10.10" - resolved "https://registry.yarnpkg.com/@thi.ng/math/-/math-5.10.10.tgz#1af82444dd7da69e429e0d18c84627c8fd8cddaa" - integrity sha512-ZG5s/qDwUfVbPYIk+6xHJW+XWfmKOw9MiJFnFRltiOONmOlHV3em7ixXNxX6Q5oESyFDEnuiXDhn15OK252fuw== - dependencies: - "@thi.ng/api" "^8.10.1" - -"@thi.ng/random@^3.7.3": - version "3.7.3" - resolved "https://registry.yarnpkg.com/@thi.ng/random/-/random-3.7.3.tgz#2913691d164f12ea6177d4b47875c5664ea15a68" - integrity sha512-h6JjpqtMVSxqSXZt7lzuUCQ6yfoEgkotgyLOgUDWq7usBWKDLMRBh3XqUum6bR+3/tJSkx3Bn3XQAVxIAkco/w== - dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/checks" "^3.6.1" - "@thi.ng/errors" "^2.5.4" - "@thi.ng/hex" "^2.3.43" - -"@thi.ng/transducers@^9.0.1": - version "9.0.1" - resolved "https://registry.yarnpkg.com/@thi.ng/transducers/-/transducers-9.0.1.tgz#19f72c1fd5b277623e63c2f1fe6b8ce477655265" - integrity sha512-oI7dOvYxo/l2NTqcFmuM4xbgl0JrW+OKuD3XUuKMhNVzxkm60TnxQZ+DrORJX+Ot0VHIYuv1vk5ha7fPZysDxg== - dependencies: - "@thi.ng/api" "^8.10.1" - "@thi.ng/arrays" "^2.9.3" - "@thi.ng/checks" "^3.6.1" - "@thi.ng/compare" "^2.3.2" - "@thi.ng/compose" "^3.0.1" - "@thi.ng/errors" "^2.5.4" - "@thi.ng/math" "^5.10.10" - "@thi.ng/random" "^3.7.3" +"@thi.ng/compare@^2.4.2": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@thi.ng/compare/-/compare-2.4.2.tgz#57d13df47e989f4a7dccb826f8306d8644e7209e" + integrity sha512-VU0Bb3a2vzyv+l3HI1mqZpaKLNY3UMhO7n9Jm3kOrnFl85Rgp1h2lUuglByK9RjazaKk4iHdHQWfAa8Yw8sjgw== + dependencies: + "@thi.ng/api" "^8.11.10" + +"@thi.ng/compose@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@thi.ng/compose/-/compose-3.0.13.tgz#71d6328ba43da029f7b31153a016f224bd73aebd" + integrity sha512-T8Ntp5zzP82sLHynOBTs+fEDBDyciOWihCXZOFG25hnl1Wz1AIsAzgXIx/ZSvqvq+a5i+vcSUY1vh0yhYhScqQ== + dependencies: + "@thi.ng/api" "^8.11.10" + "@thi.ng/errors" "^2.5.16" + +"@thi.ng/dcons@^3.2.128": + version "3.2.128" + resolved "https://registry.yarnpkg.com/@thi.ng/dcons/-/dcons-3.2.128.tgz#21b679f2d2f12e6056d3175d41fc037723f8578d" + integrity sha512-PQ+/+tqx/4Qvu+6LW4zsxRmtYr1viEnr539Sg22rrZPX5Tf604viS1Z02Pl3GzFW0tc57V5y6pOyG/WGvZhWPw== + dependencies: + "@thi.ng/api" "^8.11.10" + "@thi.ng/checks" "^3.6.12" + "@thi.ng/compare" "^2.4.2" + "@thi.ng/equiv" "^2.1.66" + "@thi.ng/errors" "^2.5.16" + "@thi.ng/random" "^4.0.4" + "@thi.ng/transducers" "^9.2.4" + +"@thi.ng/equiv@^2.1.66": + version "2.1.66" + resolved "https://registry.yarnpkg.com/@thi.ng/equiv/-/equiv-2.1.66.tgz#87fbbfe30e604a5dc489d82356feb456d9b8601c" + integrity sha512-yudDPtnj2eX7ZLbzvWnOtLlGKWGIo33uqJK980ARhl+ZM1HqNEmG7m9EkbiurA6rqqKUds42Q+bn+UCOavecRw== + +"@thi.ng/errors@^2.5.16": + version "2.5.16" + resolved "https://registry.yarnpkg.com/@thi.ng/errors/-/errors-2.5.16.tgz#e0def10e5326bcb349527fd2daf05cec9d06fd2c" + integrity sha512-xFFJg7mGTqitbvc5Ta/CwJ7lX09g916DYJYGaR7bG7IKKqcVuC3iHhymxqWS0iC8R4mwljU+ztonBJtp+62ZaQ== + +"@thi.ng/math@^5.11.10": + version "5.11.10" + resolved "https://registry.yarnpkg.com/@thi.ng/math/-/math-5.11.10.tgz#467d8707c3bc14e0e8e21d2fefb1a0deb730f268" + integrity sha512-Wgs2vFxiuRmRUGbhJVJP5NzazRVJIGs2FXuHNlNoLnni1NLTJgm1eZEvvBoJhmGaKEemr1bSvhyycXY6nsIQCQ== + dependencies: + "@thi.ng/api" "^8.11.10" + +"@thi.ng/random@^4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@thi.ng/random/-/random-4.0.4.tgz#871b3899ff8a2d439082e285ec1efd4d9f44bc6c" + integrity sha512-jgpOX9X0nPQUBZg+DME4yQk+BwOOLuh+cMzVJIDZaSb/Ns0uNjJEyyrgHDP+XFFTtkFEgZymDtqStZPuSHFLLQ== + dependencies: + "@thi.ng/api" "^8.11.10" + "@thi.ng/errors" "^2.5.16" + +"@thi.ng/transducers@^9.2.4": + version "9.2.4" + resolved "https://registry.yarnpkg.com/@thi.ng/transducers/-/transducers-9.2.4.tgz#566ec9a8f1f280936c81c7498acacb69ab510959" + integrity sha512-TZr7cB+xZzq5lHMxhcurh6kV9A8m319fH/UDb640SssVghjkSymOAJ9Gi8bxvrYpzWRDMSC6UeyynrJ4sXVYnw== + dependencies: + "@thi.ng/api" "^8.11.10" + "@thi.ng/arrays" "^2.10.1" + "@thi.ng/checks" "^3.6.12" + "@thi.ng/compare" "^2.4.2" + "@thi.ng/compose" "^3.0.13" + "@thi.ng/errors" "^2.5.16" + "@thi.ng/math" "^5.11.10" + "@thi.ng/random" "^4.0.4" "@tootallnate/once@2": version "2.0.0" @@ -5570,7 +5747,14 @@ dependencies: "@types/node" "*" -"@types/bn.js@^5.1.0", "@types/bn.js@^5.1.1", "@types/bn.js@^5.1.5": +"@types/bn.js@^5.1.0": + version "5.1.6" + resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.6.tgz#9ba818eec0c85e4d3c679518428afdf611d03203" + integrity sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w== + dependencies: + "@types/node" "*" + +"@types/bn.js@^5.1.1", "@types/bn.js@^5.1.5": version "5.1.5" resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.5.tgz#2e0dacdcce2c0f16b905d20ff87aedbc6f7b4bf0" integrity sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A== @@ -5795,7 +5979,7 @@ dependencies: "@types/node" "*" -"@types/node@*", "@types/node@>=13.7.0": +"@types/node@*": version "20.11.16" resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.16.tgz#4411f79411514eb8e2926f036c86c9f0e4ec6708" integrity sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ== @@ -5807,6 +5991,13 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.13.tgz#f64277c341150c979e42b00e4ac289290c9df469" integrity sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q== +"@types/node@>=13.7.0": + version "22.7.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.7.2.tgz#80ed66c0a5025ffa037587fd69a816f29b54e4c7" + integrity sha512-866lXSrpGpgyHBZUa2m9YNWqHDjjM0aBTJlNtYaGEw4rqY/dcD7deRVTbBBAJelfA7oaGDbNftXF/TL/A6RgoA== + dependencies: + undici-types "~6.19.2" + "@types/node@^12.12.6": version "12.20.55" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" @@ -6215,10 +6406,10 @@ optionalDependencies: prettier "^1.18.2 || ^2.0.0" -"@walletconnect/core@2.15.2": - version "2.15.2" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.15.2.tgz#12d9da8c4e32a6c3713f421ca65cd0605f43a080" - integrity sha512-u4BGuazSNAQ48QBY7EphanBuBN6EJWyD5MXi83n1wXwfPQWAu0XNvmOjjF+xmMI5TsYH9N6Y78O6HP/VX9EOvg== +"@walletconnect/core@2.16.2": + version "2.16.2" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.16.2.tgz#49c471d0e1cc4e0326165c8c7d7178aee56d7e6a" + integrity sha512-Xf1SqLSB8KffNsgUGDE/CguAcKMD+3EKfqfqNhWpimxe1QDZDUw8xq+nnxfx6MAb8fdx9GYe6Lvknx2SAAeAHw== dependencies: "@walletconnect/heartbeat" "1.2.2" "@walletconnect/jsonrpc-provider" "1.0.14" @@ -6231,8 +6422,8 @@ "@walletconnect/relay-auth" "1.0.4" "@walletconnect/safe-json" "1.0.2" "@walletconnect/time" "1.0.2" - "@walletconnect/types" "2.15.2" - "@walletconnect/utils" "2.15.2" + "@walletconnect/types" "2.16.2" + "@walletconnect/utils" "2.16.2" events "3.3.0" lodash.isequal "4.5.0" uint8arrays "3.1.0" @@ -6279,7 +6470,7 @@ "@walletconnect/safe-json" "^1.0.2" events "^3.3.0" -"@walletconnect/jsonrpc-types@1.0.3", "@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3": +"@walletconnect/jsonrpc-types@1.0.3", "@walletconnect/jsonrpc-types@^1.0.2": version "1.0.3" resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz#65e3b77046f1a7fa8347ae02bc1b841abe6f290c" integrity sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw== @@ -6287,7 +6478,7 @@ keyvaluestorage-interface "^1.0.0" tslib "1.14.1" -"@walletconnect/jsonrpc-types@1.0.4": +"@walletconnect/jsonrpc-types@1.0.4", "@walletconnect/jsonrpc-types@^1.0.3": version "1.0.4" resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz#ce1a667d79eadf2a2d9d002c152ceb68739c230c" integrity sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ== @@ -6374,18 +6565,18 @@ tslib "1.14.1" "@walletconnect/sign-client@^2.14.0": - version "2.15.2" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.15.2.tgz#4568f71f6daebc6405d86278c78b64ef646c266b" - integrity sha512-Yp4/z3IdTMngbjr7Zy7Qi1X6EZDH4nxY91X6K2KpA3MjLW0yPTGalEJgJ4p9WH7fmHRlwvfR4hjwM5eQcLo5Zg== + version "2.16.2" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.16.2.tgz#2356c3418bce0b867a661a2bddafd6b8bb02214a" + integrity sha512-R/hk2P3UN5u3FV22E7h9S/Oy8IbDwaBGH7St/BzOpJCjFmf6CF5S3GZVjrXPBesvRF94CROkqMF89wz5HkZepA== dependencies: - "@walletconnect/core" "2.15.2" + "@walletconnect/core" "2.16.2" "@walletconnect/events" "1.0.1" "@walletconnect/heartbeat" "1.2.2" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "2.1.2" "@walletconnect/time" "1.0.2" - "@walletconnect/types" "2.15.2" - "@walletconnect/utils" "2.15.2" + "@walletconnect/types" "2.16.2" + "@walletconnect/utils" "2.16.2" events "3.3.0" "@walletconnect/time@1.0.2", "@walletconnect/time@^1.0.2": @@ -6395,10 +6586,10 @@ dependencies: tslib "1.14.1" -"@walletconnect/types@2.15.2", "@walletconnect/types@^2.14.0": - version "2.15.2" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.15.2.tgz#b9e1746d8c7b9c7b08ed8f6696c86e44b645fe52" - integrity sha512-TGnQZYWZJJ3I8dqgpMPwhO1IRXDuY8/tWPI0nNWJDyTK7b3E9prDGugnPmDDjpTYVoETnUTgW/jQaHNTq4yV7Q== +"@walletconnect/types@2.16.2", "@walletconnect/types@^2.14.0": + version "2.16.2" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.16.2.tgz#a8bd9d09e6248f72c79686881e4aae46306e6ea0" + integrity sha512-IIV9kQh6b/WpwhfgPixpziE+8XK/FtdnfvN1oOMs5h+lgwr46OJknPY2p7eS6vvdvEP3xMEc1Kbu1i4tlnroiw== dependencies: "@walletconnect/events" "1.0.1" "@walletconnect/heartbeat" "1.2.2" @@ -6419,10 +6610,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/utils@2.15.2", "@walletconnect/utils@^2.14.0": - version "2.15.2" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.15.2.tgz#6fba3e28d00afe15b499409d609e3faafcef1887" - integrity sha512-H+fNH9cHDezdaEiEsO7/3URSIzqhumuacwB/+0PX0sSCoktmU9AfTqA8fJGG43zOPixleBqOymzO6owB1Y7jtQ== +"@walletconnect/utils@2.16.2", "@walletconnect/utils@^2.14.0": + version "2.16.2" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.16.2.tgz#e7afbec7bf7ad7a4e86b2c5de233df3865d8cd23" + integrity sha512-CEMxMCIqvwXd8YIEXfBoCiWY8DtUevJ/w14Si+cmTHWHBDWKRZll7+QUXgICIBx5kyX3GMAKNABaTlg2A2CPSg== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -6433,7 +6624,7 @@ "@walletconnect/relay-auth" "1.0.4" "@walletconnect/safe-json" "1.0.2" "@walletconnect/time" "1.0.2" - "@walletconnect/types" "2.15.2" + "@walletconnect/types" "2.16.2" "@walletconnect/window-getters" "1.0.1" "@walletconnect/window-metadata" "1.0.1" detect-browser "5.3.0" @@ -6678,9 +6869,9 @@ integrity sha512-OkqtOLPkR7oqWLrsgRKhzyLZVFLnNLfEF3DMXH+Rpn1fMNMDq/fOY9pXt55B+flBc62saN73CfOTy3hMSVZFTA== "@zondax/ledger-substrate@^0.41.3": - version "0.41.3" - resolved "https://registry.yarnpkg.com/@zondax/ledger-substrate/-/ledger-substrate-0.41.3.tgz#04e33a8aa8c589551caf63139653aba4ed7b9219" - integrity sha512-pjsTGODRHP+SG+h4hBkA9NmvHQeplkj48cB5/TUlzRVBZSz7k172Cu70lpGDkVsKDKG6AuCP2pyWKKzPQIzNTA== + version "0.41.4" + resolved "https://registry.yarnpkg.com/@zondax/ledger-substrate/-/ledger-substrate-0.41.4.tgz#6f72ea1389645713cf31b5e61b05d5a072a6647b" + integrity sha512-6frcpz15l2y6uOPDhwQNglHgyigaXrHJdLzySXUdDmfGymlqQ7+kKEoha6xGqPYN++aWHmmEUr8D7hxbEOffAQ== dependencies: "@ledgerhq/hw-transport" "^6.27.1" bip32 "^4.0.0" @@ -7189,11 +7380,12 @@ atomic-sleep@^1.0.0: integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== avail-js-sdk@^0.2.12: - version "0.2.12" - resolved "https://registry.yarnpkg.com/avail-js-sdk/-/avail-js-sdk-0.2.12.tgz#4de2bfa484fc6aec92fb3f1320a236cf56a74fff" - integrity sha512-QPMSpyIfX/x0vU5nv3/lhuFUlsgYY3aASD5saKMxnLDn3Cs5anHy1IsqxdHLC12mGs0lE1pOToll5GCc7kzAxg== + version "0.2.16" + resolved "https://registry.yarnpkg.com/avail-js-sdk/-/avail-js-sdk-0.2.16.tgz#5dceaecc5844cd4df40c158b70756f65f3b2671b" + integrity sha512-TGJLhyRwIjNKHZ94Qe8fhd+mtMxTrt7nDjYaZ0AA6wop6ten8vingoE4oZ3RPwY+rOD87QGCPNhLlRVrmt2cSw== dependencies: "@polkadot/api" "^10.11.3" + neverthrow "^7.0.0" available-typed-arrays@^1.0.5, available-typed-arrays@^1.0.6: version "1.0.6" @@ -7210,16 +7402,7 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== -axios@^1.6.2: - version "1.6.7" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.7.tgz#7b48c2e27c96f9c68a2f8f31e2ab19f59b06b0a7" - integrity sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA== - dependencies: - follow-redirects "^1.15.4" - form-data "^4.0.0" - proxy-from-env "^1.1.0" - -axios@^1.7.7: +axios@^1.4.0, axios@^1.6.2, axios@^1.7.7: version "1.7.7" resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.7.tgz#2f554296f9892a72ac8d8e4c5b79c14a91d0a47f" integrity sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q== @@ -7418,9 +7601,9 @@ base-64@0.1.0, base-64@^0.1.0: integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== base-x@^3.0.2, base-x@^3.0.8: - version "3.0.9" - resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" - integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== + version "3.0.10" + resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.10.tgz#62de58653f8762b5d6f8d9fe30fa75f7b2585a75" + integrity sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ== dependencies: safe-buffer "^5.0.1" @@ -7570,10 +7753,10 @@ body-parser@1.20.1: type-is "~1.6.18" unpipe "1.0.0" -body-parser@^1.16.0: - version "1.20.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" - integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== +body-parser@1.20.3, body-parser@^1.16.0: + version "1.20.3" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6" + integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== dependencies: bytes "3.1.2" content-type "~1.0.5" @@ -7583,7 +7766,7 @@ body-parser@^1.16.0: http-errors "2.0.0" iconv-lite "0.4.24" on-finished "2.4.1" - qs "6.11.0" + qs "6.13.0" raw-body "2.5.2" type-is "~1.6.18" unpipe "1.0.0" @@ -7906,6 +8089,17 @@ call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6: get-intrinsic "^1.2.3" set-function-length "^1.2.0" +call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -8526,6 +8720,11 @@ cookie@0.5.0: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + cookiejar@^2.1.2, cookiejar@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.4.tgz#ee669c1fea2cf42dc31585469d193fef0d65771b" @@ -8989,6 +9188,15 @@ define-data-property@^1.0.1, define-data-property@^1.1.2: gopd "^1.0.1" has-property-descriptors "^1.0.1" +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" @@ -9119,9 +9327,9 @@ detect-libc@^1.0.3: integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== detect-libc@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" - integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" + integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== detect-newline@^3.0.0: version "3.1.0" @@ -9218,14 +9426,14 @@ detective-typescript@^7.0.0: typescript "^3.9.10" dexie-export-import@^4.0.7: - version "4.1.0" - resolved "https://registry.yarnpkg.com/dexie-export-import/-/dexie-export-import-4.1.0.tgz#abcb6475ef376082a3f2d43d5f5e146c3752718b" - integrity sha512-rPnd1SgnmtFipluN1X+Vw3RYjvk8A/B8C7A1aygJaapqrDC9MlZW22yu0Ynt5kVgOrIERNX+BNa8fSQsKsWj0g== + version "4.1.2" + resolved "https://registry.yarnpkg.com/dexie-export-import/-/dexie-export-import-4.1.2.tgz#a2f0340ba1fea079ddb8a44d4a3da3eb6e860aab" + integrity sha512-dWIkkajX+CsEJ19xMnvyqUDlldIl7jW/G49hy3pXZeIgCei9fPeGSjteoh7BeTujexIM3XZ+uAGCEwgCx2HAsQ== dexie@^3.2.2: - version "3.2.4" - resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.2.4.tgz#b22a9729be1102acb2eee16102ea6e2bc76454cf" - integrity sha512-VKoTQRSv7+RnffpOJ3Dh6ozknBqzWw/F3iqMdsZg958R0AS8AnY9x9d1lbwENr0gzeGJHXKcGhAMRaqys6SxqA== + version "3.2.7" + resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.2.7.tgz#1346541c9c81e3bc6055a042a928837890595e3a" + integrity sha512-2a+BXvVhY5op+smDRLxeBAivE7YcYaneXJ1la3HOkUfX9zKkE/AJ8CNgjiXbtXepFyFmJNGSbmjOwqbT749r/w== dezalgo@^1.0.4: version "1.0.4" @@ -9433,7 +9641,7 @@ electron@^23.1.2: "@types/node" "^16.11.26" extract-zip "^2.0.1" -elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.4.1, elliptic@^6.5.2, elliptic@^6.5.3, elliptic@^6.5.4: +elliptic@6.5.4, elliptic@^6.5.3, elliptic@^6.5.4: version "6.5.4" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== @@ -9446,7 +9654,7 @@ elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.4.1, elliptic@^6.5.2, elliptic@^6.5 minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" -elliptic@^6.5.7: +elliptic@^6.4.0, elliptic@^6.4.1, elliptic@^6.5.2, elliptic@^6.5.7: version "6.5.7" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.7.tgz#8ec4da2cb2939926a1b9a73619d768207e647c8b" integrity sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q== @@ -9494,6 +9702,11 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -9611,6 +9824,13 @@ es-array-method-boxes-properly@^1.0.0: resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + es-errors@^1.0.0, es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" @@ -10178,6 +10398,16 @@ ethereum-cryptography@^2.0.0, ethereum-cryptography@^2.1.2: "@scure/bip32" "1.3.3" "@scure/bip39" "1.2.2" +ethereum-cryptography@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz#58f2810f8e020aecb97de8c8c76147600b0b8ccf" + integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg== + dependencies: + "@noble/curves" "1.4.2" + "@noble/hashes" "1.4.0" + "@scure/bip32" "1.4.0" + "@scure/bip39" "1.3.0" + ethereumjs-abi@^0.6.8: version "0.6.8" resolved "https://registry.yarnpkg.com/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz#71bc152db099f70e62f108b7cdfca1b362c6fcae" @@ -10237,7 +10467,7 @@ ethereumjs-wallet@^1.0.1: utf8 "^3.0.0" uuid "^8.3.2" -ethers@^6.13.2: +ethers@^6.13.2, ethers@^6.4.2: version "6.13.2" resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.13.2.tgz#4b67d4b49e69b59893931a032560999e5e4419fe" integrity sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg== @@ -10250,19 +10480,6 @@ ethers@^6.13.2: tslib "2.4.0" ws "8.17.1" -ethers@^6.4.2: - version "6.10.0" - resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.10.0.tgz#20f3c63c60d59a993f8090ad423d8a3854b3b1cd" - integrity sha512-nMNwYHzs6V1FR3Y4cdfxSQmNgZsRj1RiTU25JwvnJLmyzw9z3SKxNc2XKDuiXXo/v9ds5Mp9m6HBabgYQQ26tA== - dependencies: - "@adraffy/ens-normalize" "1.10.0" - "@noble/curves" "1.2.0" - "@noble/hashes" "1.3.2" - "@types/node" "18.15.13" - aes-js "4.0.0-beta.5" - tslib "2.4.0" - ws "8.5.0" - ethjs-unit@0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/ethjs-unit/-/ethjs-unit-0.1.6.tgz#c665921e476e87bce2a9d588a6fe0405b2c41699" @@ -10389,7 +10606,44 @@ expect@^29.0.0, expect@^29.7.0: jest-message-util "^29.7.0" jest-util "^29.7.0" -express@^4.14.0, express@^4.17.3: +express@^4.14.0: + version "4.21.0" + resolved "https://registry.yarnpkg.com/express/-/express-4.21.0.tgz#d57cb706d49623d4ac27833f1cbc466b668eb915" + integrity sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.3" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.6.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~2.0.0" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.3.1" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.3" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.10" + proxy-addr "~2.0.7" + qs "6.13.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.19.0" + serve-static "1.16.2" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +express@^4.17.3: version "4.18.2" resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== @@ -10652,6 +10906,19 @@ finalhandler@1.2.0: statuses "2.0.1" unpipe "~1.0.0" +finalhandler@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.1.tgz#0c575f1d1d324ddd1da35ad7ece3df7d19088019" + integrity sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ== + dependencies: + debug "2.6.9" + encodeurl "~2.0.0" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + find-babel-config@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2" @@ -10778,7 +11045,7 @@ flow-parser@^0.206.0: resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.206.0.tgz#f4f794f8026535278393308e01ea72f31000bfef" integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w== -follow-redirects@^1.0.0, follow-redirects@^1.15.4: +follow-redirects@^1.0.0: version "1.15.5" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.5.tgz#54d4d6d062c0fa7d9d17feb008461550e3ba8020" integrity sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw== @@ -11377,9 +11644,9 @@ graphql-tag@^2.12.6: tslib "^2.1.0" graphql@^16.8.1: - version "16.8.1" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.8.1.tgz#1930a965bef1170603702acdb68aedd3f3cf6f07" - integrity sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw== + version "16.9.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.9.0.tgz#1c310e63f16a49ce1fbb230bd0a000e99f6f115f" + integrity sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw== graphviz@0.0.9: version "0.0.9" @@ -11443,6 +11710,13 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1: dependencies: get-intrinsic "^1.2.2" +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" @@ -13787,6 +14061,11 @@ merge-descriptors@1.0.1: resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== +merge-descriptors@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" + integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== + merge-options@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" @@ -14634,6 +14913,11 @@ netmask@^2.0.2: resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== +neverthrow@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/neverthrow/-/neverthrow-7.2.0.tgz#76fa0a6cf1f6d59f0770df461c92b8b270910694" + integrity sha512-iGBUfFB7yPczHHtA8dksKTJ9E8TESNTAx1UQWW6TzMF280vo9jdPYpLUXrMN1BCkPdHFdNG3fxOt2CUad8KhAw== + next-tick@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" @@ -14657,7 +14941,16 @@ nocache@^3.0.1: resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79" integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw== -nock@^13.3.0, nock@^13.5.0: +nock@^13.3.0: + version "13.5.5" + resolved "https://registry.yarnpkg.com/nock/-/nock-13.5.5.tgz#cd1caaca281d42be17d51946367a3d53a6af3e78" + integrity sha512-XKYnqUrCwXC8DGG1xX4YH5yNIrlh9c065uaMZZHUoeUUINTOyt+x/G+ezYk0Ft6ExSREVIs+qBJDK503viTfFA== + dependencies: + debug "^4.1.0" + json-stringify-safe "^5.0.1" + propagate "^2.0.0" + +nock@^13.5.0: version "13.5.4" resolved "https://registry.yarnpkg.com/nock/-/nock-13.5.4.tgz#8918f0addc70a63736170fef7106a9721e0dc479" integrity sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw== @@ -14667,9 +14960,9 @@ nock@^13.3.0, nock@^13.5.0: propagate "^2.0.0" node-abi@^3.3.0: - version "3.54.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.54.0.tgz#f6386f7548817acac6434c6cba02999c9aebcc69" - integrity sha512-p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA== + version "3.68.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.68.0.tgz#8f37fb02ecf4f43ebe694090dcb52e0c4cc4ba25" + integrity sha512-7vbj10trelExNjFSBm5kTvZXXa7pZyKWx9RCKIyqe6I9Ev3IzGpQoqBP3a+cOdxY+pWj6VkP28n/2wWysBHD/A== dependencies: semver "^7.3.5" @@ -14736,15 +15029,20 @@ node-forge@^1, node-forge@^1.3.1: resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== -node-gyp-build@^4.2.0, node-gyp-build@^4.3.0, node-gyp-build@^4.5.0: +node-gyp-build@^4.2.0, node-gyp-build@^4.5.0: + version "4.8.2" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" + integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== + +node-gyp-build@^4.3.0: version "4.8.0" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.0.tgz#3fee9c1731df4581a3f9ead74664369ff00d26dd" integrity sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og== -node-hid@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/node-hid/-/node-hid-2.2.0.tgz#33e039e7530a7bfe2b7a25f0a2f9496af8b02236" - integrity sha512-vj48zh9j555DZzUhMc8tk/qw6xPFrDyPBH1ST1Z/hWaA/juBJw7IuSxPeOgpzNFNU36mGYj+THioRMt1xOdm/g== +node-hid@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/node-hid/-/node-hid-2.1.2.tgz#3145fa86ed4336a402a71e9f372c54213b88797c" + integrity sha512-qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg== dependencies: bindings "^1.5.0" node-addon-api "^3.0.2" @@ -15367,6 +15665,11 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-to-regexp@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" + integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== + path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" @@ -15635,9 +15938,9 @@ postinstall-postinstall@^2.1.0: integrity sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ== prebuild-install@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== + version "7.1.2" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.2.tgz#a5fd9986f5a6251fbc47e1e5c65de71e68c0a056" + integrity sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ== dependencies: detect-libc "^2.0.0" expand-template "^2.0.3" @@ -15790,9 +16093,9 @@ propagate@^2.0.0: integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag== protobufjs@^7.2.4: - version "7.2.6" - resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.6.tgz#4a0ccd79eb292717aacf07530a07e0ed20278215" - integrity sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw== + version "7.4.0" + resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.4.0.tgz#7efe324ce9b3b61c82aae5de810d287bc08a248a" + integrity sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw== dependencies: "@protobufjs/aspromise" "^1.1.2" "@protobufjs/base64" "^1.1.2" @@ -15922,6 +16225,13 @@ qs@6.11.0: dependencies: side-channel "^1.0.4" +qs@6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + dependencies: + side-channel "^1.0.6" + qs@^6.11.0, qs@^6.7.0: version "6.11.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" @@ -17272,10 +17582,10 @@ regjsparser@^0.9.1: dependencies: jsesc "~0.5.0" -rehackt@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/rehackt/-/rehackt-0.0.4.tgz#dca5498e1f6c81d3d610ff2abfb3c3feec6afce8" - integrity sha512-xFroSGCbMEK/cTJVhq+c8l/AzIeMeojVyLqtZmr2jmIAFvePjapkCSGg9MnrcNk68HPaMxGf+Ndqozotu78ITw== +rehackt@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/rehackt/-/rehackt-0.1.0.tgz#a7c5e289c87345f70da8728a7eb878e5d03c696b" + integrity sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw== relateurl@^0.2.7: version "0.2.7" @@ -17766,6 +18076,25 @@ send@0.18.0: range-parser "~1.2.1" statuses "2.0.1" +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + serialize-error@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" @@ -17808,6 +18137,16 @@ serve-static@1.15.0, serve-static@^1.13.1: parseurl "~1.3.3" send "0.18.0" +serve-static@1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== + dependencies: + encodeurl "~2.0.0" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.19.0" + servify@^0.1.12: version "0.1.12" resolved "https://registry.yarnpkg.com/servify/-/servify-0.1.12.tgz#142ab7bee1f1d033b66d0707086085b17c06db95" @@ -17836,6 +18175,18 @@ set-function-length@^1.2.0: gopd "^1.0.1" has-property-descriptors "^1.0.1" +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + set-function-name@^2.0.0, set-function-name@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" @@ -17935,6 +18286,16 @@ side-channel@^1.0.4: get-intrinsic "^1.2.4" object-inspect "^1.13.1" +side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -18030,6 +18391,13 @@ smoldot@2.0.22: dependencies: ws "^8.8.1" +smoldot@2.0.26: + version "2.0.26" + resolved "https://registry.yarnpkg.com/smoldot/-/smoldot-2.0.26.tgz#0e64c7fcd26240fbe4c8d6b6e4b9a9aca77e00f6" + integrity sha512-F+qYmH4z2s2FK+CxGj8moYcd1ekSIKH8ywkdqlOz88Dat35iB1DIYL11aILN46YSGMzQW/lbJNS307zBSDN5Ig== + dependencies: + ws "^8.8.1" + snake-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" @@ -18880,11 +19248,16 @@ tslib@2.6.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== -tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.6.2: +tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +tslib@^2.3.0, tslib@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" + integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -19092,6 +19465,11 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +undici-types@~6.19.2: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== + unenv@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.9.0.tgz#469502ae85be1bd3a6aa60f810972b1a904ca312" @@ -19330,9 +19708,9 @@ utf-8-validate@^5.0.2: node-gyp-build "^4.3.0" utf-8-validate@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-6.0.3.tgz#7d8c936d854e86b24d1d655f138ee27d2636d777" - integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== + version "6.0.4" + resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-6.0.4.tgz#1305a1bfd94cecb5a866e6fc74fd07f3ed7292e5" + integrity sha512-xu9GQDeFp+eZ6LnCywXN/zBancWvOpUMzgjLPSjy4BRHSmTelvn2E0DG0o1sTiw5hkCKBHo8rwSKncfRfv2EEQ== dependencies: node-gyp-build "^4.3.0" @@ -20344,11 +20722,6 @@ ws@8.17.1: resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== -ws@8.5.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f" - integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== - ws@^3.0.0: version "3.3.3" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2"