From ff26851f7315c247d5bcd0836658685f619f0e08 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Tue, 11 Jun 2024 17:55:34 +0200 Subject: [PATCH 1/5] feat: support for wallet connect optional namespaces --- .../src/lib/pkp-walletconnect.ts | 48 +++++++++++++++---- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts index 214cdbd185..830d3aa356 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts @@ -111,7 +111,7 @@ export class PKPWalletConnect { // Parse the session proposal const { id, params } = proposal; - const { requiredNamespaces, relays } = params; + const { optionalNamespaces, requiredNamespaces, relays } = params; let rejected = false; // Ensure that the PKPClients can support the requested chains @@ -120,7 +120,7 @@ export class PKPWalletConnect { for (const key of requiredNamespaceKeys) { if (!this.supportedChains.includes(key)) continue; - // Check if specified chain networks are supported by Lit. If so, get a list of accounts for the given chain + // Check if required chain networks are supported by Lit. If so, get a list of accounts for the given chain const accounts: string[] = []; const chains = requiredNamespaces[key].chains; if (chains) { @@ -165,15 +165,45 @@ export class PKPWalletConnect { events: requiredNamespaces[key].events, }; } + const optionalNamespaceKeys = Object.keys(optionalNamespaces); + for (const key of optionalNamespaceKeys) { + if (!this.supportedChains.includes(key)) continue; - // Reject session proposal if there are no constructed namespaces for supported chains - for (const chain of this.supportedChains) { - if (!namespaces[chain]) { - return await this.client.rejectSession({ - id, - reason: getSdkError('UNSUPPORTED_CHAINS'), - }); + // Check if optional chain networks are supported by Lit. If so, get a list of accounts for the given chain + const accounts: string[] = []; + const chains = optionalNamespaces[key].chains; + if (chains) { + for (const chain of chains) { + let accountsByChain: string[] = []; + if (this.checkIfChainIsSupported(chain)) { + accountsByChain = await this.getAccountsWithPrefix(chain); + // If no accounts are found for the given chain, reject the session proposal + if (accountsByChain.length !== 0) { + // Add accounts with prefix to the list of accounts + accounts.push(...accountsByChain); + } + } + } } + + // Construct the session namespace + namespaces[key] = { + accounts, + chains: key.includes(':') ? [key] : chains, + methods: optionalNamespaces[key].methods, + events: optionalNamespaces[key].events, + }; + } + + // Reject session proposal if there are no constructed namespaces for required chains and at least one (if all are optional chains) + const supportsAllRequiredChains = requiredNamespaceKeys.every( + (namespaceKey) => namespaces[namespaceKey] + ); + if (!supportsAllRequiredChains || Object.keys(namespaces).length === 0) { + return await this.client.rejectSession({ + id, + reason: getSdkError('UNSUPPORTED_CHAINS'), + }); } // Approve session proposal with the constructed session namespace and given relay protocol From c3d0a0d89e0601db185a5aa6b36d848526f94198 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Thu, 13 Jun 2024 22:30:30 +0200 Subject: [PATCH 2/5] feat: filter not supported methods and improve rejection handling. And testing --- .../package-lock.json | 8855 ++++++++++++----- apps/demo-pkp-walletconnect-node/package.json | 2 +- .../src/lib/pkp-walletconnect.spec.ts | 164 +- .../src/lib/pkp-walletconnect.ts | 112 +- 4 files changed, 6496 insertions(+), 2637 deletions(-) diff --git a/apps/demo-pkp-walletconnect-node/package-lock.json b/apps/demo-pkp-walletconnect-node/package-lock.json index c6f9c3c7c9..b76a1fea62 100644 --- a/apps/demo-pkp-walletconnect-node/package-lock.json +++ b/apps/demo-pkp-walletconnect-node/package-lock.json @@ -9,8 +9,8 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@lit-protocol/pkp-client": "^2.2.20", - "@lit-protocol/pkp-walletconnect": "^2.2.20", + "@lit-protocol/pkp-client": "^3.0.5", + "@lit-protocol/pkp-walletconnect": "^6.0.1", "lokijs": "^1.5.12" } }, @@ -32,11 +32,6 @@ "@walletconnect/web3wallet": "1.7.3" } }, - "node_modules/@assemblyscript/loader": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.9.4.tgz", - "integrity": "sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA==" - }, "node_modules/@chainsafe/as-sha256": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.4.1.tgz", @@ -994,642 +989,2126 @@ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" }, - "node_modules/@json-rpc-tools/provider": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/provider/-/provider-1.7.6.tgz", - "integrity": "sha512-z7D3xvJ33UfCGv77n40lbzOYjZKVM3k2+5cV7xS8G6SCvKTzMkhkUYuD/qzQUNT4cG/lv0e9mRToweEEVLVVmA==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dependencies": { - "@json-rpc-tools/utils": "^1.7.6", - "axios": "^0.21.0", - "safe-json-utils": "^1.1.1", - "ws": "^7.4.0" - } - }, - "node_modules/@json-rpc-tools/types": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/types/-/types-1.7.6.tgz", - "integrity": "sha512-nDSqmyRNEqEK9TZHtM15uNnDljczhCUdBmRhpNZ95bIPKEDQ+nTDmGMFd2lLin3upc5h2VVVd9tkTDdbXUhDIQ==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dependencies": { - "keyvaluestorage-interface": "^1.0.0" - } - }, - "node_modules/@json-rpc-tools/utils": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/utils/-/utils-1.7.6.tgz", - "integrity": "sha512-HjA8x/U/Q78HRRe19yh8HVKoZ+Iaoo3YZjakJYxR+rw52NHo6jM+VE9b8+7ygkCFXl/EHID5wh/MkXaE/jGyYw==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dependencies": { - "@json-rpc-tools/types": "^1.7.6", - "@pedrouid/environment": "^1.0.1" - } - }, "node_modules/@lit-labs/ssr-dom-shim": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz", - "integrity": "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.0.tgz", + "integrity": "sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==" }, "node_modules/@lit-protocol/access-control-conditions": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-2.2.20.tgz", - "integrity": "sha512-Y5PlszwFT5dmg/zX14GNGNW35eL3Tcdst4g+QFpR5cIhVh4ijHmuVRvrDkqdMQcTjeWDqF6rqbMay40l5D584A==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-3.2.6.tgz", + "integrity": "sha512-9W6GC4SCiWcr2OrRLjv8CtRujLwY89T33a3Kj1nR4oCA5M1WLG0lGKoerWRt0OJc624GaUdS21DUSRVPG2ikKA==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/auth-browser": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-2.2.20.tgz", - "integrity": "sha512-2iJ/dEeC2mjlwHlvb2SeMjLTbjbmJjBB11E2m62PFOqG3W8na1CvIBedYmaVm5Qpp+jwQxuE+msmDAsscN6ZvQ==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "2.2.1", - "ethers": "^5.7.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.13.3", - "util": "^0.12.4", - "web-vitals": "^3.0.4" + "node_modules/@lit-protocol/access-control-conditions/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/@web3modal/core": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-2.2.1.tgz", - "integrity": "sha512-B2O1+uwnEA2pD+NH+W7xIUMqAkUOxuw6WuIbXZ96tXQO8Mqm8tkrJ6MoqmIo6ntLwHLXtcjitH//JvJHjWVt6A==", + "node_modules/@lit-protocol/access-control-conditions/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { - "buffer": "6.0.3", - "valtio": "1.10.3" + "multiformats": "^12.0.1" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/@web3modal/standalone": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/standalone/-/standalone-2.2.1.tgz", - "integrity": "sha512-pHPL+UykZtOZhEhNl+l3wWnNvZZdm8cgJgVQVo8yL7m4N9kTyRbDArsQenlIeIm2xi0kFncXBJbe1kaxl8AWTA==", + "node_modules/@lit-protocol/accs-schemas": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/accs-schemas/-/accs-schemas-0.0.6.tgz", + "integrity": "sha512-/NIZkAN+kgAarWefBX1a4DiNerUtv8JOdQmqUo45cnlDp89X9HkiK+8gm9z2p9gojtvxMqqId7wW8J8NHXVRDg==", "dependencies": { - "@web3modal/core": "2.2.1", - "@web3modal/ui": "2.2.1" + "ajv": "^8.12.0" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/@web3modal/ui": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-2.2.1.tgz", - "integrity": "sha512-7WfynySxcDYFzGTV+9HODKJ85VVVPB8GGcew2JWr9jYcYfRE6KBM75lo+PRb0zdMFRQtSPpU41fRLCk+vBJ4ww==", + "node_modules/@lit-protocol/auth-browser": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-3.2.6.tgz", + "integrity": "sha512-euqLQrXBKU3LgHaTtFyTJh3OqWAbZs5jLoTf5IsYZjeb5qSPYGP14YujfKo5bjAFxb5ls6IWfYusASqScdDYsQ==", "dependencies": { - "@web3modal/core": "2.2.1", - "lit": "2.6.1", - "motion": "10.15.5", - "qrcode": "1.5.1" + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "buffer": "5.7.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/lit": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.6.1.tgz", - "integrity": "sha512-DT87LD64f8acR7uVp7kZfhLRrHkfC/N4BVzAtnw9Yg8087mbBJ//qedwdwX0kzDbxgPccWRW6mFwGbRQIxy0pw==", + "node_modules/@lit-protocol/auth-browser/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "@lit/reactive-element": "^1.6.0", - "lit-element": "^3.2.0", - "lit-html": "^2.6.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/proxy-compare": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/proxy-compare/-/proxy-compare-2.5.0.tgz", - "integrity": "sha512-f1us0OsVAJ3tdIMXGQx2lmseYS4YXe4W+sKF5g5ww/jV+5ogMadPt+sIZ+88Ga9kvMJsrRNWzCrKPpr6pMWYbA==" - }, - "node_modules/@lit-protocol/auth-browser/node_modules/qrcode": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.1.tgz", - "integrity": "sha512-nS8NJ1Z3md8uTjKtP+SGGhfqmTCs5flU/xR623oI0JX+Wepz9R8UrRVCTBTJm3qGw3rH6jJ6MUHjkDx15cxSSg==", - "dependencies": { - "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", - "pngjs": "^5.0.0", - "yargs": "^15.3.1" - }, - "bin": { - "qrcode": "bin/qrcode" - }, + "node_modules/@lit-protocol/auth-browser/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", "engines": { - "node": ">=10.13.0" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/auth-browser/node_modules/tweetnacl-util": { - "version": "0.13.5", - "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.13.5.tgz", - "integrity": "sha512-/4Q3hpPFAnbBjNLLOmdTdyvInBfZcQBTWy+LWbypmWxAKwOpSQOyyv4ZZts4CoiYtS8Skyix5CkOWytf7XNK9A==" - }, - "node_modules/@lit-protocol/auth-browser/node_modules/valtio": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.10.3.tgz", - "integrity": "sha512-t3Ez/+baJ+Z5tIyeaI6nCAbW/hrmcq2jditwg/X++o5IvCdiGirQKTOv1kJq0glgUo13v5oABCVGcinggBfiKw==", + "node_modules/@lit-protocol/auth-browser/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { - "proxy-compare": "2.5.0", - "use-sync-external-store": "1.2.0" - }, - "engines": { - "node": ">=12.20.0" - }, - "peerDependencies": { - "react": ">=16.8" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - } + "multiformats": "^12.0.1" } }, "node_modules/@lit-protocol/auth-helpers": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-2.2.20.tgz", - "integrity": "sha512-F4o7/CsQw4df2eajgwFwxu1JKRQp4meGBxfViPR8AHgBazMkmidsKOAtZ0BINvdUat0J86rIqOrID7m+frXKBQ==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-3.2.6.tgz", + "integrity": "sha512-pWEcnXI8MNAEPMtSO6D2A8cLphaXg7QLDjrxtst/V4p51U86IReCAhgwdqt6uUGOikJeRt8Q9OZHN9m4A1PDxQ==", "dependencies": { "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "siwe-recap": "0.0.2-alpha.0" } }, "node_modules/@lit-protocol/bls-sdk": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-2.2.20.tgz", - "integrity": "sha512-c6RtuGLi05YYjMtT+WjBqtsk718WfTXvOI8qFJtSbTi+caLSTSqbTWztJY9WGh0Amd6B8KjHrtYxXNnw5rE1Vw==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-3.2.6.tgz", + "integrity": "sha512-zYFStdletoxZsTazrlTbEgN4iXioE9EjE895iF5qUSaU5s51Xx29BqfOPZCrAlxhIelZdS+zbwTq6aHrYSuvBg==", "dependencies": { - "pako": "^2.1.0", - "tslib": "^2.3.0" + "tslib": "1.14.1", + "util": "0.12.5" } }, + "node_modules/@lit-protocol/bls-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, "node_modules/@lit-protocol/constants": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-2.2.20.tgz", - "integrity": "sha512-S1i7RRfJ/wYCKdh7VpsYJ5cpH2LjMi3t/wQ8rKJig+gps6wH+tg1hmNIaNxlIah9bJzyDjr85FLxCE18AHV3Ag==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-3.2.6.tgz", + "integrity": "sha512-HkmRPgeWs8tZWGCKiqyvC7mpBYYLoaehYbmoE6hL3248Btze3t38fd/5SctEddIOSDz++11bhd1TEVG67Lng3A==", "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/types": "2.2.20", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" - } - }, - "node_modules/@lit-protocol/core": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-2.2.20.tgz", - "integrity": "sha512-JmvOeThpdjstlQzai/ts1J3B7gFijD8G0SbEvYkv1j0FKJ8QP+07GRYk2A1nBYF4hE2Fl5K8rbaG19e38RpScg==", - "dependencies": { - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/types": "3.2.6", "ethers": "^5.7.1", + "jszip": "^3.10.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, - "node_modules/@lit-protocol/crypto": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-2.2.20.tgz", - "integrity": "sha512-5YRya5yKY02+DdvriG6WIjYlP1o8mOhM/8oEgMXmxk9lokqdjLNZ+hwLC9f1VkClw3lqI+hTuvQ3BGdH30RsoQ==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "node_modules/@lit-protocol/contracts-sdk": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/contracts-sdk/-/contracts-sdk-3.2.6.tgz", + "integrity": "sha512-AgcJGI6duPe6ITeDvhkuURGdm4hvOe+b/wWTDY7REjwfxLg1GreNyMvXDKtp3ihytrTV65NrGS5Dofd3IOP55A==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/ecdsa-sdk": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-2.2.20.tgz", - "integrity": "sha512-LL7Yl39u7WoKcn94CaM5V3STP2q78oQLD2RbduWD/vZudgUA0xwlLhLriMfGDbx/xeAmviHDkVlb/26Nvz5eSA==", - "dependencies": { - "tslib": "^2.3.0" + "node_modules/@lit-protocol/contracts-sdk/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/encryption": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-2.2.20.tgz", - "integrity": "sha512-uCwNt9quxXd+uBsdc2KOUGeAlAU6/MSL0MPB/mmIHUw6ftWafWDHgODfwh9FrVwMovfbOipu5iJJcgi/2SrFJg==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "jszip": "^3.10.1", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "node_modules/@lit-protocol/contracts-sdk/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" } }, - "node_modules/@lit-protocol/lit-node-client": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-2.2.20.tgz", - "integrity": "sha512-ladbRULsV88OCXcO8cE/VCW3oDQxK5E13JR6tb9gvBL2zPmKUCtPLSmm7Q5Dv6HBHLhpC35JRBXMs8akAVyhnA==", + "node_modules/@lit-protocol/core": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-3.2.6.tgz", + "integrity": "sha512-6rrkH4kD1Y2N8dM/PgnMISolRu+9GGgOPjTzQmj4R8kEHLOhZpZQmCRS/ZfkgsW7cPdABWitdLMopi805qRnMQ==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/lit-node-client-nodejs": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-2.2.20.tgz", - "integrity": "sha512-A8jQJuIIXw6FSP4kYbFHoSg3kAAvbfvyLzFyhNpMxvqOQ9yKSh31YpINDsqEQG+wj9OfdlAQ4j+LR4uqyUhWGA==", - "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "blockstore-core": "^3.0.0", - "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "jszip": "^3.10.1", - "lit-siwe": "^1.1.8", - "node-fetch": "^2.6.1", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "node_modules/@lit-protocol/core/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/lit-third-party-libs": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-third-party-libs/-/lit-third-party-libs-2.2.20.tgz", - "integrity": "sha512-fqnu4Sqa3tcHN4M5VyRMD/O7p15xHU30DBnlImDZ8ajazhGWQqq/ZlUdXd3vjRGYunyD+/jpr6SrCBspmCZwIg==", + "node_modules/@lit-protocol/core/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "blockstore-core": "^3.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "tslib": "^2.3.0" + "multiformats": "^12.0.1" } }, - "node_modules/@lit-protocol/misc": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-2.2.20.tgz", - "integrity": "sha512-j2cwaqwXtjWwOzcE0KcCBsQcBx3RLG1FhWMkZYYcJPdqw5lPJ2jwsyB7f/nCeSfGGrZEpNEv2BFq263JH7hjrg==", + "node_modules/@lit-protocol/crypto": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-3.2.6.tgz", + "integrity": "sha512-Y6eNlXoyixoOgvNWxbQjnezUGgej3lhLyMXX8rUcUc5bfCNfEsDZ0R8yTTnmzwTi3Oc70NOHiBX6tgWfC5ayNw==", "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/types": "2.2.20", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", + "jszip": "^3.10.1", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/misc-browser": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-2.2.20.tgz", - "integrity": "sha512-POPrYcyyM/ld79tfYyAZO/UeKI58C3iEObRQr2KV1rCUUsiOEEwafcBUQke0Nq9ONEND2xor5RjyqZanZUgigw==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "ethers": "^5.7.1", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "node_modules/@lit-protocol/crypto/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/nacl": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-2.2.20.tgz", - "integrity": "sha512-wtcPbUd3U5X+oLinMn+oT1ZyBGoUKH3c6vRbqLtutuG2pPq83Fil9safiC6yhQzFSN+UTEV/r2rddFrN9/izXg==", + "node_modules/@lit-protocol/crypto/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { - "tslib": "^2.3.0" + "multiformats": "^12.0.1" } }, - "node_modules/@lit-protocol/pkp-base": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-2.2.20.tgz", - "integrity": "sha512-l9N4k9vDhC5ThmkIL9qvjrn3mTUiOIobh1waFLx7pBwh304Zs+3NQo3ejGqC1hbdMC1ugaEtlgwwo4tZQjLOIg==", + "node_modules/@lit-protocol/ecdsa-sdk": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-3.2.6.tgz", + "integrity": "sha512-J+xojNFfMrkJT+kLk9XXjfR5DxMvWkorPNWuPhVUAmfXVLbp6T1BCdXW7BoyhC85kZ6cRmas1oSY7hUkzbk4BQ==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", - "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", - "node-fetch": "^2.6.1", - "secp256k1": "^5.0.0", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tslib": "1.14.1", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/pkp-client": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-2.2.20.tgz", - "integrity": "sha512-IhPJEu+yg4tfTkfSGqaBLV83Q+6e28+ImB9NdAivwhCkkZv+HRUF72hEW/GQHSykJWZLj5EMezyX1kV/vZMe5A==", + "node_modules/@lit-protocol/ecdsa-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/encryption": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-3.2.6.tgz", + "integrity": "sha512-edPR++f1/FGBhYZG/XplT8EFH9G33pyJC0JBcx5a7PFYWXW5MKcG33y72tFKs/uoWg6NsCr2mNCnNa+yPqbZOA==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/pkp-cosmos": "2.2.20", - "@lit-protocol/pkp-ethers": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", "node-fetch": "^2.6.1", - "secp256k1": "^5.0.0", + "pako": "1.0.11", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/pkp-cosmos": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-2.2.20.tgz", - "integrity": "sha512-VhhvEExrpMJGPfZwTqR52+ZLnOJSNhyjrENBvzdyNfVEFiMOFfKu3TKNSZ7aa5EdCdNE1kq38APMgErnNzRkpA==", + "node_modules/@lit-protocol/encryption/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/encryption/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", - "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", - "node-fetch": "^2.6.1", - "secp256k1": "^5.0.0", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "multiformats": "^12.0.1" } }, - "node_modules/@lit-protocol/pkp-ethers": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-2.2.20.tgz", - "integrity": "sha512-BTToUVKQrjDDiAgJuxb2L4we854INd40xzKYMf5cGdp3P2uhYYK4pjFaR+yOHl84Ik98VFUtxkvabdeCzsSNCw==", + "node_modules/@lit-protocol/lit-node-client": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-3.2.6.tgz", + "integrity": "sha512-d525TvOhK/VBw5uddFwwltZuASSCAzC+QQ9R7FP6G9Jq1T3xqgpWV82a99Do2MMdlBentyFuy/gekvW/6WnlzA==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", - "secp256k1": "^5.0.0", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/pkp-walletconnect": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-walletconnect/-/pkp-walletconnect-2.2.20.tgz", - "integrity": "sha512-YQ7WGt0sjcyOhK0UzZjJf/ugN4yghZn3rGFdq3vYu7t+xu7RZbSPZL+MkZkS1J+jmL1r1VA7o+Zu6VXPsDScSw==", + "node_modules/@lit-protocol/lit-node-client-nodejs": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-3.2.6.tgz", + "integrity": "sha512-vLmHKaEAKjDo8YpP6eJ38rSJ9G1bjxguSzvSpdMyT3JFCy7MyJ84peU3vTjuhvQjhisrK8DAXlolArnaJSLsPA==", "dependencies": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/pkp-client": "2.2.20", - "@lit-protocol/pkp-cosmos": "2.2.20", - "@lit-protocol/pkp-ethers": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/core": "2.7.5", - "@walletconnect/ethereum-provider": "2.7.0", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", - "@walletconnect/web3wallet": "1.7.3", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", - "secp256k1": "^5.0.0", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "uint8arrays": "^4.0.3", + "util": "0.12.5" } }, - "node_modules/@lit-protocol/types": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-2.2.20.tgz", - "integrity": "sha512-DYIk02M1KvBaJaELf3UU4xDonUGpWQlhhfJV1ri7axoLBiI31Ixrkiuc9dC2HN2GwS/InjTk0GjR0D3zIlKoOg==", - "dependencies": { - "@lit-protocol/auth-helpers": "2.2.20", - "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "node_modules/@lit-protocol/lit-node-client-nodejs/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@lit-protocol/uint8arrays": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-2.2.20.tgz", - "integrity": "sha512-Uw15rzltxyU3rWuFFR/XKyk0POL7/7nNbtq9IA/wheFYtLl8SCzlb0Nh6IKdeoL5Jl8iPkj/XVrJDYZ+Xa9Klg==", + "node_modules/@lit-protocol/lit-node-client-nodejs/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/lit-node-client/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/lit-node-client/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/lit-node-client/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/logger": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/logger/-/logger-3.2.6.tgz", + "integrity": "sha512-c2Z4o+ymdqlRDdow5bDlQUnjRZ98DYA/duMPMzx064Q5+/ITy0r/musiR/KPMZqyOQDsXojPSNv9kL8ilYPmiQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3" + } + }, + "node_modules/@lit-protocol/logger/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/logger/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/misc": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-3.2.6.tgz", + "integrity": "sha512-XTSx2dKauTJI3YCLN+1NvE5wbbPwBn6CuMkcUoxSIRnOe+QBVRXW/6nf+tSjKb4Hr0M7nh7X8KecAH38Gt0NZg==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/misc-browser": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-3.2.6.tgz", + "integrity": "sha512-lnpLEppJPzjLjGtIA1LE/12Z5XuS515BHYW1zsMfv6ZXzD4GrErxa3uGzbTXmZ0qDdNB7SBvyHsE+S0M9DxD1g==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0" + } + }, + "node_modules/@lit-protocol/misc/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/misc/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/nacl": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-3.2.6.tgz", + "integrity": "sha512-R3Y1xVW/MNr0smnGrZ4mExIXY1APDLi7M9f1kQI6mDcUjjJnvRI9gvs9FhAwV3wB9bAbjNXuYwbNQFzQiwLDBw==", + "dependencies": { + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/nacl/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-base": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-3.2.6.tgz", + "integrity": "sha512-aua0evdtWpQha7+pPpwEKrTFvoGFU4bCP/eIOkXU/1QAenRx1hKMw373fpMflbKL4h0+nD2ZSB6kHa87ExY6UQ==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "ipfs-http-client": "56.0.0", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^12.1.3", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-base/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/pkp-base/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/pkp-base/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/pkp-client": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-3.2.6.tgz", + "integrity": "sha512-bbVl39zCbQ+cxUTnlip1d3qjM1mBXsYPnrdxEYQHDTy9rt0iQM6+y/8weLqgrT+pRdQps63dt1nuoRTGqRLPeA==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/pkp-cosmos": "3.2.6", + "@lit-protocol/pkp-ethers": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "ipfs-http-client": "56.0.0", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^12.1.3", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-client/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/pkp-client/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/pkp-client/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/pkp-cosmos": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-3.2.6.tgz", + "integrity": "sha512-RfuDFlcyRhkfTYrTXHk3yt80nAscxfCP8jKW3RSeDebv/hM39OUjpz/n/Cz/r4S33ooKiZbXKhdIGTB128BzgQ==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "ipfs-http-client": "56.0.0", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^12.1.3", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-cosmos/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/pkp-cosmos/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/pkp-cosmos/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/pkp-ethers": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-3.2.6.tgz", + "integrity": "sha512-+iQS7UBFXB5egYRbCBrqiYO3AWN5tv6skvEPN2xHtx0c7JY0DDGqkK6HCC9Rfq2Jsqm8EVveRdpUnK5Jfwbfnw==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "ipfs-http-client": "56.0.0", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^12.1.3", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-ethers/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/pkp-ethers/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/pkp-ethers/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-walletconnect/-/pkp-walletconnect-6.0.1.tgz", + "integrity": "sha512-7R6iNBqEE2fU8QdiiuuXGCC1OH4WbaHYXWm4Bd/dooECM1Mea4FjX4Q0HQ+0uQhonWDTLyZ66kNKfVh2BZN02A==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/pkp-client": "6.0.1", + "@lit-protocol/pkp-cosmos": "6.0.1", + "@lit-protocol/pkp-ethers": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/access-control-conditions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-6.0.1.tgz", + "integrity": "sha512-oGiHy2+LIib4/hDnkGIwpsDzPq+trqw1hBDliuYQVxBFfCCLl3EHr4nIfSfH/IzTStR3ZnmSPSeABpMHp38ESQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/access-control-conditions/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/accs-schemas": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@lit-protocol/accs-schemas/-/accs-schemas-0.0.7.tgz", + "integrity": "sha512-n8fJ6NMh2T3KgSKe0CRB0Uam6ZwxUTQV0oQXY0vEmSL+Q2a1PsM2FX42szOM+O7LgY+Bko7AiCjjDHbqQoJydg==", + "dependencies": { + "ajv": "^8.12.0" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/auth-browser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-6.0.1.tgz", + "integrity": "sha512-wNjde2GwlJ0C0h1kIlRR2fjWuVMEeHX/tadgtZHbaZ5nt3YUrQFmMbFHBR69JnoXshJlD+wNMZ46cdDtCdez1A==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "buffer": "5.7.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/auth-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/auth-helpers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-6.0.1.tgz", + "integrity": "sha512-H1G3EV4uz5cDIHhc+jWqvFDtecwLYVUOL+WDrEy83wZhDSgG/llAcbITkvkfZtvS6GeLZnur31rwC7CiPdSfLQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "2.6.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/bls-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-6.0.1.tgz", + "integrity": "sha512-rWnfMJM2iPlIrT7nLshiFYvpBx3ywepBcBpHFes4QG9EtQDam1MG+sJjPS7tmqboHVpbvwiAlOlpPUL3CEzmhA==", + "dependencies": { + "tslib": "1.14.1", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/bls-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/constants": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-6.0.1.tgz", + "integrity": "sha512-/cZhS7zdrfoCkA5WJzCdvV1eI72UCaJne/G3c/kAQNVhPewVr7A1af0KtZsZCfonjuWTz5jjHq9/pe9oA1rb7g==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/types": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/constants/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/contracts-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/contracts-sdk/-/contracts-sdk-6.0.1.tgz", + "integrity": "sha512-YfcPgi7gSVQo5HpI6BsM0EhCY/OH3mME4KohhklGRWXJ0fq2/9YRjcSZOCe2uk5J6e/n2S7AhmOn5m4XG/rCzg==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/contracts-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/core": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-6.0.1.tgz", + "integrity": "sha512-+9cU5VWoIArJlaRWmS8zrTxHId2iJDxwGnP9asH6KxEEzHTE+oxV6LqHBxVICJviLv8JNqcNxVSOcgGmq97NpQ==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/core/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/crypto": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-6.0.1.tgz", + "integrity": "sha512-kvqbXlpiX1dnhvrtX5OtU7ZNiuxtWCqvrUgnljqv+oQktozxsDHSMtsh3el/lgaFiCERba3E08Lcw8llRMrncw==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "cross-fetch": "3.1.4", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "pako": "1.0.11", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/crypto/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/ecdsa-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-6.0.1.tgz", + "integrity": "sha512-/NRJ0snOu+XIR6WeD5WVzzfgPmTNTu2ZMbZR9D/Kdbb1ujjKRFVEAWopSaZS0zpSUX/9DAhS8atGKZLeJsY6xA==", + "dependencies": { + "tslib": "1.14.1", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/ecdsa-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/encryption": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-6.0.1.tgz", + "integrity": "sha512-tmRkmUzsZoepyYd12zj5Ep/PIiqhigm+Eu5x7uFICdHlK9j2XjxgquELK93ooMP7BFP/iAWsViNe1VqOj1pvMQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "cross-fetch": "3.1.4", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "pako": "1.0.11", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/encryption/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/lit-node-client": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-6.0.1.tgz", + "integrity": "sha512-Kq3j4Mf7OO93adbVkpz57v30PKF4OdV7OVAyCsp+SnnXJXPys9AEUpxXT+Hz4eDU0/y1km0uvPj/CPvcDq3GeA==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/lit-node-client-nodejs": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-6.0.1.tgz", + "integrity": "sha512-aR7HRx0+wBITM06zBCaAb0ioWRmtQti+XsZssP2G7xb5UPObkL06dlMyL0Y0Q6FgfpUsd82IPple/fY0u5TOeg==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/transactions": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/logger": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/logger/-/logger-6.0.1.tgz", + "integrity": "sha512-ojV+ThHKVe74pQVYuMmHLM3bIElPFvtQKbt7GV3coT9cFpsUPLCmqRNYbxzoc+1nQJxNZSaA5cLdOLzpoipSUg==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/logger/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/misc": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-6.0.1.tgz", + "integrity": "sha512-49xwxPq4e5aw30P1v5DQEx0efSdhxiHc6+sCiJRrXR2I7lsJbE9IyGcdS0R3Dq5GmZ3QD2k7aiWG4vqEP2dicQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/misc-browser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-6.0.1.tgz", + "integrity": "sha512-GAfu/42qhCSvnKRIpJWYsw8fPvcXJrwttnRTkTjAkrgT3qWqj9L6nn4lYlNw1D9EqYMGnpYbr2Gz4ZS7NMZLNg==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/misc-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/misc/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/nacl": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-6.0.1.tgz", + "integrity": "sha512-pkkwW1JTBXmUYa3hEyHgyQGIJFaZCWd6/eB5RkkbccIY2c3QvOyghCfQE6JyLGP20llgsMFHvjwG8+qA6r8CMQ==", + "dependencies": { + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/nacl/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/pkp-base": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-6.0.1.tgz", + "integrity": "sha512-290KBJjo9sGeArxbeLG5pQgBMnoPjp2Fxj34bgAxEtumoI2T0srutC2t0oC2p2jA5RTr6n6V4r94W1VBvQANUw==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/pkp-client": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-6.0.1.tgz", + "integrity": "sha512-ruX9yVPaARDrR/a8J3H1jEkE7En7DEzhCJVySNHDpWnqyfwLE9GwKxGg7gaIrmM21dWQYAmblMlwB6Zl4lI4Dw==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/pkp-cosmos": "6.0.1", + "@lit-protocol/pkp-ethers": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/pkp-cosmos": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-6.0.1.tgz", + "integrity": "sha512-7+qkiAFWXon6eHvCzBCWR8ZWe2B+UbZ21yXvw8sOAV5ltItVnBk2BNx1k17PAm80ELLC7CXOWZDYNDUkbiNZcA==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/pkp-ethers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-6.0.1.tgz", + "integrity": "sha512-NZ1Om4pU9jlH5sx+DPIJLMat8Eg9j/OtlI2iPwnbWVgIGOZkLErDUMMIegsyEfyLFjOMCKzAN2nVAl7PyMURaQ==", + "dependencies": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/sev-snp-utils-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/sev-snp-utils-sdk/-/sev-snp-utils-sdk-6.0.1.tgz", + "integrity": "sha512-k54JVq0IkeEZ2b6cKEe61K64vTAuBM0WN/Mv5fbZVez1bM9uBU0HFON5gUfTeNVn57wIo4vWOOCCtyzpn8Bbdg==", + "dependencies": { + "cross-fetch": "3.1.4", + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/sev-snp-utils-sdk/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/types": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-6.0.1.tgz", + "integrity": "sha512-csTiuS3YUv95cC8npcwZ8Uu6DwR52+lDbvp/riJ23I+KXpH0w6YA41jEE1nnm9S8P3eJnOBFwTiq2DvrjEQ7Dw==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/types/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/uint8arrays": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-6.0.1.tgz", + "integrity": "sha512-1n+Rkk7tC4KZWsRj6Cd6lmxQqYUxeZ517xddZn7kKr5A8L0EgdDEkfKPQOHkuxe0SFEMoLihlI/SFyqFqcOjug==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/@lit-protocol/uint8arrays/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/cross-fetch": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz", + "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==", + "dependencies": { + "node-fetch": "2.6.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/multiformats": { + "version": "9.9.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", + "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "dependencies": { + "multiformats": "^12.0.1" + } + }, + "node_modules/@lit-protocol/pkp-walletconnect/node_modules/uint8arrays/node_modules/multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-protocol/sev-snp-utils-sdk": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/sev-snp-utils-sdk/-/sev-snp-utils-sdk-3.2.6.tgz", + "integrity": "sha512-+eCfBBDbWEyFCJi9gNVdZ9NFmGk24TS7KI7DrS5jFvAtJM5quNsMb+UtoemuUlPakvJ9zGAMBOn6Tv1ozbM1SQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "node-fetch": "^2.6.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "util": "0.12.5" + } + }, + "node_modules/@lit-protocol/types": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-3.2.6.tgz", + "integrity": "sha512-wUh25p37/dfxsG0AJ6qiAmCLN2ShEjLwFfmLA+7bLPgzPwBvI/fHXhV0qW26litcC5Yggg12oMGPomFBsDVtQA==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0" + } + }, + "node_modules/@lit-protocol/uint8arrays": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-3.2.6.tgz", + "integrity": "sha512-Qfq9tr0JlkplICUr+S6RSUd8m+qj3onz9rBdZYX7lu0r4E1XK/zOR2eXmLNY/DR8HpvrinjD2IgtQRjwqjKcGQ==", + "dependencies": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, "node_modules/@lit/reactive-element": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.1.tgz", - "integrity": "sha512-va15kYZr7KZNNPZdxONGQzpUr+4sxVu7V/VG7a8mRfPPXUyhEYj5RzXCQmGrlP3tAh0L3HHm5AjBMFYRqlM9SA==", + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz", + "integrity": "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==", "dependencies": { "@lit-labs/ssr-dom-shim": "^1.0.0" } @@ -1656,94 +3135,82 @@ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, "node_modules/@motionone/animation": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.15.1.tgz", - "integrity": "sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.18.0.tgz", + "integrity": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==", "dependencies": { - "@motionone/easing": "^10.15.1", - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "@motionone/easing": "^10.18.0", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "node_modules/@motionone/dom": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.2.tgz", - "integrity": "sha512-bnuHdNbge1FutZXv+k7xub9oPWcF0hsu8y1HTH/qg6av58YI0VufZ3ngfC7p2xhMJMnoh0LXFma2EGTgPeCkeg==", - "dependencies": { - "@motionone/animation": "^10.15.1", - "@motionone/generators": "^10.15.1", - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.18.0.tgz", + "integrity": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==", + "dependencies": { + "@motionone/animation": "^10.18.0", + "@motionone/generators": "^10.18.0", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "hey-listen": "^1.0.8", "tslib": "^2.3.1" } }, "node_modules/@motionone/easing": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.15.1.tgz", - "integrity": "sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.18.0.tgz", + "integrity": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==", "dependencies": { - "@motionone/utils": "^10.15.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "node_modules/@motionone/generators": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.15.1.tgz", - "integrity": "sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.18.0.tgz", + "integrity": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==", "dependencies": { - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "node_modules/@motionone/svelte": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.2.tgz", - "integrity": "sha512-38xsroKrfK+aHYhuQlE6eFcGy0EwrB43Q7RGjF73j/kRUTcLNu/LAaKiLLsN5lyqVzCgTBVt4TMT/ShWbTbc5Q==", + "version": "10.16.4", + "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.4.tgz", + "integrity": "sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==", "dependencies": { - "@motionone/dom": "^10.16.2", + "@motionone/dom": "^10.16.4", "tslib": "^2.3.1" } }, "node_modules/@motionone/types": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.15.1.tgz", - "integrity": "sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA==" + "version": "10.17.1", + "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.17.1.tgz", + "integrity": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" }, "node_modules/@motionone/utils": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.15.1.tgz", - "integrity": "sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.18.0.tgz", + "integrity": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==", "dependencies": { - "@motionone/types": "^10.15.1", + "@motionone/types": "^10.17.1", "hey-listen": "^1.0.8", "tslib": "^2.3.1" } }, "node_modules/@motionone/vue": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.2.tgz", - "integrity": "sha512-7/dEK/nWQXOkJ70bqb2KyNfSWbNvWqKKq1C8juj+0Mg/AorgD8O5wE3naddK0G+aXuNMqRuc4jlsYHHWHtIzVw==", + "version": "10.16.4", + "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.4.tgz", + "integrity": "sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==", + "deprecated": "Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion", "dependencies": { - "@motionone/dom": "^10.16.2", + "@motionone/dom": "^10.16.4", "tslib": "^2.3.1" } }, - "node_modules/@multiformats/murmur3": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@multiformats/murmur3/-/murmur3-2.1.4.tgz", - "integrity": "sha512-qHHmZKD1Dy6PDi35pAowE1pQtnH7gwaJpUE/Ju+cOYVdWD4T8VVtKAumGCxwd31JKyNC0W1IzAaHQz1dnXXvBw==", - "dependencies": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/@noble/curves": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz", @@ -1758,32 +3225,320 @@ "@noble/hashes": "1.3.0" } }, - "node_modules/@noble/hashes": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz", - "integrity": "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] + "node_modules/@noble/hashes": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz", + "integrity": "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/@noble/secp256k1": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz", + "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-wasm": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", + "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", + "bundleDependencies": [ + "napi-wasm" + ], + "dependencies": { + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "napi-wasm": "^1.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "node_modules/@noble/secp256k1": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz", - "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "node_modules/@pedrouid/environment": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz", - "integrity": "sha512-HaW78NszGzRZd9SeoI3JD11JqY+lubnaOx7Pewj5pfjqWXOEATpeKIFb9Z4t2WBUK2iryiXX3lzWwmYWgUL0Ug==" + "node_modules/@parcel/watcher/node_modules/node-addon-api": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", + "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", + "engines": { + "node": "^16 || ^18 || >= 20" + } }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", @@ -2073,55 +3828,57 @@ "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==" }, "node_modules/@types/trusted-types": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", - "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==" - }, - "node_modules/@walletconnect/auth-client": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@walletconnect/auth-client/-/auth-client-2.1.0.tgz", - "integrity": "sha512-k6zZLEdlBpYIvbOL5tBWd+3DUJ2R4VFDyHpdp4TuRzC//njRkIzRSksEnsr8gN8P+IKuoJTLPsDy2sWR4qVTNQ==", - "dependencies": { - "@ethersproject/hash": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@stablelib/random": "1.0.2", - "@stablelib/sha256": "^1.0.1", - "@walletconnect/core": "^2.7.2", - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "^1.2.0", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/utils": "^2.7.2", - "events": "^3.3.0", - "isomorphic-unfetch": "^3.1.0" - }, - "engines": { - "node": ">=16" - } + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" }, "node_modules/@walletconnect/core": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.7.5.tgz", - "integrity": "sha512-nI5RTGZAOcheCcrVUWHLO4iEnyDrDa8HnuNRm9jbYf7ESLdmunShQ+jStnb0pmjEJ8uI/oIEahQwzTN8iLIjpA==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.9.2.tgz", + "integrity": "sha512-VARMPAx8sIgodeyngDHbealP3B621PQqjqKsByFUTOep8ZI1/R/20zU+cmq6j9RCrL+kLKZcrZqeVzs8Z7OlqQ==", "dependencies": { "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-provider": "^1.0.12", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/jsonrpc-ws-connection": "^1.0.11", + "@walletconnect/jsonrpc-provider": "1.0.13", + "@walletconnect/jsonrpc-types": "1.0.3", + "@walletconnect/jsonrpc-utils": "1.0.8", + "@walletconnect/jsonrpc-ws-connection": "1.0.13", "@walletconnect/keyvaluestorage": "^1.0.2", "@walletconnect/logger": "^2.0.1", "@walletconnect/relay-api": "^1.0.9", "@walletconnect/relay-auth": "^1.0.4", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0", "lodash.isequal": "4.5.0", "uint8arrays": "^3.1.0" } }, + "node_modules/@walletconnect/core/node_modules/@walletconnect/jsonrpc-provider": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", + "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", + "dependencies": { + "@walletconnect/jsonrpc-utils": "^1.0.8", + "@walletconnect/safe-json": "^1.0.2", + "tslib": "1.14.1" + } + }, + "node_modules/@walletconnect/core/node_modules/@walletconnect/jsonrpc-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", + "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "dependencies": { + "keyvaluestorage-interface": "^1.0.0", + "tslib": "1.14.1" + } + }, + "node_modules/@walletconnect/core/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, "node_modules/@walletconnect/environment": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.1.tgz", @@ -2136,81 +3893,29 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/ethereum-provider": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.7.0.tgz", - "integrity": "sha512-6TwQ05zi6DP1TP1XNgSvLbmCmLf/sz7kLTfMaVk45YYHNgYTTBlXqkyjUpQZI9lpq+uXLBbHn/jx2OGhOPUP0Q==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.9.2.tgz", + "integrity": "sha512-eO1dkhZffV1g7vpG19XUJTw09M/bwGUwwhy1mJ3AOPbOSbMPvwiCuRz2Kbtm1g9B0Jv15Dl+TvJ9vTgYF8zoZg==", "dependencies": { - "@walletconnect/jsonrpc-http-connection": "^1.0.4", - "@walletconnect/jsonrpc-provider": "^1.0.11", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/sign-client": "2.7.0", - "@walletconnect/types": "2.7.0", - "@walletconnect/universal-provider": "2.7.0", - "@walletconnect/utils": "2.7.0", + "@walletconnect/jsonrpc-http-connection": "^1.0.7", + "@walletconnect/jsonrpc-provider": "^1.0.13", + "@walletconnect/jsonrpc-types": "^1.0.3", + "@walletconnect/jsonrpc-utils": "^1.0.8", + "@walletconnect/sign-client": "2.9.2", + "@walletconnect/types": "2.9.2", + "@walletconnect/universal-provider": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" }, "peerDependencies": { - "@web3modal/standalone": ">=2" + "@walletconnect/modal": ">=2" }, "peerDependenciesMeta": { - "@web3modal/standalone": { + "@walletconnect/modal": { "optional": true } } }, - "node_modules/@walletconnect/ethereum-provider/node_modules/@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "dependencies": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", - "events": "^3.3.0" - } - }, - "node_modules/@walletconnect/ethereum-provider/node_modules/@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", - "dependencies": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" - } - }, - "node_modules/@walletconnect/ethereum-provider/node_modules/query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@walletconnect/events": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz", @@ -2241,50 +3946,35 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/jsonrpc-http-connection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz", - "integrity": "sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.8.tgz", + "integrity": "sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==", "dependencies": { "@walletconnect/jsonrpc-utils": "^1.0.6", "@walletconnect/safe-json": "^1.0.1", "cross-fetch": "^3.1.4", - "tslib": "1.14.1" + "events": "^3.3.0" } }, - "node_modules/@walletconnect/jsonrpc-http-connection/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@walletconnect/jsonrpc-provider": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", - "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.14.tgz", + "integrity": "sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==", "dependencies": { "@walletconnect/jsonrpc-utils": "^1.0.8", "@walletconnect/safe-json": "^1.0.2", - "tslib": "1.14.1" + "events": "^3.3.0" } }, - "node_modules/@walletconnect/jsonrpc-provider/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@walletconnect/jsonrpc-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", - "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz", + "integrity": "sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==", "dependencies": { - "keyvaluestorage-interface": "^1.0.0", - "tslib": "1.14.1" + "events": "^3.3.0", + "keyvaluestorage-interface": "^1.0.0" } }, - "node_modules/@walletconnect/jsonrpc-types/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@walletconnect/jsonrpc-utils": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz", @@ -2301,9 +3991,9 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/jsonrpc-ws-connection": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.11.tgz", - "integrity": "sha512-TiFJ6saasKXD+PwGkm5ZGSw0837nc6EeFmurSPgIT/NofnOV4Tv7CVJqGQN0rQYoJUSYu21cwHNYaFkzNpUN+w==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.13.tgz", + "integrity": "sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==", "dependencies": { "@walletconnect/jsonrpc-utils": "^1.0.6", "@walletconnect/safe-json": "^1.0.2", @@ -2318,58 +4008,67 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/keyvaluestorage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz", - "integrity": "sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.1.1.tgz", + "integrity": "sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==", "dependencies": { - "safe-json-utils": "^1.1.1", - "tslib": "1.14.1" + "@walletconnect/safe-json": "^1.0.1", + "idb-keyval": "^6.2.1", + "unstorage": "^1.9.0" }, "peerDependencies": { - "@react-native-async-storage/async-storage": "1.x", - "lokijs": "1.x" + "@react-native-async-storage/async-storage": "1.x" }, "peerDependenciesMeta": { "@react-native-async-storage/async-storage": { "optional": true - }, - "lokijs": { - "optional": true } } }, - "node_modules/@walletconnect/keyvaluestorage/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@walletconnect/logger": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.0.1.tgz", - "integrity": "sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.1.2.tgz", + "integrity": "sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==", "dependencies": { - "pino": "7.11.0", - "tslib": "1.14.1" + "@walletconnect/safe-json": "^1.0.2", + "pino": "7.11.0" } }, - "node_modules/@walletconnect/logger/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "node_modules/@walletconnect/modal": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal/-/modal-2.6.1.tgz", + "integrity": "sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw==", + "dependencies": { + "@walletconnect/modal-core": "2.6.1", + "@walletconnect/modal-ui": "2.6.1" + } }, - "node_modules/@walletconnect/relay-api": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.9.tgz", - "integrity": "sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==", + "node_modules/@walletconnect/modal-core": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal-core/-/modal-core-2.6.1.tgz", + "integrity": "sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ==", "dependencies": { - "@walletconnect/jsonrpc-types": "^1.0.2", - "tslib": "1.14.1" + "valtio": "1.11.0" } }, - "node_modules/@walletconnect/relay-api/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "node_modules/@walletconnect/modal-ui": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal-ui/-/modal-ui-2.6.1.tgz", + "integrity": "sha512-RFUOwDAMijSK8B7W3+KoLKaa1l+KEUG0LCrtHqaB0H0cLnhEGdLR+kdTdygw+W8+yYZbkM5tXBm7MlFbcuyitA==", + "dependencies": { + "@walletconnect/modal-core": "2.6.1", + "lit": "2.7.6", + "motion": "10.16.2", + "qrcode": "1.5.3" + } + }, + "node_modules/@walletconnect/relay-api": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.10.tgz", + "integrity": "sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==", + "dependencies": { + "@walletconnect/jsonrpc-types": "^1.0.2" + } }, "node_modules/@walletconnect/relay-auth": { "version": "1.0.4", @@ -2403,95 +4102,21 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/sign-client": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.7.0.tgz", - "integrity": "sha512-K99xa6GSFS04U+140yrIEi/VJJJ0Q1ov4jCaiqa9euILDKxlBsM7m5GR+9sq6oYyj18SluJY4CJTdeOXUJlarA==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.9.2.tgz", + "integrity": "sha512-anRwnXKlR08lYllFMEarS01hp1gr6Q9XUgvacr749hoaC/AwGVlxYFdM8+MyYr3ozlA+2i599kjbK/mAebqdXg==", "dependencies": { - "@walletconnect/core": "2.7.0", + "@walletconnect/core": "2.9.2", "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", - "events": "^3.3.0" - } - }, - "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/core": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.7.0.tgz", - "integrity": "sha512-xUeFPpElybgn1a+lknqtHleei4VyuV/4qWgB1nP8qQUAO6a5pNsioODrnB2VAPdUHJYBdx2dCt2maRk6g53IPQ==", - "dependencies": { - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-provider": "^1.0.12", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/jsonrpc-ws-connection": "^1.0.11", - "@walletconnect/keyvaluestorage": "^1.0.2", + "@walletconnect/jsonrpc-utils": "1.0.8", "@walletconnect/logger": "^2.0.1", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/relay-auth": "^1.0.4", - "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", - "events": "^3.3.0", - "lodash.isequal": "4.5.0", - "uint8arrays": "^3.1.0" - } - }, - "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "dependencies": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" } }, - "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", - "dependencies": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" - } - }, - "node_modules/@walletconnect/sign-client/node_modules/query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@walletconnect/time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.2.tgz", @@ -2506,102 +4131,77 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/types": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.5.tgz", - "integrity": "sha512-uEsMXtVbhT5+E/g3loyfNBrjEsPeUaPZkFeVsOErWhxg25CL+MrrWUKerV6tC/ACbFVR5KgKS+uioMath/cV7A==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.9.2.tgz", + "integrity": "sha512-7Rdn30amnJEEal4hk83cdwHUuxI1SWQ+K7fFFHBMqkuHLGi3tpMY6kpyfDxnUScYEZXqgRps4Jo5qQgnRqVM7A==", "dependencies": { "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", + "@walletconnect/jsonrpc-types": "1.0.3", "@walletconnect/keyvaluestorage": "^1.0.2", "@walletconnect/logger": "^2.0.1", "events": "^3.3.0" } }, + "node_modules/@walletconnect/types/node_modules/@walletconnect/jsonrpc-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", + "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "dependencies": { + "keyvaluestorage-interface": "^1.0.0", + "tslib": "1.14.1" + } + }, + "node_modules/@walletconnect/types/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, "node_modules/@walletconnect/universal-provider": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.7.0.tgz", - "integrity": "sha512-aAIudO3ZlKD16X36VnXChpxBB6/JLK1SCJBfidk7E0GE2S4xr1xW5jXGSGS4Z+wIkNZXK0n7ULSK3PZ7mPBdog==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.9.2.tgz", + "integrity": "sha512-JmaolkO8D31UdRaQCHwlr8uIFUI5BYhBzqYFt54Mc6gbIa1tijGOmdyr6YhhFO70LPmS6gHIjljwOuEllmlrxw==", "dependencies": { - "@walletconnect/jsonrpc-http-connection": "^1.0.4", - "@walletconnect/jsonrpc-provider": "^1.0.11", + "@walletconnect/jsonrpc-http-connection": "^1.0.7", + "@walletconnect/jsonrpc-provider": "1.0.13", "@walletconnect/jsonrpc-types": "^1.0.2", "@walletconnect/jsonrpc-utils": "^1.0.7", "@walletconnect/logger": "^2.0.1", - "@walletconnect/sign-client": "2.7.0", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", - "eip1193-provider": "1.0.1", - "events": "^3.3.0" - } - }, - "node_modules/@walletconnect/universal-provider/node_modules/@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "dependencies": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", + "@walletconnect/sign-client": "2.9.2", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" } }, - "node_modules/@walletconnect/universal-provider/node_modules/@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", + "node_modules/@walletconnect/universal-provider/node_modules/@walletconnect/jsonrpc-provider": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", + "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", "dependencies": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", + "@walletconnect/jsonrpc-utils": "^1.0.8", "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" + "tslib": "1.14.1" } }, - "node_modules/@walletconnect/universal-provider/node_modules/query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@walletconnect/universal-provider/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@walletconnect/utils": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.5.tgz", - "integrity": "sha512-uSf71P3kFMC+S4RidQYFIWXglVvYTCLK7AaO9PrUDLO9ocRnBk6hNmOhYSA5jSP6OLf1vYm4ADHbzkeOb4u6aQ==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.9.2.tgz", + "integrity": "sha512-D44hwXET/8JhhIjqljY6qxSu7xXnlPrf63UN/Qfl98vDjWlYVcDl2+JIQRxD9GPastw0S8XZXdRq59XDXLuZBg==", "dependencies": { "@stablelib/chacha20poly1305": "1.0.1", "@stablelib/hkdf": "1.0.1", "@stablelib/random": "^1.0.2", "@stablelib/sha256": "1.0.1", "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", "@walletconnect/relay-api": "^1.0.9", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", + "@walletconnect/types": "2.9.2", "@walletconnect/window-getters": "^1.0.1", "@walletconnect/window-metadata": "^1.0.1", "detect-browser": "5.3.0", @@ -2609,62 +4209,6 @@ "uint8arrays": "^3.1.0" } }, - "node_modules/@walletconnect/web3wallet": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@walletconnect/web3wallet/-/web3wallet-1.7.3.tgz", - "integrity": "sha512-rXvpdG3SrYh7vp/oqC+LM7IXHMz/RGzyybHEomqgO1hIUgkCHL3+DupIaJlI9iAMZyRLYDkLzp5RuYxk7nRzYA==", - "dependencies": { - "@walletconnect/auth-client": "2.1.0", - "@walletconnect/core": "2.7.5", - "@walletconnect/jsonrpc-provider": "1.0.12", - "@walletconnect/jsonrpc-utils": "1.0.7", - "@walletconnect/logger": "2.0.1", - "@walletconnect/sign-client": "2.7.5", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5" - } - }, - "node_modules/@walletconnect/web3wallet/node_modules/@walletconnect/jsonrpc-provider": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.12.tgz", - "integrity": "sha512-6uI2y5281gloZSzICOjk+CVC7CVu0MhtMt2Yzpj05lPb0pzm/bK2oZ2ibxwLerPrqpNt/5bIFVRmoOgPw1mHAQ==", - "dependencies": { - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/safe-json": "^1.0.2", - "tslib": "1.14.1" - } - }, - "node_modules/@walletconnect/web3wallet/node_modules/@walletconnect/jsonrpc-utils": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.7.tgz", - "integrity": "sha512-zJziApzUF/Il4VcwabnaU+0yo1QI4eUkYX99zmCVTHJvZOf2l0zjADf/OpKqWyeNFC3Io56Z/8uJHVtcNVvyFA==", - "dependencies": { - "@walletconnect/environment": "^1.0.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "tslib": "1.14.1" - } - }, - "node_modules/@walletconnect/web3wallet/node_modules/@walletconnect/sign-client": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.7.5.tgz", - "integrity": "sha512-99oc0g4eR4hllrB0m4N74EsnNKDrl0L5HdLDGBHQIYnl+/FUjn652QCTOjPzqiUlxvQCo0wrIugb/tgtIGPTfg==", - "dependencies": { - "@walletconnect/core": "2.7.5", - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", - "events": "^3.3.0" - } - }, - "node_modules/@walletconnect/web3wallet/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/@walletconnect/window-getters": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz", @@ -2692,33 +4236,15 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, - "node_modules/@web3modal/core": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-2.4.1.tgz", - "integrity": "sha512-v6Y/eQJSI2YfUTv8rGqjFabqdk3ZPjx6Fe7j5Q8fw0ZWF1YRGM3mySG457qtKQ7D7E1kNKA3BHbaOZ3pgQoG6A==", - "dependencies": { - "buffer": "6.0.3", - "valtio": "1.10.5" - } - }, - "node_modules/@web3modal/standalone": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/standalone/-/standalone-2.4.1.tgz", - "integrity": "sha512-ZrI5LwWeT9sd8A3FdIX/gBp3ZrzrX882Ln1vJN0LTCmeP2OUsYcW5bPxjv1PcJ1YUBY7Tg4aTgMUnAVTTuqb+w==", - "dependencies": { - "@web3modal/core": "2.4.1", - "@web3modal/ui": "2.4.1" - } - }, - "node_modules/@web3modal/ui": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-2.4.1.tgz", - "integrity": "sha512-x1ceyd3mMJsIHs5UUTLvE+6qyCjhyjL6gB/wVmTDbwASHSQIVyshQJ+s7BwIEMP/pbAsYDg+/M8EiUuE+/E/kg==", - "dependencies": { - "@web3modal/core": "2.4.1", - "lit": "2.7.4", - "motion": "10.15.5", - "qrcode": "1.5.3" + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, "node_modules/aes-js": { @@ -2726,6 +4252,21 @@ "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==" }, + "node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -2753,6 +4294,18 @@ "resolved": "https://registry.npmjs.org/any-signal/-/any-signal-3.0.1.tgz", "integrity": "sha512-xgZgJtKEa9YmDqXodIgl7Fl1C8yNXr8w6gXjqK3LW4GcEiYT+6AQfJSE/8SPsEpLLmcvbv8YU+qet94UewHxqg==" }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/apg-js": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/apg-js/-/apg-js-4.1.3.tgz", @@ -2790,6 +4343,11 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "node_modules/base-x": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz", + "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==" + }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -2814,16 +4372,46 @@ "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" }, - "node_modules/bl": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", - "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bip174": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bip174/-/bip174-2.1.1.tgz", + "integrity": "sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/bitcoinjs-lib": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-6.1.6.tgz", + "integrity": "sha512-Fk8+Vc+e2rMoDU5gXkW9tD+313rhkm5h6N9HfZxXvYU9LedttVvmXKTgd9k5rsQJjkSfsv6XRM8uhJv94SrvcA==", "dependencies": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "@noble/hashes": "^1.2.0", + "bech32": "^2.0.0", + "bip174": "^2.1.1", + "bs58check": "^3.0.1", + "typeforce": "^1.11.3", + "varuint-bitcoin": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" } }, + "node_modules/bitcoinjs-lib/node_modules/bech32": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-2.0.0.tgz", + "integrity": "sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==" + }, "node_modules/blob-to-it": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/blob-to-it/-/blob-to-it-1.0.4.tgz", @@ -2832,25 +4420,6 @@ "browser-readablestream-to-it": "^1.0.3" } }, - "node_modules/blockstore-core": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/blockstore-core/-/blockstore-core-3.0.0.tgz", - "integrity": "sha512-5ZZB5nh6kErcjZ/CTK6lCwTIGlPdkTXbD8+2xLC4Fm0WGh7g2e2lW2bfURw7mvnPtSX1xV+sN4V2ndowSgIiHQ==", - "dependencies": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/bn.js": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", @@ -2865,6 +4434,17 @@ "concat-map": "0.0.1" } }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -2875,6 +4455,23 @@ "resolved": "https://registry.npmjs.org/browser-readablestream-to-it/-/browser-readablestream-to-it-1.0.3.tgz", "integrity": "sha512-+12sHB+Br8HIh6VAMVEG5r3UXCyESIgDW7kzk3BjIXa43DVqVwL7GC5TW3jeh+72dtcH99pPVpw0X8i0jt+/kw==" }, + "node_modules/bs58": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz", + "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==", + "dependencies": { + "base-x": "^4.0.0" + } + }, + "node_modules/bs58check": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-3.0.1.tgz", + "integrity": "sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==", + "dependencies": { + "@noble/hashes": "^1.2.0", + "bs58": "^5.0.0" + } + }, "node_modules/buffer": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", @@ -2931,6 +4528,53 @@ "cborg": "cli.js" } }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "dependencies": { + "consola": "^3.2.3" + } + }, + "node_modules/clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "dependencies": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/cliui": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", @@ -2962,6 +4606,24 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==" + }, + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/cookie-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.1.0.tgz", + "integrity": "sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==" + }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -2977,11 +4639,37 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", - "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dependencies": { - "node-fetch": "^2.6.11" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crossws": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", + "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", + "peerDependencies": { + "uWebSockets.js": "*" + }, + "peerDependenciesMeta": { + "uWebSockets.js": { + "optional": true + } } }, "node_modules/dag-jose": { @@ -3007,6 +4695,11 @@ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" }, + "node_modules/date-and-time": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/date-and-time/-/date-and-time-2.4.3.tgz", + "integrity": "sha512-xkS/imTmsyEdpp9ie5oV5UWolg3XkYWNySbT2W4ESWr6v4V8YrsHbhpk9fIeQcr0NFTnYbQJLXlgU1zrLItysA==" + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -3054,11 +4747,32 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + }, + "node_modules/destr": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==" + }, "node_modules/detect-browser": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz", "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==" }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, "node_modules/dijkstrajs": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", @@ -3075,22 +4789,14 @@ } }, "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz", + "integrity": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==", "dependencies": { "end-of-stream": "^1.4.1", "inherits": "^2.0.3", "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - } - }, - "node_modules/eip1193-provider": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/eip1193-provider/-/eip1193-provider-1.0.1.tgz", - "integrity": "sha512-kSuqwQ26d7CzuS/t3yRXo2Su2cVH0QfvyKbr2H7Be7O5YDyIq4hQGCNTo5wRdP07bt+E2R/8nPCzey4ojBHf7g==", - "dependencies": { - "@json-rpc-tools/provider": "^1.5.5" + "stream-shift": "^1.0.2" } }, "node_modules/electron-fetch": { @@ -3244,19 +4950,57 @@ "node": ">=0.8.x" } }, + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, "node_modules/fast-fifo": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.2.0.tgz", "integrity": "sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==" }, "node_modules/fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz", + "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==", "engines": { "node": ">=6" } }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/filter-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", @@ -3304,6 +5048,19 @@ "is-callable": "^1.1.3" } }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -3336,6 +5093,33 @@ "resolved": "https://registry.npmjs.org/get-iterator/-/get-iterator-1.0.2.tgz", "integrity": "sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==" }, + "node_modules/get-port-please": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==" + }, + "node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", @@ -3355,35 +5139,27 @@ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hamt-sharding": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/hamt-sharding/-/hamt-sharding-3.0.2.tgz", - "integrity": "sha512-f0DzBD2tSmLFdFsLAvOflIBqFPjerbA7BfmwO8mVho/5hXwgyyYhv+ijIzidQf/DpDX3bRjAQvhGoBFj+DBvPw==", - "dependencies": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hamt-sharding/node_modules/uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", + "node_modules/h3": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.11.1.tgz", + "integrity": "sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==", "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" + "cookie-es": "^1.0.0", + "crossws": "^0.2.2", + "defu": "^6.1.4", + "destr": "^2.0.3", + "iron-webcrypto": "^1.0.0", + "ohash": "^1.1.3", + "radix3": "^1.1.0", + "ufo": "^1.4.0", + "uncrypto": "^0.1.3", + "unenv": "^1.9.0" } }, "node_modules/has": { @@ -3468,6 +5244,23 @@ "minimalistic-crypto-utils": "^1.0.1" } }, + "node_modules/http-shutdown": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" + } + }, "node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -3479,6 +5272,11 @@ "node": ">=0.10.0" } }, + "node_modules/idb-keyval": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.1.tgz", + "integrity": "sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==" + }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -3508,19 +5306,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "node_modules/interface-blockstore": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/interface-blockstore/-/interface-blockstore-4.0.1.tgz", - "integrity": "sha512-ROWKGJls7vLeFaQtI3hZVCJOkUoZ05xAi2t2qysM4d7dwVKrfm5jUOqWh8JgLL7Iup3XqJ0mKXXZuwJ3s03RSw==", - "dependencies": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/interface-datastore": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/interface-datastore/-/interface-datastore-6.1.1.tgz", @@ -3536,15 +5321,6 @@ "resolved": "https://registry.npmjs.org/interface-store/-/interface-store-2.0.2.tgz", "integrity": "sha512-rScRlhDcz6k199EkHqT8NpM87ebN89ICOzILoBHgaG36/WX50N32BnU/kpZgCGPLhARRAWUUX5/cyaIjt7Kipg==" }, - "node_modules/interface-store": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/interface-store/-/interface-store-3.0.4.tgz", - "integrity": "sha512-OjHUuGXbH4eXSBx1TF1tTySvjLldPLzRSYYXJwrEQI+XfH5JWYZofr0gVMV4F8XTwC+4V7jomDYkvGRmDSRKqQ==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/ip-regex": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", @@ -3656,106 +5432,6 @@ "npm": ">=7.0.0" } }, - "node_modules/ipfs-unixfs-importer": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/ipfs-unixfs-importer/-/ipfs-unixfs-importer-12.0.1.tgz", - "integrity": "sha512-//VPZOqbONtc1HNtb+sBrw+nIGijHEloSm1O3LVR5orSlhHQ8X7+OCkeqceFBhu40tPMe/TwgAPrkvh+fXL+bA==", - "dependencies": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/@ipld/dag-pb": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@ipld/dag-pb/-/dag-pb-4.0.3.tgz", - "integrity": "sha512-bOe+Z2ZJs9pmP/aIUBYMTdXq0i5z1x71qXeOIIhZvnKFLuzTIbbW0u5b7OfTGzUEbSv1dkUZBIXa7G/+OA8dnA==", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/ipfs-unixfs": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ipfs-unixfs/-/ipfs-unixfs-9.0.1.tgz", - "integrity": "sha512-jh2CbXyxID+v3jLml9CqMwjdSS9ZRnsGfQGGPOfem0/hT/L48xUeTPvh7qLFWkZcIMhZtG+fnS1teei8x5uGBg==", - "dependencies": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/it-first": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-first/-/it-first-2.0.1.tgz", - "integrity": "sha512-noC1oEQcWZZMUwq7VWxHNLML43dM+5bviZpfmkxkXlvBe60z7AFRqpZSga9uQBo792jKv9otnn1IjA4zwgNARw==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" - }, - "node_modules/ipfs-unixfs-importer/node_modules/protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/ipfs-unixfs-importer/node_modules/uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/ipfs-utils": { "version": "9.0.14", "resolved": "https://registry.npmjs.org/ipfs-utils/-/ipfs-utils-9.0.14.tgz", @@ -3788,6 +5464,14 @@ "resolved": "https://registry.npmjs.org/it-all/-/it-all-1.0.6.tgz", "integrity": "sha512-3cmCc6Heqe3uWi3CVM/k51fa/XbMFpQVzFoDsV0IZNHSQDyAXl3c4MjHkFX5kF3922OGj7Myv1nSEUgRtcuM1A==" }, + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, "node_modules/is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -3803,6 +5487,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", @@ -3814,11 +5509,33 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-electron": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/is-electron/-/is-electron-2.2.2.tgz", "integrity": "sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==" }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -3841,6 +5558,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-hex-prefixed": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", @@ -3850,6 +5578,23 @@ "npm": ">=3" } }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-ip": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", @@ -3861,6 +5606,14 @@ "node": ">=8" } }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/is-plain-obj": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", @@ -3869,6 +5622,17 @@ "node": ">=8" } }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-typed-array": { "version": "1.1.10", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", @@ -3887,11 +5651,44 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is64bit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", + "dependencies": { + "system-architecture": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, "node_modules/iso-url": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/iso-url/-/iso-url-1.2.1.tgz", @@ -3900,15 +5697,6 @@ "node": ">=12" } }, - "node_modules/isomorphic-unfetch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", - "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", - "dependencies": { - "node-fetch": "^2.6.1", - "unfetch": "^4.2.0" - } - }, "node_modules/isomorphic-ws": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", @@ -3917,42 +5705,6 @@ "ws": "*" } }, - "node_modules/it-all": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-all/-/it-all-2.0.1.tgz", - "integrity": "sha512-9UuJcCRZsboz+HBQTNOau80Dw+ryGaHYFP/cPYzFBJBFcfDathMYnhHk4t52en9+fcyDGPTdLB+lFc1wzQIroA==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-batch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-batch/-/it-batch-2.0.1.tgz", - "integrity": "sha512-2gWFuPzamh9Dh3pW+OKjc7UwJ41W4Eu2AinVAfXDMfrC5gXfm3b1TF+1UzsygBUgKBugnxnGP+/fFRyn+9y1mQ==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-drain": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-drain/-/it-drain-2.0.1.tgz", - "integrity": "sha512-ESuHV6MLUNxuSy0vGZpKhSRjW0ixczN1FhbVy7eGJHjX6U2qiiXTyMvDc0z/w+nifOOwPyI5DT9Rc3o9IaGqEQ==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/it-filter": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/it-filter/-/it-filter-2.0.2.tgz", - "integrity": "sha512-gocw1F3siqupegsOzZ78rAc9C+sYlQbI2af/TmzgdrR613MyEJHbvfwBf12XRekGG907kqXSOGKPlxzJa6XV1Q==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/it-first": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/it-first/-/it-first-1.0.7.tgz", @@ -3977,32 +5729,11 @@ "resolved": "https://registry.npmjs.org/it-map/-/it-map-1.0.6.tgz", "integrity": "sha512-XT4/RM6UHIFG9IobGlQPFQUrlEKkU4eBUFG3qhWhfAdh1JfF2x11ShCrKCdmZ0OiZppPfoLuzcfA4cey6q3UAQ==" }, - "node_modules/it-parallel-batch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-parallel-batch/-/it-parallel-batch-2.0.1.tgz", - "integrity": "sha512-tXh567/JfDGJ90Zi//H9HkL7kY27ARp0jf2vu2jUI6PUVBWfsoT+gC4eT41/b4+wkJXSGgT8ZHnivAOlMfcNjA==", - "dependencies": { - "it-batch": "^2.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/it-peekable": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/it-peekable/-/it-peekable-1.0.3.tgz", "integrity": "sha512-5+8zemFS+wSfIkSZyf0Zh5kNN+iGyccN02914BY4w/Dj+uoFEoPSvj5vaWn8pNZJNSxzjW0zHRxC3LUb2KWJTQ==" }, - "node_modules/it-take": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-take/-/it-take-2.0.1.tgz", - "integrity": "sha512-DL7kpZNjuoeSTnB9dMAJ0Z3m2T29LRRAU+HIgkiQM+1jH3m8l9e/1xpWs8JHTlbKivbqSFrQMTc8KVcaQNmsaA==", - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } - }, "node_modules/it-to-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/it-to-stream/-/it-to-stream-1.0.0.tgz", @@ -4016,6 +5747,22 @@ "readable-stream": "^3.6.0" } }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jose": { + "version": "4.15.5", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.5.tgz", + "integrity": "sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, "node_modules/js-sha3": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", @@ -4027,6 +5774,11 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "peer": true }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, "node_modules/jszip": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", @@ -4038,11 +5790,6 @@ "setimmediate": "^1.0.5" } }, - "node_modules/jszip/node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, "node_modules/jszip/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -4096,58 +5843,63 @@ "immediate": "~3.0.5" } }, + "node_modules/listhen": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", + "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", + "dependencies": { + "@parcel/watcher": "^2.4.1", + "@parcel/watcher-wasm": "^2.4.1", + "citty": "^0.1.6", + "clipboardy": "^4.0.0", + "consola": "^3.2.3", + "crossws": "^0.2.0", + "defu": "^6.1.4", + "get-port-please": "^3.1.2", + "h3": "^1.10.2", + "http-shutdown": "^1.2.2", + "jiti": "^1.21.0", + "mlly": "^1.6.1", + "node-forge": "^1.3.1", + "pathe": "^1.1.2", + "std-env": "^3.7.0", + "ufo": "^1.4.0", + "untun": "^0.1.3", + "uqr": "^0.1.2" + }, + "bin": { + "listen": "bin/listhen.mjs", + "listhen": "bin/listhen.mjs" + } + }, "node_modules/lit": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.7.4.tgz", - "integrity": "sha512-cgD7xrZoYr21mbrkZIuIrj98YTMw/snJPg52deWVV4A8icLyNHI3bF70xsJeAgwTuiq5Kkd+ZR8gybSJDCPB7g==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/lit/-/lit-2.7.6.tgz", + "integrity": "sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==", "dependencies": { "@lit/reactive-element": "^1.6.0", "lit-element": "^3.3.0", "lit-html": "^2.7.0" } }, - "node_modules/lit-connect-modal": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/lit-connect-modal/-/lit-connect-modal-0.1.11.tgz", - "integrity": "sha512-EG6pcCqdxZQJt3MPDq3gJ5Sz4E5sJdydtAF7VFJu6z6GDHO1Ybp8WrTx8CUnHiF54/MQBRi6Nb7cbTvv+BKWvQ==", - "dependencies": { - "micromodal": "^0.4.10" - } - }, "node_modules/lit-element": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.2.tgz", - "integrity": "sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.3.tgz", + "integrity": "sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==", "dependencies": { "@lit-labs/ssr-dom-shim": "^1.1.0", "@lit/reactive-element": "^1.3.0", - "lit-html": "^2.7.0" + "lit-html": "^2.8.0" } }, "node_modules/lit-html": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.7.4.tgz", - "integrity": "sha512-/Jw+FBpeEN+z8X6PJva5n7+0MzCVAH2yypN99qHYYkq8bI+j7I39GH+68Z/MZD6rGKDK9RpzBw7CocfmHfq6+g==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.8.0.tgz", + "integrity": "sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==", "dependencies": { "@types/trusted-types": "^2.0.2" } }, - "node_modules/lit-siwe": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/lit-siwe/-/lit-siwe-1.1.8.tgz", - "integrity": "sha512-gXI8GG0GAClw6G7T9p4p6Kn9ywDo8j2d90ShaYArJdsqqO9gwXfzxF84SMeY+bpsNqqQ3FahrhEwTCHd6w7wNw==", - "dependencies": { - "@spruceid/siwe-parser": "1.1.3", - "@stablelib/random": "^1.0.1", - "apg-js": "^4.1.1" - }, - "peerDependencies": { - "@ethersproject/contracts": "^5.2.0", - "@ethersproject/hash": "^5.4.0", - "@ethersproject/providers": "^5.2.0", - "@ethersproject/wallet": "^5.2.0" - } - }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -4186,6 +5938,14 @@ "loose-envify": "cli.js" } }, + "node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "engines": { + "node": "14 || >=16.14" + } + }, "node_modules/merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -4197,17 +5957,48 @@ "node": ">=10" } }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, "node_modules/micro-ftch": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/micro-ftch/-/micro-ftch-0.3.1.tgz", "integrity": "sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==" }, - "node_modules/micromodal": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/micromodal/-/micromodal-0.4.10.tgz", - "integrity": "sha512-BUrEnzMPFBwK8nOE4xUDYHLrlGlLULQVjpja99tpJQPSUEWgw3kTLp1n1qv0HmKU29AiHE7Y7sMLiRziDK4ghQ==", + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, "engines": { - "node": ">=10" + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/minimalistic-assert": { @@ -4231,25 +6022,36 @@ "node": "*" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/mlly": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", + "dependencies": { + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" } }, "node_modules/motion": { - "version": "10.15.5", - "resolved": "https://registry.npmjs.org/motion/-/motion-10.15.5.tgz", - "integrity": "sha512-ejP6KioN4pigTGxL93APzOnvtLklParL59UQB2T3HWXQBxFcIp5/7YXFmkgiA6pNKKzjvnLhnonRBN5iSFMnNw==", + "version": "10.16.2", + "resolved": "https://registry.npmjs.org/motion/-/motion-10.16.2.tgz", + "integrity": "sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==", "dependencies": { "@motionone/animation": "^10.15.1", - "@motionone/dom": "^10.15.5", - "@motionone/svelte": "^10.15.5", + "@motionone/dom": "^10.16.2", + "@motionone/svelte": "^10.16.2", "@motionone/types": "^10.15.1", "@motionone/utils": "^10.15.1", - "@motionone/vue": "^10.15.5" + "@motionone/vue": "^10.16.2" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "engines": { + "node": ">=4" } }, "node_modules/ms": { @@ -4294,14 +6096,6 @@ "npm": ">=7.0.0" } }, - "node_modules/murmurhash3js-revisited": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/murmurhash3js-revisited/-/murmurhash3js-revisited-3.0.0.tgz", - "integrity": "sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==", - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", @@ -4333,9 +6127,9 @@ "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" }, "node_modules/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -4351,6 +6145,19 @@ } } }, + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==" + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } + }, "node_modules/node-gyp-build": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", @@ -4361,6 +6168,39 @@ "node-gyp-build-test": "build-test.js" } }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", @@ -4369,6 +6209,21 @@ "node": ">= 0.4" } }, + "node_modules/ofetch": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", + "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", + "dependencies": { + "destr": "^2.0.3", + "node-fetch-native": "^1.6.3", + "ufo": "^1.5.3" + } + }, + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" + }, "node_modules/on-exit-leak-free": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", @@ -4382,6 +6237,20 @@ "wrappy": "1" } }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/p-defer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-3.0.0.tgz", @@ -4433,9 +6302,9 @@ } }, "node_modules/pako": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", - "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, "node_modules/parse-duration": { "version": "1.0.3", @@ -4450,6 +6319,30 @@ "node": ">=8" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/pino": { "version": "7.11.0", "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", @@ -4485,6 +6378,16 @@ "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" }, + "node_modules/pkg-types": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.1.tgz", + "integrity": "sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==", + "dependencies": { + "confbox": "^0.1.7", + "mlly": "^1.7.0", + "pathe": "^1.1.2" + } + }, "node_modules/pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", @@ -4493,6 +6396,14 @@ "node": ">=10.13.0" } }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -4534,9 +6445,9 @@ "integrity": "sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==" }, "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "engines": { "node": ">=6" } @@ -4580,26 +6491,15 @@ "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" }, - "node_modules/rabin-wasm": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/rabin-wasm/-/rabin-wasm-0.1.5.tgz", - "integrity": "sha512-uWgQTo7pim1Rnj5TuWcCewRDTf0PEFTSlaUjWP4eY9EbLV9em08v89oCz/WO+wRxpYuO36XEHp4wgYQnAgOHzA==", - "dependencies": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - }, - "bin": { - "rabin-wasm": "cli/bin.js" - } + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" }, "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "peer": true, "dependencies": { "loose-envify": "^1.1.0" @@ -4629,6 +6529,17 @@ "node": ">= 6" } }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, "node_modules/readonly-date": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/readonly-date/-/readonly-date-1.0.0.tgz", @@ -4658,6 +6569,14 @@ "node": ">=0.10.0" } }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", @@ -4687,11 +6606,6 @@ } ] }, - "node_modules/safe-json-utils": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz", - "integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==" - }, "node_modules/safe-stable-stringify": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", @@ -4734,6 +6648,36 @@ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/siwe": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/siwe/-/siwe-2.1.4.tgz", @@ -4769,11 +6713,6 @@ "atomic-sleep": "^1.0.0" } }, - "node_modules/sparse-array": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/sparse-array/-/sparse-array-1.3.2.tgz", - "integrity": "sha512-ZT711fePGn3+kQyLuv1fpd3rNSkNF8vd5Kv2D+qnOANeyKs3fx6bUMGWRPvgTTcYV64QMqZKZwcuaQSP3AZ0tg==" - }, "node_modules/split-on-first": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", @@ -4790,10 +6729,15 @@ "node": ">= 10.x" } }, + "node_modules/std-env": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" + }, "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" }, "node_modules/stream-to-it": { "version": "0.2.4", @@ -4843,6 +6787,17 @@ "node": ">=8" } }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/strip-hex-prefix": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", @@ -4863,6 +6818,17 @@ "node": ">=0.10" } }, + "node_modules/system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/thread-stream": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", @@ -4879,6 +6845,17 @@ "retimer": "^3.0.0" } }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -4899,29 +6876,15 @@ "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==" }, - "node_modules/uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "dependencies": { - "uint8arrays": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } + "node_modules/typeforce": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/typeforce/-/typeforce-1.18.0.tgz", + "integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==" }, - "node_modules/uint8arraylist/node_modules/uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", - "dependencies": { - "multiformats": "^11.0.0" - }, - "engines": { - "node": ">=16.0.0", - "npm": ">=7.0.0" - } + "node_modules/ufo": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", + "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==" }, "node_modules/uint8arrays": { "version": "3.1.1", @@ -4936,10 +6899,113 @@ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" }, - "node_modules/unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" + }, + "node_modules/unenv": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.9.0.tgz", + "integrity": "sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==", + "dependencies": { + "consola": "^3.2.3", + "defu": "^6.1.3", + "mime": "^3.0.0", + "node-fetch-native": "^1.6.1", + "pathe": "^1.1.1" + } + }, + "node_modules/unstorage": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", + "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^3.6.0", + "destr": "^2.0.3", + "h3": "^1.11.1", + "listhen": "^1.7.2", + "lru-cache": "^10.2.0", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.2", + "ofetch": "^1.3.3", + "ufo": "^1.4.0" + }, + "peerDependencies": { + "@azure/app-configuration": "^1.5.0", + "@azure/cosmos": "^4.0.0", + "@azure/data-tables": "^13.2.2", + "@azure/identity": "^4.0.1", + "@azure/keyvault-secrets": "^4.8.0", + "@azure/storage-blob": "^12.17.0", + "@capacitor/preferences": "^5.0.7", + "@netlify/blobs": "^6.5.0 || ^7.0.0", + "@planetscale/database": "^1.16.0", + "@upstash/redis": "^1.28.4", + "@vercel/kv": "^1.0.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.3.2" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": true + } + } + }, + "node_modules/untun": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", + "dependencies": { + "citty": "^0.1.5", + "consola": "^3.2.3", + "pathe": "^1.1.1" + }, + "bin": { + "untun": "bin/untun.mjs" + } + }, + "node_modules/uqr": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==" }, "node_modules/uri-js": { "version": "4.4.1", @@ -4980,9 +7046,9 @@ "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" }, "node_modules/valtio": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.10.5.tgz", - "integrity": "sha512-jTp0k63VXf4r5hPoaC6a6LCG4POkVSh629WLi1+d5PlajLsbynTMd7qAgEiOSPxzoX5iNvbN7iZ/k/g29wrNiQ==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.11.0.tgz", + "integrity": "sha512-65Yd0yU5qs86b5lN1eu/nzcTgQ9/6YnD6iO+DDaDbQLn1Zv2w12Gwk43WkPlUBxk5wL/6cD5YMFf7kj6HZ1Kpg==", "dependencies": { "proxy-compare": "2.5.1", "use-sync-external-store": "1.2.0" @@ -5004,10 +7070,13 @@ "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" }, - "node_modules/web-vitals": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.3.2.tgz", - "integrity": "sha512-qRkpmSeKfEWAzNhtX541xA8gCJ+pqCqBmUlDVkVDSCSYUvfvNqF+k9g8I+uyreRcDBdfiJrd0/aLbTy5ydo49Q==" + "node_modules/varuint-bitcoin": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/varuint-bitcoin/-/varuint-bitcoin-1.1.2.tgz", + "integrity": "sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==", + "dependencies": { + "safe-buffer": "^5.1.1" + } }, "node_modules/webidl-conversions": { "version": "3.0.1", @@ -5023,6 +7092,20 @@ "webidl-conversions": "^3.0.0" } }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/which-module": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", @@ -5134,11 +7217,6 @@ } }, "dependencies": { - "@assemblyscript/loader": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.9.4.tgz", - "integrity": "sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA==" - }, "@chainsafe/as-sha256": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.4.1.tgz", @@ -5771,624 +7849,2035 @@ } } }, - "@json-rpc-tools/provider": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/provider/-/provider-1.7.6.tgz", - "integrity": "sha512-z7D3xvJ33UfCGv77n40lbzOYjZKVM3k2+5cV7xS8G6SCvKTzMkhkUYuD/qzQUNT4cG/lv0e9mRToweEEVLVVmA==", - "requires": { - "@json-rpc-tools/utils": "^1.7.6", - "axios": "^0.21.0", - "safe-json-utils": "^1.1.1", - "ws": "^7.4.0" - } - }, - "@json-rpc-tools/types": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/types/-/types-1.7.6.tgz", - "integrity": "sha512-nDSqmyRNEqEK9TZHtM15uNnDljczhCUdBmRhpNZ95bIPKEDQ+nTDmGMFd2lLin3upc5h2VVVd9tkTDdbXUhDIQ==", - "requires": { - "keyvaluestorage-interface": "^1.0.0" - } - }, - "@json-rpc-tools/utils": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@json-rpc-tools/utils/-/utils-1.7.6.tgz", - "integrity": "sha512-HjA8x/U/Q78HRRe19yh8HVKoZ+Iaoo3YZjakJYxR+rw52NHo6jM+VE9b8+7ygkCFXl/EHID5wh/MkXaE/jGyYw==", - "requires": { - "@json-rpc-tools/types": "^1.7.6", - "@pedrouid/environment": "^1.0.1" - } - }, "@lit-labs/ssr-dom-shim": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz", - "integrity": "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.0.tgz", + "integrity": "sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==" }, "@lit-protocol/access-control-conditions": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-2.2.20.tgz", - "integrity": "sha512-Y5PlszwFT5dmg/zX14GNGNW35eL3Tcdst4g+QFpR5cIhVh4ijHmuVRvrDkqdMQcTjeWDqF6rqbMay40l5D584A==", - "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-3.2.6.tgz", + "integrity": "sha512-9W6GC4SCiWcr2OrRLjv8CtRujLwY89T33a3Kj1nR4oCA5M1WLG0lGKoerWRt0OJc624GaUdS21DUSRVPG2ikKA==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } + } + }, + "@lit-protocol/accs-schemas": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/accs-schemas/-/accs-schemas-0.0.6.tgz", + "integrity": "sha512-/NIZkAN+kgAarWefBX1a4DiNerUtv8JOdQmqUo45cnlDp89X9HkiK+8gm9z2p9gojtvxMqqId7wW8J8NHXVRDg==", + "requires": { + "ajv": "^8.12.0" } }, "@lit-protocol/auth-browser": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-2.2.20.tgz", - "integrity": "sha512-2iJ/dEeC2mjlwHlvb2SeMjLTbjbmJjBB11E2m62PFOqG3W8na1CvIBedYmaVm5Qpp+jwQxuE+msmDAsscN6ZvQ==", - "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "2.2.1", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-3.2.6.tgz", + "integrity": "sha512-euqLQrXBKU3LgHaTtFyTJh3OqWAbZs5jLoTf5IsYZjeb5qSPYGP14YujfKo5bjAFxb5ls6IWfYusASqScdDYsQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "buffer": "5.7.1", "ethers": "^5.7.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", - "siwe": "^2.0.5", + "jszip": "^3.10.1", + "punycode": "2.3.1", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.13.3", - "util": "^0.12.4", - "web-vitals": "^3.0.4" + "uint8arrays": "^4.0.3" }, "dependencies": { - "@web3modal/core": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-2.2.1.tgz", - "integrity": "sha512-B2O1+uwnEA2pD+NH+W7xIUMqAkUOxuw6WuIbXZ96tXQO8Mqm8tkrJ6MoqmIo6ntLwHLXtcjitH//JvJHjWVt6A==", - "requires": { - "buffer": "6.0.3", - "valtio": "1.10.3" - } - }, - "@web3modal/standalone": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/standalone/-/standalone-2.2.1.tgz", - "integrity": "sha512-pHPL+UykZtOZhEhNl+l3wWnNvZZdm8cgJgVQVo8yL7m4N9kTyRbDArsQenlIeIm2xi0kFncXBJbe1kaxl8AWTA==", - "requires": { - "@web3modal/core": "2.2.1", - "@web3modal/ui": "2.2.1" - } - }, - "@web3modal/ui": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-2.2.1.tgz", - "integrity": "sha512-7WfynySxcDYFzGTV+9HODKJ85VVVPB8GGcew2JWr9jYcYfRE6KBM75lo+PRb0zdMFRQtSPpU41fRLCk+vBJ4ww==", - "requires": { - "@web3modal/core": "2.2.1", - "lit": "2.6.1", - "motion": "10.15.5", - "qrcode": "1.5.1" - } - }, - "lit": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.6.1.tgz", - "integrity": "sha512-DT87LD64f8acR7uVp7kZfhLRrHkfC/N4BVzAtnw9Yg8087mbBJ//qedwdwX0kzDbxgPccWRW6mFwGbRQIxy0pw==", - "requires": { - "@lit/reactive-element": "^1.6.0", - "lit-element": "^3.2.0", - "lit-html": "^2.6.0" - } - }, - "proxy-compare": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/proxy-compare/-/proxy-compare-2.5.0.tgz", - "integrity": "sha512-f1us0OsVAJ3tdIMXGQx2lmseYS4YXe4W+sKF5g5ww/jV+5ogMadPt+sIZ+88Ga9kvMJsrRNWzCrKPpr6pMWYbA==" - }, - "qrcode": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.1.tgz", - "integrity": "sha512-nS8NJ1Z3md8uTjKtP+SGGhfqmTCs5flU/xR623oI0JX+Wepz9R8UrRVCTBTJm3qGw3rH6jJ6MUHjkDx15cxSSg==", + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "requires": { - "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", - "pngjs": "^5.0.0", - "yargs": "^15.3.1" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "tweetnacl-util": { - "version": "0.13.5", - "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.13.5.tgz", - "integrity": "sha512-/4Q3hpPFAnbBjNLLOmdTdyvInBfZcQBTWy+LWbypmWxAKwOpSQOyyv4ZZts4CoiYtS8Skyix5CkOWytf7XNK9A==" + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" }, - "valtio": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.10.3.tgz", - "integrity": "sha512-t3Ez/+baJ+Z5tIyeaI6nCAbW/hrmcq2jditwg/X++o5IvCdiGirQKTOv1kJq0glgUo13v5oABCVGcinggBfiKw==", + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", "requires": { - "proxy-compare": "2.5.0", - "use-sync-external-store": "1.2.0" + "multiformats": "^12.0.1" } } } }, "@lit-protocol/auth-helpers": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-2.2.20.tgz", - "integrity": "sha512-F4o7/CsQw4df2eajgwFwxu1JKRQp4meGBxfViPR8AHgBazMkmidsKOAtZ0BINvdUat0J86rIqOrID7m+frXKBQ==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-3.2.6.tgz", + "integrity": "sha512-pWEcnXI8MNAEPMtSO6D2A8cLphaXg7QLDjrxtst/V4p51U86IReCAhgwdqt6uUGOikJeRt8Q9OZHN9m4A1PDxQ==", "requires": { "siwe": "^2.0.5", - "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "siwe-recap": "0.0.2-alpha.0" } }, "@lit-protocol/bls-sdk": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-2.2.20.tgz", - "integrity": "sha512-c6RtuGLi05YYjMtT+WjBqtsk718WfTXvOI8qFJtSbTi+caLSTSqbTWztJY9WGh0Amd6B8KjHrtYxXNnw5rE1Vw==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-3.2.6.tgz", + "integrity": "sha512-zYFStdletoxZsTazrlTbEgN4iXioE9EjE895iF5qUSaU5s51Xx29BqfOPZCrAlxhIelZdS+zbwTq6aHrYSuvBg==", "requires": { - "pako": "^2.1.0", - "tslib": "^2.3.0" + "tslib": "1.14.1", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } } }, "@lit-protocol/constants": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-2.2.20.tgz", - "integrity": "sha512-S1i7RRfJ/wYCKdh7VpsYJ5cpH2LjMi3t/wQ8rKJig+gps6wH+tg1hmNIaNxlIah9bJzyDjr85FLxCE18AHV3Ag==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-3.2.6.tgz", + "integrity": "sha512-HkmRPgeWs8tZWGCKiqyvC7mpBYYLoaehYbmoE6hL3248Btze3t38fd/5SctEddIOSDz++11bhd1TEVG67Lng3A==", "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/types": "2.2.20", + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, + "@lit-protocol/contracts-sdk": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/contracts-sdk/-/contracts-sdk-3.2.6.tgz", + "integrity": "sha512-AgcJGI6duPe6ITeDvhkuURGdm4hvOe+b/wWTDY7REjwfxLg1GreNyMvXDKtp3ihytrTV65NrGS5Dofd3IOP55A==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } + } + }, "@lit-protocol/core": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-2.2.20.tgz", - "integrity": "sha512-JmvOeThpdjstlQzai/ts1J3B7gFijD8G0SbEvYkv1j0FKJ8QP+07GRYk2A1nBYF4hE2Fl5K8rbaG19e38RpScg==", - "requires": { - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-3.2.6.tgz", + "integrity": "sha512-6rrkH4kD1Y2N8dM/PgnMISolRu+9GGgOPjTzQmj4R8kEHLOhZpZQmCRS/ZfkgsW7cPdABWitdLMopi805qRnMQ==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^12.1.3", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/crypto": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-2.2.20.tgz", - "integrity": "sha512-5YRya5yKY02+DdvriG6WIjYlP1o8mOhM/8oEgMXmxk9lokqdjLNZ+hwLC9f1VkClw3lqI+hTuvQ3BGdH30RsoQ==", - "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-3.2.6.tgz", + "integrity": "sha512-Y6eNlXoyixoOgvNWxbQjnezUGgej3lhLyMXX8rUcUc5bfCNfEsDZ0R8yTTnmzwTi3Oc70NOHiBX6tgWfC5ayNw==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", + "jszip": "^3.10.1", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/ecdsa-sdk": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-2.2.20.tgz", - "integrity": "sha512-LL7Yl39u7WoKcn94CaM5V3STP2q78oQLD2RbduWD/vZudgUA0xwlLhLriMfGDbx/xeAmviHDkVlb/26Nvz5eSA==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-3.2.6.tgz", + "integrity": "sha512-J+xojNFfMrkJT+kLk9XXjfR5DxMvWkorPNWuPhVUAmfXVLbp6T1BCdXW7BoyhC85kZ6cRmas1oSY7hUkzbk4BQ==", "requires": { - "tslib": "^2.3.0" + "tslib": "1.14.1", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } } }, "@lit-protocol/encryption": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-2.2.20.tgz", - "integrity": "sha512-uCwNt9quxXd+uBsdc2KOUGeAlAU6/MSL0MPB/mmIHUw6ftWafWDHgODfwh9FrVwMovfbOipu5iJJcgi/2SrFJg==", - "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-3.2.6.tgz", + "integrity": "sha512-edPR++f1/FGBhYZG/XplT8EFH9G33pyJC0JBcx5a7PFYWXW5MKcG33y72tFKs/uoWg6NsCr2mNCnNa+yPqbZOA==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", "jszip": "^3.10.1", + "node-fetch": "^2.6.1", + "pako": "1.0.11", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/lit-node-client": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-2.2.20.tgz", - "integrity": "sha512-ladbRULsV88OCXcO8cE/VCW3oDQxK5E13JR6tb9gvBL2zPmKUCtPLSmm7Q5Dv6HBHLhpC35JRBXMs8akAVyhnA==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-3.2.6.tgz", + "integrity": "sha512-d525TvOhK/VBw5uddFwwltZuASSCAzC+QQ9R7FP6G9Jq1T3xqgpWV82a99Do2MMdlBentyFuy/gekvW/6WnlzA==", "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/lit-node-client-nodejs": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-2.2.20.tgz", - "integrity": "sha512-A8jQJuIIXw6FSP4kYbFHoSg3kAAvbfvyLzFyhNpMxvqOQ9yKSh31YpINDsqEQG+wj9OfdlAQ4j+LR4uqyUhWGA==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-3.2.6.tgz", + "integrity": "sha512-vLmHKaEAKjDo8YpP6eJ38rSJ9G1bjxguSzvSpdMyT3JFCy7MyJ84peU3vTjuhvQjhisrK8DAXlolArnaJSLsPA==", "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, - "@lit-protocol/lit-third-party-libs": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/lit-third-party-libs/-/lit-third-party-libs-2.2.20.tgz", - "integrity": "sha512-fqnu4Sqa3tcHN4M5VyRMD/O7p15xHU30DBnlImDZ8ajazhGWQqq/ZlUdXd3vjRGYunyD+/jpr6SrCBspmCZwIg==", + "@lit-protocol/logger": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/logger/-/logger-3.2.6.tgz", + "integrity": "sha512-c2Z4o+ymdqlRDdow5bDlQUnjRZ98DYA/duMPMzx064Q5+/ITy0r/musiR/KPMZqyOQDsXojPSNv9kL8ilYPmiQ==", "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "blockstore-core": "^3.0.0", - "ipfs-unixfs-importer": "^12.0.0", - "tslib": "^2.3.0" + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/misc": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-2.2.20.tgz", - "integrity": "sha512-j2cwaqwXtjWwOzcE0KcCBsQcBx3RLG1FhWMkZYYcJPdqw5lPJ2jwsyB7f/nCeSfGGrZEpNEv2BFq263JH7hjrg==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-3.2.6.tgz", + "integrity": "sha512-XTSx2dKauTJI3YCLN+1NvE5wbbPwBn6CuMkcUoxSIRnOe+QBVRXW/6nf+tSjKb4Hr0M7nh7X8KecAH38Gt0NZg==", "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/types": "2.2.20", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/types": "3.2.6", + "ajv": "^8.12.0", "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/misc-browser": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-2.2.20.tgz", - "integrity": "sha512-POPrYcyyM/ld79tfYyAZO/UeKI58C3iEObRQr2KV1rCUUsiOEEwafcBUQke0Nq9ONEND2xor5RjyqZanZUgigw==", - "requires": { - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-3.2.6.tgz", + "integrity": "sha512-lnpLEppJPzjLjGtIA1LE/12Z5XuS515BHYW1zsMfv6ZXzD4GrErxa3uGzbTXmZ0qDdNB7SBvyHsE+S0M9DxD1g==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", "ethers": "^5.7.1", + "jszip": "^3.10.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, "@lit-protocol/nacl": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-2.2.20.tgz", - "integrity": "sha512-wtcPbUd3U5X+oLinMn+oT1ZyBGoUKH3c6vRbqLtutuG2pPq83Fil9safiC6yhQzFSN+UTEV/r2rddFrN9/izXg==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-3.2.6.tgz", + "integrity": "sha512-R3Y1xVW/MNr0smnGrZ4mExIXY1APDLi7M9f1kQI6mDcUjjJnvRI9gvs9FhAwV3wB9bAbjNXuYwbNQFzQiwLDBw==", "requires": { - "tslib": "^2.3.0" + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } } }, "@lit-protocol/pkp-base": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-2.2.20.tgz", - "integrity": "sha512-l9N4k9vDhC5ThmkIL9qvjrn3mTUiOIobh1waFLx7pBwh304Zs+3NQo3ejGqC1hbdMC1ugaEtlgwwo4tZQjLOIg==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-3.2.6.tgz", + "integrity": "sha512-aua0evdtWpQha7+pPpwEKrTFvoGFU4bCP/eIOkXU/1QAenRx1hKMw373fpMflbKL4h0+nD2ZSB6kHa87ExY6UQ==", "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "secp256k1": "^5.0.0", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/pkp-client": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-2.2.20.tgz", - "integrity": "sha512-IhPJEu+yg4tfTkfSGqaBLV83Q+6e28+ImB9NdAivwhCkkZv+HRUF72hEW/GQHSykJWZLj5EMezyX1kV/vZMe5A==", - "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/pkp-cosmos": "2.2.20", - "@lit-protocol/pkp-ethers": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-3.2.6.tgz", + "integrity": "sha512-bbVl39zCbQ+cxUTnlip1d3qjM1mBXsYPnrdxEYQHDTy9rt0iQM6+y/8weLqgrT+pRdQps63dt1nuoRTGqRLPeA==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/pkp-cosmos": "3.2.6", + "@lit-protocol/pkp-ethers": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "secp256k1": "^5.0.0", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/pkp-cosmos": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-2.2.20.tgz", - "integrity": "sha512-VhhvEExrpMJGPfZwTqR52+ZLnOJSNhyjrENBvzdyNfVEFiMOFfKu3TKNSZ7aa5EdCdNE1kq38APMgErnNzRkpA==", - "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-3.2.6.tgz", + "integrity": "sha512-RfuDFlcyRhkfTYrTXHk3yt80nAscxfCP8jKW3RSeDebv/hM39OUjpz/n/Cz/r4S33ooKiZbXKhdIGTB128BzgQ==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "secp256k1": "^5.0.0", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/pkp-ethers": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-2.2.20.tgz", - "integrity": "sha512-BTToUVKQrjDDiAgJuxb2L4we854INd40xzKYMf5cGdp3P2uhYYK4pjFaR+yOHl84Ik98VFUtxkvabdeCzsSNCw==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-3.2.6.tgz", + "integrity": "sha512-+iQS7UBFXB5egYRbCBrqiYO3AWN5tv6skvEPN2xHtx0c7JY0DDGqkK6HCC9Rfq2Jsqm8EVveRdpUnK5Jfwbfnw==", "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "3.2.6", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-browser": "3.2.6", + "@lit-protocol/auth-helpers": "3.2.6", + "@lit-protocol/bls-sdk": "3.2.6", + "@lit-protocol/constants": "3.2.6", + "@lit-protocol/contracts-sdk": "3.2.6", + "@lit-protocol/core": "3.2.6", + "@lit-protocol/crypto": "3.2.6", + "@lit-protocol/ecdsa-sdk": "3.2.6", + "@lit-protocol/encryption": "3.2.6", + "@lit-protocol/lit-node-client": "3.2.6", + "@lit-protocol/lit-node-client-nodejs": "3.2.6", + "@lit-protocol/logger": "3.2.6", + "@lit-protocol/misc": "3.2.6", + "@lit-protocol/misc-browser": "3.2.6", + "@lit-protocol/nacl": "3.2.6", + "@lit-protocol/pkp-base": "3.2.6", + "@lit-protocol/sev-snp-utils-sdk": "3.2.6", + "@lit-protocol/types": "3.2.6", + "@lit-protocol/uint8arrays": "3.2.6", "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/ethereum-provider": "2.7.0", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", + "multiformats": "^12.1.3", "node-fetch": "^2.6.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "secp256k1": "^5.0.0", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + } + } } }, "@lit-protocol/pkp-walletconnect": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-walletconnect/-/pkp-walletconnect-2.2.20.tgz", - "integrity": "sha512-YQ7WGt0sjcyOhK0UzZjJf/ugN4yghZn3rGFdq3vYu7t+xu7RZbSPZL+MkZkS1J+jmL1r1VA7o+Zu6VXPsDScSw==", - "requires": { - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@lit-protocol/access-control-conditions": "2.2.20", - "@lit-protocol/auth-browser": "2.2.20", - "@lit-protocol/auth-helpers": "2.2.20", - "@lit-protocol/bls-sdk": "2.2.20", - "@lit-protocol/constants": "2.2.20", - "@lit-protocol/core": "2.2.20", - "@lit-protocol/crypto": "2.2.20", - "@lit-protocol/ecdsa-sdk": "2.2.20", - "@lit-protocol/encryption": "2.2.20", - "@lit-protocol/lit-node-client": "2.2.20", - "@lit-protocol/lit-node-client-nodejs": "2.2.20", - "@lit-protocol/lit-third-party-libs": "2.2.20", - "@lit-protocol/misc": "2.2.20", - "@lit-protocol/misc-browser": "2.2.20", - "@lit-protocol/nacl": "2.2.20", - "@lit-protocol/pkp-base": "2.2.20", - "@lit-protocol/pkp-client": "2.2.20", - "@lit-protocol/pkp-cosmos": "2.2.20", - "@lit-protocol/pkp-ethers": "2.2.20", - "@lit-protocol/types": "2.2.20", - "@lit-protocol/uint8arrays": "2.2.20", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-walletconnect/-/pkp-walletconnect-6.0.1.tgz", + "integrity": "sha512-7R6iNBqEE2fU8QdiiuuXGCC1OH4WbaHYXWm4Bd/dooECM1Mea4FjX4Q0HQ+0uQhonWDTLyZ66kNKfVh2BZN02A==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/pkp-client": "6.0.1", + "@lit-protocol/pkp-cosmos": "6.0.1", + "@lit-protocol/pkp-ethers": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", "@metamask/eth-sig-util": "5.0.2", - "@walletconnect/core": "2.7.5", - "@walletconnect/ethereum-provider": "2.7.0", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", - "@walletconnect/web3wallet": "1.7.3", - "@web3modal/standalone": "^2.2.1", - "blockstore-core": "^3.0.0", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", "ethers": "^5.7.1", - "ipfs-http-client": "56.0.0", - "ipfs-unixfs-importer": "^12.0.0", + "jose": "^4.14.4", "jszip": "^3.10.1", - "lit-connect-modal": "^0.1.11", - "lit-siwe": "^1.1.8", - "node-fetch": "^2.6.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", "secp256k1": "^5.0.0", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0", "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "@lit-protocol/access-control-conditions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/access-control-conditions/-/access-control-conditions-6.0.1.tgz", + "integrity": "sha512-oGiHy2+LIib4/hDnkGIwpsDzPq+trqw1hBDliuYQVxBFfCCLl3EHr4nIfSfH/IzTStR3ZnmSPSeABpMHp38ESQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/accs-schemas": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@lit-protocol/accs-schemas/-/accs-schemas-0.0.7.tgz", + "integrity": "sha512-n8fJ6NMh2T3KgSKe0CRB0Uam6ZwxUTQV0oQXY0vEmSL+Q2a1PsM2FX42szOM+O7LgY+Bko7AiCjjDHbqQoJydg==", + "requires": { + "ajv": "^8.12.0" + } + }, + "@lit-protocol/auth-browser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-browser/-/auth-browser-6.0.1.tgz", + "integrity": "sha512-wNjde2GwlJ0C0h1kIlRR2fjWuVMEeHX/tadgtZHbaZ5nt3YUrQFmMbFHBR69JnoXshJlD+wNMZ46cdDtCdez1A==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "buffer": "5.7.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/auth-helpers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/auth-helpers/-/auth-helpers-6.0.1.tgz", + "integrity": "sha512-H1G3EV4uz5cDIHhc+jWqvFDtecwLYVUOL+WDrEy83wZhDSgG/llAcbITkvkfZtvS6GeLZnur31rwC7CiPdSfLQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "2.6.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/bls-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/bls-sdk/-/bls-sdk-6.0.1.tgz", + "integrity": "sha512-rWnfMJM2iPlIrT7nLshiFYvpBx3ywepBcBpHFes4QG9EtQDam1MG+sJjPS7tmqboHVpbvwiAlOlpPUL3CEzmhA==", + "requires": { + "tslib": "1.14.1", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/constants": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/constants/-/constants-6.0.1.tgz", + "integrity": "sha512-/cZhS7zdrfoCkA5WJzCdvV1eI72UCaJne/G3c/kAQNVhPewVr7A1af0KtZsZCfonjuWTz5jjHq9/pe9oA1rb7g==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/types": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/contracts-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/contracts-sdk/-/contracts-sdk-6.0.1.tgz", + "integrity": "sha512-YfcPgi7gSVQo5HpI6BsM0EhCY/OH3mME4KohhklGRWXJ0fq2/9YRjcSZOCe2uk5J6e/n2S7AhmOn5m4XG/rCzg==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/core": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/core/-/core-6.0.1.tgz", + "integrity": "sha512-+9cU5VWoIArJlaRWmS8zrTxHId2iJDxwGnP9asH6KxEEzHTE+oxV6LqHBxVICJviLv8JNqcNxVSOcgGmq97NpQ==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/crypto": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/crypto/-/crypto-6.0.1.tgz", + "integrity": "sha512-kvqbXlpiX1dnhvrtX5OtU7ZNiuxtWCqvrUgnljqv+oQktozxsDHSMtsh3el/lgaFiCERba3E08Lcw8llRMrncw==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "cross-fetch": "3.1.4", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "pako": "1.0.11", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/ecdsa-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/ecdsa-sdk/-/ecdsa-sdk-6.0.1.tgz", + "integrity": "sha512-/NRJ0snOu+XIR6WeD5WVzzfgPmTNTu2ZMbZR9D/Kdbb1ujjKRFVEAWopSaZS0zpSUX/9DAhS8atGKZLeJsY6xA==", + "requires": { + "tslib": "1.14.1", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/encryption": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/encryption/-/encryption-6.0.1.tgz", + "integrity": "sha512-tmRkmUzsZoepyYd12zj5Ep/PIiqhigm+Eu5x7uFICdHlK9j2XjxgquELK93ooMP7BFP/iAWsViNe1VqOj1pvMQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "cross-fetch": "3.1.4", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "pako": "1.0.11", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/lit-node-client": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client/-/lit-node-client-6.0.1.tgz", + "integrity": "sha512-Kq3j4Mf7OO93adbVkpz57v30PKF4OdV7OVAyCsp+SnnXJXPys9AEUpxXT+Hz4eDU0/y1km0uvPj/CPvcDq3GeA==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/lit-node-client-nodejs": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/lit-node-client-nodejs/-/lit-node-client-nodejs-6.0.1.tgz", + "integrity": "sha512-aR7HRx0+wBITM06zBCaAb0ioWRmtQti+XsZssP2G7xb5UPObkL06dlMyL0Y0Q6FgfpUsd82IPple/fY0u5TOeg==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/transactions": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/logger": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/logger/-/logger-6.0.1.tgz", + "integrity": "sha512-ojV+ThHKVe74pQVYuMmHLM3bIElPFvtQKbt7GV3coT9cFpsUPLCmqRNYbxzoc+1nQJxNZSaA5cLdOLzpoipSUg==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/misc": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc/-/misc-6.0.1.tgz", + "integrity": "sha512-49xwxPq4e5aw30P1v5DQEx0efSdhxiHc6+sCiJRrXR2I7lsJbE9IyGcdS0R3Dq5GmZ3QD2k7aiWG4vqEP2dicQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/types": "6.0.1", + "ajv": "^8.12.0", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "punycode": "2.3.1", + "siwe": "^2.0.5", + "tslib": "1.14.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/misc-browser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/misc-browser/-/misc-browser-6.0.1.tgz", + "integrity": "sha512-GAfu/42qhCSvnKRIpJWYsw8fPvcXJrwttnRTkTjAkrgT3qWqj9L6nn4lYlNw1D9EqYMGnpYbr2Gz4ZS7NMZLNg==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/nacl": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/nacl/-/nacl-6.0.1.tgz", + "integrity": "sha512-pkkwW1JTBXmUYa3hEyHgyQGIJFaZCWd6/eB5RkkbccIY2c3QvOyghCfQE6JyLGP20llgsMFHvjwG8+qA6r8CMQ==", + "requires": { + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/pkp-base": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-base/-/pkp-base-6.0.1.tgz", + "integrity": "sha512-290KBJjo9sGeArxbeLG5pQgBMnoPjp2Fxj34bgAxEtumoI2T0srutC2t0oC2p2jA5RTr6n6V4r94W1VBvQANUw==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/pkp-client": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-client/-/pkp-client-6.0.1.tgz", + "integrity": "sha512-ruX9yVPaARDrR/a8J3H1jEkE7En7DEzhCJVySNHDpWnqyfwLE9GwKxGg7gaIrmM21dWQYAmblMlwB6Zl4lI4Dw==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/pkp-cosmos": "6.0.1", + "@lit-protocol/pkp-ethers": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/pkp-cosmos": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-cosmos/-/pkp-cosmos-6.0.1.tgz", + "integrity": "sha512-7+qkiAFWXon6eHvCzBCWR8ZWe2B+UbZ21yXvw8sOAV5ltItVnBk2BNx1k17PAm80ELLC7CXOWZDYNDUkbiNZcA==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@cosmjs/proto-signing": "0.30.1", + "@cosmjs/stargate": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cosmjs-types": "0.7.2", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/pkp-ethers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/pkp-ethers/-/pkp-ethers-6.0.1.tgz", + "integrity": "sha512-NZ1Om4pU9jlH5sx+DPIJLMat8Eg9j/OtlI2iPwnbWVgIGOZkLErDUMMIegsyEfyLFjOMCKzAN2nVAl7PyMURaQ==", + "requires": { + "@cosmjs/amino": "0.30.1", + "@cosmjs/crypto": "0.30.1", + "@cosmjs/encoding": "0.30.1", + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/wordlists": "5.7.0", + "@lit-protocol/access-control-conditions": "6.0.1", + "@lit-protocol/accs-schemas": "0.0.7", + "@lit-protocol/auth-browser": "6.0.1", + "@lit-protocol/auth-helpers": "6.0.1", + "@lit-protocol/bls-sdk": "6.0.1", + "@lit-protocol/constants": "6.0.1", + "@lit-protocol/contracts-sdk": "6.0.1", + "@lit-protocol/core": "6.0.1", + "@lit-protocol/crypto": "6.0.1", + "@lit-protocol/ecdsa-sdk": "6.0.1", + "@lit-protocol/encryption": "6.0.1", + "@lit-protocol/lit-node-client": "6.0.1", + "@lit-protocol/lit-node-client-nodejs": "6.0.1", + "@lit-protocol/logger": "6.0.1", + "@lit-protocol/misc": "6.0.1", + "@lit-protocol/misc-browser": "6.0.1", + "@lit-protocol/nacl": "6.0.1", + "@lit-protocol/pkp-base": "6.0.1", + "@lit-protocol/sev-snp-utils-sdk": "6.0.1", + "@lit-protocol/types": "6.0.1", + "@lit-protocol/uint8arrays": "6.0.1", + "@metamask/eth-sig-util": "5.0.2", + "@walletconnect/ethereum-provider": "2.9.2", + "@walletconnect/modal": "2.6.1", + "ajv": "^8.12.0", + "bitcoinjs-lib": "^6.1.0", + "bs58": "^5.0.0", + "buffer": "5.7.1", + "cross-fetch": "3.1.4", + "date-and-time": "^2.4.1", + "ethers": "^5.7.1", + "jose": "^4.14.4", + "jszip": "^3.10.1", + "multiformats": "^9.7.1", + "pako": "1.0.11", + "process": "0.11.10", + "punycode": "2.3.1", + "secp256k1": "^5.0.0", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "tweetnacl": "^1.0.3", + "tweetnacl-util": "^0.15.1", + "uint8arrays": "^4.0.3", + "util": "0.12.5" + } + }, + "@lit-protocol/sev-snp-utils-sdk": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/sev-snp-utils-sdk/-/sev-snp-utils-sdk-6.0.1.tgz", + "integrity": "sha512-k54JVq0IkeEZ2b6cKEe61K64vTAuBM0WN/Mv5fbZVez1bM9uBU0HFON5gUfTeNVn57wIo4vWOOCCtyzpn8Bbdg==", + "requires": { + "cross-fetch": "3.1.4", + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/types": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-6.0.1.tgz", + "integrity": "sha512-csTiuS3YUv95cC8npcwZ8Uu6DwR52+lDbvp/riJ23I+KXpH0w6YA41jEE1nnm9S8P3eJnOBFwTiq2DvrjEQ7Dw==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "@lit-protocol/uint8arrays": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-6.0.1.tgz", + "integrity": "sha512-1n+Rkk7tC4KZWsRj6Cd6lmxQqYUxeZ517xddZn7kKr5A8L0EgdDEkfKPQOHkuxe0SFEMoLihlI/SFyqFqcOjug==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.7", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "tslib": "1.14.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "cross-fetch": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz", + "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==", + "requires": { + "node-fetch": "2.6.1" + } + }, + "multiformats": { + "version": "9.9.0", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", + "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" + }, + "tslib": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", + "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" + }, + "uint8arrays": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.10.tgz", + "integrity": "sha512-AnJNUGGDJAgFw/eWu/Xb9zrVKEGlwJJCaeInlf3BkecE/zcTobk5YXYIPNQJO1q5Hh1QZrQQHf0JvcHqz2hqoA==", + "requires": { + "multiformats": "^12.0.1" + }, + "dependencies": { + "multiformats": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-12.1.3.tgz", + "integrity": "sha512-eajQ/ZH7qXZQR2AgtfpmSMizQzmyYVmCql7pdhldPuYQi4atACekbJaQplk6dWyIi10jCaFnd6pqvcEFXjbaJw==" + } + } + } + } + }, + "@lit-protocol/sev-snp-utils-sdk": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/sev-snp-utils-sdk/-/sev-snp-utils-sdk-3.2.6.tgz", + "integrity": "sha512-+eCfBBDbWEyFCJi9gNVdZ9NFmGk24TS7KI7DrS5jFvAtJM5quNsMb+UtoemuUlPakvJ9zGAMBOn6Tv1ozbM1SQ==", + "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/uint8arrays": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "node-fetch": "^2.6.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", + "tslib": "^2.3.0", + "util": "0.12.5" } }, "@lit-protocol/types": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-2.2.20.tgz", - "integrity": "sha512-DYIk02M1KvBaJaELf3UU4xDonUGpWQlhhfJV1ri7axoLBiI31Ixrkiuc9dC2HN2GwS/InjTk0GjR0D3zIlKoOg==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/types/-/types-3.2.6.tgz", + "integrity": "sha512-wUh25p37/dfxsG0AJ6qiAmCLN2ShEjLwFfmLA+7bLPgzPwBvI/fHXhV0qW26litcC5Yggg12oMGPomFBsDVtQA==", "requires": { - "@lit-protocol/auth-helpers": "2.2.20", + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "@lit-protocol/auth-helpers": "3.2.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", "siwe": "^2.0.5", "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, "@lit-protocol/uint8arrays": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-2.2.20.tgz", - "integrity": "sha512-Uw15rzltxyU3rWuFFR/XKyk0POL7/7nNbtq9IA/wheFYtLl8SCzlb0Nh6IKdeoL5Jl8iPkj/XVrJDYZ+Xa9Klg==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/@lit-protocol/uint8arrays/-/uint8arrays-3.2.6.tgz", + "integrity": "sha512-Qfq9tr0JlkplICUr+S6RSUd8m+qj3onz9rBdZYX7lu0r4E1XK/zOR2eXmLNY/DR8HpvrinjD2IgtQRjwqjKcGQ==", "requires": { + "@ethersproject/abstract-provider": "5.7.0", + "@lit-protocol/accs-schemas": "0.0.6", + "ethers": "^5.7.1", + "jszip": "^3.10.1", + "siwe": "^2.0.5", + "siwe-recap": "0.0.2-alpha.0", "tslib": "^2.3.0" } }, "@lit/reactive-element": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.1.tgz", - "integrity": "sha512-va15kYZr7KZNNPZdxONGQzpUr+4sxVu7V/VG7a8mRfPPXUyhEYj5RzXCQmGrlP3tAh0L3HHm5AjBMFYRqlM9SA==", + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz", + "integrity": "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==", "requires": { "@lit-labs/ssr-dom-shim": "^1.0.0" } @@ -6414,90 +9903,81 @@ } }, "@motionone/animation": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.15.1.tgz", - "integrity": "sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.18.0.tgz", + "integrity": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==", "requires": { - "@motionone/easing": "^10.15.1", - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "@motionone/easing": "^10.18.0", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "@motionone/dom": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.2.tgz", - "integrity": "sha512-bnuHdNbge1FutZXv+k7xub9oPWcF0hsu8y1HTH/qg6av58YI0VufZ3ngfC7p2xhMJMnoh0LXFma2EGTgPeCkeg==", - "requires": { - "@motionone/animation": "^10.15.1", - "@motionone/generators": "^10.15.1", - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.18.0.tgz", + "integrity": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==", + "requires": { + "@motionone/animation": "^10.18.0", + "@motionone/generators": "^10.18.0", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "hey-listen": "^1.0.8", "tslib": "^2.3.1" } }, "@motionone/easing": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.15.1.tgz", - "integrity": "sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.18.0.tgz", + "integrity": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==", "requires": { - "@motionone/utils": "^10.15.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "@motionone/generators": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.15.1.tgz", - "integrity": "sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.18.0.tgz", + "integrity": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==", "requires": { - "@motionone/types": "^10.15.1", - "@motionone/utils": "^10.15.1", + "@motionone/types": "^10.17.1", + "@motionone/utils": "^10.18.0", "tslib": "^2.3.1" } }, "@motionone/svelte": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.2.tgz", - "integrity": "sha512-38xsroKrfK+aHYhuQlE6eFcGy0EwrB43Q7RGjF73j/kRUTcLNu/LAaKiLLsN5lyqVzCgTBVt4TMT/ShWbTbc5Q==", + "version": "10.16.4", + "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.4.tgz", + "integrity": "sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==", "requires": { - "@motionone/dom": "^10.16.2", + "@motionone/dom": "^10.16.4", "tslib": "^2.3.1" } }, "@motionone/types": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.15.1.tgz", - "integrity": "sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA==" + "version": "10.17.1", + "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.17.1.tgz", + "integrity": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" }, "@motionone/utils": { - "version": "10.15.1", - "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.15.1.tgz", - "integrity": "sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==", + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.18.0.tgz", + "integrity": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==", "requires": { - "@motionone/types": "^10.15.1", + "@motionone/types": "^10.17.1", "hey-listen": "^1.0.8", "tslib": "^2.3.1" } }, "@motionone/vue": { - "version": "10.16.2", - "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.2.tgz", - "integrity": "sha512-7/dEK/nWQXOkJ70bqb2KyNfSWbNvWqKKq1C8juj+0Mg/AorgD8O5wE3naddK0G+aXuNMqRuc4jlsYHHWHtIzVw==", + "version": "10.16.4", + "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.4.tgz", + "integrity": "sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==", "requires": { - "@motionone/dom": "^10.16.2", + "@motionone/dom": "^10.16.4", "tslib": "^2.3.1" } }, - "@multiformats/murmur3": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@multiformats/murmur3/-/murmur3-2.1.4.tgz", - "integrity": "sha512-qHHmZKD1Dy6PDi35pAowE1pQtnH7gwaJpUE/Ju+cOYVdWD4T8VVtKAumGCxwd31JKyNC0W1IzAaHQz1dnXXvBw==", - "requires": { - "multiformats": "^11.0.0", - "murmurhash3js-revisited": "^3.0.0" - } - }, "@noble/curves": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz", @@ -6516,10 +9996,123 @@ "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz", "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==" }, - "@pedrouid/environment": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz", - "integrity": "sha512-HaW78NszGzRZd9SeoI3JD11JqY+lubnaOx7Pewj5pfjqWXOEATpeKIFb9Z4t2WBUK2iryiXX3lzWwmYWgUL0Ug==" + "@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "requires": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1", + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "dependencies": { + "node-addon-api": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", + "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==" + } + } + }, + "@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "optional": true + }, + "@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "optional": true + }, + "@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "optional": true + }, + "@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "optional": true + }, + "@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "optional": true + }, + "@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "optional": true + }, + "@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "optional": true + }, + "@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "optional": true + }, + "@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "optional": true + }, + "@parcel/watcher-wasm": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", + "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", + "requires": { + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "napi-wasm": "^1.1.0" + }, + "dependencies": { + "napi-wasm": { + "version": "1.1.0", + "bundled": true + } + } + }, + "@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "optional": true + }, + "@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "optional": true + }, + "@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "optional": true }, "@protobufjs/aspromise": { "version": "1.1.2", @@ -6783,50 +10376,57 @@ "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==" }, "@types/trusted-types": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", - "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==" - }, - "@walletconnect/auth-client": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@walletconnect/auth-client/-/auth-client-2.1.0.tgz", - "integrity": "sha512-k6zZLEdlBpYIvbOL5tBWd+3DUJ2R4VFDyHpdp4TuRzC//njRkIzRSksEnsr8gN8P+IKuoJTLPsDy2sWR4qVTNQ==", - "requires": { - "@ethersproject/hash": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@stablelib/random": "1.0.2", - "@stablelib/sha256": "^1.0.1", - "@walletconnect/core": "^2.7.2", - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "^1.2.0", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/utils": "^2.7.2", - "events": "^3.3.0", - "isomorphic-unfetch": "^3.1.0" - } + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" }, "@walletconnect/core": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.7.5.tgz", - "integrity": "sha512-nI5RTGZAOcheCcrVUWHLO4iEnyDrDa8HnuNRm9jbYf7ESLdmunShQ+jStnb0pmjEJ8uI/oIEahQwzTN8iLIjpA==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.9.2.tgz", + "integrity": "sha512-VARMPAx8sIgodeyngDHbealP3B621PQqjqKsByFUTOep8ZI1/R/20zU+cmq6j9RCrL+kLKZcrZqeVzs8Z7OlqQ==", "requires": { "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-provider": "^1.0.12", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/jsonrpc-ws-connection": "^1.0.11", + "@walletconnect/jsonrpc-provider": "1.0.13", + "@walletconnect/jsonrpc-types": "1.0.3", + "@walletconnect/jsonrpc-utils": "1.0.8", + "@walletconnect/jsonrpc-ws-connection": "1.0.13", "@walletconnect/keyvaluestorage": "^1.0.2", "@walletconnect/logger": "^2.0.1", "@walletconnect/relay-api": "^1.0.9", "@walletconnect/relay-auth": "^1.0.4", "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", + "@walletconnect/time": "^1.0.2", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0", "lodash.isequal": "4.5.0", "uint8arrays": "^3.1.0" + }, + "dependencies": { + "@walletconnect/jsonrpc-provider": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", + "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", + "requires": { + "@walletconnect/jsonrpc-utils": "^1.0.8", + "@walletconnect/safe-json": "^1.0.2", + "tslib": "1.14.1" + } + }, + "@walletconnect/jsonrpc-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", + "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "requires": { + "keyvaluestorage-interface": "^1.0.0", + "tslib": "1.14.1" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } } }, "@walletconnect/environment": { @@ -6845,67 +10445,19 @@ } }, "@walletconnect/ethereum-provider": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.7.0.tgz", - "integrity": "sha512-6TwQ05zi6DP1TP1XNgSvLbmCmLf/sz7kLTfMaVk45YYHNgYTTBlXqkyjUpQZI9lpq+uXLBbHn/jx2OGhOPUP0Q==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.9.2.tgz", + "integrity": "sha512-eO1dkhZffV1g7vpG19XUJTw09M/bwGUwwhy1mJ3AOPbOSbMPvwiCuRz2Kbtm1g9B0Jv15Dl+TvJ9vTgYF8zoZg==", "requires": { - "@walletconnect/jsonrpc-http-connection": "^1.0.4", - "@walletconnect/jsonrpc-provider": "^1.0.11", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/sign-client": "2.7.0", - "@walletconnect/types": "2.7.0", - "@walletconnect/universal-provider": "2.7.0", - "@walletconnect/utils": "2.7.0", + "@walletconnect/jsonrpc-http-connection": "^1.0.7", + "@walletconnect/jsonrpc-provider": "^1.0.13", + "@walletconnect/jsonrpc-types": "^1.0.3", + "@walletconnect/jsonrpc-utils": "^1.0.8", + "@walletconnect/sign-client": "2.9.2", + "@walletconnect/types": "2.9.2", + "@walletconnect/universal-provider": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" - }, - "dependencies": { - "@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "requires": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", - "events": "^3.3.0" - } - }, - "@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", - "requires": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" - } - }, - "query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "requires": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - } - } } }, "@walletconnect/events": { @@ -6942,54 +10494,33 @@ } }, "@walletconnect/jsonrpc-http-connection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz", - "integrity": "sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.8.tgz", + "integrity": "sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==", "requires": { "@walletconnect/jsonrpc-utils": "^1.0.6", "@walletconnect/safe-json": "^1.0.1", "cross-fetch": "^3.1.4", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "events": "^3.3.0" } }, "@walletconnect/jsonrpc-provider": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", - "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.14.tgz", + "integrity": "sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==", "requires": { "@walletconnect/jsonrpc-utils": "^1.0.8", "@walletconnect/safe-json": "^1.0.2", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "events": "^3.3.0" } }, "@walletconnect/jsonrpc-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", - "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz", + "integrity": "sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==", "requires": { - "keyvaluestorage-interface": "^1.0.0", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "events": "^3.3.0", + "keyvaluestorage-interface": "^1.0.0" } }, "@walletconnect/jsonrpc-utils": { @@ -7010,9 +10541,9 @@ } }, "@walletconnect/jsonrpc-ws-connection": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.11.tgz", - "integrity": "sha512-TiFJ6saasKXD+PwGkm5ZGSw0837nc6EeFmurSPgIT/NofnOV4Tv7CVJqGQN0rQYoJUSYu21cwHNYaFkzNpUN+w==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.13.tgz", + "integrity": "sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==", "requires": { "@walletconnect/jsonrpc-utils": "^1.0.6", "@walletconnect/safe-json": "^1.0.2", @@ -7029,51 +10560,58 @@ } }, "@walletconnect/keyvaluestorage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz", - "integrity": "sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.1.1.tgz", + "integrity": "sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==", "requires": { - "safe-json-utils": "^1.1.1", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "@walletconnect/safe-json": "^1.0.1", + "idb-keyval": "^6.2.1", + "unstorage": "^1.9.0" } }, "@walletconnect/logger": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.0.1.tgz", - "integrity": "sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.1.2.tgz", + "integrity": "sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==", "requires": { - "pino": "7.11.0", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "@walletconnect/safe-json": "^1.0.2", + "pino": "7.11.0" + } + }, + "@walletconnect/modal": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal/-/modal-2.6.1.tgz", + "integrity": "sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw==", + "requires": { + "@walletconnect/modal-core": "2.6.1", + "@walletconnect/modal-ui": "2.6.1" + } + }, + "@walletconnect/modal-core": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal-core/-/modal-core-2.6.1.tgz", + "integrity": "sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ==", + "requires": { + "valtio": "1.11.0" + } + }, + "@walletconnect/modal-ui": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@walletconnect/modal-ui/-/modal-ui-2.6.1.tgz", + "integrity": "sha512-RFUOwDAMijSK8B7W3+KoLKaa1l+KEUG0LCrtHqaB0H0cLnhEGdLR+kdTdygw+W8+yYZbkM5tXBm7MlFbcuyitA==", + "requires": { + "@walletconnect/modal-core": "2.6.1", + "lit": "2.7.6", + "motion": "10.16.2", + "qrcode": "1.5.3" } }, "@walletconnect/relay-api": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.9.tgz", - "integrity": "sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.10.tgz", + "integrity": "sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==", "requires": { - "@walletconnect/jsonrpc-types": "^1.0.2", - "tslib": "1.14.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "@walletconnect/jsonrpc-types": "^1.0.2" } }, "@walletconnect/relay-auth": { @@ -7112,89 +10650,19 @@ } }, "@walletconnect/sign-client": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.7.0.tgz", - "integrity": "sha512-K99xa6GSFS04U+140yrIEi/VJJJ0Q1ov4jCaiqa9euILDKxlBsM7m5GR+9sq6oYyj18SluJY4CJTdeOXUJlarA==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.9.2.tgz", + "integrity": "sha512-anRwnXKlR08lYllFMEarS01hp1gr6Q9XUgvacr749hoaC/AwGVlxYFdM8+MyYr3ozlA+2i599kjbK/mAebqdXg==", "requires": { - "@walletconnect/core": "2.7.0", + "@walletconnect/core": "2.9.2", "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-utils": "^1.0.7", + "@walletconnect/jsonrpc-utils": "1.0.8", "@walletconnect/logger": "^2.0.1", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" - }, - "dependencies": { - "@walletconnect/core": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.7.0.tgz", - "integrity": "sha512-xUeFPpElybgn1a+lknqtHleei4VyuV/4qWgB1nP8qQUAO6a5pNsioODrnB2VAPdUHJYBdx2dCt2maRk6g53IPQ==", - "requires": { - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-provider": "^1.0.12", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/jsonrpc-ws-connection": "^1.0.11", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/relay-auth": "^1.0.4", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", - "events": "^3.3.0", - "lodash.isequal": "4.5.0", - "uint8arrays": "^3.1.0" - } - }, - "@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "requires": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", - "events": "^3.3.0" - } - }, - "@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", - "requires": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" - } - }, - "query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "requires": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - } - } } }, "@walletconnect/time": { @@ -7213,98 +10681,81 @@ } }, "@walletconnect/types": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.5.tgz", - "integrity": "sha512-uEsMXtVbhT5+E/g3loyfNBrjEsPeUaPZkFeVsOErWhxg25CL+MrrWUKerV6tC/ACbFVR5KgKS+uioMath/cV7A==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.9.2.tgz", + "integrity": "sha512-7Rdn30amnJEEal4hk83cdwHUuxI1SWQ+K7fFFHBMqkuHLGi3tpMY6kpyfDxnUScYEZXqgRps4Jo5qQgnRqVM7A==", "requires": { "@walletconnect/events": "^1.0.1", "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", + "@walletconnect/jsonrpc-types": "1.0.3", "@walletconnect/keyvaluestorage": "^1.0.2", "@walletconnect/logger": "^2.0.1", "events": "^3.3.0" + }, + "dependencies": { + "@walletconnect/jsonrpc-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", + "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "requires": { + "keyvaluestorage-interface": "^1.0.0", + "tslib": "1.14.1" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } } }, "@walletconnect/universal-provider": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.7.0.tgz", - "integrity": "sha512-aAIudO3ZlKD16X36VnXChpxBB6/JLK1SCJBfidk7E0GE2S4xr1xW5jXGSGS4Z+wIkNZXK0n7ULSK3PZ7mPBdog==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.9.2.tgz", + "integrity": "sha512-JmaolkO8D31UdRaQCHwlr8uIFUI5BYhBzqYFt54Mc6gbIa1tijGOmdyr6YhhFO70LPmS6gHIjljwOuEllmlrxw==", "requires": { - "@walletconnect/jsonrpc-http-connection": "^1.0.4", - "@walletconnect/jsonrpc-provider": "^1.0.11", + "@walletconnect/jsonrpc-http-connection": "^1.0.7", + "@walletconnect/jsonrpc-provider": "1.0.13", "@walletconnect/jsonrpc-types": "^1.0.2", "@walletconnect/jsonrpc-utils": "^1.0.7", "@walletconnect/logger": "^2.0.1", - "@walletconnect/sign-client": "2.7.0", - "@walletconnect/types": "2.7.0", - "@walletconnect/utils": "2.7.0", - "eip1193-provider": "1.0.1", + "@walletconnect/sign-client": "2.9.2", + "@walletconnect/types": "2.9.2", + "@walletconnect/utils": "2.9.2", "events": "^3.3.0" }, "dependencies": { - "@walletconnect/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.7.0.tgz", - "integrity": "sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==", - "requires": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "@walletconnect/keyvaluestorage": "^1.0.2", - "@walletconnect/logger": "^2.0.1", - "events": "^3.3.0" - } - }, - "@walletconnect/utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.0.tgz", - "integrity": "sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==", + "@walletconnect/jsonrpc-provider": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", + "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", "requires": { - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/relay-api": "^1.0.9", + "@walletconnect/jsonrpc-utils": "^1.0.8", "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.0", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", - "detect-browser": "5.3.0", - "query-string": "7.1.1", - "uint8arrays": "^3.1.0" + "tslib": "1.14.1" } }, - "query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "requires": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - } + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" } } }, "@walletconnect/utils": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.7.5.tgz", - "integrity": "sha512-uSf71P3kFMC+S4RidQYFIWXglVvYTCLK7AaO9PrUDLO9ocRnBk6hNmOhYSA5jSP6OLf1vYm4ADHbzkeOb4u6aQ==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.9.2.tgz", + "integrity": "sha512-D44hwXET/8JhhIjqljY6qxSu7xXnlPrf63UN/Qfl98vDjWlYVcDl2+JIQRxD9GPastw0S8XZXdRq59XDXLuZBg==", "requires": { "@stablelib/chacha20poly1305": "1.0.1", "@stablelib/hkdf": "1.0.1", "@stablelib/random": "^1.0.2", "@stablelib/sha256": "1.0.1", "@stablelib/x25519": "^1.0.3", - "@walletconnect/jsonrpc-utils": "^1.0.7", "@walletconnect/relay-api": "^1.0.9", "@walletconnect/safe-json": "^1.0.2", "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", + "@walletconnect/types": "2.9.2", "@walletconnect/window-getters": "^1.0.1", "@walletconnect/window-metadata": "^1.0.1", "detect-browser": "5.3.0", @@ -7312,64 +10763,6 @@ "uint8arrays": "^3.1.0" } }, - "@walletconnect/web3wallet": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@walletconnect/web3wallet/-/web3wallet-1.7.3.tgz", - "integrity": "sha512-rXvpdG3SrYh7vp/oqC+LM7IXHMz/RGzyybHEomqgO1hIUgkCHL3+DupIaJlI9iAMZyRLYDkLzp5RuYxk7nRzYA==", - "requires": { - "@walletconnect/auth-client": "2.1.0", - "@walletconnect/core": "2.7.5", - "@walletconnect/jsonrpc-provider": "1.0.12", - "@walletconnect/jsonrpc-utils": "1.0.7", - "@walletconnect/logger": "2.0.1", - "@walletconnect/sign-client": "2.7.5", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5" - }, - "dependencies": { - "@walletconnect/jsonrpc-provider": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.12.tgz", - "integrity": "sha512-6uI2y5281gloZSzICOjk+CVC7CVu0MhtMt2Yzpj05lPb0pzm/bK2oZ2ibxwLerPrqpNt/5bIFVRmoOgPw1mHAQ==", - "requires": { - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/safe-json": "^1.0.2", - "tslib": "1.14.1" - } - }, - "@walletconnect/jsonrpc-utils": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.7.tgz", - "integrity": "sha512-zJziApzUF/Il4VcwabnaU+0yo1QI4eUkYX99zmCVTHJvZOf2l0zjADf/OpKqWyeNFC3Io56Z/8uJHVtcNVvyFA==", - "requires": { - "@walletconnect/environment": "^1.0.1", - "@walletconnect/jsonrpc-types": "^1.0.2", - "tslib": "1.14.1" - } - }, - "@walletconnect/sign-client": { - "version": "2.7.5", - "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.7.5.tgz", - "integrity": "sha512-99oc0g4eR4hllrB0m4N74EsnNKDrl0L5HdLDGBHQIYnl+/FUjn652QCTOjPzqiUlxvQCo0wrIugb/tgtIGPTfg==", - "requires": { - "@walletconnect/core": "2.7.5", - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-utils": "^1.0.7", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.7.5", - "@walletconnect/utils": "2.7.5", - "events": "^3.3.0" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "@walletconnect/window-getters": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz", @@ -7401,40 +10794,27 @@ } } }, - "@web3modal/core": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-2.4.1.tgz", - "integrity": "sha512-v6Y/eQJSI2YfUTv8rGqjFabqdk3ZPjx6Fe7j5Q8fw0ZWF1YRGM3mySG457qtKQ7D7E1kNKA3BHbaOZ3pgQoG6A==", - "requires": { - "buffer": "6.0.3", - "valtio": "1.10.5" - } - }, - "@web3modal/standalone": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/standalone/-/standalone-2.4.1.tgz", - "integrity": "sha512-ZrI5LwWeT9sd8A3FdIX/gBp3ZrzrX882Ln1vJN0LTCmeP2OUsYcW5bPxjv1PcJ1YUBY7Tg4aTgMUnAVTTuqb+w==", - "requires": { - "@web3modal/core": "2.4.1", - "@web3modal/ui": "2.4.1" - } - }, - "@web3modal/ui": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-2.4.1.tgz", - "integrity": "sha512-x1ceyd3mMJsIHs5UUTLvE+6qyCjhyjL6gB/wVmTDbwASHSQIVyshQJ+s7BwIEMP/pbAsYDg+/M8EiUuE+/E/kg==", - "requires": { - "@web3modal/core": "2.4.1", - "lit": "2.7.4", - "motion": "10.15.5", - "qrcode": "1.5.3" - } + "acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" }, "aes-js": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==" }, + "ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "requires": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + } + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -7453,6 +10833,15 @@ "resolved": "https://registry.npmjs.org/any-signal/-/any-signal-3.0.1.tgz", "integrity": "sha512-xgZgJtKEa9YmDqXodIgl7Fl1C8yNXr8w6gXjqK3LW4GcEiYT+6AQfJSE/8SPsEpLLmcvbv8YU+qet94UewHxqg==" }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, "apg-js": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/apg-js/-/apg-js-4.1.3.tgz", @@ -7481,6 +10870,11 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "base-x": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz", + "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==" + }, "base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -7491,14 +10885,34 @@ "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" }, - "bl": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", - "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" + }, + "bip174": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bip174/-/bip174-2.1.1.tgz", + "integrity": "sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==" + }, + "bitcoinjs-lib": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-6.1.6.tgz", + "integrity": "sha512-Fk8+Vc+e2rMoDU5gXkW9tD+313rhkm5h6N9HfZxXvYU9LedttVvmXKTgd9k5rsQJjkSfsv6XRM8uhJv94SrvcA==", "requires": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "@noble/hashes": "^1.2.0", + "bech32": "^2.0.0", + "bip174": "^2.1.1", + "bs58check": "^3.0.1", + "typeforce": "^1.11.3", + "varuint-bitcoin": "^1.1.2" + }, + "dependencies": { + "bech32": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-2.0.0.tgz", + "integrity": "sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==" + } } }, "blob-to-it": { @@ -7509,21 +10923,6 @@ "browser-readablestream-to-it": "^1.0.3" } }, - "blockstore-core": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/blockstore-core/-/blockstore-core-3.0.0.tgz", - "integrity": "sha512-5ZZB5nh6kErcjZ/CTK6lCwTIGlPdkTXbD8+2xLC4Fm0WGh7g2e2lW2bfURw7mvnPtSX1xV+sN4V2ndowSgIiHQ==", - "requires": { - "err-code": "^3.0.1", - "interface-blockstore": "^4.0.0", - "interface-store": "^3.0.0", - "it-all": "^2.0.0", - "it-drain": "^2.0.0", - "it-filter": "^2.0.0", - "it-take": "^2.0.0", - "multiformats": "^11.0.0" - } - }, "bn.js": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", @@ -7538,6 +10937,14 @@ "concat-map": "0.0.1" } }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "requires": { + "fill-range": "^7.1.1" + } + }, "brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -7548,6 +10955,23 @@ "resolved": "https://registry.npmjs.org/browser-readablestream-to-it/-/browser-readablestream-to-it-1.0.3.tgz", "integrity": "sha512-+12sHB+Br8HIh6VAMVEG5r3UXCyESIgDW7kzk3BjIXa43DVqVwL7GC5TW3jeh+72dtcH99pPVpw0X8i0jt+/kw==" }, + "bs58": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz", + "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==", + "requires": { + "base-x": "^4.0.0" + } + }, + "bs58check": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-3.0.1.tgz", + "integrity": "sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==", + "requires": { + "@noble/hashes": "^1.2.0", + "bs58": "^5.0.0" + } + }, "buffer": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", @@ -7581,6 +11005,39 @@ "resolved": "https://registry.npmjs.org/cborg/-/cborg-1.10.2.tgz", "integrity": "sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==" }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "requires": { + "consola": "^3.2.3" + } + }, + "clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "requires": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + } + }, "cliui": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", @@ -7609,6 +11066,21 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, + "confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==" + }, + "consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==" + }, + "cookie-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.1.0.tgz", + "integrity": "sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==" + }, "core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -7623,14 +11095,30 @@ "protobufjs": "~6.11.2" } }, - "cross-fetch": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", - "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", + "cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "requires": { + "node-fetch": "^2.6.12" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "requires": { - "node-fetch": "^2.6.11" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" } }, + "crossws": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", + "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", + "requires": {} + }, "dag-jose": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dag-jose/-/dag-jose-1.0.0.tgz", @@ -7656,6 +11144,11 @@ } } }, + "date-and-time": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/date-and-time/-/date-and-time-2.4.3.tgz", + "integrity": "sha512-xkS/imTmsyEdpp9ie5oV5UWolg3XkYWNySbT2W4ESWr6v4V8YrsHbhpk9fIeQcr0NFTnYbQJLXlgU1zrLItysA==" + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -7683,11 +11176,26 @@ "object-keys": "^1.1.1" } }, + "defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + }, + "destr": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==" + }, "detect-browser": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz", "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==" }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + }, "dijkstrajs": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", @@ -7704,22 +11212,14 @@ } }, "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz", + "integrity": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==", "requires": { "end-of-stream": "^1.4.1", "inherits": "^2.0.3", "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - } - }, - "eip1193-provider": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/eip1193-provider/-/eip1193-provider-1.0.1.tgz", - "integrity": "sha512-kSuqwQ26d7CzuS/t3yRXo2Su2cVH0QfvyKbr2H7Be7O5YDyIq4hQGCNTo5wRdP07bt+E2R/8nPCzey4ojBHf7g==", - "requires": { - "@json-rpc-tools/provider": "^1.5.5" + "stream-shift": "^1.0.2" } }, "electron-fetch": { @@ -7851,15 +11351,44 @@ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" }, + "execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, "fast-fifo": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.2.0.tgz", "integrity": "sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==" }, "fast-redact": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.2.0.tgz", - "integrity": "sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz", + "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==" + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "requires": { + "to-regex-range": "^5.0.1" + } }, "filter-obj": { "version": "1.1.0", @@ -7888,6 +11417,12 @@ "is-callable": "^1.1.3" } }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "optional": true + }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -7914,6 +11449,24 @@ "resolved": "https://registry.npmjs.org/get-iterator/-/get-iterator-1.0.2.tgz", "integrity": "sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==" }, + "get-port-please": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==" + }, + "get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==" + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, "globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", @@ -7930,23 +11483,21 @@ "get-intrinsic": "^1.1.3" } }, - "hamt-sharding": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/hamt-sharding/-/hamt-sharding-3.0.2.tgz", - "integrity": "sha512-f0DzBD2tSmLFdFsLAvOflIBqFPjerbA7BfmwO8mVho/5hXwgyyYhv+ijIzidQf/DpDX3bRjAQvhGoBFj+DBvPw==", + "h3": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.11.1.tgz", + "integrity": "sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==", "requires": { - "sparse-array": "^1.3.1", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", - "requires": { - "multiformats": "^11.0.0" - } - } + "cookie-es": "^1.0.0", + "crossws": "^0.2.2", + "defu": "^6.1.4", + "destr": "^2.0.3", + "iron-webcrypto": "^1.0.0", + "ohash": "^1.1.3", + "radix3": "^1.1.0", + "ufo": "^1.4.0", + "uncrypto": "^0.1.3", + "unenv": "^1.9.0" } }, "has": { @@ -8007,6 +11558,16 @@ "minimalistic-crypto-utils": "^1.0.1" } }, + "http-shutdown": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==" + }, + "human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==" + }, "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -8015,6 +11576,11 @@ "safer-buffer": ">= 2.1.2 < 3.0.0" } }, + "idb-keyval": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.1.tgz", + "integrity": "sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==" + }, "ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -8030,15 +11596,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "interface-blockstore": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/interface-blockstore/-/interface-blockstore-4.0.1.tgz", - "integrity": "sha512-ROWKGJls7vLeFaQtI3hZVCJOkUoZ05xAi2t2qysM4d7dwVKrfm5jUOqWh8JgLL7Iup3XqJ0mKXXZuwJ3s03RSw==", - "requires": { - "interface-store": "^3.0.0", - "multiformats": "^11.0.0" - } - }, "interface-datastore": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/interface-datastore/-/interface-datastore-6.1.1.tgz", @@ -8056,11 +11613,6 @@ } } }, - "interface-store": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/interface-store/-/interface-store-3.0.4.tgz", - "integrity": "sha512-OjHUuGXbH4eXSBx1TF1tTySvjLldPLzRSYYXJwrEQI+XfH5JWYZofr0gVMV4F8XTwC+4V7jomDYkvGRmDSRKqQ==" - }, "ip-regex": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", @@ -8165,84 +11717,6 @@ "protobufjs": "^6.10.2" } }, - "ipfs-unixfs-importer": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/ipfs-unixfs-importer/-/ipfs-unixfs-importer-12.0.1.tgz", - "integrity": "sha512-//VPZOqbONtc1HNtb+sBrw+nIGijHEloSm1O3LVR5orSlhHQ8X7+OCkeqceFBhu40tPMe/TwgAPrkvh+fXL+bA==", - "requires": { - "@ipld/dag-pb": "^4.0.0", - "@multiformats/murmur3": "^2.0.0", - "err-code": "^3.0.1", - "hamt-sharding": "^3.0.0", - "interface-blockstore": "^4.0.0", - "ipfs-unixfs": "^9.0.0", - "it-all": "^2.0.0", - "it-batch": "^2.0.0", - "it-first": "^2.0.0", - "it-parallel-batch": "^2.0.0", - "merge-options": "^3.0.4", - "multiformats": "^11.0.0", - "rabin-wasm": "^0.1.4", - "uint8arraylist": "^2.3.3", - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "@ipld/dag-pb": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@ipld/dag-pb/-/dag-pb-4.0.3.tgz", - "integrity": "sha512-bOe+Z2ZJs9pmP/aIUBYMTdXq0i5z1x71qXeOIIhZvnKFLuzTIbbW0u5b7OfTGzUEbSv1dkUZBIXa7G/+OA8dnA==", - "requires": { - "multiformats": "^11.0.0" - } - }, - "ipfs-unixfs": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/ipfs-unixfs/-/ipfs-unixfs-9.0.1.tgz", - "integrity": "sha512-jh2CbXyxID+v3jLml9CqMwjdSS9ZRnsGfQGGPOfem0/hT/L48xUeTPvh7qLFWkZcIMhZtG+fnS1teei8x5uGBg==", - "requires": { - "err-code": "^3.0.1", - "protobufjs": "^7.0.0" - } - }, - "it-first": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-first/-/it-first-2.0.1.tgz", - "integrity": "sha512-noC1oEQcWZZMUwq7VWxHNLML43dM+5bviZpfmkxkXlvBe60z7AFRqpZSga9uQBo792jKv9otnn1IjA4zwgNARw==" - }, - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" - }, - "protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - } - }, - "uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", - "requires": { - "multiformats": "^11.0.0" - } - } - } - }, "ipfs-utils": { "version": "9.0.14", "resolved": "https://registry.npmjs.org/ipfs-utils/-/ipfs-utils-9.0.14.tgz", @@ -8273,6 +11747,11 @@ } } }, + "iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==" + }, "is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -8282,16 +11761,34 @@ "has-tostringtag": "^1.0.0" } }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, "is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" }, + "is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + }, "is-electron": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/is-electron/-/is-electron-2.2.2.tgz", "integrity": "sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==" }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -8305,11 +11802,27 @@ "has-tostringtag": "^1.0.0" } }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, "is-hex-prefixed": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==" }, + "is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "requires": { + "is-docker": "^3.0.0" + } + }, "is-ip": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", @@ -8318,11 +11831,21 @@ "ip-regex": "^4.0.0" } }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, "is-plain-obj": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + }, "is-typed-array": { "version": "1.1.10", "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", @@ -8335,51 +11858,43 @@ "has-tostringtag": "^1.0.0" } }, + "is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "requires": { + "is-inside-container": "^1.0.0" + } + }, + "is64bit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", + "requires": { + "system-architecture": "^0.1.0" + } + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, "iso-url": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/iso-url/-/iso-url-1.2.1.tgz", "integrity": "sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==" }, - "isomorphic-unfetch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", - "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", - "requires": { - "node-fetch": "^2.6.1", - "unfetch": "^4.2.0" - } - }, "isomorphic-ws": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", "requires": {} }, - "it-all": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-all/-/it-all-2.0.1.tgz", - "integrity": "sha512-9UuJcCRZsboz+HBQTNOau80Dw+ryGaHYFP/cPYzFBJBFcfDathMYnhHk4t52en9+fcyDGPTdLB+lFc1wzQIroA==" - }, - "it-batch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-batch/-/it-batch-2.0.1.tgz", - "integrity": "sha512-2gWFuPzamh9Dh3pW+OKjc7UwJ41W4Eu2AinVAfXDMfrC5gXfm3b1TF+1UzsygBUgKBugnxnGP+/fFRyn+9y1mQ==" - }, - "it-drain": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-drain/-/it-drain-2.0.1.tgz", - "integrity": "sha512-ESuHV6MLUNxuSy0vGZpKhSRjW0ixczN1FhbVy7eGJHjX6U2qiiXTyMvDc0z/w+nifOOwPyI5DT9Rc3o9IaGqEQ==" - }, - "it-filter": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/it-filter/-/it-filter-2.0.2.tgz", - "integrity": "sha512-gocw1F3siqupegsOzZ78rAc9C+sYlQbI2af/TmzgdrR613MyEJHbvfwBf12XRekGG907kqXSOGKPlxzJa6XV1Q==" - }, "it-first": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/it-first/-/it-first-1.0.7.tgz", @@ -8404,24 +11919,11 @@ "resolved": "https://registry.npmjs.org/it-map/-/it-map-1.0.6.tgz", "integrity": "sha512-XT4/RM6UHIFG9IobGlQPFQUrlEKkU4eBUFG3qhWhfAdh1JfF2x11ShCrKCdmZ0OiZppPfoLuzcfA4cey6q3UAQ==" }, - "it-parallel-batch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-parallel-batch/-/it-parallel-batch-2.0.1.tgz", - "integrity": "sha512-tXh567/JfDGJ90Zi//H9HkL7kY27ARp0jf2vu2jUI6PUVBWfsoT+gC4eT41/b4+wkJXSGgT8ZHnivAOlMfcNjA==", - "requires": { - "it-batch": "^2.0.0" - } - }, "it-peekable": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/it-peekable/-/it-peekable-1.0.3.tgz", "integrity": "sha512-5+8zemFS+wSfIkSZyf0Zh5kNN+iGyccN02914BY4w/Dj+uoFEoPSvj5vaWn8pNZJNSxzjW0zHRxC3LUb2KWJTQ==" }, - "it-take": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/it-take/-/it-take-2.0.1.tgz", - "integrity": "sha512-DL7kpZNjuoeSTnB9dMAJ0Z3m2T29LRRAU+HIgkiQM+1jH3m8l9e/1xpWs8JHTlbKivbqSFrQMTc8KVcaQNmsaA==" - }, "it-to-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/it-to-stream/-/it-to-stream-1.0.0.tgz", @@ -8435,6 +11937,16 @@ "readable-stream": "^3.6.0" } }, + "jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==" + }, + "jose": { + "version": "4.15.5", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.5.tgz", + "integrity": "sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==" + }, "js-sha3": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", @@ -8446,6 +11958,11 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "peer": true }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, "jszip": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", @@ -8457,11 +11974,6 @@ "setimmediate": "^1.0.5" }, "dependencies": { - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, "readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -8517,52 +12029,59 @@ "immediate": "~3.0.5" } }, + "listhen": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", + "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", + "requires": { + "@parcel/watcher": "^2.4.1", + "@parcel/watcher-wasm": "^2.4.1", + "citty": "^0.1.6", + "clipboardy": "^4.0.0", + "consola": "^3.2.3", + "crossws": "^0.2.0", + "defu": "^6.1.4", + "get-port-please": "^3.1.2", + "h3": "^1.10.2", + "http-shutdown": "^1.2.2", + "jiti": "^1.21.0", + "mlly": "^1.6.1", + "node-forge": "^1.3.1", + "pathe": "^1.1.2", + "std-env": "^3.7.0", + "ufo": "^1.4.0", + "untun": "^0.1.3", + "uqr": "^0.1.2" + } + }, "lit": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.7.4.tgz", - "integrity": "sha512-cgD7xrZoYr21mbrkZIuIrj98YTMw/snJPg52deWVV4A8icLyNHI3bF70xsJeAgwTuiq5Kkd+ZR8gybSJDCPB7g==", + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/lit/-/lit-2.7.6.tgz", + "integrity": "sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==", "requires": { "@lit/reactive-element": "^1.6.0", "lit-element": "^3.3.0", "lit-html": "^2.7.0" } }, - "lit-connect-modal": { - "version": "0.1.11", - "resolved": "https://registry.npmjs.org/lit-connect-modal/-/lit-connect-modal-0.1.11.tgz", - "integrity": "sha512-EG6pcCqdxZQJt3MPDq3gJ5Sz4E5sJdydtAF7VFJu6z6GDHO1Ybp8WrTx8CUnHiF54/MQBRi6Nb7cbTvv+BKWvQ==", - "requires": { - "micromodal": "^0.4.10" - } - }, "lit-element": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.2.tgz", - "integrity": "sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.3.tgz", + "integrity": "sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==", "requires": { "@lit-labs/ssr-dom-shim": "^1.1.0", "@lit/reactive-element": "^1.3.0", - "lit-html": "^2.7.0" + "lit-html": "^2.8.0" } }, "lit-html": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.7.4.tgz", - "integrity": "sha512-/Jw+FBpeEN+z8X6PJva5n7+0MzCVAH2yypN99qHYYkq8bI+j7I39GH+68Z/MZD6rGKDK9RpzBw7CocfmHfq6+g==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.8.0.tgz", + "integrity": "sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==", "requires": { "@types/trusted-types": "^2.0.2" } }, - "lit-siwe": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/lit-siwe/-/lit-siwe-1.1.8.tgz", - "integrity": "sha512-gXI8GG0GAClw6G7T9p4p6Kn9ywDo8j2d90ShaYArJdsqqO9gwXfzxF84SMeY+bpsNqqQ3FahrhEwTCHd6w7wNw==", - "requires": { - "@spruceid/siwe-parser": "1.1.3", - "@stablelib/random": "^1.0.1", - "apg-js": "^4.1.1" - } - }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -8595,6 +12114,11 @@ "js-tokens": "^3.0.0 || ^4.0.0" } }, + "lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==" + }, "merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -8603,15 +12127,34 @@ "is-plain-obj": "^2.1.0" } }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, "micro-ftch": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/micro-ftch/-/micro-ftch-0.3.1.tgz", "integrity": "sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==" }, - "micromodal": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/micromodal/-/micromodal-0.4.10.tgz", - "integrity": "sha512-BUrEnzMPFBwK8nOE4xUDYHLrlGlLULQVjpja99tpJQPSUEWgw3kTLp1n1qv0HmKU29AiHE7Y7sMLiRziDK4ghQ==" + "micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" }, "minimalistic-assert": { "version": "1.0.1", @@ -8631,24 +12174,35 @@ "brace-expansion": "^1.1.7" } }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + "mlly": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", + "requires": { + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" + } }, "motion": { - "version": "10.15.5", - "resolved": "https://registry.npmjs.org/motion/-/motion-10.15.5.tgz", - "integrity": "sha512-ejP6KioN4pigTGxL93APzOnvtLklParL59UQB2T3HWXQBxFcIp5/7YXFmkgiA6pNKKzjvnLhnonRBN5iSFMnNw==", + "version": "10.16.2", + "resolved": "https://registry.npmjs.org/motion/-/motion-10.16.2.tgz", + "integrity": "sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==", "requires": { "@motionone/animation": "^10.15.1", - "@motionone/dom": "^10.15.5", - "@motionone/svelte": "^10.15.5", + "@motionone/dom": "^10.16.2", + "@motionone/svelte": "^10.16.2", "@motionone/types": "^10.15.1", "@motionone/utils": "^10.15.1", - "@motionone/vue": "^10.15.5" + "@motionone/vue": "^10.16.2" } }, + "mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -8687,11 +12241,6 @@ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-11.0.2.tgz", "integrity": "sha512-b5mYMkOkARIuVZCpvijFj9a6m5wMVLC7cf/jIPd5D/ARDOfLC5+IFkbgDXQgcU2goIsTD/O9NY4DI/Mt4OGvlg==" }, - "murmurhash3js-revisited": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/murmurhash3js-revisited/-/murmurhash3js-revisited-3.0.0.tgz", - "integrity": "sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==" - }, "nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", @@ -8709,23 +12258,68 @@ "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" }, "node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "requires": { "whatwg-url": "^5.0.0" } }, + "node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==" + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + }, "node-gyp-build": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==" }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "requires": { + "path-key": "^4.0.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + } + }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, + "ofetch": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", + "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", + "requires": { + "destr": "^2.0.3", + "node-fetch-native": "^1.6.3", + "ufo": "^1.5.3" + } + }, + "ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" + }, "on-exit-leak-free": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz", @@ -8739,6 +12333,14 @@ "wrappy": "1" } }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "requires": { + "mimic-fn": "^4.0.0" + } + }, "p-defer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-3.0.0.tgz", @@ -8775,9 +12377,9 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, "pako": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", - "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, "parse-duration": { "version": "1.0.3", @@ -8789,6 +12391,21 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, "pino": { "version": "7.11.0", "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz", @@ -8821,11 +12438,26 @@ "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz", "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" }, + "pkg-types": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.1.tgz", + "integrity": "sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==", + "requires": { + "confbox": "^0.1.7", + "mlly": "^1.7.0", + "pathe": "^1.1.2" + } + }, "pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" + }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -8862,9 +12494,9 @@ "integrity": "sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==" }, "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" }, "qrcode": { "version": "1.5.3", @@ -8893,23 +12525,15 @@ "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" }, - "rabin-wasm": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/rabin-wasm/-/rabin-wasm-0.1.5.tgz", - "integrity": "sha512-uWgQTo7pim1Rnj5TuWcCewRDTf0PEFTSlaUjWP4eY9EbLV9em08v89oCz/WO+wRxpYuO36XEHp4wgYQnAgOHzA==", - "requires": { - "@assemblyscript/loader": "^0.9.4", - "bl": "^5.0.0", - "debug": "^4.3.1", - "minimist": "^1.2.5", - "node-fetch": "^2.6.1", - "readable-stream": "^3.6.0" - } + "radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" }, "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "peer": true, "requires": { "loose-envify": "^1.1.0" @@ -8933,6 +12557,14 @@ "util-deprecate": "^1.0.1" } }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, "readonly-date": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/readonly-date/-/readonly-date-1.0.0.tgz", @@ -8956,6 +12588,11 @@ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + }, "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", @@ -8971,11 +12608,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, - "safe-json-utils": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz", - "integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==" - }, "safe-stable-stringify": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", @@ -9011,6 +12643,24 @@ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + }, "siwe": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/siwe/-/siwe-2.1.4.tgz", @@ -9040,11 +12690,6 @@ "atomic-sleep": "^1.0.0" } }, - "sparse-array": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/sparse-array/-/sparse-array-1.3.2.tgz", - "integrity": "sha512-ZT711fePGn3+kQyLuv1fpd3rNSkNF8vd5Kv2D+qnOANeyKs3fx6bUMGWRPvgTTcYV64QMqZKZwcuaQSP3AZ0tg==" - }, "split-on-first": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", @@ -9055,10 +12700,15 @@ "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" }, + "std-env": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" + }, "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" }, "stream-to-it": { "version": "0.2.4", @@ -9099,6 +12749,11 @@ "ansi-regex": "^5.0.1" } }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + }, "strip-hex-prefix": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", @@ -9112,6 +12767,11 @@ "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-2.0.3.tgz", "integrity": "sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==" }, + "system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==" + }, "thread-stream": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz", @@ -9128,6 +12788,14 @@ "retimer": "^3.0.0" } }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -9148,23 +12816,15 @@ "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==" }, - "uint8arraylist": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-2.4.3.tgz", - "integrity": "sha512-oEVZr4/GrH87K0kjNce6z8pSCzLEPqHNLNR5sj8cJOySrTP8Vb/pMIbZKLJGhQKxm1TiZ31atNrpn820Pyqpow==", - "requires": { - "uint8arrays": "^4.0.2" - }, - "dependencies": { - "uint8arrays": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-4.0.3.tgz", - "integrity": "sha512-b+aKlI2oTnxnfeSQWV1sMacqSNxqhtXySaH6bflvONGxF8V/fT3ZlYH7z2qgGfydsvpVo4JUgM/Ylyfl2YouCg==", - "requires": { - "multiformats": "^11.0.0" - } - } - } + "typeforce": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/typeforce/-/typeforce-1.18.0.tgz", + "integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==" + }, + "ufo": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", + "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==" }, "uint8arrays": { "version": "3.1.1", @@ -9181,10 +12841,54 @@ } } }, - "unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" + "uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" + }, + "unenv": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.9.0.tgz", + "integrity": "sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==", + "requires": { + "consola": "^3.2.3", + "defu": "^6.1.3", + "mime": "^3.0.0", + "node-fetch-native": "^1.6.1", + "pathe": "^1.1.1" + } + }, + "unstorage": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", + "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", + "requires": { + "anymatch": "^3.1.3", + "chokidar": "^3.6.0", + "destr": "^2.0.3", + "h3": "^1.11.1", + "listhen": "^1.7.2", + "lru-cache": "^10.2.0", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.2", + "ofetch": "^1.3.3", + "ufo": "^1.4.0" + } + }, + "untun": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", + "requires": { + "citty": "^0.1.5", + "consola": "^3.2.3", + "pathe": "^1.1.1" + } + }, + "uqr": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==" }, "uri-js": { "version": "4.4.1", @@ -9223,9 +12927,9 @@ "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" }, "valtio": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.10.5.tgz", - "integrity": "sha512-jTp0k63VXf4r5hPoaC6a6LCG4POkVSh629WLi1+d5PlajLsbynTMd7qAgEiOSPxzoX5iNvbN7iZ/k/g29wrNiQ==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.11.0.tgz", + "integrity": "sha512-65Yd0yU5qs86b5lN1eu/nzcTgQ9/6YnD6iO+DDaDbQLn1Zv2w12Gwk43WkPlUBxk5wL/6cD5YMFf7kj6HZ1Kpg==", "requires": { "proxy-compare": "2.5.1", "use-sync-external-store": "1.2.0" @@ -9236,10 +12940,13 @@ "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" }, - "web-vitals": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.3.2.tgz", - "integrity": "sha512-qRkpmSeKfEWAzNhtX541xA8gCJ+pqCqBmUlDVkVDSCSYUvfvNqF+k9g8I+uyreRcDBdfiJrd0/aLbTy5ydo49Q==" + "varuint-bitcoin": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/varuint-bitcoin/-/varuint-bitcoin-1.1.2.tgz", + "integrity": "sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==", + "requires": { + "safe-buffer": "^5.1.1" + } }, "webidl-conversions": { "version": "3.0.1", @@ -9255,6 +12962,14 @@ "webidl-conversions": "^3.0.0" } }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, "which-module": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", diff --git a/apps/demo-pkp-walletconnect-node/package.json b/apps/demo-pkp-walletconnect-node/package.json index e73d7413dc..e1c8a48f8f 100644 --- a/apps/demo-pkp-walletconnect-node/package.json +++ b/apps/demo-pkp-walletconnect-node/package.json @@ -12,7 +12,7 @@ "license": "ISC", "dependencies": { "@lit-protocol/pkp-client": "^3.0.5", - "@lit-protocol/pkp-walletconnect": "^3.0.5", + "@lit-protocol/pkp-walletconnect": "^6.0.1", "lokijs": "^1.5.12" } } diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts index 33daa3e308..9f642b64cd 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts @@ -1,23 +1,35 @@ -// @ts-ignore - set global variable for testing +// @ts-expect-error - set global variable for testing global.jestTesting = true; import * as LITCONFIG from 'lit.config.json'; -import { PKPWalletConnect } from './pkp-walletconnect'; import { PKPClient } from '@lit-protocol/pkp-client'; +import { Core } from '@walletconnect/core'; +import { SignClientTypes } from '@walletconnect/types'; +import { Web3Wallet } from '@walletconnect/web3wallet'; + +import { PKPWalletConnect } from './pkp-walletconnect'; jest.setTimeout(120000); +jest.mock('@walletconnect/core'); +jest.mock('@walletconnect/web3wallet'); + const PKP_PUBKEY = LITCONFIG.PKP_PUBKEY; const PKP_ETH_ADDRESS = LITCONFIG.PKP_ETH_ADDRESS; describe('PKPWalletConnect', () => { - const pkpClient = new PKPClient({ - controllerAuthSig: LITCONFIG.CONTROLLER_AUTHSIG, - pkpPubKey: PKP_PUBKEY, - cosmosAddressPrefix: 'cosmos', - }); + let pkpClient: PKPClient; + let pkpWalletConnect: PKPWalletConnect; + + beforeAll(() => { + pkpClient = new PKPClient({ + controllerAuthSig: LITCONFIG.CONTROLLER_AUTHSIG, + pkpPubKey: PKP_PUBKEY, + cosmosAddressPrefix: 'cosmos', + }); - const pkpWalletConnect = new PKPWalletConnect(); + pkpWalletConnect = new PKPWalletConnect(true); + }); describe('getPKPClients', () => { it('should return the current list of PKPClients', () => { @@ -102,25 +114,131 @@ describe('PKPWalletConnect', () => { }); }); - /* Currently gives an SSR error requiring storage middleware. - > - To use WalletConnect server side, you'll need to install the "unstorage" dependency. - If you are seeing this error during a build / in an SSR environment, you can add "unstorage" as a devDependency to make this error go away. - < + const coreMock = { + relayUrl: 'wss://relay.walletconnect.com', + }; + + const web3WalletMock = { + engine: { + signClient: jest.fn(), + }, + pair: jest.fn(), + approveSession: jest.fn(), + }; + + const config = { + projectId: 'fcd184b860ea5998892e079adfbaf92f', + metadata: { + name: 'Test Wallet', + description: 'Test Wallet', + url: '#', + icons: ['https://walletconnect.com/walletconnect-logo.png'], + }, + }; + + beforeEach(() => { + (Core as unknown as jest.Mock).mockImplementation(() => coreMock); + (Web3Wallet.init as jest.Mock).mockResolvedValue(web3WalletMock); + }); + + beforeEach(() => { + jest.clearAllMocks(); + }); + describe('initWalletConnect', () => { it('should initialize WalletConnect', async () => { - const config = { - projectId: 'fcd184b860ea5998892e079adfbaf92f', - metadata: { - name: 'Test Wallet', - description: 'Test Wallet', - url: '#', - icons: ['https://walletconnect.com/walletconnect-logo.png'], - }, - }; await pkpWalletConnect.initWalletConnect(config); + expect(pkpWalletConnect.getSignClient()).toBeDefined(); }); }); - */ + + describe('pair', () => { + it('should pair with a WalletConnect client', async () => { + const uri = 'wc:1234'; + await pkpWalletConnect.pair({ uri }); + + expect(web3WalletMock.pair).toHaveBeenCalledWith({ uri }); + }); + }); + + describe('approveSessionProposal', () => { + const sessionProposal = { + id: 1718305417150143, + params: { + id: 1718305417150143, + pairingTopic: + '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', + expiry: 1718305725, + requiredNamespaces: { + eip155: { + methods: ['eth_sendTransaction', 'personal_sign'], + chains: ['eip155:11155111', 'eip155:1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + optionalNamespaces: { + eip155: { + methods: [ + 'eth_signTransaction', + 'eth_sign', + 'eth_signTypedData', + 'eth_signTypedData_v4', + 'wallet_getCapabilities', + 'wallet_sendCalls', + 'wallet_getCallsStatus', + ], + chains: ['eip155:11155111', 'eip155:1'], + events: [], + }, + }, + relays: [ + { + protocol: 'irn', + }, + ], + proposer: { + publicKey: + '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', + metadata: config.metadata, + }, + expiryTimestamp: 1718305717, + }, + verifyContext: { + verified: { + verifyUrl: '', + validation: 'VALID', + origin: 'https://react-app.walletconnect.com', + }, + }, + } as SignClientTypes.EventArguments['session_proposal']; + const buildSessionApprovalParams = (sessionProposal: SignClientTypes.EventArguments['session_proposal']) => { + const namespaces = { + eip155: { + accounts: sessionProposal.params.requiredNamespaces['eip155'].chains!.map((chain) => `${chain}:${PKP_ETH_ADDRESS}`), + chains: [...sessionProposal.params.requiredNamespaces['eip155'].chains!], + methods: pkpWalletConnect.filterUnsupportedMethods([ + ...sessionProposal.params.requiredNamespaces['eip155'].methods, + ...sessionProposal.params.optionalNamespaces['eip155'].methods] + ), + events: sessionProposal.params.requiredNamespaces['eip155'].events, + }, + } + + return { + id: sessionProposal.id, + namespaces, + relayProtocol: sessionProposal.params.relays[0].protocol, + } + } + + it('should approve a valid session proposal', async () => { + const sessionApprovalParams = buildSessionApprovalParams(sessionProposal); + const approveSessionSpy = jest.spyOn(web3WalletMock, 'approveSession'); + + await pkpWalletConnect.approveSessionProposal(sessionProposal); + + expect(approveSessionSpy).toBeCalledWith(sessionApprovalParams); + }); + }); }); diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts index 830d3aa356..4dceb99bef 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts @@ -1,6 +1,7 @@ import { SupportedETHSigningMethods, ethRequestHandler, + methodHandlers, isEthRequest, } from '@lit-protocol/pkp-ethers'; import { LIT_CHAINS } from '@lit-protocol/constants'; @@ -112,51 +113,58 @@ export class PKPWalletConnect { // Parse the session proposal const { id, params } = proposal; const { optionalNamespaces, requiredNamespaces, relays } = params; - let rejected = false; - // Ensure that the PKPClients can support the requested chains + // Ensure that the PKPClients can support the requested session proposal const namespaces: SessionTypes.Namespaces = {}; const requiredNamespaceKeys = Object.keys(requiredNamespaces); for (const key of requiredNamespaceKeys) { - if (!this.supportedChains.includes(key)) continue; - // Check if required chain networks are supported by Lit. If so, get a list of accounts for the given chain const accounts: string[] = []; const chains = requiredNamespaces[key].chains; if (chains) { for (const chain of chains) { let accountsByChain: string[] = []; - if (this.checkIfChainIsSupported(chain)) { - accountsByChain = await this.getAccountsWithPrefix(chain); - // If no accounts are found for the given chain, reject the session proposal - if (accountsByChain.length === 0) { - await this.client.rejectSession({ - id, - reason: getSdkError('UNSUPPORTED_ACCOUNTS'), - }); - rejected = true; - break; - } else { - // Add accounts with prefix to the list of accounts - accounts.push(...accountsByChain); - } - } else { - await this.client.rejectSession({ + if (!this.checkIfChainIsSupported(chain)) { + return await this.client.rejectSession({ id, reason: getSdkError( 'UNSUPPORTED_CHAINS', `${chain} is not supported` ), }); - rejected = true; - break; + } + const supportedMethods = this.filterUnsupportedMethods( + requiredNamespaces[key].methods + ); + if ( + requiredNamespaces[key].methods.length !== supportedMethods.length + ) { + const unsupportedMethods = requiredNamespaces[key].methods.filter( + (method) => !supportedMethods.includes(method) + ); + return await this.client.rejectSession({ + id, + reason: getSdkError( + 'UNSUPPORTED_METHODS', + `Unsupported methods: ${unsupportedMethods.join(', ')}` + ), + }); + } + + accountsByChain = await this.getAccountsWithPrefix(chain); + // If no accounts are found for the given chain, reject the session proposal + if (accountsByChain.length === 0) { + await this.client.rejectSession({ + id, + reason: getSdkError('UNSUPPORTED_ACCOUNTS'), + }); + } else { + // Add accounts with prefix to the list of accounts + accounts.push(...accountsByChain); } } } - // Break if session proposal was rejected - if (rejected) break; - // Construct the session namespace namespaces[key] = { accounts, @@ -186,24 +194,37 @@ export class PKPWalletConnect { } } - // Construct the session namespace - namespaces[key] = { - accounts, - chains: key.includes(':') ? [key] : chains, - methods: optionalNamespaces[key].methods, - events: optionalNamespaces[key].events, - }; - } - - // Reject session proposal if there are no constructed namespaces for required chains and at least one (if all are optional chains) - const supportsAllRequiredChains = requiredNamespaceKeys.every( - (namespaceKey) => namespaces[namespaceKey] - ); - if (!supportsAllRequiredChains || Object.keys(namespaces).length === 0) { - return await this.client.rejectSession({ - id, - reason: getSdkError('UNSUPPORTED_CHAINS'), - }); + // Add to the session namespace but considering what we previously had (a chain can require some methods and have other optional methods) + const optionalNamespaceSupportedMethods = this.filterUnsupportedMethods( + optionalNamespaces[key].methods + ); + if (!namespaces[key]) { + namespaces[key] = { + accounts, + chains: key.includes(':') ? [key] : chains, + methods: optionalNamespaceSupportedMethods, + events: optionalNamespaces[key].events, + }; + } else { + namespaces[key].accounts = [ + ...new Set([...namespaces[key].accounts, ...accounts]), + ]; + namespaces[key].chains = [ + ...new Set([...(namespaces[key].chains || []), ...(chains || [])]), + ]; + namespaces[key].methods = [ + ...new Set([ + ...namespaces[key].methods, + ...optionalNamespaceSupportedMethods, + ]), + ]; + namespaces[key].events = [ + ...new Set([ + ...namespaces[key].events, + ...optionalNamespaces[key].events, + ]), + ]; + } } // Approve session proposal with the constructed session namespace and given relay protocol @@ -579,6 +600,11 @@ export class PKPWalletConnect { } } + public filterUnsupportedMethods(methods: string[]): string[] { + const pkpSupportedMethods = Object.keys(methodHandlers); + return methods.filter((method) => pkpSupportedMethods.includes(method)); + } + /** * Find PKPClient by request event params * From ae564a3e7dd215d9603eb74b70eb9512c351e0f8 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Fri, 14 Jun 2024 13:06:38 +0200 Subject: [PATCH 3/5] feat: edge cases unit test added --- .../src/lib/pkp-walletconnect.spec.ts | 330 ++++++++++++++---- 1 file changed, 270 insertions(+), 60 deletions(-) diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts index 9f642b64cd..5cbd67ce84 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts @@ -5,6 +5,7 @@ import * as LITCONFIG from 'lit.config.json'; import { PKPClient } from '@lit-protocol/pkp-client'; import { Core } from '@walletconnect/core'; import { SignClientTypes } from '@walletconnect/types'; +import { getSdkError } from '@walletconnect/utils'; import { Web3Wallet } from '@walletconnect/web3wallet'; import { PKPWalletConnect } from './pkp-walletconnect'; @@ -124,6 +125,7 @@ describe('PKPWalletConnect', () => { }, pair: jest.fn(), approveSession: jest.fn(), + rejectSession: jest.fn(), }; const config = { @@ -163,82 +165,290 @@ describe('PKPWalletConnect', () => { }); describe('approveSessionProposal', () => { - const sessionProposal = { - id: 1718305417150143, - params: { - id: 1718305417150143, - pairingTopic: - '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', - expiry: 1718305725, - requiredNamespaces: { - eip155: { - methods: ['eth_sendTransaction', 'personal_sign'], - chains: ['eip155:11155111', 'eip155:1'], - events: ['chainChanged', 'accountsChanged'], - }, - }, - optionalNamespaces: { - eip155: { - methods: [ - 'eth_signTransaction', - 'eth_sign', - 'eth_signTypedData', - 'eth_signTypedData_v4', - 'wallet_getCapabilities', - 'wallet_sendCalls', - 'wallet_getCallsStatus', - ], - chains: ['eip155:11155111', 'eip155:1'], - events: [], - }, - }, - relays: [ - { - protocol: 'irn', - }, - ], - proposer: { - publicKey: - '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', - metadata: config.metadata, - }, - expiryTimestamp: 1718305717, - }, - verifyContext: { - verified: { - verifyUrl: '', - validation: 'VALID', - origin: 'https://react-app.walletconnect.com', - }, - }, - } as SignClientTypes.EventArguments['session_proposal']; - const buildSessionApprovalParams = (sessionProposal: SignClientTypes.EventArguments['session_proposal']) => { + const buildEIP155SessionApprovalParams = (eip155SessionProposal: SignClientTypes.EventArguments['session_proposal']) => { + const requiredChains = eip155SessionProposal.params.requiredNamespaces['eip155']?.chains || []; + const optionalChains = eip155SessionProposal.params.optionalNamespaces['eip155']?.chains || []; + const namespaces = { eip155: { - accounts: sessionProposal.params.requiredNamespaces['eip155'].chains!.map((chain) => `${chain}:${PKP_ETH_ADDRESS}`), - chains: [...sessionProposal.params.requiredNamespaces['eip155'].chains!], + accounts: [ + ...new Set([ + ...requiredChains.map((chain) => `${chain}:${PKP_ETH_ADDRESS}`), + ...optionalChains.map((chain) => `${chain}:${PKP_ETH_ADDRESS}`), + ]), + ], + chains: [ + ...new Set([...requiredChains, ...optionalChains]), + ], methods: pkpWalletConnect.filterUnsupportedMethods([ - ...sessionProposal.params.requiredNamespaces['eip155'].methods, - ...sessionProposal.params.optionalNamespaces['eip155'].methods] - ), - events: sessionProposal.params.requiredNamespaces['eip155'].events, + ...eip155SessionProposal.params.requiredNamespaces['eip155']?.methods || [], + ...eip155SessionProposal.params.optionalNamespaces['eip155']?.methods || [], + ]), + events: [ + ...new Set([ + ...eip155SessionProposal.params.requiredNamespaces['eip155']?.events || [], + ...eip155SessionProposal.params.optionalNamespaces['eip155']?.events || [], + ]), + ], }, } return { - id: sessionProposal.id, + id: eip155SessionProposal.id, namespaces, - relayProtocol: sessionProposal.params.relays[0].protocol, + relayProtocol: eip155SessionProposal.params.relays[0].protocol, } } - it('should approve a valid session proposal', async () => { - const sessionApprovalParams = buildSessionApprovalParams(sessionProposal); + it('should approve a valid session proposal removing the unsupported methods and chains', async () => { + const sessionProposal = { + id: 1718305417150143, + params: { + id: 1718305417150143, + pairingTopic: + '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', + expiry: 1718305725, + requiredNamespaces: { + eip155: { + methods: ['eth_sendTransaction', 'personal_sign'], + chains: ['eip155:11155111', 'eip155:1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + optionalNamespaces: { + eip155: { + methods: [ + 'eth_signTransaction', + 'eth_sign', + 'eth_signTypedData', + 'eth_signTypedData_v4', + 'wallet_getCapabilities', + 'wallet_sendCalls', + 'wallet_getCallsStatus', + ], + chains: ['eip155:11155111', 'eip155:1'], + events: [], + }, + cosmos: { + methods: ['cosmos_sendTransaction'], + chains: ['cosmos:cosmoshub-1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + relays: [ + { + protocol: 'irn', + }, + ], + proposer: { + publicKey: + '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', + metadata: config.metadata, + }, + expiryTimestamp: 1718305717, + }, + verifyContext: { + verified: { + verifyUrl: '', + validation: 'VALID', + origin: 'https://react-app.walletconnect.com', + }, + }, + } as SignClientTypes.EventArguments['session_proposal']; + const sessionApprovalParams = buildEIP155SessionApprovalParams(sessionProposal); + const approveSessionSpy = jest.spyOn(web3WalletMock, 'approveSession'); await pkpWalletConnect.approveSessionProposal(sessionProposal); expect(approveSessionSpy).toBeCalledWith(sessionApprovalParams); }); + + it('should approve a valid session proposal with only optional chains', async () => { + const sessionProposal = { + id: 1718305417150143, + params: { + id: 1718305417150143, + pairingTopic: + '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', + expiry: 1718305725, + requiredNamespaces: {}, + optionalNamespaces: { + eip155: { + methods: [ + 'eth_sendTransaction', + 'personal_sign', + 'eth_signTransaction', + 'eth_sign', + 'eth_signTypedData', + 'eth_signTypedData_v4', + 'wallet_getCapabilities', + 'wallet_sendCalls', + 'wallet_getCallsStatus', + ], + chains: ['eip155:11155111', 'eip155:1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + relays: [ + { + protocol: 'irn', + }, + ], + proposer: { + publicKey: + '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', + metadata: config.metadata, + }, + expiryTimestamp: 1718305717, + }, + verifyContext: { + verified: { + verifyUrl: '', + validation: 'VALID', + origin: 'https://react-app.walletconnect.com', + }, + }, + } as SignClientTypes.EventArguments['session_proposal'] + const sessionApprovalParams = buildEIP155SessionApprovalParams(sessionProposal); + + const approveSessionSpy = jest.spyOn(web3WalletMock, 'approveSession'); + + await pkpWalletConnect.approveSessionProposal(sessionProposal); + + expect(approveSessionSpy).toBeCalledWith(sessionApprovalParams); + }); + + it('should reject a session proposal with unsupported required chains', async () => { + const sessionProposal = { + id: 1718305417150143, + params: { + id: 1718305417150143, + pairingTopic: + '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', + expiry: 1718305725, + requiredNamespaces: { + eip155: { + methods: ['eth_sendTransaction', 'personal_sign'], + chains: ['eip155:11155111', 'eip155:1'], + events: ['chainChanged', 'accountsChanged'], + }, + cosmos: { + methods: ['cosmos_sendTransaction'], + chains: ['cosmos:cosmoshub-1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + optionalNamespaces: { + eip155: { + methods: [ + 'eth_signTransaction', + 'eth_sign', + 'eth_signTypedData', + 'eth_signTypedData_v4', + 'wallet_getCapabilities', + 'wallet_sendCalls', + 'wallet_getCallsStatus', + ], + chains: ['eip155:11155111', 'eip155:1'], + events: [], + }, + }, + relays: [ + { + protocol: 'irn', + }, + ], + proposer: { + publicKey: + '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', + metadata: config.metadata, + }, + expiryTimestamp: 1718305717, + }, + verifyContext: { + verified: { + verifyUrl: '', + validation: 'VALID', + origin: 'https://react-app.walletconnect.com', + }, + }, + } as SignClientTypes.EventArguments['session_proposal']; + + const rejectSessionSpy = jest.spyOn(web3WalletMock, 'rejectSession'); + + await pkpWalletConnect.approveSessionProposal(sessionProposal); + + expect(rejectSessionSpy).toBeCalledWith({ + id: sessionProposal.id, + reason: getSdkError( + 'UNSUPPORTED_CHAINS', + `cosmos:cosmoshub-1 is not supported` + ), + }); + }); + + it('should reject a session proposal with unsupported required methods', async () => { + const pkpUnsupportedMethods = [ + 'wallet_getCapabilities', + 'wallet_sendCalls', + 'wallet_getCallsStatus', + ]; + const sessionProposal = { + id: 1718305417150143, + params: { + id: 1718305417150143, + pairingTopic: + '87fecc33cf6d087c4a3f3d49dea484b4c9bc227079a5aa495a59aad72a83b6ac', + expiry: 1718305725, + requiredNamespaces: { + eip155: { + methods: [ + 'eth_sendTransaction', + 'personal_sign', + 'eth_signTransaction', + 'eth_sign', + 'eth_signTypedData', + 'eth_signTypedData_v4', + ...pkpUnsupportedMethods, // Required but unsupported methods + ], + chains: ['eip155:11155111', 'eip155:1'], + events: ['chainChanged', 'accountsChanged'], + }, + }, + optionalNamespaces: {}, + relays: [ + { + protocol: 'irn', + }, + ], + proposer: { + publicKey: + '16ce2bbba695a47507ac0345c4e467a089030c4202db3079bd320e5962a0757a', + metadata: config.metadata, + }, + expiryTimestamp: 1718305717, + }, + verifyContext: { + verified: { + verifyUrl: '', + validation: 'VALID', + origin: 'https://react-app.walletconnect.com', + }, + }, + } as SignClientTypes.EventArguments['session_proposal']; + + const rejectSessionSpy = jest.spyOn(web3WalletMock, 'rejectSession'); + + await pkpWalletConnect.approveSessionProposal(sessionProposal); + + expect(rejectSessionSpy).toBeCalledWith({ + id: sessionProposal.id, + reason: getSdkError( + 'UNSUPPORTED_METHODS', + `Unsupported methods: ${pkpUnsupportedMethods.join(', ')}` + ), + }); + }); }); }); From 3fca0b0af131dfeb5e9a6e1276ad22f3fe6e7692 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Fri, 14 Jun 2024 15:03:28 +0200 Subject: [PATCH 4/5] chore: linting --- .../src/lib/pkp-walletconnect.spec.ts | 40 +++++++++++-------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts index 5cbd67ce84..26fec360b4 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.spec.ts @@ -165,9 +165,13 @@ describe('PKPWalletConnect', () => { }); describe('approveSessionProposal', () => { - const buildEIP155SessionApprovalParams = (eip155SessionProposal: SignClientTypes.EventArguments['session_proposal']) => { - const requiredChains = eip155SessionProposal.params.requiredNamespaces['eip155']?.chains || []; - const optionalChains = eip155SessionProposal.params.optionalNamespaces['eip155']?.chains || []; + const buildEIP155SessionApprovalParams = ( + eip155SessionProposal: SignClientTypes.EventArguments['session_proposal'] + ) => { + const requiredChains = + eip155SessionProposal.params.requiredNamespaces['eip155']?.chains || []; + const optionalChains = + eip155SessionProposal.params.optionalNamespaces['eip155']?.chains || []; const namespaces = { eip155: { @@ -177,28 +181,30 @@ describe('PKPWalletConnect', () => { ...optionalChains.map((chain) => `${chain}:${PKP_ETH_ADDRESS}`), ]), ], - chains: [ - ...new Set([...requiredChains, ...optionalChains]), - ], + chains: [...new Set([...requiredChains, ...optionalChains])], methods: pkpWalletConnect.filterUnsupportedMethods([ - ...eip155SessionProposal.params.requiredNamespaces['eip155']?.methods || [], - ...eip155SessionProposal.params.optionalNamespaces['eip155']?.methods || [], + ...(eip155SessionProposal.params.requiredNamespaces['eip155'] + ?.methods || []), + ...(eip155SessionProposal.params.optionalNamespaces['eip155'] + ?.methods || []), ]), events: [ ...new Set([ - ...eip155SessionProposal.params.requiredNamespaces['eip155']?.events || [], - ...eip155SessionProposal.params.optionalNamespaces['eip155']?.events || [], + ...(eip155SessionProposal.params.requiredNamespaces['eip155'] + ?.events || []), + ...(eip155SessionProposal.params.optionalNamespaces['eip155'] + ?.events || []), ]), ], }, - } + }; return { id: eip155SessionProposal.id, namespaces, relayProtocol: eip155SessionProposal.params.relays[0].protocol, - } - } + }; + }; it('should approve a valid session proposal removing the unsupported methods and chains', async () => { const sessionProposal = { @@ -255,7 +261,8 @@ describe('PKPWalletConnect', () => { }, }, } as SignClientTypes.EventArguments['session_proposal']; - const sessionApprovalParams = buildEIP155SessionApprovalParams(sessionProposal); + const sessionApprovalParams = + buildEIP155SessionApprovalParams(sessionProposal); const approveSessionSpy = jest.spyOn(web3WalletMock, 'approveSession'); @@ -309,8 +316,9 @@ describe('PKPWalletConnect', () => { origin: 'https://react-app.walletconnect.com', }, }, - } as SignClientTypes.EventArguments['session_proposal'] - const sessionApprovalParams = buildEIP155SessionApprovalParams(sessionProposal); + } as SignClientTypes.EventArguments['session_proposal']; + const sessionApprovalParams = + buildEIP155SessionApprovalParams(sessionProposal); const approveSessionSpy = jest.spyOn(web3WalletMock, 'approveSession'); From 0dbbeb8a9e827dac8f2872a10250ac99d0b37050 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Fri, 14 Jun 2024 15:21:51 +0200 Subject: [PATCH 5/5] feat: replace unnecessary supportedChains property with better check using checkIfChainIsSupported --- .../src/lib/pkp-walletconnect.ts | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts index 4dceb99bef..fc60d78d3e 100644 --- a/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts +++ b/packages/pkp-walletconnect/src/lib/pkp-walletconnect.ts @@ -44,8 +44,6 @@ export class PKPWalletConnect { private client: IWeb3Wallet | undefined; // List of PKPClients private pkpClients: PKPClient[] = []; - // Supported chains - private supportedChains: string[] = ['eip155']; // For logging private readonly debug: boolean = false; @@ -175,25 +173,29 @@ export class PKPWalletConnect { } const optionalNamespaceKeys = Object.keys(optionalNamespaces); for (const key of optionalNamespaceKeys) { - if (!this.supportedChains.includes(key)) continue; - // Check if optional chain networks are supported by Lit. If so, get a list of accounts for the given chain const accounts: string[] = []; const chains = optionalNamespaces[key].chains; if (chains) { for (const chain of chains) { let accountsByChain: string[] = []; - if (this.checkIfChainIsSupported(chain)) { - accountsByChain = await this.getAccountsWithPrefix(chain); - // If no accounts are found for the given chain, reject the session proposal - if (accountsByChain.length !== 0) { - // Add accounts with prefix to the list of accounts - accounts.push(...accountsByChain); - } + if (!this.checkIfChainIsSupported(chain)) { + continue; + } + + accountsByChain = await this.getAccountsWithPrefix(chain); + // If no accounts are found for the given chain, reject the session proposal + if (accountsByChain.length !== 0) { + // Add accounts with prefix to the list of accounts + accounts.push(...accountsByChain); } } } + if (!accounts.length) { + continue; + } + // Add to the session namespace but considering what we previously had (a chain can require some methods and have other optional methods) const optionalNamespaceSupportedMethods = this.filterUnsupportedMethods( optionalNamespaces[key].methods