From 40163d4e2f338a3ca8d97fa2d6ae6a7e3d97e744 Mon Sep 17 00:00:00 2001 From: AyushBherwani1998 Date: Fri, 18 Oct 2024 09:40:30 +0530 Subject: [PATCH] fix web3auth snippet --- docs/snippets/signers/web3auth.ts | 48 +- package.json | 105 +-- pnpm-lock.yaml | 1197 +++++++++++------------------ 3 files changed, 540 insertions(+), 810 deletions(-) diff --git a/docs/snippets/signers/web3auth.ts b/docs/snippets/signers/web3auth.ts index 64da427a..7450b0ab 100644 --- a/docs/snippets/signers/web3auth.ts +++ b/docs/snippets/signers/web3auth.ts @@ -1,31 +1,39 @@ -const clientId = - "iyoK-C3TBDiMvlXJFR8lIiC35JGoDMw8VrhE77k-xX6W2mOkZjhvU2J2t3NyuG7tkPsI2MrGv1RyiNlSwaFD5gL" - // [!region main] import { CHAIN_NAMESPACES, WEB3AUTH_NETWORK } from "@web3auth/base" -import { Web3Auth } from "@web3auth/modal" +import { EthereumPrivateKeyProvider } from "@web3auth/ethereum-provider" +import { Web3Auth, Web3AuthOptions } from "@web3auth/modal" import { EIP1193Provider } from "viem" -// Config options here will be specific to your project. See the Web3Auth docs for more info. -const web3auth = new Web3Auth({ - clientId, - chainConfig: { - chainNamespace: CHAIN_NAMESPACES.EIP155, - chainId: "0xaa36a7", - rpcTarget: "https://rpc.ankr.com/eth_sepolia", - displayName: "Sepolia Testnet", - blockExplorer: "https://sepolia.etherscan.io", - ticker: "ETH", - tickerName: "Ethereum", - }, - uiConfig: {}, - web3AuthNetwork: WEB3AUTH_NETWORK.SAPPHIRE_DEVNET, +const chainConfig = { + chainNamespace: CHAIN_NAMESPACES.EIP155, + chainId: "0xaa36a7", + rpcTarget: "https://rpc.ankr.com/eth_sepolia", + displayName: "Ethereum Sepolia Testnet", + blockExplorerUrl: "https://sepolia.etherscan.io", + ticker: "ETH", + tickerName: "Ethereum", + logo: "https://cryptologos.cc/logos/ethereum-eth-logo.png", +} + +const privateKeyProvider = new EthereumPrivateKeyProvider({ + config: { chainConfig }, }) +// Config options here will be specific to your project. See the Web3Auth docs for more info. +const web3AuthOptions: Web3AuthOptions = { + // TODO: Replace with your Web3Auth client ID + // Get it from https://dashboard.web3auth.io/ + clientId: "YOUR_WEB3AUTH_CLIENT_ID", + web3AuthNetwork: WEB3AUTH_NETWORK.SAPPHIRE_DEVNET, + privateKeyProvider, +} + +const web3auth = new Web3Auth(web3AuthOptions) + // Get the Provider and EOA address (this will be the address of the signer) from Web3Auth const smartAccountOwner = web3auth.provider as EIP1193Provider if (!smartAccountOwner) { - throw new Error("No provider found") + throw new Error("No provider found") } -// [!endregion main] +// [!endregion main] \ No newline at end of file diff --git a/package.json b/package.json index d6e38bd4..5f23b5ce 100644 --- a/package.json +++ b/package.json @@ -1,54 +1,55 @@ { - "name": "pimlico-docs", - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vocs dev", - "build": "vocs build", - "preview": "vocs preview" - }, - "dependencies": { - "@arcana/auth": "^1.0.10", - "@dfns/lib-viem": "^0.3.1", - "@dfns/sdk": "^0.3.1", - "@dfns/sdk-keysigner": "^0.3.1", - "@fireblocks/fireblocks-web3-provider": "^1.3.3", - "@lit-protocol/auth-helpers": "^3.0.0", - "@lit-protocol/lit-node-client": "^3.0.0", - "@lit-protocol/pkp-ethers": "^3.0.0", - "@lit-protocol/types": "^3.0.0", - "@magic-ext/oauth": "^16.1.1", - "@particle-network/auth": "^1.3.1", - "@particle-network/provider": "^1.3.2", - "@permissionless/wagmi": "^0.1.0", - "@radix-ui/colors": "^3.0.0", - "@radix-ui/react-checkbox": "^1.0.4", - "@radix-ui/react-slider": "^1.1.2", - "@radix-ui/react-tooltip": "^1.0.7", - "@tanstack/react-query": "^5.18.0", - "@turnkey/http": "^2.7.1", - "@turnkey/viem": "^0.4.10", - "@types/node": "^20.11.2", - "@usecapsule/viem-v2-integration": "^1.10.1", - "@usecapsule/web-sdk": "^1.13.1", - "@web3auth/base": "^7.3.2", - "@web3auth/modal": "^7.3.2", - "caniuse-lite": "^1.0.30001655", - "lucide-react": "^0.309.0", - "magic-sdk": "^22.1.1", - "permissionless": "0.2.6", - "react": "latest", - "react-dom": "latest", - "viem": "^2.20.0", - "vitest": "^2.0.5", - "vocs": "=1.0.0-alpha.55", - "wagmi": "^2.5.5" - }, - "devDependencies": { - "@biomejs/biome": "^1.5.2", - "@types/react": "^18.2.47", - "dotenv": "^16.4.5", - "tsx": "^4.7.1" - }, - "packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e" + "name": "pimlico-docs", + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vocs dev", + "build": "vocs build", + "preview": "vocs preview" + }, + "dependencies": { + "@arcana/auth": "^1.0.10", + "@dfns/lib-viem": "^0.3.1", + "@dfns/sdk": "^0.3.1", + "@dfns/sdk-keysigner": "^0.3.1", + "@fireblocks/fireblocks-web3-provider": "^1.3.3", + "@lit-protocol/auth-helpers": "^3.0.0", + "@lit-protocol/lit-node-client": "^3.0.0", + "@lit-protocol/pkp-ethers": "^3.0.0", + "@lit-protocol/types": "^3.0.0", + "@magic-ext/oauth": "^16.1.1", + "@particle-network/auth": "^1.3.1", + "@particle-network/provider": "^1.3.2", + "@permissionless/wagmi": "^0.1.0", + "@radix-ui/colors": "^3.0.0", + "@radix-ui/react-checkbox": "^1.0.4", + "@radix-ui/react-slider": "^1.1.2", + "@radix-ui/react-tooltip": "^1.0.7", + "@tanstack/react-query": "^5.18.0", + "@turnkey/http": "^2.7.1", + "@turnkey/viem": "^0.4.10", + "@types/node": "^20.11.2", + "@usecapsule/viem-v2-integration": "^1.10.1", + "@usecapsule/web-sdk": "^1.13.1", + "@web3auth/base": "^9.2.3", + "@web3auth/modal": "^9.2.3", + "@web3auth/ethereum-provider": "^9.2.3", + "caniuse-lite": "^1.0.30001655", + "lucide-react": "^0.309.0", + "magic-sdk": "^22.1.1", + "permissionless": "0.2.6", + "react": "latest", + "react-dom": "latest", + "viem": "^2.20.0", + "vitest": "^2.0.5", + "vocs": "=1.0.0-alpha.55", + "wagmi": "^2.5.5" + }, + "devDependencies": { + "@biomejs/biome": "^1.5.2", + "@types/react": "^18.2.47", + "dotenv": "^16.4.5", + "tsx": "^4.7.1" + }, + "packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5f3a34ad..4089014f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -78,11 +78,14 @@ importers: specifier: ^1.13.1 version: 1.20.0(fp-ts@2.16.2) '@web3auth/base': - specifier: ^7.3.2 - version: 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: ^9.2.3 + version: 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/ethereum-provider': + specifier: ^9.2.3 + version: 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3auth/modal': - specifier: ^7.3.2 - version: 7.3.2(if6ud4gccvow4k6ndomtzwdh3a) + specifier: ^9.2.3 + version: 9.2.4(@babel/runtime@7.25.7)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10) caniuse-lite: specifier: ^1.0.30001655 version: 1.0.30001667 @@ -132,6 +135,9 @@ packages: '@adraffy/ens-normalize@1.10.0': resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} + '@adraffy/ens-normalize@1.10.1': + resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} @@ -922,6 +928,10 @@ packages: resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.25.7': + resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==} + engines: {node: '>=6.9.0'} + '@babel/template@7.22.15': resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} @@ -1399,9 +1409,6 @@ packages: '@ethereumjs/common@3.2.0': resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} - '@ethereumjs/common@4.2.0': - resolution: {integrity: sha512-UWqovZQksxEY9cU+s1cF3JwFyJdKrJsURM+ORHpZZLQfsqQf+1uGbD3N0AvQ7M+Jz/LxkiVY98+Cd3OMzsrOcA==} - '@ethereumjs/rlp@4.0.1': resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} engines: {node: '>=14'} @@ -1416,27 +1423,13 @@ packages: resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} engines: {node: '>=14'} - '@ethereumjs/tx@5.2.1': - resolution: {integrity: sha512-BzdtUaa7KtP8T5NxJWRxo/RBoJzxYeCdx2n2C4zZLuWJBYVccfcyMiyDgr6W78Utmu/jIfGXknfh2t06+rTkiw==} - engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true - '@ethereumjs/util@8.1.0': resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} engines: {node: '>=14'} - '@ethereumjs/util@9.0.2': - resolution: {integrity: sha512-dasKCj6Vb5spVPnNmRDFHmbfBySvokE440F0RDroPLzO4Mb4hyDqeoOMUxlbLz/BscK2pOpWUendGA+AOvGpNQ==} + '@ethereumjs/util@9.1.0': + resolution: {integrity: sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog==} engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true '@ethersproject/abi@5.0.7': resolution: {integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==} @@ -1754,14 +1747,6 @@ packages: peerDependencies: rollup: '>=2' - '@metamask/abi-utils@2.0.2': - resolution: {integrity: sha512-B/A1dY/w4F/t6cDHUscklO6ovb/ztFsrsTXFd8QlqSByk/vyy+QbPE3VVpmmyI/7RX+PA1AJcvBdzCIz+r9dVQ==} - engines: {node: '>=16.0.0'} - - '@metamask/detect-provider@2.0.0': - resolution: {integrity: sha512-sFpN+TX13E9fdBDh9lvQeZdJn4qYoRb/6QF2oZZK/Pn559IhCFacPMU1rMuqyXoFQF3JSJfii2l98B87QDPeCQ==} - engines: {node: '>=14.0.0'} - '@metamask/eth-json-rpc-provider@1.0.1': resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==} engines: {node: '>=14.0.0'} @@ -1770,10 +1755,6 @@ packages: resolution: {integrity: sha512-RU6fG/H6/UlBol221uBkq5C7w3TwLK611nEZliO2u+kO0vHKGBXnIPlhI0tzKUigjhUeOd9mhCNbNvhh0LKt9Q==} engines: {node: '>=14.0.0'} - '@metamask/eth-sig-util@7.0.1': - resolution: {integrity: sha512-59GSrMyFH2fPfu7nKeIQdZ150zxXNNhAQIUaFRUW+MGtVA4w/ONbiQobcRBLi+jQProfIyss51G8pfLPcQ0ylg==} - engines: {node: ^16.20 || ^18.16 || >=20} - '@metamask/json-rpc-engine@7.3.2': resolution: {integrity: sha512-dVjBPlni4CoiBpESVqrxh6k4OR14w6GRXKSSXHFuITjuhALE42gNCkXTpL4cjNeOBUgTba3eGe5EI8cyc2QLRg==} engines: {node: '>=16.0.0'} @@ -1870,6 +1851,9 @@ packages: '@noble/curves@1.4.0': resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + '@noble/curves@1.4.2': + resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + '@noble/hashes@1.2.0': resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} @@ -1904,6 +1888,12 @@ packages: resolution: {integrity: sha512-3fccyWmODK+TK9XS6S7Nitq7tvvJc8ALdzraypkZXly88nWAQkVDkxxQL9a9LScIxLnMSVIQrjw2n52UopmfKQ==} engines: {node: '>=14'} + '@nx/nx-linux-x64-gnu@19.8.6': + resolution: {integrity: sha512-2/5WDr2wwWyvbqlB//ICWS5q3rRF4GyNX2NOp/tVkmh1RfDhH0ZAVZ/oJ7QvE1mKLQh0AM7bQBHsF5ikmMhUXw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@parcel/watcher-android-arm64@2.4.0': resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==} engines: {node: '>= 10.0.0'} @@ -2607,6 +2597,11 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-gnu@4.24.0': + resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} + cpu: [x64] + os: [linux] + '@rollup/rollup-linux-x64-musl@4.18.1': resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==} cpu: [x64] @@ -2781,114 +2776,58 @@ packages: peerDependencies: react: ^18.0.0 - '@toruslabs/base-controllers@4.11.0': - resolution: {integrity: sha512-WJBvAXHL2GpfDdeoBS7Egw/urX862NyS5jxTTOtsTwJrMW9rG482Qa/5oRkiqJafAjkSF5vtsZxVtqZicEzlsA==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/base-session-manager@3.0.0': - resolution: {integrity: sha512-+EqwizmSFkVEczUtaw+swbAxRIIxC/EaFE040rwfgC5fixaQMNLw2cVYXWN67Ra47wC9A7Om6xwQTuGFR+dy4w==} + '@toruslabs/base-controllers@6.2.2': + resolution: {integrity: sha512-9kCeHqtUcTUD9zj1FnY8lbMWaRCceP9dn6s7XdSwuC/wS+rqIxrNwgfwfbvGUl9ZgcskJ7lyNXQqAwZ92Xlzig==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@toruslabs/broadcast-channel@9.0.1': - resolution: {integrity: sha512-xypCZwwD+cJ8fRCtMiJMWuuPg/9rf4P3AhWGkrTKL49GXFEx23akUjq/ti4n1o1uJdQok6E9MH9Z/JpLniyRaA==} + '@toruslabs/broadcast-channel@11.0.0': + resolution: {integrity: sha512-nnM5yjQGzmCiie37G4Ks+5VsPjMrcY/81tga5ASb/u5TbZhSPQUw0CSW42Q9uBtR8sZbsHU06cPZ8j0z6LeAUg==} engines: {node: '>=18.x', npm: '>=9.x'} - '@toruslabs/constants@13.1.0': - resolution: {integrity: sha512-W1LyRoM5xCTyNivGnxa+mOit4yWPZjyYHfM+whYBujP1nQVnJ09nSFCBn1ePm6ONxB5mp58jsI3TJugeY2KFSg==} + '@toruslabs/constants@14.0.0': + resolution: {integrity: sha512-c0lrqxxiR0FL+XdtbX+77PWTeB8izFUrnPwkF2pjjfXlMJLukAWPLhALpmZmqlGmJApT8kJbMN7be2LurAGa1g==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@toruslabs/eccrypto@4.0.0': - resolution: {integrity: sha512-Z3EINkbsgJx1t6jCDVIJjLSUEGUtNIeDjhMWmeDGOWcP/+v/yQ1hEvd1wfxEz4q5WqIHhevacmPiVxiJ4DljGQ==} + '@toruslabs/eccrypto@5.0.4': + resolution: {integrity: sha512-5PrSe2sn5Ed0u/2oRFtKaGOYpXJS+rJQXlYqxzy7Tbe2wLPCJh5/hZ3yStLfZmrYjHlWYwUx3AIpL/pUOOSU4w==} engines: {node: '>=18.x', npm: '>=9.x'} - '@toruslabs/http-helpers@5.0.0': - resolution: {integrity: sha512-GmezWz9JeF6YyhjLSm+9XDF4YaeICEckY0Jbo43i86SjhfJYgRWqEi63VSiNsaqc/z810Q0FQvEk1TnBRX2tgA==} + '@toruslabs/ffjavascript@4.0.0': + resolution: {integrity: sha512-sGPKK0xZ7KDLOsVc8/rCb83iCT1xD12+yfl3eoVNppr4vMcPJcXGwqpw4r1nP3Ln10UHvTCduxjUr3axdoxOSw==} engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@sentry/types': ^7.x - peerDependenciesMeta: - '@sentry/types': - optional: true - '@toruslabs/http-helpers@6.0.0': - resolution: {integrity: sha512-/KrISB9fGV2TM+5Z+0CGj24d/G08kqbB+kodO3nbwNcS0a55dpy+RiB0naF3H1gbEt4Ah5YH8qCDyAZ+zcR2FQ==} + '@toruslabs/http-helpers@7.0.0': + resolution: {integrity: sha512-U79uCCA1EAManPmgIn+0YpCrKUxj9C7GYlGt7Ftnd3soYCsAXVqWgck+R5knrNvTSOPmot8QYkTl+ncP44Vg/A==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x - '@sentry/types': ^7.x + '@sentry/types': ^8.x peerDependenciesMeta: '@sentry/types': optional: true - '@toruslabs/metadata-helpers@5.0.0': - resolution: {integrity: sha512-ZUFfOHJVJC53c8wJYHjdF3bIgN2ZvfqehbTZ/zJ7oVFfrrd6O66V3gQ1i1zxBjH3yhOvZKQwc0DaMmh3G0NUXQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-ed25519@6.0.0': - resolution: {integrity: sha512-wdz8W0TeaKvENuPTeiHsn97N1GVvp880gXwj3ECtfPNWdz9S8zYtvv1R3M1DD+HJVlCoLzGGKe2dc9Ko+K5wGQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-jrpc@5.3.0': - resolution: {integrity: sha512-tM1XHG5UulvENhZYewo9eVWF5r9SffGru8+09qFED7g/PFupKs/rccaXYwyWRGVenQSMgj6ipgUd72zliuen+A==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-jrpc@6.2.11': - resolution: {integrity: sha512-+CnQi8chz5q1w6+1BxnGYlhdpmuAOiTthnRBUtAqmAkeG6uwdns2Fz1kWsk8LjRvseGsQPppzDUlc97RTKz7cw==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-session-manager@3.0.0': - resolution: {integrity: sha512-S+nnZQ+Y+XCHvTYaov3ltiV2hAAPpKpwxvB4TmbMvi7KWOZ8BcUJQykSITlIXV4aE5y5BD96rsmjQ3C3MyVtUQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-utils@5.3.0': - resolution: {integrity: sha512-WfwadC7ZqKOTVqfI4rFANu7IzEgI7H4A/0TiIQihxHpFWdFM23yVuCCIm5zCzQ1QtA2mwBbBZYwOJ0YHVrV6HQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin-utils@6.2.11': - resolution: {integrity: sha512-nOPfG6Oye/NfiilN869D8IRz8+ACV9GLFFK7U7AnwYjLv+M5PR5z3LwtCdZp04+pMhQpT28yKwCMiAgnWWjSuw==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - - '@toruslabs/openlogin@6.2.11': - resolution: {integrity: sha512-5lZASmN2ff6cVam1Y0Wq77Wkk21pA34+mtByxGL27ByWnKKJZP/uJuxsxCLQ0yrZYCR2WeTn9S1alYWaPnFgZQ==} + '@toruslabs/metadata-helpers@6.0.0': + resolution: {integrity: sha512-WHmCpvmZHJtkhiAi13GVeLgpfh6dTm7Z1ugCwRmtTq60rSVYO/euVJxzLRgEnWFMlyM1KFOPJXvd68dWuiYXTA==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@toruslabs/secure-pub-sub@0.0.1': - resolution: {integrity: sha512-fuvjilsNhJ9zdeFcYBwFq6BxhFJU6vkCU3Xm4BcnXLtGxm79N9rj1C8rwFQY2TSgpAcD8NZsuuJqneRG7M9kpg==} + '@toruslabs/secure-pub-sub@1.0.0': + resolution: {integrity: sha512-Xv8SExIJ4/DBw5QHcSN+EGPMddZ2du4NcI9jztLde1K/0Hfnurqw6CcAniU6zpKVRVCRwjiauYCNYIRPBi2M4g==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@toruslabs/solana-embed@2.0.0': - resolution: {integrity: sha512-2Rqo8Y0/YZWDfu6IxoVMNSfJ+Mecvtg2+N8/jMUzFp9Fho1LADULl87QZW2Mgu1tMEhHPKAdisvhope3KkTZjA==} + '@toruslabs/session-manager@3.1.0': + resolution: {integrity: sha512-VTaYjTTGTqpUm14YWRsSmY0Tt5z7evC0aOdVW7Ahw/jzyb1witNL4Va2+7XzunziEkLJS3luH+LkziHx67jyQg==} engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': 7.x - '@toruslabs/torus-embed@4.1.3': - resolution: {integrity: sha512-oa8LJbuoNLWqBUCHKTUYqaqvtad4jUhEDDtbMTPpzLCfKcTuEo3dkR08Ht0fl62vBt2A2QwR9GUpw4+x/2ApGg==} + '@toruslabs/starkware-crypto@4.0.0': + resolution: {integrity: sha512-oEvcwEulCkLbOfRq3Rz3wS1DgSYV5oCh4N4YNWYDQhz1WoQe3S87hJlVUPvRQHHqhp9vBM0qDUVi0Ez7ibYhMA==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x @@ -3008,6 +2947,9 @@ packages: '@types/node@20.11.2': resolution: {integrity: sha512-cZShBaVa+UO1LjWWBPmWRR4+/eY/JR/UIEcDlVsw3okjWEu+rB7/mH6X3B/L+qJVHDLjk9QW/y2upp9wp1yDXA==} + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} + '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -3266,110 +3208,67 @@ packages: '@walletconnect/window-metadata@1.0.1': resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} - '@web3auth/base-evm-adapter@7.3.2': - resolution: {integrity: sha512-v2zj+ekU7JMxPDEIlvHV6bTOrx6gWLx5PiBtJnb+c21W6l+4U6WjsiKo0KUqteXouRVpB9++M0J0rG/2FpAzmg==} + '@web3auth/auth-adapter@9.2.3': + resolution: {integrity: sha512-RJVepBLiqwWkirnMK4iG2pfkZbv1FuVQDzlhEKCuqKUd4M+GD61mwfXdBIAytBlglz/K2J97qUPe5wRTBxWINw==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x - '@web3auth/base-plugin@7.3.2': - resolution: {integrity: sha512-WeFc3U4Y+ql3cRL0mLs+iWq/fGgN4Y21OrasFWY4W/OFJMD2NXg/UJUFiWKYi3bMEc6HLiO2I6o6VYw94bWP3A==} - engines: {node: '>=18.x', npm: '>=9.x'} - - '@web3auth/base-provider@7.3.2': - resolution: {integrity: sha512-IbCK+UOObm/GzIaGszhRg8a2jes1zb1RKkTnNQjVPmNVy+jKRceoedJyYcHWN14LKHR5BF/CHrCDuZehM05tJQ==} + '@web3auth/auth@9.4.1': + resolution: {integrity: sha512-V5JNBc7VeHDmP+9VN4obAIav/NbkyZXEVJ3rD9C4SdbO/ZF3Hc+G8SdVPymJlR2JrBCsuPJiFsUatBl1hx+FSg==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@web3auth/base-solana-adapter@7.3.2': - resolution: {integrity: sha512-ioHOHIa7VxBYvz8nnfVA5JKmPyIHCc1QgSuC/dyOoVTJH5Io23dptMVo6dmi4or4nqGkR4jRoKaupAi5fZpFcA==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - - '@web3auth/base@7.3.2': - resolution: {integrity: sha512-Bg5Mjqr51ETTRtya+4+v2G/OUjHPbkuRbtLGFjQ4uzrBuFokbEaE70kodnR7ZpIhOn41p8nciSxEo1ZJT+rBUQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - - '@web3auth/ethereum-provider@7.3.2': - resolution: {integrity: sha512-1ELEaN4bDyiGsYDG+U7EbXabh7RzSzo6+QZN/WV+KZLxibT1OoNVLM9ZI43TCVLr4K/Kn7v1LvcGkgpyDFqvfQ==} + '@web3auth/base-provider@9.2.3': + resolution: {integrity: sha512-0Iz5RnkPRn4VZz7oRhXjpC7SRAo6/082VxPZ9cVm9Y/imVxJSLUIuDGwqAum8ZBjOD2GJohbdVvuo9uBGVcc4w==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@web3auth/metamask-adapter@7.3.2': - resolution: {integrity: sha512-9buBVCeOELblJjLk8SxV9SOCZedqB9GZyjXqngro412dhuMyGgVC8X8D+jvV8c4Qvhm4hilJ7F6GYyKypXzqeQ==} + '@web3auth/base@9.2.3': + resolution: {integrity: sha512-OCcmGA6yaDxxT5We5Nq+pvbUXeRYUaqs7KTSqQMW5AOUHExBjFLxBYQ8h65uwvaz3chbK2pHdqGwtUbjaFrb6g==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x - '@web3auth/modal@7.3.2': - resolution: {integrity: sha512-SuBrXD98OUlZFwmW6jTTqr+6Laqo0odOsdVF22S1Tw+9FqElm/KFV20i62fzWU3YZxy4LMOh6PKppsNa5Ylw0g==} + '@web3auth/ethereum-provider@9.2.3': + resolution: {integrity: sha512-nNobTRSlEHBJs5tgauf9gztUtBwWTX4+FfPmMc/0CLfb2w884P26YG5q5P4Z9Td7Xgsvvk1Z03mqzf4JTdZIGg==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': 7.x - '@solana/web3.js': ^1.x - - '@web3auth/no-modal@7.3.2': - resolution: {integrity: sha512-n+XxERUoJWy87WzJw15PRw4xeRi5JWP+zSFrHF2zF0oilLjdWNnHK/AyjVtE68RdMNZ7/TW6rR1kYeNUI0YgmQ==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - - '@web3auth/openlogin-adapter@7.3.2': - resolution: {integrity: sha512-XglDc+lvOuy9JGW8xvIQymAmjOU6rHU8GZiyNV1CAN9PySfpAekfDYQEc791G4Pgg24Ka0EJTfEOh96r88OUlg==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@solana/web3.js': ^1.x - - '@web3auth/phantom-adapter@7.3.2': - resolution: {integrity: sha512-oD80yzaujFpNDcOSEcV7Nd2N3mBxuYWs/W2BDgIn/Af3GDQlAkRVPmjFf1kmiltKOezW19iWL9ViCp7Aaakb0g==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@solana/web3.js': ^1.x - - '@web3auth/solana-provider@7.3.2': - resolution: {integrity: sha512-4/YeZe6Ag27MG1tez+V+zPbHM3PacdWktlKM2ie0ltrEYnJw7QWUVbXuDPoUp2bVCfL0Z3Vg37F3hHKE/xzqAw==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@solana/web3.js': ^1.x - '@web3auth/torus-evm-adapter@7.3.2': - resolution: {integrity: sha512-2FSYd5FZ+xCgQUZ7N+RL0joNKeQEH9Le2VLk8Xf+WXtnnS2qp5Z3rWGYoQTG/8+8xZdKHzaajCDFUCmJKiwXJg==} + '@web3auth/modal@9.2.4': + resolution: {integrity: sha512-e8eC8vW8BbLHN83G/WDHIP5NjXAX3mBWAYu31x76xydHMbNWo45xrwGmf8+Wv0A3TF70CHsswFKGpMP9WJkXpg==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x + '@web3auth/wallet-connect-v2-adapter': ^9.x + peerDependenciesMeta: + '@web3auth/wallet-connect-v2-adapter': + optional: true - '@web3auth/torus-solana-adapter@7.3.2': - resolution: {integrity: sha512-pJFSL7JQCXgv+ybC9t1rDyJxNsJSGht+UCtXT5J0DR2t3DdAp7Ol/w0PfyuIad3ttWd9IS80QUj2Um7KFK1PaA==} + '@web3auth/no-modal@9.2.4': + resolution: {integrity: sha512-VtSaQ4paUlVsj7km0fcKoXLju4/cnjCjk2xiS6e+8dLmXYS//WZDcrvWL2+1f3edT1oSA6y0vEpb8GzmLJNJfA==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x - '@solana/web3.js': ^1.x + '@web3auth/auth-adapter': ^9.x + '@web3auth/wallet-connect-v2-adapter': ^9.x + peerDependenciesMeta: + '@web3auth/auth-adapter': + optional: true + '@web3auth/wallet-connect-v2-adapter': + optional: true - '@web3auth/ui@7.3.2': - resolution: {integrity: sha512-lNBauvSm2EQ8BGhmJt4y8K8MdpdAx2AYSLprSR50O0hSPCof7FEEJqD861BXde9Dm1VhbsUXjH4dOqOv2FFIvQ==} + '@web3auth/ui@9.2.3': + resolution: {integrity: sha512-i9KDeibtBgfYtEmmPyhh4TqNTDqcNWSOjRfulD0/EVprcE8MTX1+hJqg0oHSFVKCPDYnTqeNbnsz9yDyVZrv6Q==} engines: {node: '>=18.x', npm: '>=9.x'} peerDependencies: '@babel/runtime': ^7.x react: ^18.x react-dom: ^18.x - '@web3auth/wallet-connect-v2-adapter@7.3.2': - resolution: {integrity: sha512-hKDW7oaqtI4ZhoTTOBFHBdbs3ez+gFz+yB44DELPq201H2W7Z638LINJ5suitFteSuw6knVZ5xNzAXcl+w3tmw==} - engines: {node: '>=18.x', npm: '>=9.x'} - peerDependencies: - '@babel/runtime': ^7.x - '@walletconnect/sign-client': ^2.x - '@walletconnect/types': ^2.x - '@walletconnect/utils': ^2.x - JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -3420,6 +3319,9 @@ packages: aes-js@3.0.0: resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} + aes-js@4.0.0-beta.5: + resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + agent-base@7.1.0: resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} engines: {node: '>= 14'} @@ -3516,8 +3418,8 @@ packages: async-mutex@0.2.6: resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} - async-mutex@0.4.1: - resolution: {integrity: sha512-WfoBo4E/TbCX1G95XTjbWTE3X2XLG0m1Xbv2cwOtuPdyH9CZvnaA5nCt1ucjaKEgW2A5IF71hxrRhr83Je5xjA==} + async-mutex@0.5.0: + resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -3623,6 +3525,9 @@ packages: resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} engines: {node: '>=8.0.0'} + bip39@3.1.0: + resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} + bitcoinjs-lib@6.1.5: resolution: {integrity: sha512-yuf6xs9QX/E8LWE2aMJPNd0IxGofwfuVOiYdNUESkc+2bHHVKjhJd8qewqapeoolh9fihzHGoDCB5Vkr57RZCQ==} engines: {node: '>=8.0.0'} @@ -3735,13 +3640,6 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} - - call-bind@1.0.6: - resolution: {integrity: sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==} - engines: {node: '>= 0.4'} - call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} @@ -3913,6 +3811,13 @@ packages: color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + colorette@1.4.0: resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} @@ -4118,10 +4023,6 @@ packages: defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} - define-data-property@1.1.4: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} @@ -4253,6 +4154,9 @@ packages: elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} + elliptic@6.5.7: + resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} + emoji-regex@10.3.0: resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} @@ -4262,6 +4166,9 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + enc-utils@3.0.0: + resolution: {integrity: sha512-e57t/Z2HzWOLwOp7DZcV0VMEY8t7ptWwsxyp6kM2b2zrk6JqIpXxzkruHAMiBsy5wg9jp/183GdiRXCvBtzsYg==} + encode-utf8@1.0.3: resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} @@ -4278,6 +4185,9 @@ packages: engine.io-client@6.5.3: resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==} + engine.io-client@6.6.1: + resolution: {integrity: sha512-aYuoak7I+R83M/BBPIOs2to51BmFIpC1wZe6zZzMrT2llVsHy5cvcmdsJgP2Qz6smHu+sD9oexiSUAVd8OfBPw==} + engine.io-parser@5.2.1: resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==} engines: {node: '>=10.0.0'} @@ -4428,6 +4338,9 @@ packages: ethereum-cryptography@2.1.3: resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==} + ethereum-cryptography@2.2.1: + resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + ethereumjs-util@5.2.1: resolution: {integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==} @@ -4438,6 +4351,10 @@ packages: ethers@5.7.2: resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + ethers@6.13.4: + resolution: {integrity: sha512-21YtnZVg4/zKkCQPjrDj38B1r4nQvTZLopUGMLQ1ePU2zV/joCfDC3t3iKQjWRzjjjbzR+mdAIoikeBRNkdllA==} + engines: {node: '>=14.0.0'} + ethjs-unit@0.1.6: resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==} engines: {node: '>=6.5.0', npm: '>=3'} @@ -4501,9 +4418,6 @@ packages: fast-deep-equal@2.0.1: resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-fifo@1.3.2: resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} @@ -4651,9 +4565,6 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} - get-intrinsic@1.2.4: resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} engines: {node: '>= 0.4'} @@ -4737,9 +4648,6 @@ packages: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} - has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} @@ -4863,8 +4771,8 @@ packages: i18next@22.5.1: resolution: {integrity: sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA==} - i18next@23.8.2: - resolution: {integrity: sha512-Z84zyEangrlERm0ZugVy4bIt485e/H8VecGUZkZWrH7BDePG6jT73QdL9EA1tRTTVVMpry/MgWIP1FjEn0DRXA==} + i18next@23.16.0: + resolution: {integrity: sha512-Ni3CG6c14teOogY19YNRl+kYaE/Rb59khy0VyHVn4uOZ97E2E/Yziyi6r3C3s9+wacjdLZiq/LLYyx+Cgd+FCw==} iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} @@ -4991,6 +4899,9 @@ packages: is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} @@ -5455,12 +5366,6 @@ packages: lock@1.1.0: resolution: {integrity: sha512-NZQIJJL5Rb9lMJ0Yl1JoVr9GSdo4HTPsUEWsSFzB8dE8DSoiLCVavWZPi7Rnlv/o73u6I24S/XYc/NmG4l8EKA==} - lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - - lodash.clonedeep@4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} - lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} @@ -5473,9 +5378,6 @@ packages: lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.throttle@4.1.1: resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} @@ -5494,8 +5396,8 @@ packages: resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} hasBin: true - loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} + loglevel@1.9.2: + resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} engines: {node: '>= 0.6.0'} long@4.0.0: @@ -6082,8 +5984,9 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} - oblivious-set@1.1.1: - resolution: {integrity: sha512-Oh+8fK09mgGmAshFdH6hSVco6KZmd1tTwNFWj35OvzdmJTMZtAkbn05zar2iG3v6sDs1JLEtOiBGNb6BHwkb2w==} + oblivious-set@1.4.0: + resolution: {integrity: sha512-szyd0ou0T8nsAqHtprRcP3WidfsN1TnAR5yWXf2mFCEr5ek3LEOkT6EZ/92Xfs74HIdyhG5WkGxIssMU0jBaeg==} + engines: {node: '>=16'} oboe@2.1.5: resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==} @@ -6506,6 +6409,19 @@ packages: react-native: optional: true + react-i18next@15.0.3: + resolution: {integrity: sha512-BlO1P+oLKjjIxDBQ0GkAIMacgjfMbnvops+3Y5nZXF7UJ99v4KCWr0Na1azJXC8AMiNWp4kgUcFCJM7U9ZsUDg==} + peerDependencies: + i18next: '>= 23.2.3' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + react-intersection-observer@9.5.3: resolution: {integrity: sha512-NJzagSdUPS5rPhaLsHXYeJbsvdpbJwL6yCHtMk91hc0ufQ2BnXis+0QQ9NBh6n9n+Q3OyjR6OQLShYbaNBkThQ==} peerDependencies: @@ -6536,11 +6452,11 @@ packages: peerDependencies: react: 18.2.0 - react-qrcode-logo@2.9.0: - resolution: {integrity: sha512-x9uctB/8kuQ+x7p4V/BRv6qbQV4xYopLcitBuQT3925U/zVFb3bbDUsUZsi7hEKuAX/wRsfhs331FhlPSYCO9Q==} + react-qrcode-logo@3.0.0: + resolution: {integrity: sha512-2+vZ3GNBdUpYxIKyt6SFZsDGXa0xniyUQ0wPI4O0hJTzRjttPIx1pPnH9IWQmp/4nDMoN47IBhi3Breu1KudYw==} peerDependencies: - react: '>=16.4.1' - react-dom: '>=16.4.1' + react: '>=18.0.0' + react-dom: '>=18.0.0' react-refresh@0.14.2: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} @@ -6784,6 +6700,9 @@ packages: run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -6842,10 +6761,6 @@ packages: set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-function-length@1.2.0: - resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} - engines: {node: '>= 0.4'} - set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -6905,6 +6820,9 @@ packages: simple-get@2.8.2: resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==} + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -6934,6 +6852,10 @@ packages: resolution: {integrity: sha512-wh+OkeF0rAVCrABWQBaEjLfb7DVPotMbu0cgWgyR0v6eA4EoVnAwcIeIbcdTE3GT/H3kbdLl7OoH2+asoDRIIg==} engines: {node: '>=10.0.0'} + socket.io-client@4.8.0: + resolution: {integrity: sha512-C0jdhD5yQahMws9alf/yvtsMGTaIDBnZ8Rb5HU56svyq0l5LIrGzIDZZD5pHQlmzxLuU91Gz+VpQMKgCTNYtkw==} + engines: {node: '>=10.0.0'} + socket.io-parser@4.2.4: resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} engines: {node: '>=10.0.0'} @@ -7237,6 +7159,9 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tsx@4.7.1: resolution: {integrity: sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==} engines: {node: '>=18.0.0'} @@ -7273,6 +7198,9 @@ packages: type@2.7.2: resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + typed-emitter@2.1.0: + resolution: {integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==} + typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} @@ -7311,6 +7239,9 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + unenv@1.9.0: resolution: {integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==} @@ -7890,6 +7821,10 @@ packages: resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} engines: {node: '>=0.4.0'} + xmlhttprequest-ssl@2.1.1: + resolution: {integrity: sha512-ptjR8YSJIXoA3Mbv5po7RtSYHO6mZr8s7i5VGmEk7QY2pQWyT1o0N+W1gKbOyJPUCGXGnuw0wqe8f0L6Y0ny7g==} + engines: {node: '>=0.4.0'} + xstream@11.14.0: resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} @@ -7968,6 +7903,8 @@ snapshots: '@adraffy/ens-normalize@1.10.0': {} + '@adraffy/ens-normalize@1.10.1': {} + '@alloc/quick-lru@5.2.0': {} '@ampproject/remapping@2.2.1': @@ -8017,7 +7954,7 @@ snapshots: '@babel/traverse': 7.23.7 '@babel/types': 7.23.6 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -8037,7 +7974,7 @@ snapshots: '@babel/traverse': 7.24.8 '@babel/types': 7.24.9 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -9044,6 +8981,10 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 + '@babel/runtime@7.25.7': + dependencies: + regenerator-runtime: 0.14.1 + '@babel/template@7.22.15': dependencies: '@babel/code-frame': 7.23.5 @@ -9066,7 +9007,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.6 '@babel/types': 7.23.6 - debug: 4.3.4 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -9081,7 +9022,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.8 '@babel/types': 7.24.9 - debug: 4.3.4 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -9526,12 +9467,6 @@ snapshots: '@ethereumjs/util': 8.1.0 crc-32: 1.2.2 - '@ethereumjs/common@4.2.0': - dependencies: - '@ethereumjs/util': 9.0.2 - transitivePeerDependencies: - - c-kzg - '@ethereumjs/rlp@4.0.1': {} '@ethereumjs/rlp@5.0.2': {} @@ -9543,23 +9478,16 @@ snapshots: '@ethereumjs/util': 8.1.0 ethereum-cryptography: 2.1.3 - '@ethereumjs/tx@5.2.1': - dependencies: - '@ethereumjs/common': 4.2.0 - '@ethereumjs/rlp': 5.0.2 - '@ethereumjs/util': 9.0.2 - ethereum-cryptography: 2.1.3 - '@ethereumjs/util@8.1.0': dependencies: '@ethereumjs/rlp': 4.0.1 ethereum-cryptography: 2.1.3 micro-ftch: 0.3.1 - '@ethereumjs/util@9.0.2': + '@ethereumjs/util@9.1.0': dependencies: '@ethereumjs/rlp': 5.0.2 - ethereum-cryptography: 2.1.3 + ethereum-cryptography: 2.2.1 '@ethersproject/abi@5.0.7': dependencies: @@ -10603,15 +10531,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/abi-utils@2.0.2': - dependencies: - '@metamask/utils': 8.3.0 - superstruct: 1.0.3 - transitivePeerDependencies: - - supports-color - - '@metamask/detect-provider@2.0.0': {} - '@metamask/eth-json-rpc-provider@1.0.1': dependencies: '@metamask/json-rpc-engine': 7.3.2 @@ -10629,17 +10548,6 @@ snapshots: tweetnacl: 1.0.3 tweetnacl-util: 0.15.1 - '@metamask/eth-sig-util@7.0.1': - dependencies: - '@ethereumjs/util': 8.1.0 - '@metamask/abi-utils': 2.0.2 - '@metamask/utils': 8.3.0 - ethereum-cryptography: 2.1.3 - tweetnacl: 1.0.3 - tweetnacl-util: 0.15.1 - transitivePeerDependencies: - - supports-color - '@metamask/json-rpc-engine@7.3.2': dependencies: '@metamask/rpc-errors': 6.1.0 @@ -10761,7 +10669,7 @@ snapshots: dependencies: '@ethereumjs/tx': 4.2.0 '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 semver: 7.5.4 superstruct: 1.0.3 transitivePeerDependencies: @@ -10773,7 +10681,7 @@ snapshots: '@noble/hashes': 1.4.0 '@scure/base': 1.1.7 '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 pony-cause: 2.1.10 semver: 7.5.4 superstruct: 1.0.3 @@ -10844,6 +10752,10 @@ snapshots: dependencies: '@noble/hashes': 1.4.0 + '@noble/curves@1.4.2': + dependencies: + '@noble/hashes': 1.4.0 + '@noble/hashes@1.2.0': {} '@noble/hashes@1.3.2': {} @@ -10888,6 +10800,9 @@ snapshots: transitivePeerDependencies: - supports-color + '@nx/nx-linux-x64-gnu@19.8.6': + optional: true + '@parcel/watcher-android-arm64@2.4.0': optional: true @@ -11745,6 +11660,9 @@ snapshots: '@rollup/rollup-linux-x64-gnu@4.18.1': optional: true + '@rollup/rollup-linux-x64-gnu@4.24.0': + optional: true + '@rollup/rollup-linux-x64-musl@4.18.1': optional: true @@ -12010,42 +11928,32 @@ snapshots: '@tanstack/query-core': 5.18.0 react: 18.2.0 - '@toruslabs/base-controllers@4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@toruslabs/base-controllers@6.2.2(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@ethereumjs/util': 9.0.2 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/broadcast-channel': 9.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - async-mutex: 0.4.1 + '@babel/runtime': 7.25.7 + '@ethereumjs/util': 9.1.0 + '@toruslabs/broadcast-channel': 11.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + async-mutex: 0.5.0 bignumber.js: 9.1.2 bowser: 2.11.0 - lodash: 4.17.21 - loglevel: 1.9.1 + jwt-decode: 4.0.0 + loglevel: 1.9.2 transitivePeerDependencies: - '@sentry/types' - bufferutil - - c-kzg - supports-color - utf-8-validate - '@toruslabs/base-session-manager@3.0.0(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.23.8) - transitivePeerDependencies: - - '@sentry/types' - - '@toruslabs/broadcast-channel@9.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@toruslabs/broadcast-channel@11.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/eccrypto': 4.0.0 - '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.23.8) - bowser: 2.11.0 - loglevel: 1.9.1 - oblivious-set: 1.1.1 - socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@toruslabs/eccrypto': 5.0.4 + '@toruslabs/metadata-helpers': 6.0.0(@babel/runtime@7.25.7) + loglevel: 1.9.2 + oblivious-set: 1.4.0 + socket.io-client: 4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) unload: 2.4.1 transitivePeerDependencies: - '@sentry/types' @@ -12053,161 +11961,72 @@ snapshots: - supports-color - utf-8-validate - '@toruslabs/constants@13.1.0(@babel/runtime@7.23.8)': + '@toruslabs/constants@14.0.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.23.8 + '@babel/runtime': 7.25.7 - '@toruslabs/eccrypto@4.0.0': + '@toruslabs/eccrypto@5.0.4': dependencies: - elliptic: 6.5.4 + elliptic: 6.5.7 - '@toruslabs/http-helpers@5.0.0(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - lodash.merge: 4.6.2 - loglevel: 1.9.1 + '@toruslabs/ffjavascript@4.0.0': {} - '@toruslabs/http-helpers@6.0.0(@babel/runtime@7.23.8)': + '@toruslabs/http-helpers@7.0.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.23.8 - lodash.merge: 4.6.2 - loglevel: 1.9.1 + '@babel/runtime': 7.25.7 + deepmerge: 4.3.1 + loglevel: 1.9.2 - '@toruslabs/metadata-helpers@5.0.0(@babel/runtime@7.23.8)': + '@toruslabs/metadata-helpers@6.0.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/eccrypto': 4.0.0 - '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.23.8) - elliptic: 6.5.4 - ethereum-cryptography: 2.1.3 + '@babel/runtime': 7.25.7 + '@toruslabs/eccrypto': 5.0.4 + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + elliptic: 6.5.7 + ethereum-cryptography: 2.2.1 json-stable-stringify: 1.1.1 transitivePeerDependencies: - '@sentry/types' - '@toruslabs/openlogin-ed25519@6.0.0(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/tweetnacl-js': 1.0.4 - - '@toruslabs/openlogin-jrpc@5.3.0(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/openlogin-utils': 5.3.0(@babel/runtime@7.23.8) - end-of-stream: 1.4.4 - events: 3.3.0 - fast-safe-stringify: 2.1.1 - once: 1.4.0 - pump: 3.0.0 - readable-stream: 4.5.2 - transitivePeerDependencies: - - supports-color - - '@toruslabs/openlogin-jrpc@6.2.11(@babel/runtime@7.23.8)': + '@toruslabs/secure-pub-sub@1.0.0(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) - end-of-stream: 1.4.4 - events: 3.3.0 - fast-safe-stringify: 2.1.1 - once: 1.4.0 - pump: 3.0.0 - readable-stream: 4.5.2 + '@babel/runtime': 7.25.7 + '@toruslabs/eccrypto': 5.0.4 + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@toruslabs/metadata-helpers': 6.0.0(@babel/runtime@7.25.7) + loglevel: 1.9.2 + socket.io-client: 4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: + - '@sentry/types' + - bufferutil - supports-color + - utf-8-validate - '@toruslabs/openlogin-session-manager@3.0.0(@babel/runtime@7.23.8)': + '@toruslabs/session-manager@3.1.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/base-session-manager': 3.0.0(@babel/runtime@7.23.8) - '@toruslabs/eccrypto': 4.0.0 - '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.23.8) + '@toruslabs/eccrypto': 5.0.4 + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@toruslabs/metadata-helpers': 6.0.0(@babel/runtime@7.25.7) + optionalDependencies: + '@rollup/rollup-linux-x64-gnu': 4.24.0 transitivePeerDependencies: + - '@babel/runtime' - '@sentry/types' - '@toruslabs/openlogin-utils@5.3.0(@babel/runtime@7.23.8)': + '@toruslabs/starkware-crypto@4.0.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/constants': 13.1.0(@babel/runtime@7.23.8) - base64url: 3.0.1 + '@babel/runtime': 7.25.7 + assert: 2.1.0 + bip39: 3.1.0 + bn.js: 5.2.1 + elliptic: 6.5.7 + enc-utils: 3.0.0 + ethereum-cryptography: 2.2.1 + hash.js: 1.1.7 - '@toruslabs/openlogin-utils@6.2.11(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/constants': 13.1.0(@babel/runtime@7.23.8) - base64url: 3.0.1 + '@toruslabs/tweetnacl-js@1.0.4': {} - '@toruslabs/openlogin@6.2.11(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/eccrypto': 4.0.0 - '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-session-manager': 3.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) - '@toruslabs/secure-pub-sub': 0.0.1(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - bowser: 2.11.0 - events: 3.3.0 - loglevel: 1.9.1 - ts-custom-error: 3.3.1 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - supports-color - - utf-8-validate - - '@toruslabs/secure-pub-sub@0.0.1(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/eccrypto': 4.0.0 - '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.23.8) - '@toruslabs/metadata-helpers': 5.0.0(@babel/runtime@7.23.8) - loglevel: 1.9.1 - socket.io-client: 4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - supports-color - - utf-8-validate - - '@toruslabs/solana-embed@2.0.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/http-helpers': 5.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-jrpc': 5.3.0(@babel/runtime@7.23.8) - eth-rpc-errors: 4.0.3 - fast-deep-equal: 3.1.3 - lodash-es: 4.17.21 - loglevel: 1.9.1 - pump: 3.0.0 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - encoding - - supports-color - - utf-8-validate - - '@toruslabs/torus-embed@4.1.3(@babel/runtime@7.23.8)': - dependencies: - '@babel/runtime': 7.23.8 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - fast-deep-equal: 3.1.3 - lodash.merge: 4.6.2 - loglevel: 1.9.1 - pump: 3.0.0 - readable-stream: 4.5.2 - transitivePeerDependencies: - - '@sentry/types' - - supports-color - - '@toruslabs/tweetnacl-js@1.0.4': {} - - '@turnkey/api-key-stamper@0.4.0': + '@turnkey/api-key-stamper@0.4.0': dependencies: '@noble/curves': 1.4.0 '@turnkey/encoding': 0.1.0 @@ -12343,6 +12162,10 @@ snapshots: dependencies: undici-types: 5.26.5 + '@types/node@22.7.5': + dependencies: + undici-types: 6.19.8 + '@types/parse-json@4.0.2': {} '@types/pbkdf2@3.1.2': @@ -12389,7 +12212,7 @@ snapshots: '@typescript/vfs@1.5.0': dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -13133,61 +12956,77 @@ snapshots: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 - '@web3auth/base-evm-adapter@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/auth-adapter@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base-provider': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + deepmerge: 4.3.1 transitivePeerDependencies: - '@sentry/types' - bufferutil - supports-color - utf-8-validate - '@web3auth/base-plugin@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/auth@9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@ethereumjs/util': 9.1.0 + '@toruslabs/constants': 14.0.0(@babel/runtime@7.25.7) + '@toruslabs/ffjavascript': 4.0.0 + '@toruslabs/metadata-helpers': 6.0.0(@babel/runtime@7.25.7) + '@toruslabs/secure-pub-sub': 1.0.0(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@toruslabs/session-manager': 3.1.0(@babel/runtime@7.25.7) + '@toruslabs/starkware-crypto': 4.0.0(@babel/runtime@7.25.7) + '@toruslabs/tweetnacl-js': 1.0.4 + base64url: 3.0.1 + bip39: 3.1.0 + bn.js: 5.2.1 + bowser: 2.11.0 + color: 4.2.3 + enc-utils: 3.0.0 + end-of-stream: 1.4.4 + events: 3.3.0 + fast-safe-stringify: 2.1.1 + json-stable-stringify: 1.1.1 + loglevel: 1.9.2 + once: 1.4.0 + pump: 3.0.0 + readable-stream: 4.5.2 + ts-custom-error: 3.3.1 + typed-emitter: 2.1.0 + optionalDependencies: + '@nx/nx-linux-x64-gnu': 19.8.6 + '@rollup/rollup-linux-x64-gnu': 4.24.0 transitivePeerDependencies: - - '@babel/runtime' - '@sentry/types' - bufferutil - supports-color - utf-8-validate - '@web3auth/base-provider@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/base-provider@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@toruslabs/base-controllers': 6.2.2(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) json-rpc-random-id: 1.0.1 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/base-solana-adapter@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - bs58: 5.0.0 transitivePeerDependencies: - '@sentry/types' - bufferutil - supports-color - utf-8-validate - '@web3auth/base@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/base@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) + '@babel/runtime': 7.25.7 + '@toruslabs/base-controllers': 6.2.2(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@toruslabs/constants': 14.0.0(@babel/runtime@7.25.7) + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) jwt-decode: 4.0.0 - loglevel: 1.9.1 + loglevel: 1.9.2 ts-custom-error: 3.3.1 transitivePeerDependencies: - '@sentry/types' @@ -13195,213 +13034,75 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/ethereum-provider@7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@web3auth/ethereum-provider@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@ethereumjs/common': 4.2.0 - '@ethereumjs/tx': 5.2.1 - '@ethereumjs/util': 9.0.2 - '@metamask/eth-sig-util': 7.0.1 - '@metamask/rpc-errors': 6.1.0 - '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@ethereumjs/util': 9.1.0 + '@toruslabs/base-controllers': 6.2.2(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@toruslabs/eccrypto': 5.0.4 + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base-provider': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) assert: 2.1.0 bignumber.js: 9.1.2 bn.js: 5.2.1 + ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) jsonschema: 1.4.1 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@sentry/types' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/metamask-adapter@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@metamask/detect-provider': 2.0.0 - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@sentry/types' - bufferutil - supports-color - utf-8-validate - '@web3auth/modal@7.3.2(if6ud4gccvow4k6ndomtzwdh3a)': + '@web3auth/modal@9.2.4(@babel/runtime@7.25.7)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/metamask-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/no-modal': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/openlogin-adapter': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/phantom-adapter': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/solana-provider': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/torus-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/torus-solana-adapter': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@web3auth/ui': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10) - '@web3auth/wallet-connect-v2-adapter': 7.3.2(2pfhckbpeeguuibf3gkckdw4o4) + '@babel/runtime': 7.25.7 + '@web3auth/auth-adapter': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base-provider': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/no-modal': 9.2.4(@babel/runtime@7.25.7)(@web3auth/auth-adapter@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/ui': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10) + deepmerge: 4.3.1 transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - '@sentry/types' - - '@upstash/redis' - - '@vercel/kv' - - '@walletconnect/sign-client' - - '@walletconnect/types' - - '@walletconnect/utils' - bufferutil - - c-kzg - - encoding - react - react-dom - react-native - supports-color - utf-8-validate - '@web3auth/no-modal@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-plugin': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/openlogin-adapter@7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - lodash.merge: 4.6.2 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/phantom-adapter@7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-solana-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/solana-provider': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - bn.js: 5.2.1 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/solana-provider@7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@metamask/rpc-errors': 6.1.0 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@toruslabs/base-controllers': 4.11.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-ed25519': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@toruslabs/tweetnacl-js': 1.0.4 - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - bn.js: 5.2.1 - bs58: 5.0.0 - json-rpc-random-id: 1.0.1 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - - '@web3auth/torus-evm-adapter@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/torus-embed': 4.1.3(@babel/runtime@7.23.8) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - supports-color - - utf-8-validate - - '@web3auth/torus-solana-adapter@7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@web3auth/no-modal@9.2.4(@babel/runtime@7.25.7)(@web3auth/auth-adapter@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@solana/web3.js': 1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@toruslabs/solana-embed': 2.0.0(@babel/runtime@7.23.8)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-provider': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-solana-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/solana-provider': 7.3.2(@babel/runtime@7.23.8)(@solana/web3.js@1.90.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base-provider': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + deepmerge: 4.3.1 + optionalDependencies: + '@web3auth/auth-adapter': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@sentry/types' - bufferutil - - c-kzg - - encoding - supports-color - utf-8-validate - '@web3auth/ui@7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)': + '@web3auth/ui@9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.8 - '@toruslabs/http-helpers': 6.0.0(@babel/runtime@7.23.8) - '@toruslabs/openlogin': 6.2.11(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/openlogin-jrpc': 6.2.11(@babel/runtime@7.23.8) - '@toruslabs/openlogin-utils': 6.2.11(@babel/runtime@7.23.8) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.25.7 + '@toruslabs/http-helpers': 7.0.0(@babel/runtime@7.25.7) + '@web3auth/auth': 9.4.1(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@web3auth/base': 9.2.3(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) bowser: 2.11.0 classnames: 2.5.1 copy-to-clipboard: 3.3.3 - i18next: 23.8.2 - lodash.clonedeep: 4.5.0 - lodash.merge: 4.6.2 + deepmerge: 4.3.1 + i18next: 23.16.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-i18next: 13.5.0(i18next@23.8.2)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - react-qrcode-logo: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-i18next: 15.0.3(i18next@23.16.0)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-qrcode-logo: 3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@sentry/types' - bufferutil @@ -13409,35 +13110,6 @@ snapshots: - supports-color - utf-8-validate - '@web3auth/wallet-connect-v2-adapter@7.3.2(2pfhckbpeeguuibf3gkckdw4o4)': - dependencies: - '@babel/runtime': 7.23.8 - '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))) - '@web3auth/base': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/base-evm-adapter': 7.3.2(@babel/runtime@7.23.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@web3auth/ethereum-provider': 7.3.2(@babel/runtime@7.23.8)(@react-native-async-storage/async-storage@1.21.0(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - lodash.merge: 4.6.2 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@sentry/types' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 @@ -13470,6 +13142,8 @@ snapshots: aes-js@3.0.0: {} + aes-js@4.0.0-beta.5: {} + agent-base@7.1.0: dependencies: debug: 4.3.4 @@ -13533,7 +13207,7 @@ snapshots: assert@2.1.0: dependencies: - call-bind: 1.0.6 + call-bind: 1.0.7 is-nan: 1.3.2 object-is: 1.1.5 object.assign: 4.1.5 @@ -13555,7 +13229,7 @@ snapshots: dependencies: tslib: 2.6.2 - async-mutex@0.4.1: + async-mutex@0.5.0: dependencies: tslib: 2.6.2 @@ -13671,6 +13345,10 @@ snapshots: bip174@2.1.1: {} + bip39@3.1.0: + dependencies: + '@noble/hashes': 1.4.0 + bitcoinjs-lib@6.1.5: dependencies: '@noble/hashes': 1.4.0 @@ -13814,19 +13492,6 @@ snapshots: cac@6.7.14: {} - call-bind@1.0.5: - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.2.0 - - call-bind@1.0.6: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.0 - call-bind@1.0.7: dependencies: es-define-property: 1.0.0 @@ -13999,6 +13664,16 @@ snapshots: color-name@1.1.4: {} + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + colorette@1.4.0: {} combined-stream@1.0.8: @@ -14203,12 +13878,6 @@ snapshots: dependencies: clone: 1.0.4 - define-data-property@1.1.1: - dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 @@ -14219,8 +13888,8 @@ snapshots: define-properties@1.2.1: dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 defu@6.1.4: {} @@ -14292,7 +13961,7 @@ snapshots: dns-over-http-resolver@1.2.3(node-fetch@2.7.0(encoding@0.1.13)): dependencies: - debug: 4.3.4 + debug: 4.3.7 native-fetch: 3.0.0(node-fetch@2.7.0(encoding@0.1.13)) receptacle: 1.3.2 transitivePeerDependencies: @@ -14347,12 +14016,27 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 + elliptic@6.5.7: + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + emoji-regex@10.3.0: {} emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} + enc-utils@3.0.0: + dependencies: + is-typedarray: 1.0.0 + typedarray-to-buffer: 3.1.5 + encode-utf8@1.0.3: {} encodeurl@1.0.2: {} @@ -14368,7 +14052,7 @@ snapshots: engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.7 engine.io-parser: 5.2.1 ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) xmlhttprequest-ssl: 2.0.0 @@ -14380,7 +14064,7 @@ snapshots: engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.7 engine.io-parser: 5.2.1 ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) xmlhttprequest-ssl: 2.0.0 @@ -14389,6 +14073,18 @@ snapshots: - supports-color - utf-8-validate + engine.io-client@6.6.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.7 + engine.io-parser: 5.2.1 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + xmlhttprequest-ssl: 2.1.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + engine.io-parser@5.2.1: {} envinfo@7.11.0: {} @@ -14613,6 +14309,13 @@ snapshots: '@scure/bip32': 1.3.3 '@scure/bip39': 1.2.2 + ethereum-cryptography@2.2.1: + dependencies: + '@noble/curves': 1.4.2 + '@noble/hashes': 1.4.0 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 + ethereumjs-util@5.2.1: dependencies: bn.js: 4.12.0 @@ -14667,6 +14370,19 @@ snapshots: - bufferutil - utf-8-validate + ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@adraffy/ens-normalize': 1.10.1 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@types/node': 22.7.5 + aes-js: 4.0.0-beta.5 + tslib: 2.7.0 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + ethjs-unit@0.1.6: dependencies: bn.js: 4.11.6 @@ -14739,8 +14455,6 @@ snapshots: fast-deep-equal@2.0.1: {} - fast-deep-equal@3.1.3: {} - fast-fifo@1.3.2: {} fast-glob@3.3.2: @@ -14893,13 +14607,6 @@ snapshots: get-caller-file@2.0.5: {} - get-intrinsic@1.2.2: - dependencies: - function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 @@ -14972,7 +14679,7 @@ snapshots: gopd@1.0.1: dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 graceful-fs@4.2.11: {} @@ -14997,10 +14704,6 @@ snapshots: has-flag@4.0.0: {} - has-property-descriptors@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.0 @@ -15194,7 +14897,7 @@ snapshots: dependencies: '@babel/runtime': 7.23.8 - i18next@23.8.2: + i18next@23.16.0: dependencies: '@babel/runtime': 7.23.8 @@ -15264,7 +14967,7 @@ snapshots: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.4 + debug: 4.3.7 denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -15294,7 +14997,7 @@ snapshots: any-signal: 3.0.1 blob-to-it: 1.0.4 browser-readablestream-to-it: 1.0.3 - debug: 4.3.4 + debug: 4.3.7 err-code: 3.0.1 ipfs-core-types: 0.10.3(node-fetch@2.7.0(encoding@0.1.13)) ipfs-unixfs: 6.0.9 @@ -15323,7 +15026,7 @@ snapshots: '@ipld/dag-pb': 2.1.18 any-signal: 3.0.1 dag-jose: 1.0.0 - debug: 4.3.4 + debug: 4.3.7 err-code: 3.0.1 ipfs-core-types: 0.10.3(node-fetch@2.7.0(encoding@0.1.13)) ipfs-core-utils: 0.14.3(encoding@0.1.13)(node-fetch@2.7.0(encoding@0.1.13)) @@ -15404,11 +15107,13 @@ snapshots: is-arguments@1.1.1: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 is-arrayish@0.2.1: {} + is-arrayish@0.3.2: {} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.2.0 @@ -15465,7 +15170,7 @@ snapshots: is-nan@1.3.2: dependencies: - call-bind: 1.0.6 + call-bind: 1.0.7 define-properties: 1.2.1 is-number@7.0.0: {} @@ -15732,7 +15437,7 @@ snapshots: json-stable-stringify@1.1.1: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 isarray: 2.0.5 jsonify: 0.0.1 object-keys: 1.1.1 @@ -15901,10 +15606,6 @@ snapshots: lock@1.1.0: {} - lodash-es@4.17.21: {} - - lodash.clonedeep@4.5.0: {} - lodash.debounce@4.0.8: {} lodash.defaults@4.2.0: {} @@ -15913,8 +15614,6 @@ snapshots: lodash.isequal@4.5.0: {} - lodash.merge@4.6.2: {} - lodash.throttle@4.1.1: {} lodash@4.17.21: {} @@ -15935,7 +15634,7 @@ snapshots: dayjs: 1.11.10 yargs: 15.4.1 - loglevel@1.9.1: {} + loglevel@1.9.2: {} long@4.0.0: {} @@ -16260,7 +15959,7 @@ snapshots: metro-runtime@0.80.5: dependencies: - '@babel/runtime': 7.23.8 + '@babel/runtime': 7.25.7 metro-source-map@0.80.5: dependencies: @@ -16631,7 +16330,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.0 @@ -16874,19 +16573,19 @@ snapshots: object-is@1.1.5: dependencies: - call-bind: 1.0.6 + call-bind: 1.0.7 define-properties: 1.2.1 object-keys@1.1.1: {} object.assign@4.1.5: dependencies: - call-bind: 1.0.6 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - oblivious-set@1.1.1: {} + oblivious-set@1.4.0: {} oboe@2.1.5: dependencies: @@ -17304,7 +17003,7 @@ snapshots: dependencies: '@assemblyscript/loader': 0.9.4 bl: 5.1.0 - debug: 4.3.4 + debug: 4.3.7 minimist: 1.2.8 node-fetch: 2.7.0(encoding@0.1.13) readable-stream: 3.6.2 @@ -17354,11 +17053,11 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-native: 0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10) - react-i18next@13.5.0(i18next@23.8.2)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-i18next@15.0.3(i18next@23.16.0)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.3(@babel/core@7.23.7)(@babel/preset-env@7.23.9(@babel/core@7.23.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: - '@babel/runtime': 7.23.8 + '@babel/runtime': 7.25.7 html-parse-stringify: 3.0.1 - i18next: 23.8.2 + i18next: 23.16.0 react: 18.2.0 optionalDependencies: react-dom: 18.2.0(react@18.2.0) @@ -17434,7 +17133,7 @@ snapshots: - supports-color - utf-8-validate - react-qrcode-logo@2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-qrcode-logo@3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: lodash.isequal: 4.5.0 qrcode-generator: 1.4.4 @@ -17775,6 +17474,11 @@ snapshots: dependencies: queue-microtask: 1.2.3 + rxjs@7.8.1: + dependencies: + tslib: 2.6.2 + optional: true + safe-buffer@5.1.2: {} safe-buffer@5.2.1: {} @@ -17844,14 +17548,6 @@ snapshots: set-blocking@2.0.0: {} - set-function-length@1.2.0: - dependencies: - define-data-property: 1.1.1 - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -17891,7 +17587,7 @@ snapshots: side-channel@1.0.5: dependencies: - call-bind: 1.0.6 + call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.1 @@ -17917,6 +17613,10 @@ snapshots: once: 1.4.0 simple-concat: 1.0.1 + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + sisteransi@1.0.5: {} siwe-recap@0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)): @@ -17947,7 +17647,7 @@ snapshots: socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.7 engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) socket.io-parser: 4.2.4 transitivePeerDependencies: @@ -17958,7 +17658,7 @@ snapshots: socket.io-client@4.7.4(bufferutil@4.0.8)(utf-8-validate@6.0.3): dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.7 engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@6.0.3) socket.io-parser: 4.2.4 transitivePeerDependencies: @@ -17966,10 +17666,21 @@ snapshots: - supports-color - utf-8-validate + socket.io-client@4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.0 + debug: 4.3.7 + engine.io-client: 6.6.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + socket.io-parser@4.2.4: dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -18246,6 +17957,8 @@ snapshots: tslib@2.6.2: {} + tslib@2.7.0: {} + tsx@4.7.1: dependencies: esbuild: 0.19.11 @@ -18277,6 +17990,10 @@ snapshots: type@2.7.2: {} + typed-emitter@2.1.0: + optionalDependencies: + rxjs: 7.8.1 + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 @@ -18311,6 +18028,8 @@ snapshots: undici-types@5.26.5: {} + undici-types@6.19.8: {} + unenv@1.9.0: dependencies: consola: 3.2.3 @@ -18592,7 +18311,7 @@ snapshots: vite-node@1.2.2(@types/node@20.11.2)(terser@5.27.0): dependencies: cac: 6.7.14 - debug: 4.3.4 + debug: 4.3.7 pathe: 1.1.2 picocolors: 1.0.0 vite: 5.3.4(@types/node@20.11.2)(terser@5.27.0) @@ -18958,7 +18677,7 @@ snapshots: which-typed-array@1.1.13: dependencies: available-typed-arrays: 1.0.6 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 @@ -19062,6 +18781,8 @@ snapshots: xmlhttprequest-ssl@2.0.0: {} + xmlhttprequest-ssl@2.1.1: {} + xstream@11.14.0: dependencies: globalthis: 1.0.3