From 360b2c807efd96bf1dfa0cdc28e10440db0fe046 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Wed, 3 Jan 2024 09:42:23 -0700 Subject: [PATCH 01/49] Remove gamestop wallet support as wallet has been deprecated (#2037) --- .../[...4]wallets/[...14]injected/+page.md | 2 -- package.json | 1 - packages/core/package.json | 1 - packages/injected/README.md | 2 -- packages/injected/package.json | 3 +-- packages/injected/src/types.ts | 4 ---- packages/injected/src/wallets.ts | 22 ------------------- packages/react/package.json | 1 - packages/solid/package.json | 1 - packages/vue/package.json | 1 - yarn.lock | 9 ++++++++ 11 files changed, 10 insertions(+), 37 deletions(-) diff --git a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md index 78f965d37..7f0b69295 100644 --- a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md @@ -334,10 +334,8 @@ const injected = injectedModule({ - TP - _Mobile_ - 1inch - _Mobile_ - Tokenary - _Mobile_ -- GameStop - _Desktop_ - Rabby - _Desktop_ - MathWallet - _Desktop & Mobile_ -- Gamestop - _Desktop_ - Bitkeep - _Desktop & Mobile_ - BitGet Wallet - _Desktop & Mobile_ - Sequence - _Desktop & Mobile_ diff --git a/package.json b/package.json index 26fce8371..c1aba3ea0 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet", "Sequence" diff --git a/packages/core/package.json b/packages/core/package.json index baffe1be0..39e556e4a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -31,7 +31,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/injected/README.md b/packages/injected/README.md index df8d3bdce..21cbf0562 100644 --- a/packages/injected/README.md +++ b/packages/injected/README.md @@ -72,10 +72,8 @@ console.log(connectedWallets) - xDefi - _Desktop & Mobile_ - 1inch - _Mobile_ - Tokenary - _Mobile_ -- GameStop - _Desktop_ - Rabby - _Desktop_ - MathWallet - _Desktop & Mobile_ -- Gamestop - _Desktop_ - Bitget - _Desktop & Mobile_ - Sequence - _Desktop & Mobile_ - Core - _Desktop_ diff --git a/packages/injected/package.json b/packages/injected/package.json index 113260e98..fc4c7b637 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.10", + "version": "2.10.11-alpha.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Phantom", "DeFi Wallet", "Fordefi", diff --git a/packages/injected/src/types.ts b/packages/injected/src/types.ts index c8bae9bda..b701c94c1 100644 --- a/packages/injected/src/types.ts +++ b/packages/injected/src/types.ts @@ -47,7 +47,6 @@ export enum ProviderIdentityFlag { BraveWallet = 'isBraveWallet', Rabby = 'isRabby', MathWallet = 'isMathWallet', - GameStop = 'isGamestop', Bitget = 'isBitKeep', Sequence = 'isSequence', Core = 'isAvalanche', @@ -134,7 +133,6 @@ export enum ProviderLabel { Tally = 'Taho', Rabby = 'Rabby Wallet', MathWallet = 'MathWallet', - GameStop = 'GameStop Wallet', Bitget = 'Bitget Wallet', Sequence = 'Sequence', Core = 'Core', @@ -174,7 +172,6 @@ export enum InjectedNameSpace { Web3 = 'web3', Arbitrum = 'arbitrum', XFI = 'xfi', - GameStop = 'gamestop', Bitget = 'bitkeep', Avalanche = 'avalanche', Bitski = 'Bitski', @@ -205,7 +202,6 @@ export interface CustomWindow extends Window { xfi: { ethereum: InjectedProvider } - gamestop: InjectedProvider bitkeep: { ethereum: InjectedProvider } diff --git a/packages/injected/src/wallets.ts b/packages/injected/src/wallets.ts index 3c797737a..7b7a5fc40 100644 --- a/packages/injected/src/wallets.ts +++ b/packages/injected/src/wallets.ts @@ -577,27 +577,6 @@ const mathwallet: InjectedWalletModule = { platforms: ['all'] } -const gamestop: InjectedWalletModule = { - label: ProviderLabel.GameStop, - injectedNamespace: InjectedNameSpace.GameStop, - checkProviderIdentity: ({ provider }) => - !!provider && !!provider[ProviderIdentityFlag.GameStop], - getIcon: async () => (await import('./icons/gamestop.js')).default, - getInterface: async () => { - const provider = createEIP1193Provider(window.gamestop, { - eth_chainId: ({ baseRequest }) => - baseRequest({ method: 'eth_chainId' }).then( - id => `0x${parseInt(id).toString(16)}` - ), - wallet_switchEthereumChain: UNSUPPORTED_METHOD - }) - provider.removeListener = (event, listener) => {} - provider.on = (event, listener) => {} - return { provider } - }, - platforms: ['desktop'] -} - const bitget: InjectedWalletModule = { label: ProviderLabel.Bitget, injectedNamespace: InjectedNameSpace.Bitget, @@ -927,7 +906,6 @@ const wallets = [ tally, rabby, mathwallet, - gamestop, sequence, core, bitski, diff --git a/packages/react/package.json b/packages/react/package.json index 8683e3f6f..2205e1888 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/solid/package.json b/packages/solid/package.json index 49ddda32a..3e0530b55 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/vue/package.json b/packages/vue/package.json index f48ab4b42..97310e66b 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/yarn.lock b/yarn.lock index 4a44f5330..118ce1a9c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6151,6 +6151,15 @@ "@walletconnect/window-getters" "^1.0.1" tslib "1.14.1" +"@web3-onboard/injected-wallets@^2.10.9": + version "2.10.10" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.10.tgz#c938da6fe335e8d5787661f5ef590ab2132796b9" + integrity sha512-n05N6oDsUaZwFVKd76LU8IgzWdqqI2yc9zGxexb8d7QiCcbYZt5YWAcgesKLf/YaZn5/aIodn9BToMRqsdwabg== + dependencies: + "@web3-onboard/common" "^2.3.3" + joi "17.9.1" + lodash.uniqby "^4.7.0" + "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From e48b4d722893b09d6b009d692441ba10f10438d8 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Wed, 3 Jan 2024 09:43:23 -0700 Subject: [PATCH 02/49] Update WC imports, bump WC package version, bump WC dep version (#2036) --- packages/demo/package.json | 2 +- packages/walletconnect/package.json | 4 +- packages/walletconnect/src/walletConnect.ts | 4 +- yarn.lock | 92 ++++++++++++--------- 4 files changed, 57 insertions(+), 45 deletions(-) diff --git a/packages/demo/package.json b/packages/demo/package.json index 9f79cdbbe..dc764b9ea 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -59,7 +59,7 @@ "@web3-onboard/trust": "^2.0.3", "@web3-onboard/uauth": "^2.1.2", "@web3-onboard/venly": "^2.0.0", - "@web3-onboard/walletconnect": "^2.5.2", + "@web3-onboard/walletconnect": "^2.5.3-alpha.1", "@web3-onboard/web3auth": "^2.2.2", "@web3-onboard/xdefi": "^2.0.5", "@web3-onboard/zeal": "^2.0.3", diff --git a/packages/walletconnect/package.json b/packages/walletconnect/package.json index 40458ba74..527627129 100644 --- a/packages/walletconnect/package.json +++ b/packages/walletconnect/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/walletconnect", - "version": "2.5.2", + "version": "2.5.3-alpha.1", "description": "WalletConnect SDK module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -59,7 +59,7 @@ "@walletconnect/types": "^2.9.0" }, "dependencies": { - "@walletconnect/ethereum-provider": "^2.10.6", + "@walletconnect/ethereum-provider": "^2.11.0", "@web3-onboard/common": "^2.3.3", "joi": "17.9.1", "rxjs": "^7.5.2" diff --git a/packages/walletconnect/src/walletConnect.ts b/packages/walletconnect/src/walletConnect.ts index 9a634fd93..1fe428b4c 100644 --- a/packages/walletconnect/src/walletConnect.ts +++ b/packages/walletconnect/src/walletConnect.ts @@ -1,9 +1,7 @@ -import { REQUIRED_METHODS } from '@walletconnect/ethereum-provider' import { isHexString } from './index.js' import type { EthereumProviderOptions } from '@walletconnect/ethereum-provider/dist/types/EthereumProvider' import type { JQueryStyleEventEmitter } from 'rxjs/internal/observable/fromEvent' -import type { EthereumProvider } from '@walletconnect/ethereum-provider' import type { WalletConnectOptions } from './types.js' import type { CoreTypes } from '@walletconnect/types' import type { @@ -58,7 +56,7 @@ function walletConnect(options: WalletConnectOptions): WalletInit { '@web3-onboard/common' ) - const { default: EthereumProvider } = await import( + const { default: EthereumProvider, REQUIRED_METHODS } = await import( '@walletconnect/ethereum-provider' ) diff --git a/yarn.lock b/yarn.lock index 118ce1a9c..f9ec73677 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5368,10 +5368,10 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" -"@walletconnect/core@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.10.6.tgz#786b0d2e2045c210c917e29bfa0498bbc210be20" - integrity sha512-Z4vh4ZdfcoQjgPEOxeuF9HUZCVLtV3MgRbS/awLIj/omDrFnOwlBhxi5Syr4Y8muVGC0ocRetQYHae0/gX5crQ== +"@walletconnect/core@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.0.tgz#3a4e301077b2f858fd916b7a20b5b984d1afce63" + integrity sha512-2Tjp5BCevI7dbmqo/OrCjX4tqgMqwJNQLlQAlphqPfvwlF9+tIu6pGcVbSN3U9zyXzWIZCeleqEaWUeSeET4Ew== dependencies: "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-provider" "1.0.13" @@ -5384,9 +5384,10 @@ "@walletconnect/relay-auth" "^1.0.4" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" + isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" uint8arrays "^3.1.0" @@ -5503,20 +5504,20 @@ "@walletconnect/utils" "2.9.1" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.6.tgz#53720771cc2d6accd452916a853ac927f26acbaa" - integrity sha512-bBQ+yUfxLv8VxNttgNKY7nED35gSVayO/BnLHbNKvyV1gpvSCla5mWB9MsXuQs70MK0g+/qtgRVSrOtdSubaNQ== +"@walletconnect/ethereum-provider@^2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.0.tgz#feb90368d8b2608d7d120ac8feeb3e26eac8c709" + integrity sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA== dependencies: "@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/modal" "^2.4.3" - "@walletconnect/sign-client" "2.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/universal-provider" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/modal" "^2.6.2" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/universal-provider" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -5769,7 +5770,7 @@ "@walletconnect/modal-core" "2.6.1" "@walletconnect/modal-ui" "2.6.1" -"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.4.3": +"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651" integrity sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA== @@ -5862,19 +5863,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/sign-client@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.10.6.tgz#722d2c2844565e2826dce6a6d3a36c9b3ca1ea91" - integrity sha512-EvUWjaZBQu2yKnH5/5F2qzbuiIuUN9ZgrNKgvXkw5z1Dq5RJCks0S9/MFlKH/ZSGqXnLl7uAzBXtoX4sMgbCMA== +"@walletconnect/sign-client@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.0.tgz#de10f976cc1b8ab04b7f7c27f6a298e4e083ab25" + integrity sha512-H2ukscibBS+6WrzQWh+WyVBqO5z4F5et12JcwobdwgHnJSlqIoZxqnUYYWNCI5rUR5UKsKWaUyto4AE9N5dw4Q== dependencies: - "@walletconnect/core" "2.10.6" + "@walletconnect/core" "2.11.0" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/sign-client@2.9.1": @@ -5920,10 +5921,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.10.6.tgz#d9920ed4fd0113e0addbda8e7e73a5176a3163fd" - integrity sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ== +"@walletconnect/types@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.0.tgz#474a009c56faa9ef4063b76ed84415c801dc9f1e" + integrity sha512-AB5b1lrEbCGHxqS2vqfCkIoODieH+ZAUp9rA1O2ftrhnqDJiJK983Df87JhYhECsQUBHHfALphA8ydER0q+9sw== dependencies: "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" @@ -6000,19 +6001,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/universal-provider@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.10.6.tgz#1a6c42517581f11ce275474bc70d0eb4f1044525" - integrity sha512-CEivusqqoD31BhCTKp08DnrccfGjwD9MFjZs5BNRorDteRFE8zVm9LmP6DSiNJCw82ZajGlZThggLQ/BAATfwA== +"@walletconnect/universal-provider@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.0.tgz#89053c2360b5ce766c213ca4e33bb4ce4976b0be" + integrity sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA== dependencies: "@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.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/universal-provider@2.9.1": @@ -6050,10 +6051,10 @@ query-string "7.1.3" uint8arrays "^3.1.0" -"@walletconnect/utils@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.6.tgz#749b37d14e291e346862e7027ec7548463350226" - integrity sha512-oRsWWhN2+hi3aiDXrQEOfysz6FHQJGXLsNQPVt+WIBJplO6Szmdau9dbleD88u1iiT4GKPqE0R9FOYvvPm1H/w== +"@walletconnect/utils@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.0.tgz#31c95151c823022077883dda61800cdea71879b7" + integrity sha512-hxkHPlTlDQILHfIKXlmzgNJau/YcSBC3XHUSuZuKZbNEw3duFT6h6pm3HT/1+j1a22IG05WDsNBuTCRkwss+BQ== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -6063,7 +6064,7 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" + "@walletconnect/types" "2.11.0" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -11274,6 +11275,14 @@ isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= +isomorphic-unfetch@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" + integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== + dependencies: + node-fetch "^2.6.1" + unfetch "^4.2.0" + isomorphic-ws@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" @@ -15836,6 +15845,11 @@ unenv@^1.7.4: node-fetch-native "^1.4.1" pathe "^1.1.1" +unfetch@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" + integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" From 844616b8b5f6e957e5903e0bfe92ef92d55b7df9 Mon Sep 17 00:00:00 2001 From: Max Alekseenko Date: Wed, 10 Jan 2024 18:58:33 +0100 Subject: [PATCH 03/49] Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter --- packages/demo/package.json | 2 +- packages/gnosis/package.json | 2 +- packages/gnosis/src/index.ts | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/demo/package.json b/packages/demo/package.json index dc764b9ea..2ce6b0fd1 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -40,7 +40,7 @@ "@web3-onboard/frame": "^2.0.2", "@web3-onboard/frontier": "^2.0.3", "@web3-onboard/gas": "^2.1.7", - "@web3-onboard/gnosis": "^2.1.10", + "@web3-onboard/gnosis": "^2.2.1-alpha.1", "@web3-onboard/infinity-wallet": "^2.0.3", "@web3-onboard/injected-wallets": "^2.10.9", "@web3-onboard/keepkey": "^2.3.7", diff --git a/packages/gnosis/package.json b/packages/gnosis/package.json index 47579f54b..768481cd0 100644 --- a/packages/gnosis/package.json +++ b/packages/gnosis/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/gnosis", - "version": "2.2.0", + "version": "2.2.1-alpha.1", "description": "Safe module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/gnosis/src/index.ts b/packages/gnosis/src/index.ts index 1500855ad..bc4d9707c 100644 --- a/packages/gnosis/src/index.ts +++ b/packages/gnosis/src/index.ts @@ -1,4 +1,4 @@ -import { WalletInit } from '@web3-onboard/common' +import type { WalletInit } from '@web3-onboard/common' type GnosisOptions = { whitelistedDomains: RegExp[] @@ -8,7 +8,8 @@ function gnosis(options?: GnosisOptions): WalletInit { const { whitelistedDomains = [ /^https:\/\/app\.safe\.global$/, - /^https:\/\/safe\.global$/ + /^https:\/\/safe\.global$/, + /^https:\/\/.*\.blockscout\.com$/ ] } = options || {} @@ -37,7 +38,7 @@ function gnosis(options?: GnosisOptions): WalletInit { SafeAppsSDK.default || SafeAppsSDK const opts = { - whitelistedDomains + allowedDomains: whitelistedDomains } const appsSdk = new SafeAppProviderConstructor(opts) From 3f391cecd3fa3e77d72598b6080b2bd8bd9da5f1 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Thu, 11 Jan 2024 09:55:46 -0700 Subject: [PATCH 04/49] Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko --- .circleci/config.yml | 4 ++-- package.json | 2 +- packages/demo/package.json | 6 +++--- packages/gnosis/package.json | 2 +- packages/injected/package.json | 2 +- packages/walletconnect/package.json | 2 +- yarn.lock | 9 --------- 7 files changed, 9 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bfd613eb..3ec88fd22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -265,7 +265,7 @@ jobs: - node-build-steps build-walletconnect: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/walletconnect steps: - node-build-steps @@ -545,7 +545,7 @@ jobs: - node-staging-build-steps build-staging-walletconnect: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/walletconnect steps: - node-staging-build-steps diff --git a/package.json b/package.json index c1aba3ea0..cff8f5699 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.24.18", + "version": "2.24.19", "private": true, "workspaces": { "packages": [ diff --git a/packages/demo/package.json b/packages/demo/package.json index 2ce6b0fd1..e70082347 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -40,9 +40,9 @@ "@web3-onboard/frame": "^2.0.2", "@web3-onboard/frontier": "^2.0.3", "@web3-onboard/gas": "^2.1.7", - "@web3-onboard/gnosis": "^2.2.1-alpha.1", + "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.9", + "@web3-onboard/injected-wallets": "^2.10.11", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.5.2", @@ -59,7 +59,7 @@ "@web3-onboard/trust": "^2.0.3", "@web3-onboard/uauth": "^2.1.2", "@web3-onboard/venly": "^2.0.0", - "@web3-onboard/walletconnect": "^2.5.3-alpha.1", + "@web3-onboard/walletconnect": "^2.5.3", "@web3-onboard/web3auth": "^2.2.2", "@web3-onboard/xdefi": "^2.0.5", "@web3-onboard/zeal": "^2.0.3", diff --git a/packages/gnosis/package.json b/packages/gnosis/package.json index 768481cd0..cb1a2b1f9 100644 --- a/packages/gnosis/package.json +++ b/packages/gnosis/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/gnosis", - "version": "2.2.1-alpha.1", + "version": "2.2.1", "description": "Safe module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/package.json b/packages/injected/package.json index fc4c7b637..82028ae22 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.11-alpha.1", + "version": "2.10.11", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/walletconnect/package.json b/packages/walletconnect/package.json index 527627129..d3883e2d6 100644 --- a/packages/walletconnect/package.json +++ b/packages/walletconnect/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/walletconnect", - "version": "2.5.3-alpha.1", + "version": "2.5.3", "description": "WalletConnect SDK module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/yarn.lock b/yarn.lock index f9ec73677..b741602b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6152,15 +6152,6 @@ "@walletconnect/window-getters" "^1.0.1" tslib "1.14.1" -"@web3-onboard/injected-wallets@^2.10.9": - version "2.10.10" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.10.tgz#c938da6fe335e8d5787661f5ef590ab2132796b9" - integrity sha512-n05N6oDsUaZwFVKd76LU8IgzWdqqI2yc9zGxexb8d7QiCcbYZt5YWAcgesKLf/YaZn5/aIodn9BToMRqsdwabg== - dependencies: - "@web3-onboard/common" "^2.3.3" - joi "17.9.1" - lodash.uniqby "^4.7.0" - "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From c87eb21c663666d0c54c18a5c8fd1577e53161bf Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Thu, 11 Jan 2024 09:55:48 -0700 Subject: [PATCH 05/49] Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko --- .circleci/config.yml | 4 +- .../[...4]wallets/[...14]injected/+page.md | 2 - package.json | 3 +- packages/core/package.json | 1 - packages/demo/package.json | 6 +- packages/gnosis/package.json | 2 +- packages/gnosis/src/index.ts | 7 +- packages/injected/README.md | 2 - packages/injected/package.json | 3 +- packages/injected/src/types.ts | 4 - packages/injected/src/wallets.ts | 22 ----- packages/react/package.json | 1 - packages/solid/package.json | 1 - packages/vue/package.json | 1 - packages/walletconnect/package.json | 4 +- packages/walletconnect/src/walletConnect.ts | 4 +- yarn.lock | 92 +++++++++++-------- 17 files changed, 68 insertions(+), 91 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bfd613eb..3ec88fd22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -265,7 +265,7 @@ jobs: - node-build-steps build-walletconnect: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/walletconnect steps: - node-build-steps @@ -545,7 +545,7 @@ jobs: - node-staging-build-steps build-staging-walletconnect: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/walletconnect steps: - node-staging-build-steps diff --git a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md index 78f965d37..7f0b69295 100644 --- a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md @@ -334,10 +334,8 @@ const injected = injectedModule({ - TP - _Mobile_ - 1inch - _Mobile_ - Tokenary - _Mobile_ -- GameStop - _Desktop_ - Rabby - _Desktop_ - MathWallet - _Desktop & Mobile_ -- Gamestop - _Desktop_ - Bitkeep - _Desktop & Mobile_ - BitGet Wallet - _Desktop & Mobile_ - Sequence - _Desktop & Mobile_ diff --git a/package.json b/package.json index 26fce8371..cff8f5699 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.24.18", + "version": "2.24.19", "private": true, "workspaces": { "packages": [ @@ -41,7 +41,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet", "Sequence" diff --git a/packages/core/package.json b/packages/core/package.json index baffe1be0..39e556e4a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -31,7 +31,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/demo/package.json b/packages/demo/package.json index 9f79cdbbe..e70082347 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -40,9 +40,9 @@ "@web3-onboard/frame": "^2.0.2", "@web3-onboard/frontier": "^2.0.3", "@web3-onboard/gas": "^2.1.7", - "@web3-onboard/gnosis": "^2.1.10", + "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.9", + "@web3-onboard/injected-wallets": "^2.10.11", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.5.2", @@ -59,7 +59,7 @@ "@web3-onboard/trust": "^2.0.3", "@web3-onboard/uauth": "^2.1.2", "@web3-onboard/venly": "^2.0.0", - "@web3-onboard/walletconnect": "^2.5.2", + "@web3-onboard/walletconnect": "^2.5.3", "@web3-onboard/web3auth": "^2.2.2", "@web3-onboard/xdefi": "^2.0.5", "@web3-onboard/zeal": "^2.0.3", diff --git a/packages/gnosis/package.json b/packages/gnosis/package.json index 47579f54b..cb1a2b1f9 100644 --- a/packages/gnosis/package.json +++ b/packages/gnosis/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/gnosis", - "version": "2.2.0", + "version": "2.2.1", "description": "Safe module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/gnosis/src/index.ts b/packages/gnosis/src/index.ts index 1500855ad..bc4d9707c 100644 --- a/packages/gnosis/src/index.ts +++ b/packages/gnosis/src/index.ts @@ -1,4 +1,4 @@ -import { WalletInit } from '@web3-onboard/common' +import type { WalletInit } from '@web3-onboard/common' type GnosisOptions = { whitelistedDomains: RegExp[] @@ -8,7 +8,8 @@ function gnosis(options?: GnosisOptions): WalletInit { const { whitelistedDomains = [ /^https:\/\/app\.safe\.global$/, - /^https:\/\/safe\.global$/ + /^https:\/\/safe\.global$/, + /^https:\/\/.*\.blockscout\.com$/ ] } = options || {} @@ -37,7 +38,7 @@ function gnosis(options?: GnosisOptions): WalletInit { SafeAppsSDK.default || SafeAppsSDK const opts = { - whitelistedDomains + allowedDomains: whitelistedDomains } const appsSdk = new SafeAppProviderConstructor(opts) diff --git a/packages/injected/README.md b/packages/injected/README.md index df8d3bdce..21cbf0562 100644 --- a/packages/injected/README.md +++ b/packages/injected/README.md @@ -72,10 +72,8 @@ console.log(connectedWallets) - xDefi - _Desktop & Mobile_ - 1inch - _Mobile_ - Tokenary - _Mobile_ -- GameStop - _Desktop_ - Rabby - _Desktop_ - MathWallet - _Desktop & Mobile_ -- Gamestop - _Desktop_ - Bitget - _Desktop & Mobile_ - Sequence - _Desktop & Mobile_ - Core - _Desktop_ diff --git a/packages/injected/package.json b/packages/injected/package.json index 113260e98..82028ae22 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.10", + "version": "2.10.11", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Phantom", "DeFi Wallet", "Fordefi", diff --git a/packages/injected/src/types.ts b/packages/injected/src/types.ts index c8bae9bda..b701c94c1 100644 --- a/packages/injected/src/types.ts +++ b/packages/injected/src/types.ts @@ -47,7 +47,6 @@ export enum ProviderIdentityFlag { BraveWallet = 'isBraveWallet', Rabby = 'isRabby', MathWallet = 'isMathWallet', - GameStop = 'isGamestop', Bitget = 'isBitKeep', Sequence = 'isSequence', Core = 'isAvalanche', @@ -134,7 +133,6 @@ export enum ProviderLabel { Tally = 'Taho', Rabby = 'Rabby Wallet', MathWallet = 'MathWallet', - GameStop = 'GameStop Wallet', Bitget = 'Bitget Wallet', Sequence = 'Sequence', Core = 'Core', @@ -174,7 +172,6 @@ export enum InjectedNameSpace { Web3 = 'web3', Arbitrum = 'arbitrum', XFI = 'xfi', - GameStop = 'gamestop', Bitget = 'bitkeep', Avalanche = 'avalanche', Bitski = 'Bitski', @@ -205,7 +202,6 @@ export interface CustomWindow extends Window { xfi: { ethereum: InjectedProvider } - gamestop: InjectedProvider bitkeep: { ethereum: InjectedProvider } diff --git a/packages/injected/src/wallets.ts b/packages/injected/src/wallets.ts index 3c797737a..7b7a5fc40 100644 --- a/packages/injected/src/wallets.ts +++ b/packages/injected/src/wallets.ts @@ -577,27 +577,6 @@ const mathwallet: InjectedWalletModule = { platforms: ['all'] } -const gamestop: InjectedWalletModule = { - label: ProviderLabel.GameStop, - injectedNamespace: InjectedNameSpace.GameStop, - checkProviderIdentity: ({ provider }) => - !!provider && !!provider[ProviderIdentityFlag.GameStop], - getIcon: async () => (await import('./icons/gamestop.js')).default, - getInterface: async () => { - const provider = createEIP1193Provider(window.gamestop, { - eth_chainId: ({ baseRequest }) => - baseRequest({ method: 'eth_chainId' }).then( - id => `0x${parseInt(id).toString(16)}` - ), - wallet_switchEthereumChain: UNSUPPORTED_METHOD - }) - provider.removeListener = (event, listener) => {} - provider.on = (event, listener) => {} - return { provider } - }, - platforms: ['desktop'] -} - const bitget: InjectedWalletModule = { label: ProviderLabel.Bitget, injectedNamespace: InjectedNameSpace.Bitget, @@ -927,7 +906,6 @@ const wallets = [ tally, rabby, mathwallet, - gamestop, sequence, core, bitski, diff --git a/packages/react/package.json b/packages/react/package.json index 8683e3f6f..2205e1888 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/solid/package.json b/packages/solid/package.json index 49ddda32a..3e0530b55 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/vue/package.json b/packages/vue/package.json index f48ab4b42..97310e66b 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -30,7 +30,6 @@ "pending", "confirmed", "Injected Wallet", - "GameStop", "Crypto", "Crypto Wallet" ], diff --git a/packages/walletconnect/package.json b/packages/walletconnect/package.json index 40458ba74..d3883e2d6 100644 --- a/packages/walletconnect/package.json +++ b/packages/walletconnect/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/walletconnect", - "version": "2.5.2", + "version": "2.5.3", "description": "WalletConnect SDK module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -59,7 +59,7 @@ "@walletconnect/types": "^2.9.0" }, "dependencies": { - "@walletconnect/ethereum-provider": "^2.10.6", + "@walletconnect/ethereum-provider": "^2.11.0", "@web3-onboard/common": "^2.3.3", "joi": "17.9.1", "rxjs": "^7.5.2" diff --git a/packages/walletconnect/src/walletConnect.ts b/packages/walletconnect/src/walletConnect.ts index 9a634fd93..1fe428b4c 100644 --- a/packages/walletconnect/src/walletConnect.ts +++ b/packages/walletconnect/src/walletConnect.ts @@ -1,9 +1,7 @@ -import { REQUIRED_METHODS } from '@walletconnect/ethereum-provider' import { isHexString } from './index.js' import type { EthereumProviderOptions } from '@walletconnect/ethereum-provider/dist/types/EthereumProvider' import type { JQueryStyleEventEmitter } from 'rxjs/internal/observable/fromEvent' -import type { EthereumProvider } from '@walletconnect/ethereum-provider' import type { WalletConnectOptions } from './types.js' import type { CoreTypes } from '@walletconnect/types' import type { @@ -58,7 +56,7 @@ function walletConnect(options: WalletConnectOptions): WalletInit { '@web3-onboard/common' ) - const { default: EthereumProvider } = await import( + const { default: EthereumProvider, REQUIRED_METHODS } = await import( '@walletconnect/ethereum-provider' ) diff --git a/yarn.lock b/yarn.lock index 4a44f5330..b741602b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5368,10 +5368,10 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" -"@walletconnect/core@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.10.6.tgz#786b0d2e2045c210c917e29bfa0498bbc210be20" - integrity sha512-Z4vh4ZdfcoQjgPEOxeuF9HUZCVLtV3MgRbS/awLIj/omDrFnOwlBhxi5Syr4Y8muVGC0ocRetQYHae0/gX5crQ== +"@walletconnect/core@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.0.tgz#3a4e301077b2f858fd916b7a20b5b984d1afce63" + integrity sha512-2Tjp5BCevI7dbmqo/OrCjX4tqgMqwJNQLlQAlphqPfvwlF9+tIu6pGcVbSN3U9zyXzWIZCeleqEaWUeSeET4Ew== dependencies: "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-provider" "1.0.13" @@ -5384,9 +5384,10 @@ "@walletconnect/relay-auth" "^1.0.4" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" + isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" uint8arrays "^3.1.0" @@ -5503,20 +5504,20 @@ "@walletconnect/utils" "2.9.1" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.6.tgz#53720771cc2d6accd452916a853ac927f26acbaa" - integrity sha512-bBQ+yUfxLv8VxNttgNKY7nED35gSVayO/BnLHbNKvyV1gpvSCla5mWB9MsXuQs70MK0g+/qtgRVSrOtdSubaNQ== +"@walletconnect/ethereum-provider@^2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.0.tgz#feb90368d8b2608d7d120ac8feeb3e26eac8c709" + integrity sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA== dependencies: "@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/modal" "^2.4.3" - "@walletconnect/sign-client" "2.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/universal-provider" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/modal" "^2.6.2" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/universal-provider" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -5769,7 +5770,7 @@ "@walletconnect/modal-core" "2.6.1" "@walletconnect/modal-ui" "2.6.1" -"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.4.3": +"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651" integrity sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA== @@ -5862,19 +5863,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/sign-client@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.10.6.tgz#722d2c2844565e2826dce6a6d3a36c9b3ca1ea91" - integrity sha512-EvUWjaZBQu2yKnH5/5F2qzbuiIuUN9ZgrNKgvXkw5z1Dq5RJCks0S9/MFlKH/ZSGqXnLl7uAzBXtoX4sMgbCMA== +"@walletconnect/sign-client@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.0.tgz#de10f976cc1b8ab04b7f7c27f6a298e4e083ab25" + integrity sha512-H2ukscibBS+6WrzQWh+WyVBqO5z4F5et12JcwobdwgHnJSlqIoZxqnUYYWNCI5rUR5UKsKWaUyto4AE9N5dw4Q== dependencies: - "@walletconnect/core" "2.10.6" + "@walletconnect/core" "2.11.0" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/sign-client@2.9.1": @@ -5920,10 +5921,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.10.6.tgz#d9920ed4fd0113e0addbda8e7e73a5176a3163fd" - integrity sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ== +"@walletconnect/types@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.0.tgz#474a009c56faa9ef4063b76ed84415c801dc9f1e" + integrity sha512-AB5b1lrEbCGHxqS2vqfCkIoODieH+ZAUp9rA1O2ftrhnqDJiJK983Df87JhYhECsQUBHHfALphA8ydER0q+9sw== dependencies: "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" @@ -6000,19 +6001,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/universal-provider@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.10.6.tgz#1a6c42517581f11ce275474bc70d0eb4f1044525" - integrity sha512-CEivusqqoD31BhCTKp08DnrccfGjwD9MFjZs5BNRorDteRFE8zVm9LmP6DSiNJCw82ZajGlZThggLQ/BAATfwA== +"@walletconnect/universal-provider@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.0.tgz#89053c2360b5ce766c213ca4e33bb4ce4976b0be" + integrity sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA== dependencies: "@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.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" events "^3.3.0" "@walletconnect/universal-provider@2.9.1": @@ -6050,10 +6051,10 @@ query-string "7.1.3" uint8arrays "^3.1.0" -"@walletconnect/utils@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.6.tgz#749b37d14e291e346862e7027ec7548463350226" - integrity sha512-oRsWWhN2+hi3aiDXrQEOfysz6FHQJGXLsNQPVt+WIBJplO6Szmdau9dbleD88u1iiT4GKPqE0R9FOYvvPm1H/w== +"@walletconnect/utils@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.0.tgz#31c95151c823022077883dda61800cdea71879b7" + integrity sha512-hxkHPlTlDQILHfIKXlmzgNJau/YcSBC3XHUSuZuKZbNEw3duFT6h6pm3HT/1+j1a22IG05WDsNBuTCRkwss+BQ== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -6063,7 +6064,7 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" + "@walletconnect/types" "2.11.0" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -11265,6 +11266,14 @@ isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= +isomorphic-unfetch@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" + integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== + dependencies: + node-fetch "^2.6.1" + unfetch "^4.2.0" + isomorphic-ws@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" @@ -15827,6 +15836,11 @@ unenv@^1.7.4: node-fetch-native "^1.4.1" pathe "^1.1.1" +unfetch@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" + integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" From 9c874eee7aa6d0e15712ea48a3353ddc90342c61 Mon Sep 17 00:00:00 2001 From: Samy Rabah Date: Sat, 3 Feb 2024 00:08:12 +0100 Subject: [PATCH 06/49] load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter --- packages/demo/package.json | 2 +- packages/ledger/package.json | 4 +-- packages/ledger/src/v1.ts | 13 +++------ packages/ledger/src/v2.ts | 17 +++++------ yarn.lock | 55 ++++++++++++++++++++++++++++++++++++ 5 files changed, 69 insertions(+), 22 deletions(-) diff --git a/packages/demo/package.json b/packages/demo/package.json index e70082347..ab5a567d4 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -45,7 +45,7 @@ "@web3-onboard/injected-wallets": "^2.10.11", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", - "@web3-onboard/ledger": "^2.5.2", + "@web3-onboard/ledger": "^2.6.0-alpha.1", "@web3-onboard/magic": "^2.1.6", "@web3-onboard/metamask": "^2.0.2", "@web3-onboard/mew-wallet": "^2.0.3", diff --git a/packages/ledger/package.json b/packages/ledger/package.json index 31eec94aa..80d80b97b 100644 --- a/packages/ledger/package.json +++ b/packages/ledger/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/ledger", - "version": "2.5.2", + "version": "2.6.0-alpha.1", "description": "Ledger hardware wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -60,7 +60,7 @@ }, "dependencies": { "@ethersproject/providers": "5.5.0", - "@ledgerhq/connect-kit-loader": "^1.1.0", + "@ledgerhq/connect-kit": "1.1.12", "@walletconnect/client": "^1.8.0", "@walletconnect/ethereum-provider": "2.9.1", "@walletconnect/modal": "2.6.1", diff --git a/packages/ledger/src/v1.ts b/packages/ledger/src/v1.ts index c8589c011..fa36154f8 100644 --- a/packages/ledger/src/v1.ts +++ b/packages/ledger/src/v1.ts @@ -7,7 +7,7 @@ import { ChainId, AccountAddress } from '@web3-onboard/common' -import type { EthereumProvider } from '@ledgerhq/connect-kit-loader' +import type { EthereumProvider } from '@ledgerhq/connect-kit/dist/umd/index.js' import type { StaticJsonRpcProvider as StaticJsonRpcProviderType } from '@ethersproject/providers' import WalletConnect from '@walletconnect/client' import { isHexString, LedgerOptionsWCv1 } from './index.js' @@ -20,18 +20,13 @@ function ledger( label: 'Ledger', getIcon: async () => (await import('./icon.js')).default, getInterface: async ({ chains, EventEmitter }: GetInterfaceHelpers) => { - const { - loadConnectKit, - SupportedProviders, - SupportedProviderImplementations - } = await import('@ledgerhq/connect-kit-loader') + const connectKit = await import('@ledgerhq/connect-kit/dist/umd') - const connectKit = await loadConnectKit() if (options.enableDebugLogs) { connectKit.enableDebugLogs() } const checkSupportResult = connectKit.checkSupport({ - providerType: SupportedProviders.Ethereum, + providerType: connectKit.SupportedProviders.Ethereum, chainId: options?.chainId, infuraId: options?.infuraId, rpc: options?.rpc @@ -44,7 +39,7 @@ function ledger( // return the Ledger Extension provider if ( checkSupportResult.providerImplementation === - SupportedProviderImplementations.LedgerConnect + connectKit.SupportedProviderImplementations.LedgerConnect ) { return { provider: instance diff --git a/packages/ledger/src/v2.ts b/packages/ledger/src/v2.ts index eefaf4554..230060378 100644 --- a/packages/ledger/src/v2.ts +++ b/packages/ledger/src/v2.ts @@ -4,7 +4,7 @@ import { EIP1193Provider, ProviderAccounts } from '@web3-onboard/common' -import type { EthereumProvider as LedgerEthereumProvider } from '@ledgerhq/connect-kit-loader' +import type { EthereumProvider as LedgerEthereumProvider } from '@ledgerhq/connect-kit/dist/umd/index.js' import { isHexString, LedgerOptionsWCv2 } from './index.js' import type { JQueryStyleEventEmitter } from 'rxjs/internal/observable/fromEvent' @@ -15,7 +15,9 @@ const defaultOptionalMethods = [ 'personal_sign', 'eth_sign', 'eth_signTypedData', - 'eth_signTypedData_v4' + 'eth_signTypedData_v4', + 'wallet_addEthereumChain', + 'wallet_switchEthereumChain' ] function ledger(options?: LedgerOptionsWCv2): WalletInit { @@ -30,13 +32,8 @@ function ledger(options?: LedgerOptionsWCv2): WalletInit { label: 'Ledger', getIcon: async () => (await import('./icon.js')).default, getInterface: async ({ chains, EventEmitter }) => { - const { - loadConnectKit, - SupportedProviders, - SupportedProviderImplementations - } = await import('@ledgerhq/connect-kit-loader') + const connectKit = await import('@ledgerhq/connect-kit/dist/umd') - const connectKit = await loadConnectKit() if (options?.enableDebugLogs) { connectKit.enableDebugLogs() } @@ -54,7 +51,7 @@ function ledger(options?: LedgerOptionsWCv2): WalletInit { : defaultOptionalMethods const checkSupportResult = connectKit.checkSupport({ - providerType: SupportedProviders.Ethereum, + providerType: connectKit.SupportedProviders.Ethereum, walletConnectVersion: 2, projectId: options?.projectId, chains: requiredChains, @@ -79,7 +76,7 @@ function ledger(options?: LedgerOptionsWCv2): WalletInit { // return the Ledger Extension provider if ( checkSupportResult.providerImplementation === - SupportedProviderImplementations.LedgerConnect + connectKit.SupportedProviderImplementations.LedgerConnect ) { return { provider: instance diff --git a/yarn.lock b/yarn.lock index b741602b0..b7cde201a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2742,6 +2742,14 @@ resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.0.tgz#10343b78ef13436818bf3453568a559c0eeb9d48" integrity sha512-HUy12FEczoWY2FPubnsm1uOA8tkVWc0j90i47suThV3C9NL2xx69ZAIEU3Ytzs2bwLek9S1Q2S1VQJvA+3Ygkg== +"@ledgerhq/connect-kit@1.1.12": + version "1.1.12" + resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit/-/connect-kit-1.1.12.tgz#e6782c207a2c8d1f4db603d090c0bbecef02e5fd" + integrity sha512-dmnG2BGBckzaUaqXmkoDxy1+Yvk/simH8NNaZOQaOFk2EfFNsaw5Q3EKrw9tzqjSXmg6t6eGUNPxE0ji9uZprw== + dependencies: + rollup-plugin-dotenv "0.5.0" + uuid "9.0.1" + "@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.0.tgz#3361d6b8c4cb2ac426d5794ac7cd9776cd2f0814" @@ -3487,6 +3495,14 @@ "@rollup/pluginutils" "^3.1.0" magic-string "^0.25.7" +"@rollup/plugin-replace@^5.0.1": + version "5.0.5" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf" + integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + "@rollup/plugin-typescript@^8.0.0": version "8.3.0" resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.3.0.tgz#bc1077fa5897b980fc27e376c4e377882c63e68b" @@ -3504,6 +3520,15 @@ estree-walker "^1.0.1" picomatch "^2.2.2" +"@rollup/pluginutils@^5.0.1": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" + integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^2.3.1" + "@safe-global/safe-apps-provider@^0.17.1": version "0.17.1" resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.17.1.tgz#72df2a66be5343940ed505efe594ed3b0f2f7015" @@ -4617,6 +4642,11 @@ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== +"@types/estree@^1.0.0": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + "@types/ethereumjs-util@^5.2.0": version "5.2.0" resolved "https://registry.yarnpkg.com/@types/ethereumjs-util/-/ethereumjs-util-5.2.0.tgz#f49fe8114789ec0871721392c09318c3eb56671b" @@ -8664,6 +8694,11 @@ domexception@^1.0.1: dependencies: webidl-conversions "^4.0.2" +dotenv@^16.0.3: + version "16.4.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.1.tgz#1d9931f1d3e5d2959350d1250efab299561f7f11" + integrity sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ== + drbg.js@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" @@ -12027,6 +12062,13 @@ magic-string@^0.25.7: dependencies: sourcemap-codec "^1.4.4" +magic-string@^0.30.3: + version "0.30.6" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.6.tgz#996e21b42f944e45591a68f0905d6a740a12506c" + integrity sha512-n62qCLbPjNjyo+owKtveQxZFZTBm+Ms6YoGD23Wew6Vw337PElFNifQpknPruVRQV57kVShPnLGo9vWxVhpPvA== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" @@ -14200,6 +14242,14 @@ rlp@^2.0.0, rlp@^2.2.3, rlp@^2.2.4: dependencies: bn.js "^5.2.0" +rollup-plugin-dotenv@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-dotenv/-/rollup-plugin-dotenv-0.5.0.tgz#c2df297be52f3dcc0ae7fb048e08f906cee112e7" + integrity sha512-M2gZqEZebtcKaA7OBdO4UF3WmkI02wVD6UVwoxFlRKoq4/n1Q9Cw6UV8dPvVZYpGQ+ug2JPoogrCLaydIKU96A== + dependencies: + "@rollup/plugin-replace" "^5.0.1" + dotenv "^16.0.3" + rollup-plugin-svelte@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-7.1.0.tgz#d45f2b92b1014be4eb46b55aa033fb9a9c65f04d" @@ -16011,6 +16061,11 @@ uuid@9.0.0, uuid@^9.0.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== +uuid@9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + uuid@^3.3.2, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" From e71f3eea946f54accd65b2b4e6f0e7803c98d6bf Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Fri, 2 Feb 2024 16:12:39 -0700 Subject: [PATCH 07/49] Bump ledger module node version for build to 16.14.2 (#2062) --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3ec88fd22..f327a16e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - node-build-steps build-ledger: docker: - - image: cimg/node:16.13.1 + - image: cimg/node:16.14.2 working_directory: ~/web3-onboard-monorepo/packages/ledger steps: - node-build-steps @@ -497,7 +497,7 @@ jobs: - node-staging-build-steps build-staging-ledger: docker: - - image: cimg/node:16.13.1 + - image: cimg/node:16.14.2 working_directory: ~/web3-onboard-monorepo/packages/ledger steps: - node-staging-build-steps From 424a3384a2ef9f20c1abd9f4bc36dbba950b3185 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Fri, 2 Feb 2024 16:16:13 -0700 Subject: [PATCH 08/49] Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f327a16e4..9fefd44ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - node-build-steps build-ledger: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/ledger steps: - node-build-steps @@ -497,7 +497,7 @@ jobs: - node-staging-build-steps build-staging-ledger: docker: - - image: cimg/node:16.14.2 + - image: cimg/node:18.0.0 working_directory: ~/web3-onboard-monorepo/packages/ledger steps: - node-staging-build-steps From df16fc4434e30f4a42c9a7a005008eeb996c4118 Mon Sep 17 00:00:00 2001 From: Kean Laurens Date: Mon, 5 Feb 2024 20:05:23 +0400 Subject: [PATCH 09/49] Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter --- .../[...4]wallets/[...14]injected/+page.md | 1 + packages/demo/package.json | 2 +- packages/injected/README.md | 1 + packages/injected/package.json | 2 +- packages/injected/src/constants.ts | 3 +- packages/injected/src/icons/lif3wallet.ts | 38 +++++++++++++++++++ packages/injected/src/types.ts | 9 +++-- packages/injected/src/wallets.ts | 18 ++++++++- 8 files changed, 67 insertions(+), 7 deletions(-) create mode 100644 packages/injected/src/icons/lif3wallet.ts diff --git a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md index 7f0b69295..4b24c91a2 100644 --- a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md @@ -357,6 +357,7 @@ const injected = injectedModule({ - Coin98 Wallet - _Desktop & Mobile_ - SubWallet - _Desktop & Mobile_ - Kayros - _Desktop_ +- Lif3Wallet - _Mobile_ ## Build Environments diff --git a/packages/demo/package.json b/packages/demo/package.json index ab5a567d4..637682b37 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.11", + "@web3-onboard/injected-wallets": "^2.10.12-alpha.1", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.6.0-alpha.1", diff --git a/packages/injected/README.md b/packages/injected/README.md index 21cbf0562..9f0035078 100644 --- a/packages/injected/README.md +++ b/packages/injected/README.md @@ -92,6 +92,7 @@ console.log(connectedWallets) - Coin98 Wallet - _Desktop & Mobile_ - SubWallet - _Desktop & Mobile_ - Kayros - _Desktop_ +- Lif3Wallet - _Mobile_ ## Filtering Wallets diff --git a/packages/injected/package.json b/packages/injected/package.json index 82028ae22..a92d93d54 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.11", + "version": "2.10.12-alpha.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/constants.ts b/packages/injected/src/constants.ts index bb1eda830..7cf52ffdd 100644 --- a/packages/injected/src/constants.ts +++ b/packages/injected/src/constants.ts @@ -33,5 +33,6 @@ export const WALLET_NAMES: { [key: string]: string } = { coin98wallet: 'Coin98 Wallet', SubWallet: 'SubWallet', kayros: 'Kayros', - foxwallet: "FoxWallet" + foxwallet: "FoxWallet", + Lif3Wallet: 'Lif3 Wallet' } diff --git a/packages/injected/src/icons/lif3wallet.ts b/packages/injected/src/icons/lif3wallet.ts new file mode 100644 index 000000000..60bbce299 --- /dev/null +++ b/packages/injected/src/icons/lif3wallet.ts @@ -0,0 +1,38 @@ +export default ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +` \ No newline at end of file diff --git a/packages/injected/src/types.ts b/packages/injected/src/types.ts index b701c94c1..13912c79e 100644 --- a/packages/injected/src/types.ts +++ b/packages/injected/src/types.ts @@ -67,7 +67,8 @@ export enum ProviderIdentityFlag { Coin98Wallet = 'isCoin98', SubWallet = 'isSubWallet', Kayros = 'isKayros', - FoxWallet = 'isFoxWallet' + FoxWallet = 'isFoxWallet', + Lif3Wallet = 'isLif3Wallet', } /** @@ -93,7 +94,8 @@ export enum ProviderExternalUrl { SubWallet = 'https://www.subwallet.app/', Kayros = 'https://www.kayros.games/wallet/', XDEFI = 'https://xdefi.io/', - FoxWallet = 'https://foxwallet.com/download' + FoxWallet = 'https://foxwallet.com/download', + Lif3Wallet = 'https://lif3.com' } export enum ProviderLabel { @@ -152,7 +154,8 @@ export enum ProviderLabel { Coin98Wallet = 'Coin98 Wallet', SubWallet = 'SubWallet', Kayros = 'Kayros', - FoxWallet = 'FoxWallet' + FoxWallet = 'FoxWallet', + Lif3Wallet = 'Lif3 Wallet', } export interface MeetOneProvider extends ExternalProvider { diff --git a/packages/injected/src/wallets.ts b/packages/injected/src/wallets.ts index 7b7a5fc40..966ff9cc6 100644 --- a/packages/injected/src/wallets.ts +++ b/packages/injected/src/wallets.ts @@ -871,6 +871,21 @@ const foxwallet: InjectedWalletModule = { platforms: ['mobile'] } +const Lif3Wallet: InjectedWalletModule = { + label: ProviderLabel.Lif3Wallet, + injectedNamespace: InjectedNameSpace.Ethereum, + checkProviderIdentity: ({ provider }) => + !!provider && !!provider[ProviderIdentityFlag.Lif3Wallet], + getIcon: async () => (await import('./icons/lif3wallet.js')).default, + getInterface: async () => ({ + provider: createEIP1193Provider(window.ethereum, { + wallet_switchEthereumChain: UNSUPPORTED_METHOD, + eth_selectAccounts: UNSUPPORTED_METHOD + }) + }), + platforms: ['mobile'] +} + const wallets = [ zeal, exodus, @@ -925,7 +940,8 @@ const wallets = [ coin98wallet, subwallet, kayros, - foxwallet + foxwallet, + Lif3Wallet ] export default wallets From 2e51cfe336ec4938a4e8c48fbcf68f5be171c94f Mon Sep 17 00:00:00 2001 From: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Date: Tue, 20 Feb 2024 10:52:16 -0700 Subject: [PATCH 10/49] Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> --- README.md | 1 + docs/package.json | 1 + .../[...33]particlenetwork/+page.md | 94 ++++++++ packages/demo/package.json | 1 + packages/demo/src/App.svelte | 10 +- packages/particle-network/README.md | 75 +++++++ packages/particle-network/package.json | 68 ++++++ packages/particle-network/src/apple.svg.ts | 7 + packages/particle-network/src/discord.svg.ts | 7 + packages/particle-network/src/email.svg.ts | 6 + packages/particle-network/src/facebook.svg.ts | 6 + packages/particle-network/src/github.svg.ts | 7 + packages/particle-network/src/google.svg.ts | 201 ++++++++++++++++++ packages/particle-network/src/icon.svg.ts | 54 +++++ packages/particle-network/src/index.ts | 122 +++++++++++ packages/particle-network/src/linkedin.svg.ts | 9 + .../particle-network/src/microsoft.svg.ts | 10 + packages/particle-network/src/phone.svg.ts | 6 + packages/particle-network/src/twitch.svg.ts | 6 + packages/particle-network/src/twitter.svg.ts | 6 + packages/particle-network/tsconfig.json | 15 ++ 21 files changed, 711 insertions(+), 1 deletion(-) create mode 100644 docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md create mode 100644 packages/particle-network/README.md create mode 100644 packages/particle-network/package.json create mode 100644 packages/particle-network/src/apple.svg.ts create mode 100644 packages/particle-network/src/discord.svg.ts create mode 100644 packages/particle-network/src/email.svg.ts create mode 100644 packages/particle-network/src/facebook.svg.ts create mode 100644 packages/particle-network/src/github.svg.ts create mode 100644 packages/particle-network/src/google.svg.ts create mode 100644 packages/particle-network/src/icon.svg.ts create mode 100644 packages/particle-network/src/index.ts create mode 100644 packages/particle-network/src/linkedin.svg.ts create mode 100644 packages/particle-network/src/microsoft.svg.ts create mode 100644 packages/particle-network/src/phone.svg.ts create mode 100644 packages/particle-network/src/twitch.svg.ts create mode 100644 packages/particle-network/src/twitter.svg.ts create mode 100644 packages/particle-network/tsconfig.json diff --git a/README.md b/README.md index 5977a0f44..8707f0b18 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,7 @@ For full documentation, check out the README.md for each package or the [docs pa - [Infinity Wallet](packages/infinity-wallet/README.md) - [Frame](packages/frame/README.md) - [Blocto](packages/blocto/README.md) +- [Particle Network](packages/particle-network/README.md) **Hardware Wallets** diff --git a/docs/package.json b/docs/package.json index 574593a8d..5570feead 100644 --- a/docs/package.json +++ b/docs/package.json @@ -88,6 +88,7 @@ "@web3-onboard/web3auth": "^2.2.3", "@web3-onboard/xdefi": "^2.0.4", "@web3-onboard/zeal": "^2.0.4", + "@web3-onboard/particle-network": "^2.2.3", "animejs": "^3.2.1", "bnc-sdk": "^4.6.6", "ethers": "^5.7.0", diff --git a/docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md b/docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md new file mode 100644 index 000000000..b54aadca8 --- /dev/null +++ b/docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md @@ -0,0 +1,94 @@ +--- +title: Particle Network +--- + +# {$frontmatter.title} + +Wallet module for connecting Particle Network to web3-onboard + +## Install + + + + +```sh copy +yarn add @web3-onboard/particle-network +``` + + + + +```sh copy +npm install @web3-onboard/particle-network +``` + + + + +## Options + +See the [Particle Network Docs](https://docs.particle.network/developers/auth-service/sdks/web) for the extensive list of options. + +## Usage + +```typescript +import Onboard from '@web3-onboard/core' +import particleModule from '@web3-onboard/particle-network' + +const particle = particleModule({ + projectId: 'YOUR PROJECT ID', + clientKey: 'YOUR CLIENT KEY', + appId: 'YOUR APP ID' + // Can also add wallet object + preferredAuthType for further customization +}) + +const onboard = Onboard({ + // ... other Onboard options + wallets: [ + particle + //... other wallets + ] +}) + +const connectedWallets = await onboard.connectWallet() +console.log(connectedWallets) +``` + +## Types + +```typescript +/** + * Enumerates the supported authentication types. + */ +type AuthTypes = 'email' | 'phone' | 'google' | 'apple' | 'twitter' | 'facebook' | 'microsoft' | 'linkedin' | 'github' | 'twitch' | 'discord'; + +/** + * Interface that describes the preferred authentication type. + * @property {AuthTypes} type - The preferred type of authentication. + * @property {boolean} setAsDisplay - Indicates whether the type should be displayed within the UI. + */ +interface PreferredAuthType { + type: AuthTypes; + setAsDisplay: boolean; +} + +/** + * Options for initializing the Particle Auth module. + * @property {string} projectId - Particle Network project ID. + * @property {string} clientKey - Particle Network client key. + * @property {string} appId - Particle Network application ID. + * @property {string} [chainName] - (Optional) Specifies the name of the blockchain. Handled automatically if left blank. + * @property {number} [chainId] - (Optional) Specifies the blockchain's numeric ID. Handled automatically if left blank. + * @property {object} [wallet] - (Optional) Configuration for the wallet. + * @property {AuthTypes | PreferredAuthType} [preferredAuthType] - (Optional) Specifies the preferred type of authentication. + */ +interface ParticleAuthModuleOptions { + projectId: string; + clientKey: string; + appId: string; + chainName?: string; + chainId?: number; + wallet?: object; + preferredAuthType?: AuthTypes | PreferredAuthType; +} +``` diff --git a/packages/demo/package.json b/packages/demo/package.json index 637682b37..b5a432066 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -63,6 +63,7 @@ "@web3-onboard/web3auth": "^2.2.2", "@web3-onboard/xdefi": "^2.0.5", "@web3-onboard/zeal": "^2.0.3", + "@web3-onboard/particle-network": "^2.0.0-alpha.1", "vconsole": "^3.15.1" }, "license": "MIT", diff --git a/packages/demo/src/App.svelte b/packages/demo/src/App.svelte index 991ed86f2..221d14817 100644 --- a/packages/demo/src/App.svelte +++ b/packages/demo/src/App.svelte @@ -34,6 +34,7 @@ import arcanaAuthModule from '@web3-onboard/arcana-auth' import venlyModule from '@web3-onboard/venly' import bitgetModule from '@web3-onboard/bitget' + import particleAuthModule from '@web3-onboard/particle-network' import capsuleModule, { Environment } from '@web3-onboard/capsule' import { recoverAddress, @@ -195,6 +196,12 @@ // for more info see the @web3-onboard/magic docs }) + const particle = particleAuthModule({ + projectId: 'b385ccf0-73c3-485a-9941-159b7855b806', + clientKey: 'cSTLqhvONB5j588Wz6E5WJLMPrHeUlGbymf1DFhO', + appId: 'b1f0239a-edb0-41f9-b0f5-ab780bb02a9e' + }) + const dcent = dcentModule() const bitget = bitgetModule() const frameWallet = frameModule() @@ -247,7 +254,8 @@ cedeStore, arcanaAuth, blocto, - venly + venly, + particle ], // transactionPreview, gas, diff --git a/packages/particle-network/README.md b/packages/particle-network/README.md new file mode 100644 index 000000000..87d440d51 --- /dev/null +++ b/packages/particle-network/README.md @@ -0,0 +1,75 @@ +# @web3-onboard/particle-network + +## Wallet module for connecting Particle Network to web3-onboard + +### Install + +`npm i @web3-onboard/core @web3-onboard/particle-network` + +## Options + +See the [Particle Network Docs](https://docs.particle.network/developers/auth-service/sdks/web) for the extensive list of options. + +## Usage + +```typescript +import Onboard from '@web3-onboard/core' +import particleModule from '@web3-onboard/particle-network' + +const particle = particleModule({ + projectId: 'YOUR PROJECT ID', + clientKey: 'YOUR CLIENT KEY', + appId: 'YOUR APP ID' + // Can also add wallet object + preferredAuthType for further customization +}) + +const onboard = Onboard({ + // ... other Onboard options + wallets: [ + particle + //... other wallets + ] +}) + +const connectedWallets = await onboard.connectWallet() +console.log(connectedWallets) +``` + +## Types + +```typescript +/** + * Enumerates the supported authentication types. + */ +type AuthTypes = 'email' | 'phone' | 'google' | 'apple' | 'twitter' | 'facebook' | 'microsoft' | 'linkedin' | 'github' | 'twitch' | 'discord'; + +/** + * Interface that describes the preferred authentication type. + * @property {AuthTypes} type - The preferred type of authentication. + * @property {boolean} setAsDisplay - Indicates whether the type should be displayed within the UI. + */ +interface PreferredAuthType { + type: AuthTypes; + setAsDisplay: boolean; +} + +/** + * Options for initializing the Particle Auth module. + * @property {string} projectId - Particle Network project ID. + * @property {string} clientKey - Particle Network client key. + * @property {string} appId - Particle Network application ID. + * @property {string} [chainName] - (Optional) Specifies the name of the blockchain. Handled automatically if left blank. + * @property {number} [chainId] - (Optional) Specifies the blockchain's numeric ID. Handled automatically if left blank. + * @property {object} [wallet] - (Optional) Configuration for the wallet. + * @property {AuthTypes | PreferredAuthType} [preferredAuthType] - (Optional) Specifies the preferred type of authentication. + */ +interface ParticleAuthModuleOptions { + projectId: string; + clientKey: string; + appId: string; + chainName?: string; + chainId?: number; + wallet?: object; + preferredAuthType?: AuthTypes | PreferredAuthType; +} +``` \ No newline at end of file diff --git a/packages/particle-network/package.json b/packages/particle-network/package.json new file mode 100644 index 000000000..d7c482000 --- /dev/null +++ b/packages/particle-network/package.json @@ -0,0 +1,68 @@ +{ + "name": "@web3-onboard/particle-network", + "version": "2.0.0-alpha.1", + "description": "Particle Network SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", + "keywords": [ + "Ethereum", + "Web3", + "EVM", + "dapp", + "Multichain", + "Wallet", + "Transaction", + "Provider", + "Hardware Wallet", + "Notifications", + "React", + "Svelte", + "Vue", + "Next", + "Nuxt", + "MetaMask", + "Coinbase", + "WalletConnect", + "Ledger", + "Trezor", + "Connect Wallet", + "Ethereum Hooks", + "Blocknative", + "Mempool", + "pending", + "confirmed", + "Injected Wallet" + ], + "repository": { + "type": "git", + "url": "https://github.com/blocknative/web3-onboard.git", + "directory": "packages/particle-network" + }, + "homepage": "https://onboard.blocknative.com", + "bugs": "https://github.com/blocknative/web3-onboard/issues", + "module": "dist/index.js", + "browser": "dist/index.js", + "main": "dist/index.js", + "type": "module", + "typings": "dist/index.d.ts", + "files": [ + "dist" + ], + "scripts": { + "build": "tsc", + "dev": "tsc -w", + "type-check": "tsc --noEmit" + }, + "license": "MIT", + "devDependencies": { + "react": "^18.2.0", + "typescript": "^4.5.5" + }, + "dependencies": { + "@web3-onboard/common": "^2.3.3", + "@particle-network/auth": "^1.2.1", + "@particle-network/provider": "^1.2.0", + "react-dom": "^18.2.0" + }, + "peerDependencies": { + "react": ">=18.2" + } +} diff --git a/packages/particle-network/src/apple.svg.ts b/packages/particle-network/src/apple.svg.ts new file mode 100644 index 000000000..a5f8d5c7c --- /dev/null +++ b/packages/particle-network/src/apple.svg.ts @@ -0,0 +1,7 @@ +export default ` + + + + + +` diff --git a/packages/particle-network/src/discord.svg.ts b/packages/particle-network/src/discord.svg.ts new file mode 100644 index 000000000..4afb9222b --- /dev/null +++ b/packages/particle-network/src/discord.svg.ts @@ -0,0 +1,7 @@ +export default ` + + + + + +` diff --git a/packages/particle-network/src/email.svg.ts b/packages/particle-network/src/email.svg.ts new file mode 100644 index 000000000..964fb4089 --- /dev/null +++ b/packages/particle-network/src/email.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/facebook.svg.ts b/packages/particle-network/src/facebook.svg.ts new file mode 100644 index 000000000..4fc6736eb --- /dev/null +++ b/packages/particle-network/src/facebook.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/github.svg.ts b/packages/particle-network/src/github.svg.ts new file mode 100644 index 000000000..6ee9b5f8e --- /dev/null +++ b/packages/particle-network/src/github.svg.ts @@ -0,0 +1,7 @@ +export default ` + + + + + +` diff --git a/packages/particle-network/src/google.svg.ts b/packages/particle-network/src/google.svg.ts new file mode 100644 index 000000000..445e7f2ff --- /dev/null +++ b/packages/particle-network/src/google.svg.ts @@ -0,0 +1,201 @@ +export default ` + + + + + + + + + +` diff --git a/packages/particle-network/src/icon.svg.ts b/packages/particle-network/src/icon.svg.ts new file mode 100644 index 000000000..46009ad40 --- /dev/null +++ b/packages/particle-network/src/icon.svg.ts @@ -0,0 +1,54 @@ +export default ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +` diff --git a/packages/particle-network/src/index.ts b/packages/particle-network/src/index.ts new file mode 100644 index 000000000..09c8a1e41 --- /dev/null +++ b/packages/particle-network/src/index.ts @@ -0,0 +1,122 @@ +import { + WalletInit, + EIP1193Provider, + ProviderRpcError, + ProviderRpcErrorCode, + ProviderAccounts +} from '@web3-onboard/common' +import type { Config } from '@particle-network/auth' + +/** + * Represents the different authentication methods available. + * @typedef {'email' | 'phone' | 'google' | 'apple' | 'twitter' | 'facebook' | 'microsoft' | 'linkedin' | 'github' | 'twitch' | 'discord'} AuthTypes + */ +type AuthTypes = + | 'email' + | 'phone' + | 'google' + | 'apple' + | 'twitter' + | 'facebook' + | 'microsoft' + | 'linkedin' + | 'github' + | 'twitch' + | 'discord' + +/** + * Interface for setting a preferred social login type and whether it should be displayed or just routed through the standard menu item. + * @interface + */ +interface PreferredAuthType { + type: AuthTypes + setAsDisplay: boolean +} + +/** + * Configuration options enabling custom authentication type selection, extending the basic Config. + * @interface + * @extends {Config} + */ +interface ParticleAuthModuleOptions extends Config { + preferredAuthType?: AuthTypes | PreferredAuthType +} + +const getDisplayLabel = (authType?: string, shouldSetDisplay?: boolean) => { + if (authType) { + return shouldSetDisplay + ? authType.charAt(0).toUpperCase() + authType.slice(1) + : 'Particle Network' + } + return 'Particle Network' +} + +const particleAuth = (options: ParticleAuthModuleOptions): WalletInit => { + const { preferredAuthType, ...otherOptions } = options + const isAuthTypeObject = typeof preferredAuthType === 'object' + const authType = + isAuthTypeObject && preferredAuthType ? preferredAuthType.type : undefined + const setAsDisplay = + isAuthTypeObject && preferredAuthType + ? preferredAuthType.setAsDisplay + : false + + const displayLabel = getDisplayLabel(authType, setAsDisplay) + + return () => ({ + label: displayLabel, + getIcon: async () => { + const iconName = authType && setAsDisplay ? authType : 'icon' + return (await import(`./${iconName}.svg`)).default + }, + getInterface: async ({ chains }) => { + const { createEIP1193Provider } = await import('@web3-onboard/common') + const { ParticleNetwork } = await import('@particle-network/auth') + const { ParticleProvider } = await import('@particle-network/provider') + let [currentChain] = chains + const { label, id } = currentChain + + const chainName = label + ? label.split(' ')[0].toLowerCase() + : 'defaultChainName' + const chainId = parseInt(id.toString(), 16) + + const particleConfig: Config = { + ...otherOptions, + chainName, + chainId + } + + let particle = new ParticleNetwork(particleConfig) + let provider = new ParticleProvider(particle.auth) + + provider = (function patchProvider(provider: any): any { + const patchedProvider = createEIP1193Provider(provider, { + eth_selectAccounts: null, + eth_requestAccounts: async ({ baseRequest }) => { + try { + const accounts = await baseRequest({ method: 'eth_accounts' }) + return accounts as ProviderAccounts + } catch (error) { + console.error(error) + throw new ProviderRpcError({ + code: ProviderRpcErrorCode.ACCOUNT_ACCESS_REJECTED, + message: 'Account access rejected' + }) + } + } + }) + + patchedProvider.disconnect = () => particle.auth.logout() + return patchedProvider + })(provider) + + return { + provider, + instance: particle + } + } + }) +} + +export default particleAuth diff --git a/packages/particle-network/src/linkedin.svg.ts b/packages/particle-network/src/linkedin.svg.ts new file mode 100644 index 000000000..4f7c28184 --- /dev/null +++ b/packages/particle-network/src/linkedin.svg.ts @@ -0,0 +1,9 @@ +export default ` + + + + + + + +` diff --git a/packages/particle-network/src/microsoft.svg.ts b/packages/particle-network/src/microsoft.svg.ts new file mode 100644 index 000000000..f9c02cfcd --- /dev/null +++ b/packages/particle-network/src/microsoft.svg.ts @@ -0,0 +1,10 @@ +export default ` + + + + + + + + +` diff --git a/packages/particle-network/src/phone.svg.ts b/packages/particle-network/src/phone.svg.ts new file mode 100644 index 000000000..9ebeefc42 --- /dev/null +++ b/packages/particle-network/src/phone.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/twitch.svg.ts b/packages/particle-network/src/twitch.svg.ts new file mode 100644 index 000000000..36934e8a1 --- /dev/null +++ b/packages/particle-network/src/twitch.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/twitter.svg.ts b/packages/particle-network/src/twitter.svg.ts new file mode 100644 index 000000000..d634f321e --- /dev/null +++ b/packages/particle-network/src/twitter.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/tsconfig.json b/packages/particle-network/tsconfig.json new file mode 100644 index 000000000..ea1e11ef0 --- /dev/null +++ b/packages/particle-network/tsconfig.json @@ -0,0 +1,15 @@ +{ + "extends": "../../tsconfig.json", + "include": ["src/**/*"], + + "compilerOptions": { + "module": "es2020", + "outDir": "dist", + "rootDir": "src", + "declarationDir": "dist", + "paths": { + "*": ["./src/*", "./node_modules/*"] + }, + "typeRoots": ["node_modules/@types"] + } +} \ No newline at end of file From 5342079b70c3b18677618f750d2d8519fdc0e38b Mon Sep 17 00:00:00 2001 From: Kat Leight <33187102+leightkt@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:06:58 -0700 Subject: [PATCH 11/49] add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) --- .circleci/config.yml | 18 +++ docs/package.json | 2 +- docs/src/lib/services/onboard.js | 18 ++- .../+page.md | 0 .../+page.md | 0 .../{[...23]portis => [...24]portis}/+page.md | 0 .../{[...24]taho => [...25]taho}/+page.md | 0 .../+page.md | 0 .../{[...26]torus => [...27]torus}/+page.md | 0 .../{[...27]trezor => [...28]trezor}/+page.md | 0 .../{[...28]uauth => [...29]uauth}/+page.md | 0 .../{[...29]venly => [...30]venly}/+page.md | 0 .../+page.md | 0 .../+page.md | 0 .../+page.md | 0 .../{[...33]xdefi => [...34]xdefi}/+page.md | 0 .../{[...34]zeal => [...35]zeal}/+page.md | 0 docs/yarn.lock | 106 ++++++++++-------- yarn.lock | 89 ++++++++++++++- 19 files changed, 177 insertions(+), 56 deletions(-) rename docs/src/routes/docs/[...4]wallets/{[...33]particlenetwork => [...22]particlenetwork}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...22]phantom => [...23]phantom}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...23]portis => [...24]portis}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...24]taho => [...25]taho}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...25]tallyho => [...26]tallyho}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...26]torus => [...27]torus}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...27]trezor => [...28]trezor}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...28]uauth => [...29]uauth}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...29]venly => [...30]venly}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...30]walletconnect => [...31]walletconnect}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...31]walletlink => [...32]walletlink}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...32]web3auth => [...33]web3auth}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...33]xdefi => [...34]xdefi}/+page.md (100%) rename docs/src/routes/docs/[...4]wallets/{[...34]zeal => [...35]zeal}/+page.md (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9fefd44ca..3def8f901 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -443,6 +443,12 @@ jobs: working_directory: ~/web3-onboard-monorepo/packages/capsule steps: - node-build-steps + build-particle: + docker: + - image: cimg/node:18.0.0 + working_directory: ~/web3-onboard-monorepo/packages/particle-network + steps: + - node-build-steps @@ -723,6 +729,12 @@ jobs: working_directory: ~/web3-onboard-monorepo/packages/capsule steps: - node-staging-build-steps + build-staging-particle: + docker: + - image: cimg/node:18.0.0 + working_directory: ~/web3-onboard-monorepo/packages/particle-network + steps: + - node-build-steps workflows: version: 2 @@ -1002,4 +1014,10 @@ workflows: - build-capsule: <<: *deploy_production_filters - build-staging-capsule: + <<: *deploy_staging_filters + particle: + jobs: + - build-particle: + <<: *deploy_production_filters + - build-staging-particle: <<: *deploy_staging_filters \ No newline at end of file diff --git a/docs/package.json b/docs/package.json index 5570feead..8b6493194 100644 --- a/docs/package.json +++ b/docs/package.json @@ -88,7 +88,7 @@ "@web3-onboard/web3auth": "^2.2.3", "@web3-onboard/xdefi": "^2.0.4", "@web3-onboard/zeal": "^2.0.4", - "@web3-onboard/particle-network": "^2.2.3", + "@web3-onboard/particle-network": "^2.0.0-alpha.1", "animejs": "^3.2.1", "bnc-sdk": "^4.6.6", "ethers": "^5.7.0", diff --git a/docs/src/lib/services/onboard.js b/docs/src/lib/services/onboard.js index 3d010cff1..a90c023ee 100644 --- a/docs/src/lib/services/onboard.js +++ b/docs/src/lib/services/onboard.js @@ -59,6 +59,7 @@ const intiOnboard = async (theme) => { const { default: venlyModule } = await import('@web3-onboard/venly') const { default: bitgetModule } = await import('@web3-onboard/bitget') const { default: capsuleModule, Environment } = await import('@web3-onboard/capsule') + const { default: particleAuthModule } = await import('@web3-onboard/particle-network') const INFURA_ID = '8b60d52405694345a99bcb82e722e0af' const injected = injectedModule() @@ -67,11 +68,13 @@ const intiOnboard = async (theme) => { clientID: 'xar_test_c9c3bc702eb13255c58dab0e74cfa859711c13cb' }) const coinbase = coinbaseModule() - const metamask = metamaskModule({options: { - dappMetadata: { - name: 'Web3Onboard', + const metamask = metamaskModule({ + options: { + dappMetadata: { + name: 'Web3Onboard' + } } - }}) + }) const dcent = dcentModule() const walletConnect = walletConnectModule({ projectId: 'f6bd6e2911b56f5ac3bc8b2d0e2d7ad5', @@ -133,6 +136,12 @@ const intiOnboard = async (theme) => { apiKey: '992bbd9146d5de8ad0419f141d9a7ca7' }) + const particle = particleAuthModule({ + projectId: 'b385ccf0-73c3-485a-9941-159b7855b806', + clientKey: 'cSTLqhvONB5j588Wz6E5WJLMPrHeUlGbymf1DFhO', + appId: 'b1f0239a-edb0-41f9-b0f5-ab780bb02a9e' + }) + return Onboard({ connect: { autoConnectAllPreviousWallet: true }, wallets: [ @@ -163,6 +172,7 @@ const intiOnboard = async (theme) => { frame, infinityWallet, blocto, + particle // capsule // venly ], diff --git a/docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md b/docs/src/routes/docs/[...4]wallets/[...22]particlenetwork/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...33]particlenetwork/+page.md rename to docs/src/routes/docs/[...4]wallets/[...22]particlenetwork/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...22]phantom/+page.md b/docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...22]phantom/+page.md rename to docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...23]portis/+page.md b/docs/src/routes/docs/[...4]wallets/[...24]portis/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...23]portis/+page.md rename to docs/src/routes/docs/[...4]wallets/[...24]portis/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...24]taho/+page.md b/docs/src/routes/docs/[...4]wallets/[...25]taho/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...24]taho/+page.md rename to docs/src/routes/docs/[...4]wallets/[...25]taho/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...25]tallyho/+page.md b/docs/src/routes/docs/[...4]wallets/[...26]tallyho/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...25]tallyho/+page.md rename to docs/src/routes/docs/[...4]wallets/[...26]tallyho/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...26]torus/+page.md b/docs/src/routes/docs/[...4]wallets/[...27]torus/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...26]torus/+page.md rename to docs/src/routes/docs/[...4]wallets/[...27]torus/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...27]trezor/+page.md b/docs/src/routes/docs/[...4]wallets/[...28]trezor/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...27]trezor/+page.md rename to docs/src/routes/docs/[...4]wallets/[...28]trezor/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...28]uauth/+page.md b/docs/src/routes/docs/[...4]wallets/[...29]uauth/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...28]uauth/+page.md rename to docs/src/routes/docs/[...4]wallets/[...29]uauth/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...29]venly/+page.md b/docs/src/routes/docs/[...4]wallets/[...30]venly/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...29]venly/+page.md rename to docs/src/routes/docs/[...4]wallets/[...30]venly/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...30]walletconnect/+page.md b/docs/src/routes/docs/[...4]wallets/[...31]walletconnect/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...30]walletconnect/+page.md rename to docs/src/routes/docs/[...4]wallets/[...31]walletconnect/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...31]walletlink/+page.md b/docs/src/routes/docs/[...4]wallets/[...32]walletlink/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...31]walletlink/+page.md rename to docs/src/routes/docs/[...4]wallets/[...32]walletlink/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...32]web3auth/+page.md b/docs/src/routes/docs/[...4]wallets/[...33]web3auth/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...32]web3auth/+page.md rename to docs/src/routes/docs/[...4]wallets/[...33]web3auth/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...33]xdefi/+page.md b/docs/src/routes/docs/[...4]wallets/[...34]xdefi/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...33]xdefi/+page.md rename to docs/src/routes/docs/[...4]wallets/[...34]xdefi/+page.md diff --git a/docs/src/routes/docs/[...4]wallets/[...34]zeal/+page.md b/docs/src/routes/docs/[...4]wallets/[...35]zeal/+page.md similarity index 100% rename from docs/src/routes/docs/[...4]wallets/[...34]zeal/+page.md rename to docs/src/routes/docs/[...4]wallets/[...35]zeal/+page.md diff --git a/docs/yarn.lock b/docs/yarn.lock index 0678d61fc..0b3c5c7d6 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -4892,10 +4892,10 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" -"@walletconnect/core@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.10.6.tgz#786b0d2e2045c210c917e29bfa0498bbc210be20" - integrity sha512-Z4vh4ZdfcoQjgPEOxeuF9HUZCVLtV3MgRbS/awLIj/omDrFnOwlBhxi5Syr4Y8muVGC0ocRetQYHae0/gX5crQ== +"@walletconnect/core@2.11.1": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.1.tgz#da2be26b8b6514c74f06dc9a5ffb450bdec3456d" + integrity sha512-T57Vd7YdbHPsy3tthBuwrhaZNafN0+PqjISFRNeJy/bsKdXxpJg2hGSARuOTpCO7V6VcaatqlaSMuG3DrnG5rA== dependencies: "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-provider" "1.0.13" @@ -4908,9 +4908,10 @@ "@walletconnect/relay-auth" "^1.0.4" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.1" + "@walletconnect/utils" "2.11.1" events "^3.3.0" + isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" uint8arrays "^3.1.0" @@ -5003,20 +5004,20 @@ "@walletconnect/utils" "2.9.0" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.6.tgz#53720771cc2d6accd452916a853ac927f26acbaa" - integrity sha512-bBQ+yUfxLv8VxNttgNKY7nED35gSVayO/BnLHbNKvyV1gpvSCla5mWB9MsXuQs70MK0g+/qtgRVSrOtdSubaNQ== +"@walletconnect/ethereum-provider@^2.11.0": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.1.tgz#6e0174ec9026940eaadeedc53417e222eb45f5aa" + integrity sha512-UfQH0ho24aa2M1xYmanbJv2ggQPebKmQytp2j20QEvURJ2R0v7YKWZ+0PfwOs6o6cuGw6gGxy/0WQXQRZSAsfg== dependencies: "@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/modal" "^2.4.3" - "@walletconnect/sign-client" "2.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/universal-provider" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/modal" "^2.6.2" + "@walletconnect/sign-client" "2.11.1" + "@walletconnect/types" "2.11.1" + "@walletconnect/universal-provider" "2.11.1" + "@walletconnect/utils" "2.11.1" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -5263,7 +5264,7 @@ "@walletconnect/modal-core" "2.5.9" "@walletconnect/modal-ui" "2.5.9" -"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.4.3": +"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651" integrity sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA== @@ -5340,19 +5341,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/sign-client@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.10.6.tgz#722d2c2844565e2826dce6a6d3a36c9b3ca1ea91" - integrity sha512-EvUWjaZBQu2yKnH5/5F2qzbuiIuUN9ZgrNKgvXkw5z1Dq5RJCks0S9/MFlKH/ZSGqXnLl7uAzBXtoX4sMgbCMA== +"@walletconnect/sign-client@2.11.1": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.1.tgz#c073b8d2d594e792bb783d36c8b021bd37a9d4f6" + integrity sha512-s3oKSx6/F5X2WmkV1jfJImBFACf9Km5HpTb+n5q+mobJVpUQw/clvoVyIrNNppLhm1V1S/ylHXh0qCrDppDpCA== dependencies: - "@walletconnect/core" "2.10.6" + "@walletconnect/core" "2.11.1" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/types" "2.11.1" + "@walletconnect/utils" "2.11.1" events "^3.3.0" "@walletconnect/sign-client@2.9.0": @@ -5398,10 +5399,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.10.6.tgz#d9920ed4fd0113e0addbda8e7e73a5176a3163fd" - integrity sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ== +"@walletconnect/types@2.11.1": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.1.tgz#4f705b43ddc286b69eb9bf91bb6e9496d20de0e3" + integrity sha512-UbdbX+d6MOK0AXKxt5imV3KvAcLVpZUHylaRDIP5ffwVylM/p4DHnKppil1Qq5N+IGDr3RsUwLGFkKjqsQYRKw== dependencies: "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" @@ -5454,19 +5455,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/universal-provider@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.10.6.tgz#1a6c42517581f11ce275474bc70d0eb4f1044525" - integrity sha512-CEivusqqoD31BhCTKp08DnrccfGjwD9MFjZs5BNRorDteRFE8zVm9LmP6DSiNJCw82ZajGlZThggLQ/BAATfwA== +"@walletconnect/universal-provider@2.11.1": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.1.tgz#988f2a78325eb52ef7481a220851a56efb209d64" + integrity sha512-BJvPYByIfbBYF4x8mqDV79ebQX0tD54pp8itsqrHWn0qKZeJyIH8sQ69yY0GnbJrzoFS3ZLULdC0yDxWDeuRGw== dependencies: "@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.10.6" - "@walletconnect/types" "2.10.6" - "@walletconnect/utils" "2.10.6" + "@walletconnect/sign-client" "2.11.1" + "@walletconnect/types" "2.11.1" + "@walletconnect/utils" "2.11.1" events "^3.3.0" "@walletconnect/universal-provider@2.9.0": @@ -5504,10 +5505,10 @@ query-string "7.1.3" uint8arrays "^3.1.0" -"@walletconnect/utils@2.10.6": - version "2.10.6" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.6.tgz#749b37d14e291e346862e7027ec7548463350226" - integrity sha512-oRsWWhN2+hi3aiDXrQEOfysz6FHQJGXLsNQPVt+WIBJplO6Szmdau9dbleD88u1iiT4GKPqE0R9FOYvvPm1H/w== +"@walletconnect/utils@2.11.1": + version "2.11.1" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.1.tgz#56116d9c410c6f2ae8d562017cf6876cccb366f1" + integrity sha512-wRFDHN86dZ05mCET1H3912odIeQa8j7cZKxl1FlWRpV2YsILj9HCYSX6Uq2brwO02Kv2vryke44G1r8XI/LViA== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -5517,7 +5518,7 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.6" + "@walletconnect/types" "2.11.1" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -5630,9 +5631,9 @@ "@web3-onboard/common" "^2.3.1" "@web3-onboard/capsule@^2.0.1": - version "2.0.1-alpha.3" - resolved "https://registry.yarnpkg.com/@web3-onboard/capsule/-/capsule-2.0.1-alpha.3.tgz#a2586a1522b3a9662becd6c1f304dcd05126980e" - integrity sha512-FqWFTnoHasthmCvM59KYIzNa0etpyiLCMM63F2K/V9r50CLF8quqlgr36zCRl8fP6flvG3ytupykAyRxTot4XA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/capsule/-/capsule-2.0.1.tgz#e1bd7382f70b1d23f8f67ac2826883ce06a23686" + integrity sha512-R6cg9sGJXJMPMJ7gvOkvev4ZzkNMYomxmwYBuYreqiFH1gqmQxX6zn6vQMSxKF/S16JkLA3S4/wbZ9C6fGNN5w== dependencies: "@usecapsule/web-sdk" "0.29.4" "@wagmi/chains" "^1.8.0" @@ -5930,11 +5931,11 @@ "@web3-onboard/common" "^2.3.1" "@web3-onboard/walletconnect@^2.5.2": - version "2.5.2-alpha.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.2-alpha.1.tgz#70d7a4abcc8a1eef85d04621788d86ee32e16eb9" - integrity sha512-h1yYsB/W/ZfcgsPY8Tit1G1EjcdhZlR34dBnx0boEnz+jTQKk/AIj/v/d3FZfmtZymDfOt6nBz7hEyET3CxkNw== + version "2.5.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.3.tgz#b8f71ee93de8cf151dd31732715bff250fcda293" + integrity sha512-ENrUwXBbja6gXWfF4G2pxhwOodT9MAMPum0E1KPyphzcs+QxjrC+aaXnYUpLLhZsjlAcIWcGrgpmtLP2NDhRXg== dependencies: - "@walletconnect/ethereum-provider" "^2.10.6" + "@walletconnect/ethereum-provider" "^2.11.0" "@web3-onboard/common" "^2.3.3" joi "17.9.1" rxjs "^7.5.2" @@ -9443,6 +9444,14 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isomorphic-unfetch@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" + integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== + dependencies: + node-fetch "^2.6.1" + unfetch "^4.2.0" + isomorphic-ws@5.0.0: version "5.0.0" resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" @@ -12696,6 +12705,11 @@ unenv@^1.7.4: node-fetch-native "^1.4.1" pathe "^1.1.1" +unfetch@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" + integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + unload@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/unload/-/unload-2.4.1.tgz#b0c5b7fb44e17fcbf50dcb8fb53929c59dd226a5" diff --git a/yarn.lock b/yarn.lock index b7cde201a..7fde3be06 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3301,6 +3301,47 @@ "@parcel/watcher-win32-ia32" "2.3.0" "@parcel/watcher-win32-x64" "2.3.0" +"@particle-network/analytics@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/analytics/-/analytics-1.0.1.tgz#b3657cf7aaea57f90a7ac2c03f72b8786c298012" + integrity sha512-ApcSMo1BXQlywO+lvOpG3Y2/SVGNCpJzXO/4e3zHzE/9j+uMehsilDzPwWQwLhrCXZYwVm7mmE71Gs36yobiNw== + dependencies: + hash.js "^1.1.7" + uuidv4 "^6.2.13" + +"@particle-network/auth@^1.2.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@particle-network/auth/-/auth-1.3.1.tgz#f9ee51749e3b10e700e0d8c51a8c0769ab0b9851" + integrity sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw== + dependencies: + "@particle-network/analytics" "^1.0.1" + "@particle-network/chains" "*" + "@particle-network/crypto" "^1.0.1" + buffer "^6.0.3" + draggabilly "^3.0.0" + +"@particle-network/chains@*": + version "1.3.18" + resolved "https://registry.yarnpkg.com/@particle-network/chains/-/chains-1.3.18.tgz#ce763a845f88ff118c27148579de6934ff376298" + integrity sha512-R38ddazbt5Xt8noVA4Fproc89Mm7UmaRvc7Xkl0XP0sp+HaUJjEwFpL4zTCATYb2sUx3cJgV46fVOuD7/2QWIA== + +"@particle-network/crypto@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/crypto/-/crypto-1.0.1.tgz#26afef622a3eb906dca5c810fef8001ffee29029" + integrity sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg== + dependencies: + crypto-js "^4.1.1" + uuidv4 "^6.2.13" + +"@particle-network/provider@^1.2.0": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@particle-network/provider/-/provider-1.3.2.tgz#68ae98cca471c7612206cb43c915719cd321fb25" + integrity sha512-3XAUMCISTMYE57LZik7PrVanLIUyyU1ufb5eHtsoQw5ORfH0IeX3E5o6x5mxtfOXKfxVQ0tsIoLRMw0jMmSDpA== + dependencies: + "@particle-network/chains" "*" + axios "^1.3.6" + uuid "^8.3.2" + "@pedrouid/environment@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec" @@ -4977,6 +5018,11 @@ resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz#b6725d5f4af24ace33b36fafd295136e75509f43" integrity sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== +"@types/uuid@8.3.4": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + "@types/w3c-web-usb@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@types/w3c-web-usb/-/w3c-web-usb-1.0.6.tgz#5d8560d0d9f585ffc80865bc773db7bc975b680c" @@ -6976,7 +7022,7 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== -axios@0.21.1, axios@1.4.0, axios@^0.18.0, axios@^0.21.0, axios@^0.21.2, axios@^0.27.2: +axios@0.21.1, axios@1.4.0, axios@^0.18.0, axios@^0.21.0, axios@^0.21.2, axios@^0.27.2, axios@^1.3.6: version "0.21.4" resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== @@ -8699,6 +8745,14 @@ dotenv@^16.0.3: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.1.tgz#1d9931f1d3e5d2959350d1250efab299561f7f11" integrity sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ== +draggabilly@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/draggabilly/-/draggabilly-3.0.0.tgz#48defe10a67f346a0338caaa40c0765c4d3912d6" + integrity sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ== + dependencies: + get-size "^3.0.0" + unidragger "^3.0.0" + drbg.js@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" @@ -9809,6 +9863,11 @@ ethjs-util@0.1.6, ethjs-util@^0.1.3, ethjs-util@^0.1.6: is-hex-prefixed "1.0.0" strip-hex-prefix "1.0.0" +ev-emitter@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-2.1.2.tgz#91737a2deae9fa95453e7e86cfae976f8c3ced38" + integrity sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q== + event-target-shim@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" @@ -10288,6 +10347,11 @@ get-port-please@^3.1.1: resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.1.tgz#2556623cddb4801d823c0a6a15eec038abb483be" integrity sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA== +get-size@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-size/-/get-size-3.0.0.tgz#00e39a8042a3de237b2fcf288eaf55d3f472417c" + integrity sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw== + get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -15891,6 +15955,13 @@ unfetch@^4.2.0: resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== +unidragger@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/unidragger/-/unidragger-3.0.1.tgz#72b2e63f2571ca6e95a884b139dfec764e08c7f3" + integrity sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw== + dependencies: + ev-emitter "^2.0.0" + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -16056,6 +16127,11 @@ uuid@3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== +uuid@8.3.2, uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@9.0.0, uuid@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" @@ -16071,10 +16147,13 @@ uuid@^3.3.2, uuid@^3.4.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uuidv4@^6.2.13: + version "6.2.13" + resolved "https://registry.yarnpkg.com/uuidv4/-/uuidv4-6.2.13.tgz#8f95ec5ef22d1f92c8e5d4c70b735d1c89572cb7" + integrity sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ== + dependencies: + "@types/uuid" "8.3.4" + uuid "8.3.2" v8-compile-cache-lib@^3.0.0: version "3.0.0" From 5b52b93025631098ce2ea34b67e641993fbb88eb Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Wed, 21 Feb 2024 16:36:13 -0700 Subject: [PATCH 12/49] Add capsule to docs wallet options (#2070) --- docs/src/lib/services/onboard.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/lib/services/onboard.js b/docs/src/lib/services/onboard.js index a90c023ee..fdbef44a4 100644 --- a/docs/src/lib/services/onboard.js +++ b/docs/src/lib/services/onboard.js @@ -172,8 +172,10 @@ const intiOnboard = async (theme) => { frame, infinityWallet, blocto, + capsule, particle // capsule + // venly ], chains: [ From ca2b510dbb463da6f756795f1446ee178060f44d Mon Sep 17 00:00:00 2001 From: Hugh Do Date: Tue, 5 Mar 2024 03:19:48 +0900 Subject: [PATCH 13/49] Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter --- packages/core/package.json | 2 +- packages/core/src/views/connect/Index.svelte | 11 +---------- packages/core/src/views/shared/Modal.svelte | 1 + packages/demo/package.json | 4 ++-- packages/react/package.json | 4 ++-- packages/solid/package.json | 4 ++-- packages/vue/package.json | 4 ++-- 7 files changed, 11 insertions(+), 19 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 39e556e4a..dbc892188 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/core", - "version": "2.21.2", + "version": "2.21.3-alpha.1", "description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/core/src/views/connect/Index.svelte b/packages/core/src/views/connect/Index.svelte index ff984f14d..553c0cc38 100644 --- a/packages/core/src/views/connect/Index.svelte +++ b/packages/core/src/views/connect/Index.svelte @@ -424,10 +424,6 @@ scrollContainer && scrollContainer.scrollTo(0, 0) } - const isSafariMobile = - device.type === 'mobile' && - device.browser.name && - device.browser.name === 'Safari' + + + + + + + +` diff --git a/packages/particle-network/src/icon.svg.ts b/packages/particle-network/src/icon.svg.ts new file mode 100644 index 000000000..46009ad40 --- /dev/null +++ b/packages/particle-network/src/icon.svg.ts @@ -0,0 +1,54 @@ +export default ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +` diff --git a/packages/particle-network/src/index.ts b/packages/particle-network/src/index.ts new file mode 100644 index 000000000..09c8a1e41 --- /dev/null +++ b/packages/particle-network/src/index.ts @@ -0,0 +1,122 @@ +import { + WalletInit, + EIP1193Provider, + ProviderRpcError, + ProviderRpcErrorCode, + ProviderAccounts +} from '@web3-onboard/common' +import type { Config } from '@particle-network/auth' + +/** + * Represents the different authentication methods available. + * @typedef {'email' | 'phone' | 'google' | 'apple' | 'twitter' | 'facebook' | 'microsoft' | 'linkedin' | 'github' | 'twitch' | 'discord'} AuthTypes + */ +type AuthTypes = + | 'email' + | 'phone' + | 'google' + | 'apple' + | 'twitter' + | 'facebook' + | 'microsoft' + | 'linkedin' + | 'github' + | 'twitch' + | 'discord' + +/** + * Interface for setting a preferred social login type and whether it should be displayed or just routed through the standard menu item. + * @interface + */ +interface PreferredAuthType { + type: AuthTypes + setAsDisplay: boolean +} + +/** + * Configuration options enabling custom authentication type selection, extending the basic Config. + * @interface + * @extends {Config} + */ +interface ParticleAuthModuleOptions extends Config { + preferredAuthType?: AuthTypes | PreferredAuthType +} + +const getDisplayLabel = (authType?: string, shouldSetDisplay?: boolean) => { + if (authType) { + return shouldSetDisplay + ? authType.charAt(0).toUpperCase() + authType.slice(1) + : 'Particle Network' + } + return 'Particle Network' +} + +const particleAuth = (options: ParticleAuthModuleOptions): WalletInit => { + const { preferredAuthType, ...otherOptions } = options + const isAuthTypeObject = typeof preferredAuthType === 'object' + const authType = + isAuthTypeObject && preferredAuthType ? preferredAuthType.type : undefined + const setAsDisplay = + isAuthTypeObject && preferredAuthType + ? preferredAuthType.setAsDisplay + : false + + const displayLabel = getDisplayLabel(authType, setAsDisplay) + + return () => ({ + label: displayLabel, + getIcon: async () => { + const iconName = authType && setAsDisplay ? authType : 'icon' + return (await import(`./${iconName}.svg`)).default + }, + getInterface: async ({ chains }) => { + const { createEIP1193Provider } = await import('@web3-onboard/common') + const { ParticleNetwork } = await import('@particle-network/auth') + const { ParticleProvider } = await import('@particle-network/provider') + let [currentChain] = chains + const { label, id } = currentChain + + const chainName = label + ? label.split(' ')[0].toLowerCase() + : 'defaultChainName' + const chainId = parseInt(id.toString(), 16) + + const particleConfig: Config = { + ...otherOptions, + chainName, + chainId + } + + let particle = new ParticleNetwork(particleConfig) + let provider = new ParticleProvider(particle.auth) + + provider = (function patchProvider(provider: any): any { + const patchedProvider = createEIP1193Provider(provider, { + eth_selectAccounts: null, + eth_requestAccounts: async ({ baseRequest }) => { + try { + const accounts = await baseRequest({ method: 'eth_accounts' }) + return accounts as ProviderAccounts + } catch (error) { + console.error(error) + throw new ProviderRpcError({ + code: ProviderRpcErrorCode.ACCOUNT_ACCESS_REJECTED, + message: 'Account access rejected' + }) + } + } + }) + + patchedProvider.disconnect = () => particle.auth.logout() + return patchedProvider + })(provider) + + return { + provider, + instance: particle + } + } + }) +} + +export default particleAuth diff --git a/packages/particle-network/src/linkedin.svg.ts b/packages/particle-network/src/linkedin.svg.ts new file mode 100644 index 000000000..4f7c28184 --- /dev/null +++ b/packages/particle-network/src/linkedin.svg.ts @@ -0,0 +1,9 @@ +export default ` + + + + + + + +` diff --git a/packages/particle-network/src/microsoft.svg.ts b/packages/particle-network/src/microsoft.svg.ts new file mode 100644 index 000000000..f9c02cfcd --- /dev/null +++ b/packages/particle-network/src/microsoft.svg.ts @@ -0,0 +1,10 @@ +export default ` + + + + + + + + +` diff --git a/packages/particle-network/src/phone.svg.ts b/packages/particle-network/src/phone.svg.ts new file mode 100644 index 000000000..9ebeefc42 --- /dev/null +++ b/packages/particle-network/src/phone.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/twitch.svg.ts b/packages/particle-network/src/twitch.svg.ts new file mode 100644 index 000000000..36934e8a1 --- /dev/null +++ b/packages/particle-network/src/twitch.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/src/twitter.svg.ts b/packages/particle-network/src/twitter.svg.ts new file mode 100644 index 000000000..d634f321e --- /dev/null +++ b/packages/particle-network/src/twitter.svg.ts @@ -0,0 +1,6 @@ +export default ` + + + + +` diff --git a/packages/particle-network/tsconfig.json b/packages/particle-network/tsconfig.json new file mode 100644 index 000000000..ea1e11ef0 --- /dev/null +++ b/packages/particle-network/tsconfig.json @@ -0,0 +1,15 @@ +{ + "extends": "../../tsconfig.json", + "include": ["src/**/*"], + + "compilerOptions": { + "module": "es2020", + "outDir": "dist", + "rootDir": "src", + "declarationDir": "dist", + "paths": { + "*": ["./src/*", "./node_modules/*"] + }, + "typeRoots": ["node_modules/@types"] + } +} \ No newline at end of file diff --git a/packages/react/package.json b/packages/react/package.json index 2205e1888..cb9b25596 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.13", + "version": "2.8.14", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.2", + "@web3-onboard/core": "^2.21.3", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index 3e0530b55..dd9dfd56b 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.0", + "version": "2.0.1", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.0", + "@web3-onboard/core": "^2.21.3", "solid-js": "^1.8.1" } } diff --git a/packages/trezor/package.json b/packages/trezor/package.json index 89af97853..23f66376d 100644 --- a/packages/trezor/package.json +++ b/packages/trezor/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/trezor", - "version": "2.4.3", + "version": "2.4.4", "description": "Trezor hardware wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -60,8 +60,8 @@ "dependencies": { "@ethereumjs/tx": "^3.4.0", "@ethersproject/providers": "^5.5.0", - "@web3-onboard/common": "^2.3.3", - "@web3-onboard/hw-common": "^2.3.0", + "@web3-onboard/common": "^2.3.4", + "@web3-onboard/hw-common": "^2.3.1", "buffer": "^6.0.3", "eth-crypto": "^2.1.0", "ethereumjs-util": "^7.1.3", diff --git a/packages/vue/package.json b/packages/vue/package.json index 97310e66b..5294a41bb 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.12", + "version": "2.7.13", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -61,8 +61,8 @@ "dependencies": { "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", - "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.2", + "@web3-onboard/common": "^2.3.4", + "@web3-onboard/core": "^2.21.3", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/packages/walletconnect/package.json b/packages/walletconnect/package.json index d3883e2d6..aeb1d0885 100644 --- a/packages/walletconnect/package.json +++ b/packages/walletconnect/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/walletconnect", - "version": "2.5.3", + "version": "2.5.4", "description": "WalletConnect SDK module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -56,10 +56,10 @@ "license": "MIT", "devDependencies": { "typescript": "^4.5.5", - "@walletconnect/types": "^2.9.0" + "@walletconnect/types": "^2.11.2" }, "dependencies": { - "@walletconnect/ethereum-provider": "^2.11.0", + "@walletconnect/ethereum-provider": "^2.11.2", "@web3-onboard/common": "^2.3.3", "joi": "17.9.1", "rxjs": "^7.5.2" diff --git a/yarn.lock b/yarn.lock index b741602b0..89a2c6428 100644 --- a/yarn.lock +++ b/yarn.lock @@ -546,7 +546,7 @@ dependencies: regenerator-runtime "^0.14.0" -"@babel/runtime@^7.19.4", "@babel/runtime@^7.22.5": +"@babel/runtime@^7.19.4": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== @@ -649,12 +649,11 @@ safe-buffer "^5.1.2" web3 "^1.3.1" -"@blocto/sdk@^0.4.6": - version "0.4.9" - resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.4.9.tgz#646cfea7737d8e5bb4c57885c0bb26d132185826" - integrity sha512-fscOaN4oux/7ySaNCQtltKLIefcZ7J85TpW/LKgAqfbEniBQ3z6SYxkG8ud6SPJs/camfljr+5hRdvcjTZCgGw== +"@blocto/sdk@^0.9.1": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.9.1.tgz#86eb3f972f6bdd78a1c929e271c652f8ec5e1bd0" + integrity sha512-JPBKDUrgTrTc9PaCj1iNleMy68V6DARa93sJa6OBvxkFCtYNxGn+sNCOZqhCU/3YjQ6z75/Mls2oF4kQe/04cw== dependencies: - bs58 "^5.0.0" buffer "^6.0.3" eip1193-provider "^1.0.1" js-sha3 "^0.8.0" @@ -1301,7 +1300,7 @@ dependencies: "@chakra-ui/utils" "1.10.4" -"@coinbase/wallet-sdk@^3.6.6", "@coinbase/wallet-sdk@^3.7.2": +"@coinbase/wallet-sdk@^3.6.6": version "3.7.2" resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.7.2.tgz#7a89bd9e3a06a1f26d4480d8642af33fb0c7e3aa" integrity sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ== @@ -1324,6 +1323,21 @@ stream-browserify "^3.0.0" util "^0.12.4" +"@coinbase/wallet-sdk@^3.9.3": + version "3.9.3" + resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.9.3.tgz#daf10cb0c85d0363315b7270cb3f02bedc408aab" + integrity sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw== + dependencies: + bn.js "^5.2.1" + buffer "^6.0.3" + clsx "^1.2.1" + eth-block-tracker "^7.1.0" + eth-json-rpc-filters "^6.0.0" + eventemitter3 "^5.0.1" + keccak "^3.0.3" + preact "^10.16.0" + sha.js "^2.4.11" + "@cosmjs/amino@0.31.0": version "0.31.0" resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.31.0.tgz#49b33047295002804ad51bdf7ec0c2c97f1b553d" @@ -1499,7 +1513,7 @@ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== -"@emotion/react@^11.10.6", "@emotion/react@^11.10.8": +"@emotion/react@^11.10.8": version "11.11.1" resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157" integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== @@ -1529,7 +1543,7 @@ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== -"@emotion/styled@^11.10.6", "@emotion/styled@^11.10.8": +"@emotion/styled@^11.10.8": version "11.11.0" resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== @@ -1734,6 +1748,14 @@ "@ethereumjs/util" "^8.0.6" crc-32 "^1.2.0" +"@ethereumjs/common@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-3.2.0.tgz#b71df25845caf5456449163012074a55f048e0a0" + integrity sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA== + dependencies: + "@ethereumjs/util" "^8.1.0" + crc-32 "^1.2.0" + "@ethereumjs/rlp@^4.0.0-beta.2": version "4.0.0" resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-4.0.0.tgz#66719891bd727251a7f233f9ca80212d1994f8c8" @@ -1815,6 +1837,16 @@ "@ethereumjs/util" "^8.0.6" ethereum-cryptography "^2.0.0" +"@ethereumjs/tx@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-4.2.0.tgz#5988ae15daf5a3b3c815493bc6b495e76009e853" + integrity sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw== + dependencies: + "@ethereumjs/common" "^3.2.0" + "@ethereumjs/rlp" "^4.0.1" + "@ethereumjs/util" "^8.1.0" + ethereum-cryptography "^2.0.0" + "@ethereumjs/util@^8.0.0": version "8.0.2" resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.0.2.tgz#b7348fc7253649b0f00685a94546c6eee1fad819" @@ -1843,6 +1875,15 @@ ethereum-cryptography "^2.0.0" micro-ftch "^0.3.1" +"@ethereumjs/util@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.1.0.tgz#299df97fb6b034e0577ce9f94c7d9d1004409ed4" + integrity sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA== + dependencies: + "@ethereumjs/rlp" "^4.0.1" + ethereum-cryptography "^2.0.0" + micro-ftch "^0.3.1" + "@ethersproject/abi@5.0.7": version "5.0.7" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.0.7.tgz#79e52452bd3ca2956d0e1c964207a58ad1a0ee7b" @@ -2742,6 +2783,14 @@ resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.0.tgz#10343b78ef13436818bf3453568a559c0eeb9d48" integrity sha512-HUy12FEczoWY2FPubnsm1uOA8tkVWc0j90i47suThV3C9NL2xx69ZAIEU3Ytzs2bwLek9S1Q2S1VQJvA+3Ygkg== +"@ledgerhq/connect-kit@1.1.12": + version "1.1.12" + resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit/-/connect-kit-1.1.12.tgz#e6782c207a2c8d1f4db603d090c0bbecef02e5fd" + integrity sha512-dmnG2BGBckzaUaqXmkoDxy1+Yvk/simH8NNaZOQaOFk2EfFNsaw5Q3EKrw9tzqjSXmg6t6eGUNPxE0ji9uZprw== + dependencies: + rollup-plugin-dotenv "0.5.0" + uuid "9.0.1" + "@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.0.tgz#3361d6b8c4cb2ac426d5794ac7cd9776cd2f0814" @@ -2825,6 +2874,25 @@ tweetnacl "^1.0.3" tweetnacl-util "^0.15.1" +"@metamask/json-rpc-engine@^7.3.2": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-7.3.3.tgz#f2b30a2164558014bfcca45db10f5af291d989af" + integrity sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg== + dependencies: + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + +"@metamask/json-rpc-middleware-stream@^6.0.2": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-middleware-stream/-/json-rpc-middleware-stream-6.0.2.tgz#75852ce481f8f9f091edbfc04ffdf964f8f3cabd" + integrity sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q== + dependencies: + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + readable-stream "^3.6.2" + "@metamask/object-multiplex@^1.1.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-1.2.0.tgz#38fc15c142f61939391e1b9a8eed679696c7e4f4" @@ -2834,6 +2902,14 @@ once "^1.4.0" readable-stream "^2.3.3" +"@metamask/object-multiplex@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-2.0.0.tgz#aa6e4aa7b4e2f457ea4bb51cd7281d931e0aa35d" + integrity sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA== + dependencies: + once "^1.4.0" + readable-stream "^3.6.2" + "@metamask/obs-store@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@metamask/obs-store/-/obs-store-7.0.0.tgz#6cae5f28306bb3e83a381bc9ae22682316095bd3" @@ -2849,31 +2925,23 @@ dependencies: bowser "^2.9.0" -"@metamask/post-message-stream@^6.1.0": - version "6.2.0" - resolved "https://registry.yarnpkg.com/@metamask/post-message-stream/-/post-message-stream-6.2.0.tgz#3db0a50adc2b2206d1bb95739e7fff49e36e0324" - integrity sha512-WunZ0bruClF862mvbKQGETn5SM0XKGmocPMQR1Ew6sYix9/FDzeoZnoI8RkXk01E+70FCdxhTE/r8kk5SFOuTw== +"@metamask/providers@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-15.0.0.tgz#e8957bb89d2f3379b32b60117d79a141e44db2bc" + integrity sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA== dependencies: - "@metamask/utils" "^5.0.0" - readable-stream "2.3.3" - -"@metamask/providers@^10.2.1": - version "10.2.1" - resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-10.2.1.tgz#61304940adeccc7421dcda30ffd1d834273cc77b" - integrity sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA== - dependencies: - "@metamask/object-multiplex" "^1.1.0" - "@metamask/safe-event-emitter" "^2.0.0" - "@types/chrome" "^0.0.136" + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/json-rpc-middleware-stream" "^6.0.2" + "@metamask/object-multiplex" "^2.0.0" + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" detect-browser "^5.2.0" - eth-rpc-errors "^4.0.2" - extension-port-stream "^2.0.1" - fast-deep-equal "^2.0.1" + extension-port-stream "^3.0.0" + fast-deep-equal "^3.1.3" is-stream "^2.0.0" - json-rpc-engine "^6.1.0" - json-rpc-middleware-stream "^4.2.1" - pump "^3.0.0" - webextension-polyfill-ts "^0.25.0" + readable-stream "^3.6.2" + webextension-polyfill "^0.10.0" "@metamask/providers@^8.1.1": version "8.1.1" @@ -2901,6 +2969,14 @@ "@metamask/utils" "^5.0.0" fast-safe-stringify "^2.0.6" +"@metamask/rpc-errors@^6.2.1": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@metamask/rpc-errors/-/rpc-errors-6.2.1.tgz#f5daf429ededa7cb83069dc621bd5738fe2a1d80" + integrity sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw== + dependencies: + "@metamask/utils" "^8.3.0" + fast-safe-stringify "^2.0.6" + "@metamask/safe-event-emitter@2.0.0", "@metamask/safe-event-emitter@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz#af577b477c683fad17c619a78208cede06f9605c" @@ -2911,59 +2987,47 @@ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.0.0.tgz#8c2b9073fe0722d48693143b0dc8448840daa3bd" integrity sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ== -"@metamask/sdk-communication-layer@0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.13.0.tgz#31f4bf1d68b8ff8b74c6485566a8c7f8ffbc86ef" - integrity sha512-5168fUbiKLi29jaYTvySi6VQEqCduITMEKQ+GpSQ1VRfzdezQtk3/hBgozmEtWgoIulNyrx4u4LfzN951+AmIA== +"@metamask/sdk-communication-layer@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.17.0.tgz#890dbcdc983be32fdd9600cc996ede00cc2090fc" + integrity sha512-au1HzkU4VxAWjIvGGhvv/yPlB+x4jEi70c/GpjhHgJ7EG8TJprYy9jAOxfzc8h7hXRzOA8PCkFMzJu5COrJCYA== dependencies: bufferutil "^4.0.8" - cross-fetch "^3.1.5" date-fns "^2.29.3" - eciesjs "^0.3.16" - eventemitter2 "^6.4.5" - socket.io-client "^4.5.1" + debug "^4.3.4" utf-8-validate "^6.0.3" uuid "^8.3.2" -"@metamask/sdk-install-modal-web@0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.13.0.tgz#555b1ef055c0dad264888d75b5acaaa68e8c6e3f" - integrity sha512-962kr1wQ/3JEx4trPhYbdSdfpyApR8eZkzKlChwx+I2SzwIQOGIur6NNqBEebI2b4++9oWAg7OOffeXrHsoWpw== +"@metamask/sdk-install-modal-web@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.17.0.tgz#230e6868f52ff9adcb22ed07ffdfab26cd72a0c7" + integrity sha512-R/Cr3Z2ZDMHkYjp5XUz5gs2yyaFtN1TmvBYueoD++wEH659WmSIL6/HTrU/sTRImvOpxCkF+FihwbYrlqagisw== dependencies: - "@emotion/react" "^11.10.6" - "@emotion/styled" "^11.10.6" - i18next "22.5.1" qr-code-styling "^1.6.0-rc.1" - react "^18.2.0" - react-dom "^18.2.0" - react-i18next "^13.2.2" -"@metamask/sdk@^0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.13.0.tgz#536c1df12ade15507da468c95c7e09d3937b3660" - integrity sha512-CjFnQ58ecAPzV+CoPwszGEAAyjTKwI3RoDlbq/N6LShrF+yC4WvfuVKJ/s2GflMmaLKqshomFP2e9jCT8j0dRA== +"@metamask/sdk@^0.17.1": + version "0.17.1" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.17.1.tgz#a4febeae2306602e74f16e1db9fea56bd01d7fb2" + integrity sha512-Ltb3REkgKVXjJqoK4N7+ZVxbuP9ZYieS/H3ENcl+Un7BEg4ImIoX2XoUXIO1XdCyZHW8QN554mDb9RBR8FQ7Jw== dependencies: "@metamask/onboarding" "^1.0.1" - "@metamask/post-message-stream" "^6.1.0" - "@metamask/providers" "^10.2.1" - "@metamask/sdk-communication-layer" "0.13.0" - "@metamask/sdk-install-modal-web" "0.13.0" - "@react-native-async-storage/async-storage" "^1.17.11" + "@metamask/providers" "^15.0.0" + "@metamask/sdk-communication-layer" "0.17.0" + "@metamask/sdk-install-modal-web" "0.17.0" "@types/dom-screen-wake-lock" "^1.0.0" bowser "^2.9.0" cross-fetch "^4.0.0" + debug "^4.3.4" eciesjs "^0.3.15" eth-rpc-errors "^4.0.3" eventemitter2 "^6.4.7" - extension-port-stream "^2.0.1" i18next "22.5.1" - i18next-browser-languagedetector "^7.1.0" + i18next-browser-languagedetector "7.1.0" obj-multiplex "^1.0.0" pump "^3.0.0" qrcode-terminal-nooctal "^0.12.1" - react-i18next "^13.2.2" react-native-webview "^11.26.0" - readable-stream "^2.3.7" + readable-stream "^3.6.2" rollup-plugin-visualizer "^5.9.2" socket.io-client "^4.5.1" util "^0.12.4" @@ -2990,6 +3054,20 @@ semver "^7.3.8" superstruct "^1.0.3" +"@metamask/utils@^8.3.0": + version "8.3.0" + resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-8.3.0.tgz#a20de447aeb9ffb75924d822a186a597033984b6" + integrity sha512-WFVcMPEkKKRCJ8DDkZUTVbLlpwgRn98F4VM/WzN89HM8PmHMnCyk/oG0AmK/seOxtik7uC7Bbi2YBC5Z5XB2zw== + dependencies: + "@ethereumjs/tx" "^4.2.0" + "@noble/hashes" "^1.3.1" + "@scure/base" "^1.1.3" + "@types/debug" "^4.1.7" + debug "^4.3.4" + pony-cause "^2.1.10" + semver "^7.5.4" + superstruct "^1.0.3" + "@motionone/animation@^10.15.1": version "10.15.1" resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.15.1.tgz#4a85596c31cbc5100ae8eb8b34c459fb0ccf6807" @@ -3293,6 +3371,47 @@ "@parcel/watcher-win32-ia32" "2.3.0" "@parcel/watcher-win32-x64" "2.3.0" +"@particle-network/analytics@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/analytics/-/analytics-1.0.1.tgz#b3657cf7aaea57f90a7ac2c03f72b8786c298012" + integrity sha512-ApcSMo1BXQlywO+lvOpG3Y2/SVGNCpJzXO/4e3zHzE/9j+uMehsilDzPwWQwLhrCXZYwVm7mmE71Gs36yobiNw== + dependencies: + hash.js "^1.1.7" + uuidv4 "^6.2.13" + +"@particle-network/auth@^1.2.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@particle-network/auth/-/auth-1.3.1.tgz#f9ee51749e3b10e700e0d8c51a8c0769ab0b9851" + integrity sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw== + dependencies: + "@particle-network/analytics" "^1.0.1" + "@particle-network/chains" "*" + "@particle-network/crypto" "^1.0.1" + buffer "^6.0.3" + draggabilly "^3.0.0" + +"@particle-network/chains@*": + version "1.3.18" + resolved "https://registry.yarnpkg.com/@particle-network/chains/-/chains-1.3.18.tgz#ce763a845f88ff118c27148579de6934ff376298" + integrity sha512-R38ddazbt5Xt8noVA4Fproc89Mm7UmaRvc7Xkl0XP0sp+HaUJjEwFpL4zTCATYb2sUx3cJgV46fVOuD7/2QWIA== + +"@particle-network/crypto@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/crypto/-/crypto-1.0.1.tgz#26afef622a3eb906dca5c810fef8001ffee29029" + integrity sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg== + dependencies: + crypto-js "^4.1.1" + uuidv4 "^6.2.13" + +"@particle-network/provider@^1.2.0": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@particle-network/provider/-/provider-1.3.2.tgz#68ae98cca471c7612206cb43c915719cd321fb25" + integrity sha512-3XAUMCISTMYE57LZik7PrVanLIUyyU1ufb5eHtsoQw5ORfH0IeX3E5o6x5mxtfOXKfxVQ0tsIoLRMw0jMmSDpA== + dependencies: + "@particle-network/chains" "*" + axios "^1.3.6" + uuid "^8.3.2" + "@pedrouid/environment@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec" @@ -3400,13 +3519,6 @@ prop-types "^15.7.2" tslib "^2.1.0" -"@react-native-async-storage/async-storage@^1.17.11": - version "1.19.3" - resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.19.3.tgz#ad5fe3ed0a82d4624aa4500321c1e09c02daeb46" - integrity sha512-CwGfoHCWdPOTPS+2fW6YRE1fFBpT9++ahLEroX5hkgwyoQ+TkmjOaUxixdEIoVua9Pz5EF2pGOIJzqOTMWfBlA== - dependencies: - merge-options "^3.0.4" - "@rollup-extras/plugin-copy@~1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@rollup-extras/plugin-copy/-/plugin-copy-1.2.2.tgz#77cb6b94d36df25ab008535760fd6ab1321aab34" @@ -3487,6 +3599,14 @@ "@rollup/pluginutils" "^3.1.0" magic-string "^0.25.7" +"@rollup/plugin-replace@^5.0.1": + version "5.0.5" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf" + integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + "@rollup/plugin-typescript@^8.0.0": version "8.3.0" resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.3.0.tgz#bc1077fa5897b980fc27e376c4e377882c63e68b" @@ -3504,6 +3624,15 @@ estree-walker "^1.0.1" picomatch "^2.2.2" +"@rollup/pluginutils@^5.0.1": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" + integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^2.3.1" + "@safe-global/safe-apps-provider@^0.17.1": version "0.17.1" resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.17.1.tgz#72df2a66be5343940ed505efe594ed3b0f2f7015" @@ -3543,6 +3672,11 @@ dependencies: cross-fetch "^3.1.5" +"@scure/base@^1.1.3": + version "1.1.5" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.5.tgz#1d85d17269fe97694b9c592552dd9e5e33552157" + integrity sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ== + "@scure/base@~1.1.0": version "1.1.1" resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938" @@ -4617,6 +4751,11 @@ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== +"@types/estree@^1.0.0": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + "@types/ethereumjs-util@^5.2.0": version "5.2.0" resolved "https://registry.yarnpkg.com/@types/ethereumjs-util/-/ethereumjs-util-5.2.0.tgz#f49fe8114789ec0871721392c09318c3eb56671b" @@ -4947,6 +5086,11 @@ resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz#b6725d5f4af24ace33b36fafd295136e75509f43" integrity sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== +"@types/uuid@8.3.4": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + "@types/w3c-web-usb@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@types/w3c-web-usb/-/w3c-web-usb-1.0.6.tgz#5d8560d0d9f585ffc80865bc773db7bc975b680c" @@ -5368,10 +5512,10 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" -"@walletconnect/core@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.0.tgz#3a4e301077b2f858fd916b7a20b5b984d1afce63" - integrity sha512-2Tjp5BCevI7dbmqo/OrCjX4tqgMqwJNQLlQAlphqPfvwlF9+tIu6pGcVbSN3U9zyXzWIZCeleqEaWUeSeET4Ew== +"@walletconnect/core@2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.2.tgz#35286be92c645fa461fecc0dfe25de9f076fca8f" + integrity sha512-bB4SiXX8hX3/hyBfVPC5gwZCXCl+OPj+/EDVM71iAO3TDsh78KPbrVAbDnnsbHzZVHlsMohtXX3j5XVsheN3+g== dependencies: "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-provider" "1.0.13" @@ -5384,8 +5528,8 @@ "@walletconnect/relay-auth" "^1.0.4" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.0" - "@walletconnect/utils" "2.11.0" + "@walletconnect/types" "2.11.2" + "@walletconnect/utils" "2.11.2" events "^3.3.0" isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" @@ -5504,20 +5648,20 @@ "@walletconnect/utils" "2.9.1" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.0.tgz#feb90368d8b2608d7d120ac8feeb3e26eac8c709" - integrity sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA== +"@walletconnect/ethereum-provider@^2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.2.tgz#914f773e37a879bc00cf367437c4e98a826247b1" + integrity sha512-BUDqee0Uy2rCZVkW5Ao3q6Ado/3fePYnFdryVF+YL6bPhj+xQZ5OfKodl+uvs7Rwq++O5wTX2RqOTzpW7+v+Mg== dependencies: "@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/modal" "^2.6.2" - "@walletconnect/sign-client" "2.11.0" - "@walletconnect/types" "2.11.0" - "@walletconnect/universal-provider" "2.11.0" - "@walletconnect/utils" "2.11.0" + "@walletconnect/sign-client" "2.11.2" + "@walletconnect/types" "2.11.2" + "@walletconnect/universal-provider" "2.11.2" + "@walletconnect/utils" "2.11.2" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -5863,19 +6007,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/sign-client@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.0.tgz#de10f976cc1b8ab04b7f7c27f6a298e4e083ab25" - integrity sha512-H2ukscibBS+6WrzQWh+WyVBqO5z4F5et12JcwobdwgHnJSlqIoZxqnUYYWNCI5rUR5UKsKWaUyto4AE9N5dw4Q== +"@walletconnect/sign-client@2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.2.tgz#855609653855f0d23b0502cdbdcf43402e34c459" + integrity sha512-MfBcuSz2GmMH+P7MrCP46mVE5qhP0ZyWA0FyIH6/WuxQ6G+MgKsGfaITqakpRPsykWOJq8tXMs3XvUPDU413OQ== dependencies: - "@walletconnect/core" "2.11.0" + "@walletconnect/core" "2.11.2" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.0" - "@walletconnect/utils" "2.11.0" + "@walletconnect/types" "2.11.2" + "@walletconnect/utils" "2.11.2" events "^3.3.0" "@walletconnect/sign-client@2.9.1": @@ -5921,10 +6065,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.0.tgz#474a009c56faa9ef4063b76ed84415c801dc9f1e" - integrity sha512-AB5b1lrEbCGHxqS2vqfCkIoODieH+ZAUp9rA1O2ftrhnqDJiJK983Df87JhYhECsQUBHHfALphA8ydER0q+9sw== +"@walletconnect/types@2.11.2", "@walletconnect/types@^2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.2.tgz#d0359dd4106fcaa1634241a00428d3ea08d0d3c7" + integrity sha512-p632MFB+lJbip2cvtXPBQslpUdiw1sDtQ5y855bOlAGquay+6fZ4h1DcDePeKQDQM3P77ax2a9aNPZxV6y/h1Q== dependencies: "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" @@ -5974,18 +6118,6 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@^2.9.0": - version "2.9.0" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.9.0.tgz#6e5dfdc7212c1ec4ab49a1ec409c743e16093f72" - integrity sha512-ORopsMfSRvUYqtjKKd6scfg8o4/aGebipLxx92AuuUgMTERSU6cGmIrK6rdLu7W6FBJkmngPLEGc9mRqAb9Lug== - dependencies: - "@walletconnect/events" "^1.0.1" - "@walletconnect/heartbeat" "1.2.1" - "@walletconnect/jsonrpc-types" "1.0.3" - "@walletconnect/keyvaluestorage" "^1.0.2" - "@walletconnect/logger" "^2.0.1" - events "^3.3.0" - "@walletconnect/universal-provider@2.10.2": version "2.10.2" resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.10.2.tgz#85c8da39f65da8fe33f65f62689e703607b5ddc5" @@ -6001,19 +6133,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/universal-provider@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.0.tgz#89053c2360b5ce766c213ca4e33bb4ce4976b0be" - integrity sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA== +"@walletconnect/universal-provider@2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.2.tgz#bec3038f51445d707bbec75f0cb8af0a1f1e04db" + integrity sha512-cNtIn5AVoDxKAJ4PmB8m5adnf5mYQMUamEUPKMVvOPscfGtIMQEh9peKsh2AN5xcRVDbgluC01Id545evFyymw== dependencies: "@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.11.0" - "@walletconnect/types" "2.11.0" - "@walletconnect/utils" "2.11.0" + "@walletconnect/sign-client" "2.11.2" + "@walletconnect/types" "2.11.2" + "@walletconnect/utils" "2.11.2" events "^3.3.0" "@walletconnect/universal-provider@2.9.1": @@ -6051,10 +6183,10 @@ query-string "7.1.3" uint8arrays "^3.1.0" -"@walletconnect/utils@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.0.tgz#31c95151c823022077883dda61800cdea71879b7" - integrity sha512-hxkHPlTlDQILHfIKXlmzgNJau/YcSBC3XHUSuZuKZbNEw3duFT6h6pm3HT/1+j1a22IG05WDsNBuTCRkwss+BQ== +"@walletconnect/utils@2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.2.tgz#dee0f19adf5e38543612cbe9fa4de7ed28eb7e85" + integrity sha512-LyfdmrnZY6dWqlF4eDrx5jpUwsB2bEPjoqR5Z6rXPiHJKUOdJt7az+mNOn5KTSOlRpd1DmozrBrWr+G9fFLYVw== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -6064,7 +6196,7 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.0" + "@walletconnect/types" "2.11.2" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -6152,6 +6284,15 @@ "@walletconnect/window-getters" "^1.0.1" tslib "1.14.1" +"@web3-onboard/common@2.3.3": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/common/-/common-2.3.3.tgz#02096e967dbed272c0637cda955902b96a0fce06" + integrity sha512-Ytppszqe77VY8WglRdr/Lfx+HmcZ2hXQEkBA23JaVYmzKvP/mC6j+sjGUD8CgXDpRRxyKoiRj6nz95GRABie6Q== + dependencies: + bignumber.js "^9.1.0" + ethers "5.5.4" + joi "17.9.1" + "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" @@ -6946,7 +7087,7 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== -axios@0.21.1, axios@1.4.0, axios@^0.18.0, axios@^0.21.0, axios@^0.21.2, axios@^0.27.2: +axios@0.21.1, axios@1.4.0, axios@^0.18.0, axios@^0.21.0, axios@^0.21.2, axios@^0.27.2, axios@^1.3.6: version "0.21.4" resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== @@ -7849,6 +7990,11 @@ clsx@^1.1.0: resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== +clsx@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + cluster-key-slot@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz#88ddaa46906e303b5de30d3153b7d9fe0a0c19ac" @@ -8664,6 +8810,19 @@ domexception@^1.0.1: dependencies: webidl-conversions "^4.0.2" +dotenv@^16.0.3: + version "16.4.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.1.tgz#1d9931f1d3e5d2959350d1250efab299561f7f11" + integrity sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ== + +draggabilly@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/draggabilly/-/draggabilly-3.0.0.tgz#48defe10a67f346a0338caaa40c0765c4d3912d6" + integrity sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ== + dependencies: + get-size "^3.0.0" + unidragger "^3.0.0" + drbg.js@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" @@ -8713,7 +8872,7 @@ eccrypto@1.1.6, eccrypto@^1.1.6: optionalDependencies: secp256k1 "3.7.1" -eciesjs@^0.3.15, eciesjs@^0.3.16: +eciesjs@^0.3.15: version "0.3.17" resolved "https://registry.yarnpkg.com/eciesjs/-/eciesjs-0.3.17.tgz#367b2b442c2e394f734a9f3b9a45ec7c3d144d9f" integrity sha512-DKaAvHvFHTApJDFsA2ZbOJilVNXDV8JpOtbnJe/UcwTXjE7eB6TDJnu/SF1bqb7X3b/XYmR6wzO2Ge54AOMHQA== @@ -9264,6 +9423,17 @@ eth-block-tracker@^7.0.0: json-rpc-random-id "^1.0.1" pify "^3.0.0" +eth-block-tracker@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-7.1.0.tgz#dfc16085c6817cc30caabba381deb8d204c1c766" + integrity sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg== + dependencies: + "@metamask/eth-json-rpc-provider" "^1.0.0" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^5.0.1" + json-rpc-random-id "^1.0.1" + pify "^3.0.0" + eth-crypto@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/eth-crypto/-/eth-crypto-2.2.0.tgz#8fa9bd7b04ee256d0e755d73e9a0a6c7e977c5b9" @@ -9774,6 +9944,11 @@ ethjs-util@0.1.6, ethjs-util@^0.1.3, ethjs-util@^0.1.6: is-hex-prefixed "1.0.0" strip-hex-prefix "1.0.0" +ev-emitter@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-2.1.2.tgz#91737a2deae9fa95453e7e86cfae976f8c3ced38" + integrity sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q== + event-target-shim@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" @@ -9910,6 +10085,14 @@ extension-port-stream@^2.0.1: dependencies: webextension-polyfill ">=0.10.0 <1.0" +extension-port-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extension-port-stream/-/extension-port-stream-3.0.0.tgz#00a7185fe2322708a36ed24843c81bd754925fef" + integrity sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw== + dependencies: + readable-stream "^3.6.2 || ^4.4.2" + webextension-polyfill ">=0.10.0 <1.0" + extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -10253,6 +10436,11 @@ get-port-please@^3.1.1: resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.1.tgz#2556623cddb4801d823c0a6a15eec038abb483be" integrity sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA== +get-size@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-size/-/get-size-3.0.0.tgz#00e39a8042a3de237b2fcf288eaf55d3f472417c" + integrity sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw== + get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -10758,7 +10946,7 @@ hyphenate-style-name@^1.0.3: resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== -i18next-browser-languagedetector@^7.1.0: +i18next-browser-languagedetector@7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.1.0.tgz#01876fac51f86b78975e79b48ccb62e2313a2d7d" integrity sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA== @@ -11140,11 +11328,6 @@ is-path-inside@^3.0.2: resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== -is-plain-obj@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - is-plain-obj@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" @@ -11503,14 +11686,6 @@ json-rpc-middleware-stream@^3.0.0: "@metamask/safe-event-emitter" "^2.0.0" readable-stream "^2.3.3" -json-rpc-middleware-stream@^4.2.1: - version "4.2.2" - resolved "https://registry.yarnpkg.com/json-rpc-middleware-stream/-/json-rpc-middleware-stream-4.2.2.tgz#b620d86e8f321f80c9f041c51bd783fa92a8ccb2" - integrity sha512-tmTQCI/R8wKMTWB50xlzkyh90JR5VuKiDVlWlmG7DjeKfdDtbLL/4vYCRlG5HnSSKkhrkVPI0TrHQz1Dethl7A== - dependencies: - "@metamask/safe-event-emitter" "^3.0.0" - readable-stream "^2.3.3" - json-rpc-random-id@^1.0.0, json-rpc-random-id@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-rpc-random-id/-/json-rpc-random-id-1.0.1.tgz#ba49d96aded1444dbb8da3d203748acbbcdec8c8" @@ -12027,6 +12202,13 @@ magic-string@^0.25.7: dependencies: sourcemap-codec "^1.4.4" +magic-string@^0.30.3: + version "0.30.6" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.6.tgz#996e21b42f944e45591a68f0905d6a740a12506c" + integrity sha512-n62qCLbPjNjyo+owKtveQxZFZTBm+Ms6YoGD23Wew6Vw337PElFNifQpknPruVRQV57kVShPnLGo9vWxVhpPvA== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" @@ -12075,13 +12257,6 @@ merge-descriptors@1.0.1: resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-options@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" - integrity sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ== - dependencies: - is-plain-obj "^2.1.0" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -13171,6 +13346,11 @@ polished@^4.2.2: dependencies: "@babel/runtime" "^7.17.8" +pony-cause@^2.1.10: + version "2.1.10" + resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-2.1.10.tgz#828457ad6f13be401a075dbf14107a9057945174" + integrity sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw== + portfinder@^1.0.28: version "1.0.28" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" @@ -13248,6 +13428,11 @@ preact@^10.12.0: resolved "https://registry.yarnpkg.com/preact/-/preact-10.19.2.tgz#841797620dba649aaac1f8be42d37c3202dcea8b" integrity sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg== +preact@^10.16.0: + version "10.19.7" + resolved "https://registry.yarnpkg.com/preact/-/preact-10.19.7.tgz#92495eead60ab42689bcddd8428d30d51ee4a489" + integrity sha512-IJOW6cQN1fwfC17HfNOqUtAGyB8wAYshuC+jG1JiL/1+sC4yVyuA3IcF0N9vdodMJjW/lbuEF5qFsJqGNcbHbw== + preact@^10.5.9: version "10.6.6" resolved "https://registry.yarnpkg.com/preact/-/preact-10.6.6.tgz#f1899bc8dab7c0788b858481532cb3b5d764a520" @@ -13288,11 +13473,6 @@ printj@~1.3.1: resolved "https://registry.yarnpkg.com/printj/-/printj-1.3.1.tgz#9af6b1d55647a1587ac44f4c1654a4b95b8e12cb" integrity sha512-GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg== -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - integrity sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw== - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -13696,14 +13876,6 @@ react-i18next@^12.2.0: "@babel/runtime" "^7.20.6" html-parse-stringify "^3.0.1" -react-i18next@^13.2.2: - version "13.3.1" - resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-13.3.1.tgz#9b072bf4dd4cafb028e92315a8a1415f8034bdca" - integrity sha512-JAtYREK879JXaN9GdzfBI4yJeo/XyLeXWUsRABvYXiFUakhZJ40l+kaTo+i+A/3cKIED41kS/HAbZ5BzFtq/Og== - dependencies: - "@babel/runtime" "^7.22.5" - html-parse-stringify "^3.0.1" - react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" @@ -13833,19 +14005,6 @@ react@^18.2.0: dependencies: loose-envify "^1.1.0" -readable-stream@2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" - integrity sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - readable-stream@^1.0.33: version "1.1.14" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" @@ -13869,19 +14028,6 @@ readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.6, readable string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^2.3.7: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.5.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" @@ -13900,6 +14046,17 @@ readable-stream@^3.6.2: string_decoder "^1.1.1" util-deprecate "^1.0.1" +"readable-stream@^3.6.2 || ^4.4.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09" + integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g== + dependencies: + abort-controller "^3.0.0" + buffer "^6.0.3" + events "^3.3.0" + process "^0.11.10" + string_decoder "^1.3.0" + readable-stream@^4.3.0: version "4.4.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468" @@ -14200,6 +14357,14 @@ rlp@^2.0.0, rlp@^2.2.3, rlp@^2.2.4: dependencies: bn.js "^5.2.0" +rollup-plugin-dotenv@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-dotenv/-/rollup-plugin-dotenv-0.5.0.tgz#c2df297be52f3dcc0ae7fb048e08f906cee112e7" + integrity sha512-M2gZqEZebtcKaA7OBdO4UF3WmkI02wVD6UVwoxFlRKoq4/n1Q9Cw6UV8dPvVZYpGQ+ug2JPoogrCLaydIKU96A== + dependencies: + "@rollup/plugin-replace" "^5.0.1" + dotenv "^16.0.3" + rollup-plugin-svelte@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-7.1.0.tgz#d45f2b92b1014be4eb46b55aa033fb9a9c65f04d" @@ -14516,6 +14681,13 @@ semver@^7.3.8: dependencies: lru-cache "^6.0.0" +semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + semver@~5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" @@ -15110,13 +15282,6 @@ string_decoder@~0.10.x: resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= -string_decoder@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== - dependencies: - safe-buffer "~5.1.0" - string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -15841,6 +16006,13 @@ unfetch@^4.2.0: resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== +unidragger@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/unidragger/-/unidragger-3.0.1.tgz#72b2e63f2571ca6e95a884b139dfec764e08c7f3" + integrity sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw== + dependencies: + ev-emitter "^2.0.0" + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -16006,20 +16178,33 @@ uuid@3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== +uuid@8.3.2, uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@9.0.0, uuid@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== +uuid@9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + uuid@^3.3.2, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uuidv4@^6.2.13: + version "6.2.13" + resolved "https://registry.yarnpkg.com/uuidv4/-/uuidv4-6.2.13.tgz#8f95ec5ef22d1f92c8e5d4c70b735d1c89572cb7" + integrity sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ== + dependencies: + "@types/uuid" "8.3.4" + uuid "8.3.2" v8-compile-cache-lib@^3.0.0: version "3.0.0" @@ -16851,7 +17036,7 @@ webextension-polyfill-ts@^0.26.0: dependencies: webextension-polyfill "^0.8.0" -"webextension-polyfill@>=0.10.0 <1.0": +"webextension-polyfill@>=0.10.0 <1.0", webextension-polyfill@^0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/webextension-polyfill/-/webextension-polyfill-0.10.0.tgz#ccb28101c910ba8cf955f7e6a263e662d744dbb8" integrity sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g== From 60df8176098019e05a463aa05889b08c4591f042 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 25 Mar 2024 11:13:30 -0600 Subject: [PATCH 29/49] [FIX] : Injected 6963 providers precedence over native (#2115) * Bump versions for release and Remove console.log * Ensure 6963 providers take precedence if found on the window --- packages/demo/package.json | 2 +- packages/injected/package.json | 2 +- packages/injected/src/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/demo/package.json b/packages/demo/package.json index e6f80e336..fc554b8e1 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.12", + "@web3-onboard/injected-wallets": "^2.10.13-alpha.1", "@web3-onboard/keepkey": "^2.3.8", "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", diff --git a/packages/injected/package.json b/packages/injected/package.json index b7dcb2916..2295fda62 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.12", + "version": "2.10.13-alpha.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index eb802fa6f..e39ce8b33 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -89,7 +89,7 @@ function injected(options?: InjectedWalletOptions): WalletInit { // combine custom with standard wallets and dedupe const allWallets = uniqBy( - [...custom, ...standardWallets, ...providers6963], + [...custom, ...providers6963, ...standardWallets], ({ label }) => label ) From 1052148b0c3a249657e353289680db998e1cd218 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 26 Mar 2024 14:19:17 -0600 Subject: [PATCH 30/49] Release 2.25.1 (develop) (#2117) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (docs) (#2103) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor * bump docs to latest w3o verisons --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * update versions for release --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon --- docs/package.json | 2 +- docs/yarn.lock | 751 +++++++++++++++++++++++---------- package.json | 2 +- packages/demo/package.json | 2 +- packages/injected/package.json | 2 +- 5 files changed, 543 insertions(+), 216 deletions(-) diff --git a/docs/package.json b/docs/package.json index ced73ff9b..b61a629ca 100644 --- a/docs/package.json +++ b/docs/package.json @@ -67,7 +67,7 @@ "@web3-onboard/gas": "^2.1.8", "@web3-onboard/gnosis": "^2.1.10", "@web3-onboard/infinity-wallet": "^2.0.4", - "@web3-onboard/injected-wallets": "^2.10.12", + "@web3-onboard/injected-wallets": "^2.10.13", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.6.0", diff --git a/docs/yarn.lock b/docs/yarn.lock index 0b3c5c7d6..7052ebf84 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -603,7 +603,7 @@ dependencies: regenerator-runtime "^0.13.11" -"@babel/runtime@^7.18.3", "@babel/runtime@^7.19.4", "@babel/runtime@^7.22.5", "@babel/runtime@^7.22.6": +"@babel/runtime@^7.18.3", "@babel/runtime@^7.19.4", "@babel/runtime@^7.22.6": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== @@ -1325,28 +1325,20 @@ stream-browserify "^3.0.0" util "^0.12.4" -"@coinbase/wallet-sdk@^3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.7.1.tgz#44b3b7a925ff5cc974e4cbf7a44199ffdcf03541" - integrity sha512-LjyoDCB+7p0waQXfK+fUgcAs3Ezk6S6e+LYaoFjpJ6c9VTop3NyZF40Pi7df4z7QJohCwzuIDjz0Rhtig6Y7Pg== +"@coinbase/wallet-sdk@^3.9.3": + version "3.9.3" + resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.9.3.tgz#daf10cb0c85d0363315b7270cb3f02bedc408aab" + integrity sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw== dependencies: - "@metamask/safe-event-emitter" "2.0.0" - "@solana/web3.js" "^1.70.1" - bind-decorator "^1.0.11" - bn.js "^5.1.1" + bn.js "^5.2.1" buffer "^6.0.3" - clsx "^1.1.0" - eth-block-tracker "6.1.0" - eth-json-rpc-filters "5.1.0" - eth-rpc-errors "4.0.2" - json-rpc-engine "6.1.0" - keccak "^3.0.1" - preact "^10.5.9" - qs "^6.10.3" - rxjs "^6.6.3" + clsx "^1.2.1" + eth-block-tracker "^7.1.0" + eth-json-rpc-filters "^6.0.0" + eventemitter3 "^5.0.1" + keccak "^3.0.3" + preact "^10.16.0" sha.js "^2.4.11" - stream-browserify "^3.0.0" - util "^0.12.4" "@confio/ics23@^0.6.8": version "0.6.8" @@ -1700,7 +1692,7 @@ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== -"@emotion/react@^11.10.6", "@emotion/react@^11.10.8": +"@emotion/react@^11.10.8": version "11.11.1" resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157" integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== @@ -1730,7 +1722,7 @@ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== -"@emotion/styled@^11.10.6", "@emotion/styled@^11.10.8": +"@emotion/styled@^11.10.8": version "11.11.0" resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== @@ -1896,6 +1888,14 @@ "@ethereumjs/util" "^8.0.6" crc-32 "^1.2.0" +"@ethereumjs/common@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-3.2.0.tgz#b71df25845caf5456449163012074a55f048e0a0" + integrity sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA== + dependencies: + "@ethereumjs/util" "^8.1.0" + crc-32 "^1.2.0" + "@ethereumjs/rlp@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-4.0.1.tgz#626fabfd9081baab3d0a3074b0c7ecaf674aaa41" @@ -1944,6 +1944,16 @@ "@ethereumjs/util" "^8.0.6" ethereum-cryptography "^2.0.0" +"@ethereumjs/tx@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-4.2.0.tgz#5988ae15daf5a3b3c815493bc6b495e76009e853" + integrity sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw== + dependencies: + "@ethereumjs/common" "^3.2.0" + "@ethereumjs/rlp" "^4.0.1" + "@ethereumjs/util" "^8.1.0" + ethereum-cryptography "^2.0.0" + "@ethereumjs/util@^8.0.5", "@ethereumjs/util@^8.0.6": version "8.0.6" resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.0.6.tgz#f9716ed34235ea05eff8353bc5d483e5a6455989" @@ -1954,6 +1964,15 @@ ethereum-cryptography "^2.0.0" micro-ftch "^0.3.1" +"@ethereumjs/util@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.1.0.tgz#299df97fb6b034e0577ce9f94c7d9d1004409ed4" + integrity sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA== + dependencies: + "@ethereumjs/rlp" "^4.0.1" + ethereum-cryptography "^2.0.0" + micro-ftch "^0.3.1" + "@ethersproject/abi@5.0.7": version "5.0.7" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.0.7.tgz#79e52452bd3ca2956d0e1c964207a58ad1a0ee7b" @@ -3001,6 +3020,14 @@ resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.0.tgz#10343b78ef13436818bf3453568a559c0eeb9d48" integrity sha512-HUy12FEczoWY2FPubnsm1uOA8tkVWc0j90i47suThV3C9NL2xx69ZAIEU3Ytzs2bwLek9S1Q2S1VQJvA+3Ygkg== +"@ledgerhq/connect-kit@1.1.12": + version "1.1.12" + resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit/-/connect-kit-1.1.12.tgz#e6782c207a2c8d1f4db603d090c0bbecef02e5fd" + integrity sha512-dmnG2BGBckzaUaqXmkoDxy1+Yvk/simH8NNaZOQaOFk2EfFNsaw5Q3EKrw9tzqjSXmg6t6eGUNPxE0ji9uZprw== + dependencies: + rollup-plugin-dotenv "0.5.0" + uuid "9.0.1" + "@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": version "1.1.1" resolved "https://registry.yarnpkg.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz#64df34e2f12e68e78ac57e571d25ec07fa460ca9" @@ -3072,6 +3099,25 @@ tweetnacl "^1.0.3" tweetnacl-util "^0.15.1" +"@metamask/json-rpc-engine@^7.3.2": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-7.3.3.tgz#f2b30a2164558014bfcca45db10f5af291d989af" + integrity sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg== + dependencies: + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + +"@metamask/json-rpc-middleware-stream@^6.0.2": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-middleware-stream/-/json-rpc-middleware-stream-6.0.2.tgz#75852ce481f8f9f091edbfc04ffdf964f8f3cabd" + integrity sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q== + dependencies: + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + readable-stream "^3.6.2" + "@metamask/object-multiplex@^1.1.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-1.2.0.tgz#38fc15c142f61939391e1b9a8eed679696c7e4f4" @@ -3081,6 +3127,14 @@ once "^1.4.0" readable-stream "^2.3.3" +"@metamask/object-multiplex@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-2.0.0.tgz#aa6e4aa7b4e2f457ea4bb51cd7281d931e0aa35d" + integrity sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA== + dependencies: + once "^1.4.0" + readable-stream "^3.6.2" + "@metamask/obs-store@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@metamask/obs-store/-/obs-store-7.0.0.tgz#6cae5f28306bb3e83a381bc9ae22682316095bd3" @@ -3096,31 +3150,23 @@ dependencies: bowser "^2.9.0" -"@metamask/post-message-stream@^6.1.0": - version "6.2.0" - resolved "https://registry.yarnpkg.com/@metamask/post-message-stream/-/post-message-stream-6.2.0.tgz#3db0a50adc2b2206d1bb95739e7fff49e36e0324" - integrity sha512-WunZ0bruClF862mvbKQGETn5SM0XKGmocPMQR1Ew6sYix9/FDzeoZnoI8RkXk01E+70FCdxhTE/r8kk5SFOuTw== +"@metamask/providers@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-15.0.0.tgz#e8957bb89d2f3379b32b60117d79a141e44db2bc" + integrity sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA== dependencies: - "@metamask/utils" "^5.0.0" - readable-stream "2.3.3" - -"@metamask/providers@^10.2.1": - version "10.2.1" - resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-10.2.1.tgz#61304940adeccc7421dcda30ffd1d834273cc77b" - integrity sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA== - dependencies: - "@metamask/object-multiplex" "^1.1.0" - "@metamask/safe-event-emitter" "^2.0.0" - "@types/chrome" "^0.0.136" + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/json-rpc-middleware-stream" "^6.0.2" + "@metamask/object-multiplex" "^2.0.0" + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" detect-browser "^5.2.0" - eth-rpc-errors "^4.0.2" - extension-port-stream "^2.0.1" - fast-deep-equal "^2.0.1" + extension-port-stream "^3.0.0" + fast-deep-equal "^3.1.3" is-stream "^2.0.0" - json-rpc-engine "^6.1.0" - json-rpc-middleware-stream "^4.2.1" - pump "^3.0.0" - webextension-polyfill-ts "^0.25.0" + readable-stream "^3.6.2" + webextension-polyfill "^0.10.0" "@metamask/providers@^8.1.1": version "8.1.1" @@ -3148,6 +3194,14 @@ "@metamask/utils" "^5.0.0" fast-safe-stringify "^2.0.6" +"@metamask/rpc-errors@^6.2.1": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@metamask/rpc-errors/-/rpc-errors-6.2.1.tgz#f5daf429ededa7cb83069dc621bd5738fe2a1d80" + integrity sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw== + dependencies: + "@metamask/utils" "^8.3.0" + fast-safe-stringify "^2.0.6" + "@metamask/safe-event-emitter@2.0.0", "@metamask/safe-event-emitter@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz#af577b477c683fad17c619a78208cede06f9605c" @@ -3158,59 +3212,47 @@ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.0.0.tgz#8c2b9073fe0722d48693143b0dc8448840daa3bd" integrity sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ== -"@metamask/sdk-communication-layer@0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.13.0.tgz#31f4bf1d68b8ff8b74c6485566a8c7f8ffbc86ef" - integrity sha512-5168fUbiKLi29jaYTvySi6VQEqCduITMEKQ+GpSQ1VRfzdezQtk3/hBgozmEtWgoIulNyrx4u4LfzN951+AmIA== +"@metamask/sdk-communication-layer@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.17.0.tgz#890dbcdc983be32fdd9600cc996ede00cc2090fc" + integrity sha512-au1HzkU4VxAWjIvGGhvv/yPlB+x4jEi70c/GpjhHgJ7EG8TJprYy9jAOxfzc8h7hXRzOA8PCkFMzJu5COrJCYA== dependencies: bufferutil "^4.0.8" - cross-fetch "^3.1.5" date-fns "^2.29.3" - eciesjs "^0.3.16" - eventemitter2 "^6.4.5" - socket.io-client "^4.5.1" + debug "^4.3.4" utf-8-validate "^6.0.3" uuid "^8.3.2" -"@metamask/sdk-install-modal-web@0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.13.0.tgz#555b1ef055c0dad264888d75b5acaaa68e8c6e3f" - integrity sha512-962kr1wQ/3JEx4trPhYbdSdfpyApR8eZkzKlChwx+I2SzwIQOGIur6NNqBEebI2b4++9oWAg7OOffeXrHsoWpw== +"@metamask/sdk-install-modal-web@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.17.0.tgz#230e6868f52ff9adcb22ed07ffdfab26cd72a0c7" + integrity sha512-R/Cr3Z2ZDMHkYjp5XUz5gs2yyaFtN1TmvBYueoD++wEH659WmSIL6/HTrU/sTRImvOpxCkF+FihwbYrlqagisw== dependencies: - "@emotion/react" "^11.10.6" - "@emotion/styled" "^11.10.6" - i18next "22.5.1" qr-code-styling "^1.6.0-rc.1" - react "^18.2.0" - react-dom "^18.2.0" - react-i18next "^13.2.2" -"@metamask/sdk@^0.13.0": - version "0.13.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.13.0.tgz#536c1df12ade15507da468c95c7e09d3937b3660" - integrity sha512-CjFnQ58ecAPzV+CoPwszGEAAyjTKwI3RoDlbq/N6LShrF+yC4WvfuVKJ/s2GflMmaLKqshomFP2e9jCT8j0dRA== +"@metamask/sdk@^0.17.1": + version "0.17.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.17.2.tgz#047e08a6a6460ca84efcfd2ebd477a83ba34c38a" + integrity sha512-5DkeywTJLf2BLCQ2aa2D7bIcoAc/107uFXlDA/1lpCnbWc9ZHloFomdu3d1e3dRegqCOzDGuJjOA+dPonDQZZw== dependencies: "@metamask/onboarding" "^1.0.1" - "@metamask/post-message-stream" "^6.1.0" - "@metamask/providers" "^10.2.1" - "@metamask/sdk-communication-layer" "0.13.0" - "@metamask/sdk-install-modal-web" "0.13.0" - "@react-native-async-storage/async-storage" "^1.17.11" + "@metamask/providers" "^15.0.0" + "@metamask/sdk-communication-layer" "0.17.0" + "@metamask/sdk-install-modal-web" "0.17.0" "@types/dom-screen-wake-lock" "^1.0.0" bowser "^2.9.0" cross-fetch "^4.0.0" + debug "^4.3.4" eciesjs "^0.3.15" eth-rpc-errors "^4.0.3" eventemitter2 "^6.4.7" - extension-port-stream "^2.0.1" i18next "22.5.1" - i18next-browser-languagedetector "^7.1.0" + i18next-browser-languagedetector "7.1.0" obj-multiplex "^1.0.0" pump "^3.0.0" qrcode-terminal-nooctal "^0.12.1" - react-i18next "^13.2.2" react-native-webview "^11.26.0" - readable-stream "^2.3.7" + readable-stream "^3.6.2" rollup-plugin-visualizer "^5.9.2" socket.io-client "^4.5.1" util "^0.12.4" @@ -3237,6 +3279,21 @@ semver "^7.3.8" superstruct "^1.0.3" +"@metamask/utils@^8.3.0": + version "8.4.0" + resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-8.4.0.tgz#f44812c96467a4e1b70b2edff6ee89a9caa4e354" + integrity sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg== + dependencies: + "@ethereumjs/tx" "^4.2.0" + "@noble/hashes" "^1.3.1" + "@scure/base" "^1.1.3" + "@types/debug" "^4.1.7" + debug "^4.3.4" + pony-cause "^2.1.10" + semver "^7.5.4" + superstruct "^1.0.3" + uuid "^9.0.1" + "@motionone/animation@^10.15.1": version "10.15.1" resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.15.1.tgz#4a85596c31cbc5100ae8eb8b34c459fb0ccf6807" @@ -3486,6 +3543,47 @@ "@parcel/watcher-win32-ia32" "2.3.0" "@parcel/watcher-win32-x64" "2.3.0" +"@particle-network/analytics@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/analytics/-/analytics-1.0.1.tgz#b3657cf7aaea57f90a7ac2c03f72b8786c298012" + integrity sha512-ApcSMo1BXQlywO+lvOpG3Y2/SVGNCpJzXO/4e3zHzE/9j+uMehsilDzPwWQwLhrCXZYwVm7mmE71Gs36yobiNw== + dependencies: + hash.js "^1.1.7" + uuidv4 "^6.2.13" + +"@particle-network/auth@^1.2.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@particle-network/auth/-/auth-1.3.1.tgz#f9ee51749e3b10e700e0d8c51a8c0769ab0b9851" + integrity sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw== + dependencies: + "@particle-network/analytics" "^1.0.1" + "@particle-network/chains" "*" + "@particle-network/crypto" "^1.0.1" + buffer "^6.0.3" + draggabilly "^3.0.0" + +"@particle-network/chains@*": + version "1.3.23" + resolved "https://registry.yarnpkg.com/@particle-network/chains/-/chains-1.3.23.tgz#deef8309e8cee2329713c340f5d1d9ed812b8e57" + integrity sha512-RPF3KjOcQpczHGbOTQqS8HpzMw5ZA99TmiP3UrDO7/bN8+jGjQ7BXYoKvcPsKm62B3+nRa6FOlpoGDmLFKJazg== + +"@particle-network/crypto@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/crypto/-/crypto-1.0.1.tgz#26afef622a3eb906dca5c810fef8001ffee29029" + integrity sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg== + dependencies: + crypto-js "^4.1.1" + uuidv4 "^6.2.13" + +"@particle-network/provider@^1.2.0": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@particle-network/provider/-/provider-1.3.2.tgz#68ae98cca471c7612206cb43c915719cd321fb25" + integrity sha512-3XAUMCISTMYE57LZik7PrVanLIUyyU1ufb5eHtsoQw5ORfH0IeX3E5o6x5mxtfOXKfxVQ0tsIoLRMw0jMmSDpA== + dependencies: + "@particle-network/chains" "*" + axios "^1.3.6" + uuid "^8.3.2" + "@pedrouid/environment@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec" @@ -3598,13 +3696,6 @@ prop-types "^15.7.2" tslib "^2.1.0" -"@react-native-async-storage/async-storage@^1.17.11": - version "1.19.3" - resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.19.3.tgz#ad5fe3ed0a82d4624aa4500321c1e09c02daeb46" - integrity sha512-CwGfoHCWdPOTPS+2fW6YRE1fFBpT9++ahLEroX5hkgwyoQ+TkmjOaUxixdEIoVua9Pz5EF2pGOIJzqOTMWfBlA== - dependencies: - merge-options "^3.0.4" - "@rollup/plugin-inject@^5.0.1": version "5.0.3" resolved "https://registry.yarnpkg.com/@rollup/plugin-inject/-/plugin-inject-5.0.3.tgz#0783711efd93a9547d52971db73b2fb6140a67b1" @@ -3614,6 +3705,14 @@ estree-walker "^2.0.2" magic-string "^0.27.0" +"@rollup/plugin-replace@^5.0.1": + version "5.0.5" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf" + integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + "@rollup/pluginutils@^5.0.1": version "5.0.2" resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz#012b8f53c71e4f6f9cb317e311df1404f56e7a33" @@ -3662,6 +3761,11 @@ dependencies: cross-fetch "^3.1.5" +"@scure/base@^1.1.3": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.6.tgz#8ce5d304b436e4c84f896e0550c83e4d88cb917d" + integrity sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g== + "@scure/base@~1.1.0": version "1.1.1" resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938" @@ -4680,6 +4784,11 @@ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.3.tgz#a136f83b0758698df454e328759dbd3d44555311" integrity sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g== +"@types/uuid@8.3.4": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + "@types/w3c-web-usb@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@types/w3c-web-usb/-/w3c-web-usb-1.0.6.tgz#5d8560d0d9f585ffc80865bc773db7bc975b680c" @@ -4892,10 +5001,10 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" -"@walletconnect/core@2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.1.tgz#da2be26b8b6514c74f06dc9a5ffb450bdec3456d" - integrity sha512-T57Vd7YdbHPsy3tthBuwrhaZNafN0+PqjISFRNeJy/bsKdXxpJg2hGSARuOTpCO7V6VcaatqlaSMuG3DrnG5rA== +"@walletconnect/core@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.3.tgz#c81855722cb9afd411f91f5345c7874f48bade0b" + integrity sha512-/9m4EqiggFUwkQDv5PDWbcTI+yCVnBd/iYW5iIHEkivg2/mnBr2bQz2r/vtPjp19r/ZK62Dx0+UN3U+BWP8ulQ== dependencies: "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-provider" "1.0.13" @@ -4908,8 +5017,8 @@ "@walletconnect/relay-auth" "^1.0.4" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.1" - "@walletconnect/utils" "2.11.1" + "@walletconnect/types" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" @@ -4937,6 +5046,28 @@ lodash.isequal "4.5.0" uint8arrays "^3.1.0" +"@walletconnect/core@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.9.1.tgz#1a333933750f5f933d9b7788a8dae44ce1173063" + integrity sha512-xyWeP0eLhEEDQAVJSmqs4n/AClKUM+8os2ZFe7BTuw1tFYjeLNVDtKCHziVOSTh8wEChMsKSGKA4zerQoH8mAQ== + dependencies: + "@walletconnect/heartbeat" "1.2.1" + "@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.9.1" + "@walletconnect/utils" "2.9.1" + events "^3.3.0" + lodash.isequal "4.5.0" + uint8arrays "^3.1.0" + "@walletconnect/core@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-1.8.0.tgz#6b2748b90c999d9d6a70e52e26a8d5e8bfeaa81e" @@ -5004,20 +5135,35 @@ "@walletconnect/utils" "2.9.0" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.11.0": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.1.tgz#6e0174ec9026940eaadeedc53417e222eb45f5aa" - integrity sha512-UfQH0ho24aa2M1xYmanbJv2ggQPebKmQytp2j20QEvURJ2R0v7YKWZ+0PfwOs6o6cuGw6gGxy/0WQXQRZSAsfg== +"@walletconnect/ethereum-provider@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.9.1.tgz#6f41acb38259a59f383d490396aa9c0933839d0b" + integrity sha512-JiMatBFVgzJSQrckpbOoOsmQmKnbTn9wzmU10MBPe9W6ZV2mf2JuxW0luWKLpQkuCmM9mL6+nCKX7nfW9V6qrQ== + dependencies: + "@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.1" + "@walletconnect/types" "2.9.1" + "@walletconnect/universal-provider" "2.9.1" + "@walletconnect/utils" "2.9.1" + events "^3.3.0" + +"@walletconnect/ethereum-provider@^2.11.2": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.3.tgz#a9fd8b6a3ed65ab0331a1329bece9c0f47292262" + integrity sha512-lg+ZzjLfk1GZgLVwMBmCteSNQ6hVn0Fgo1xDnzU/Ak3IqyfWIeMcM79Z5NgPLQOwqBVGckoBnx5BU5wai+AjGg== dependencies: "@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/modal" "^2.6.2" - "@walletconnect/sign-client" "2.11.1" - "@walletconnect/types" "2.11.1" - "@walletconnect/universal-provider" "2.11.1" - "@walletconnect/utils" "2.11.1" + "@walletconnect/sign-client" "2.11.3" + "@walletconnect/types" "2.11.3" + "@walletconnect/universal-provider" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -5229,6 +5375,13 @@ buffer "6.0.3" valtio "1.10.6" +"@walletconnect/modal-core@2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@walletconnect/modal-core/-/modal-core-2.6.1.tgz#bc76055d0b644a2d4b98024324825c108a700905" + integrity sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ== + dependencies: + valtio "1.11.0" + "@walletconnect/modal-core@2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal-core/-/modal-core-2.6.2.tgz#d73e45d96668764e0c8668ea07a45bb8b81119e9" @@ -5246,6 +5399,16 @@ motion "10.16.2" qrcode "1.5.3" +"@walletconnect/modal-ui@2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@walletconnect/modal-ui/-/modal-ui-2.6.1.tgz#200c54c8dfe3c71321abb2724e18bb357dfd6371" + 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" + "@walletconnect/modal-ui@2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal-ui/-/modal-ui-2.6.2.tgz#fa57c087c57b7f76aaae93deab0f84bb68b59cf9" @@ -5264,6 +5427,14 @@ "@walletconnect/modal-core" "2.5.9" "@walletconnect/modal-ui" "2.5.9" +"@walletconnect/modal@2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.1.tgz#066fdbfcff83b58c8a9da66ab4af0eb93e3626de" + integrity sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw== + dependencies: + "@walletconnect/modal-core" "2.6.1" + "@walletconnect/modal-ui" "2.6.1" + "@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651" @@ -5341,19 +5512,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/sign-client@2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.1.tgz#c073b8d2d594e792bb783d36c8b021bd37a9d4f6" - integrity sha512-s3oKSx6/F5X2WmkV1jfJImBFACf9Km5HpTb+n5q+mobJVpUQw/clvoVyIrNNppLhm1V1S/ylHXh0qCrDppDpCA== +"@walletconnect/sign-client@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.3.tgz#3ea7b3acf92ee31cc42b45d42e66c44b4720b28b" + integrity sha512-JVjLTxN/3NjMXv5zalSGKuSYLRyU2yX6AWEdq17cInlrwODpbWZr6PS1uxMWdH4r90DXBLhdtwDbEq/pfd0BPg== dependencies: - "@walletconnect/core" "2.11.1" + "@walletconnect/core" "2.11.3" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.1" - "@walletconnect/utils" "2.11.1" + "@walletconnect/types" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/sign-client@2.9.0": @@ -5371,6 +5542,21 @@ "@walletconnect/utils" "2.9.0" events "^3.3.0" +"@walletconnect/sign-client@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.9.1.tgz#e4aa9c7b15849f450fdd1b03754a7517cb5c8811" + integrity sha512-Z7tFRrJ9btA1vU427vsjUS6cPlHQVcTWdKH90khEc2lv3dB6mU8FNO0VJsw+I2D7CW7WaMWF3nnj6Z1FfotbDg== + dependencies: + "@walletconnect/core" "2.9.1" + "@walletconnect/events" "^1.0.1" + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-utils" "1.0.8" + "@walletconnect/logger" "^2.0.1" + "@walletconnect/time" "^1.0.2" + "@walletconnect/types" "2.9.1" + "@walletconnect/utils" "2.9.1" + events "^3.3.0" + "@walletconnect/socket-transport@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@walletconnect/socket-transport/-/socket-transport-1.8.0.tgz#9a1128a249628a0be11a0979b522fe82b44afa1b" @@ -5399,10 +5585,10 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" -"@walletconnect/types@2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.1.tgz#4f705b43ddc286b69eb9bf91bb6e9496d20de0e3" - integrity sha512-UbdbX+d6MOK0AXKxt5imV3KvAcLVpZUHylaRDIP5ffwVylM/p4DHnKppil1Qq5N+IGDr3RsUwLGFkKjqsQYRKw== +"@walletconnect/types@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.3.tgz#8ce43cb77e8fd9d5269847cdd73bcfa7cce7dd1a" + integrity sha512-JY4wA9MVosDW9dcJMTpnwliste0aJGJ1X6Q4ulLsQsgWRSEBRkLila0oUT01TDBW9Yq8uUp7uFOUTaKx6KWVAg== dependencies: "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" @@ -5435,6 +5621,18 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" +"@walletconnect/types@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.9.1.tgz#cb32ff396cc8880a7395f28716d1e82f407e1372" + integrity sha512-xbGgTPuD6xsb7YMvCESBIH55cjB86QAnnVL50a/ED42YkQzDsOdJ0VGTbrm0tG5cxUOF933rpxZQjxGdP+ovww== + dependencies: + "@walletconnect/events" "^1.0.1" + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-types" "1.0.3" + "@walletconnect/keyvaluestorage" "^1.0.2" + "@walletconnect/logger" "^2.0.1" + events "^3.3.0" + "@walletconnect/types@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-1.8.0.tgz#3f5e85b2d6b149337f727ab8a71b8471d8d9a195" @@ -5455,19 +5653,19 @@ "@walletconnect/utils" "2.10.2" events "^3.3.0" -"@walletconnect/universal-provider@2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.1.tgz#988f2a78325eb52ef7481a220851a56efb209d64" - integrity sha512-BJvPYByIfbBYF4x8mqDV79ebQX0tD54pp8itsqrHWn0qKZeJyIH8sQ69yY0GnbJrzoFS3ZLULdC0yDxWDeuRGw== +"@walletconnect/universal-provider@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.3.tgz#63001737430904a8437c4220fe8cab7ec99c5d79" + integrity sha512-5iW7eAEuf4YV079wYoqU9mCRAxPU7Vhh+3n8DtUkUAET/5M0HCxmq0dGw26TxNJvXeIVrQmmmaj9QyeJsiVy3w== dependencies: "@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.11.1" - "@walletconnect/types" "2.11.1" - "@walletconnect/utils" "2.11.1" + "@walletconnect/sign-client" "2.11.3" + "@walletconnect/types" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/universal-provider@2.9.0": @@ -5485,6 +5683,21 @@ "@walletconnect/utils" "2.9.0" events "^3.3.0" +"@walletconnect/universal-provider@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.9.1.tgz#b9034dfa748f11b692d45b584f202cfcfdd289ea" + integrity sha512-Ychf+/J0Ql3UvaiPVEGtdpYXXDa87e6hP+NUEl/+nF41x3dlH0P1zoIgX5sWbpGP8HRaKd8Qsm0N6S7RalC+LQ== + dependencies: + "@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.9.1" + "@walletconnect/types" "2.9.1" + "@walletconnect/utils" "2.9.1" + events "^3.3.0" + "@walletconnect/utils@2.10.2": version "2.10.2" resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.2.tgz#1f2c6a2f1bb95bcc4517b1e94aa7164c9286eb46" @@ -5505,10 +5718,10 @@ query-string "7.1.3" uint8arrays "^3.1.0" -"@walletconnect/utils@2.11.1": - version "2.11.1" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.1.tgz#56116d9c410c6f2ae8d562017cf6876cccb366f1" - integrity sha512-wRFDHN86dZ05mCET1H3912odIeQa8j7cZKxl1FlWRpV2YsILj9HCYSX6Uq2brwO02Kv2vryke44G1r8XI/LViA== +"@walletconnect/utils@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.3.tgz#3731809b54902655cf202e0bf0e8f268780e8b54" + integrity sha512-jsdNkrl/IcTkzWFn0S2d0urzBXg6RxVJtUYRsUx3qI3wzOGiABP9ui3yiZ3SgZOv9aRe62PaNp1qpbYZ+zPb8Q== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -5518,7 +5731,7 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.11.1" + "@walletconnect/types" "2.11.3" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -5545,6 +5758,26 @@ query-string "7.1.3" uint8arrays "^3.1.0" +"@walletconnect/utils@2.9.1": + version "2.9.1" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.9.1.tgz#92abc24b3af3ead42a3864e019dbf2f651ab2e47" + integrity sha512-tXeQVebF5oPBvhdmuUyVSkSIBYx/egIi4czav1QrnUpwrUS1LsrFhyWBxSbhN7TXY287ULWkEf6aFpWOHdp5EA== + 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/relay-api" "^1.0.9" + "@walletconnect/safe-json" "^1.0.2" + "@walletconnect/time" "^1.0.2" + "@walletconnect/types" "2.9.1" + "@walletconnect/window-getters" "^1.0.1" + "@walletconnect/window-metadata" "^1.0.1" + detect-browser "5.3.0" + query-string "7.1.3" + uint8arrays "^3.1.0" + "@walletconnect/utils@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-1.8.0.tgz#2591a197c1fa7429941fe428876088fda6632060" @@ -5648,12 +5881,12 @@ "@cedelabs/providers" "^1.5.0" "@web3-onboard/common" "^2.3.3" -"@web3-onboard/coinbase@^2.2.5": - version "2.2.5" - resolved "https://registry.npmjs.org/@web3-onboard/coinbase/-/coinbase-2.2.5.tgz#fb7a57e5456323c0ee107ce48ea0cc80acbb6e07" - integrity sha512-mEiaK+K+nB2TwxUpkyAZmb4AHguymsJrHFbsZDdAolFTgZizCSjGHBhYlCEfxLL4fh3CpUryTa/AaNxxhdG6OQ== +"@web3-onboard/coinbase@^2.2.7": + version "2.2.7" + resolved "https://registry.yarnpkg.com/@web3-onboard/coinbase/-/coinbase-2.2.7.tgz#e649acd9bb1e1599e6c92e3ddb4315cd26fe7b3e" + integrity sha512-gHIiir6byvt5xTFGlf4xwDtysmDFU92BdH9ZzTWfrqKQdprNAlO+ydNnmytxzXf6RsPIRL0NmT8n3xCAWe8s1w== dependencies: - "@coinbase/wallet-sdk" "^3.7.1" + "@coinbase/wallet-sdk" "^3.9.3" "@web3-onboard/common" "^2.3.3" "@web3-onboard/common@2.3.3", "@web3-onboard/common@^2.3.1", "@web3-onboard/common@^2.3.3": @@ -5665,12 +5898,21 @@ ethers "5.5.4" joi "17.9.1" -"@web3-onboard/core@^2.21.2": - version "2.21.2" - resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.2.tgz#962683efc87b29ee9150ab8d7ea9568ea3b41dd5" - integrity sha512-apzVi2zWqs4ktZBBJ60x1e4odI1mSoZ2c69bXUg36A0xI0iRFQ9Od44peI3mfTDEru7hWsr81Nv6l+v3HRSKLw== +"@web3-onboard/common@^2.3.4": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/common/-/common-2.3.4.tgz#1ce41e090c19e8ac802c45737de3dda3dabea751" + integrity sha512-LQM7ZA1LoJ4GirsVEWHkv9KNJcrIT+AplR957BP5O8tll+p/A1GCju89C7jAMnb3+9LShUCwHcbE4o8l8gVb9A== dependencies: - "@web3-onboard/common" "^2.3.3" + bignumber.js "^9.1.0" + ethers "5.5.4" + joi "17.9.1" + +"@web3-onboard/core@^2.21.3": + version "2.21.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.3.tgz#12f1561da218bae9d9d4c48cd132fa6ebaf4beca" + integrity sha512-PVQtsk5eLHNIxrLqjEtbF+w8yDxovTmgIQobrJj0D4m3wZE0Cr7AQay1q5u+bC1FKmTvQ7ZVzEXMFdquPxjA2A== + dependencies: + "@web3-onboard/common" "^2.3.4" bignumber.js "^9.0.0" bnc-sdk "^4.6.7" bowser "^2.11.0" @@ -5761,10 +6003,10 @@ dependencies: "@infinitywallet/infinity-connector" "^1.0.6" -"@web3-onboard/injected-wallets@^2.10.9": - version "2.10.9" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.9.tgz#7af271d6742993ab1de13aeeea688640263d1f5d" - integrity sha512-Eo2BAHOaEnhufSCiqgVYT1FeNLKKmEfAEcHcxBVeANar7th8zUBhC5QyorQNwTvsFr9MOxgJe/CELcAFQJalVA== +"@web3-onboard/injected-wallets@^2.10.13": + version "2.10.13-alpha.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13-alpha.1.tgz#6e7c54e242079d621ddd0c5aa79eec4ff5df8e5b" + integrity sha512-yBPt+25q6e3L3QbL8gxlGinhABVMRsaLMmpraAH+dfkRDxwrsvINcfrkZAOJu5K4ZOr1u9S3HUxd3bz5Eq8IPw== dependencies: "@web3-onboard/common" "^2.3.3" joi "17.9.1" @@ -5793,16 +6035,16 @@ "@web3-onboard/common" "^2.3.3" "@web3-onboard/hw-common" "^2.3.0" -"@web3-onboard/ledger@^2.5.1": - version "2.5.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/ledger/-/ledger-2.5.1.tgz#c686998efd1305d02c658ee44063de97af7b4690" - integrity sha512-7NAOKUz2z/TkyeWF8Wq+sKhRUfHhglzoc6RtzCCooU0xxRl4xfpah5zh0vr1b56tQ/hfBWXlLaaZtdY+cXfC/A== +"@web3-onboard/ledger@^2.6.0": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@web3-onboard/ledger/-/ledger-2.6.0.tgz#e8a8e2504a835cfb6ac32c0448d37e990e3e3972" + integrity sha512-ZfOVMY1io6cUOLyMkMdopFxPBvuKkk2NnqifNIXq5CUYNRQtxagzg4wwn6paaMHIIoXzutnqD1mTA6B3UKCCiA== dependencies: "@ethersproject/providers" "5.5.0" - "@ledgerhq/connect-kit-loader" "^1.1.0" + "@ledgerhq/connect-kit" "1.1.12" "@walletconnect/client" "^1.8.0" - "@walletconnect/ethereum-provider" "2.9.0" - "@walletconnect/modal" "2.5.9" + "@walletconnect/ethereum-provider" "2.9.1" + "@walletconnect/modal" "2.6.1" "@web3-onboard/common" "^2.3.3" rxjs "^7.5.2" @@ -5816,12 +6058,12 @@ magic-sdk "^8.1.0" rxjs "^7.5.2" -"@web3-onboard/metamask@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@web3-onboard/metamask/-/metamask-2.0.2.tgz#a5eecf96a3c79c38decd6549a94ab03a7d2d1885" - integrity sha512-JhkoXQrVJBVC76faT90w15vRtA8cSYaK4e0J9hZI+oGahYqfJ2Qr+hRo1FW9yhqUhY+GV8R7/zFuW2GsC/lz3g== +"@web3-onboard/metamask@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/metamask/-/metamask-2.0.3.tgz#ea9ef80e90700134f99f7f0a8667ca6c3dad8775" + integrity sha512-kf+4jMtJfokSFNhOyV1WxOGtmvibUK58Lho+6cvDFGSzmFQ+q+U5jK9gWMm2gkb5+l70UibUHqVCrHPFdgey+w== dependencies: - "@metamask/sdk" "^0.13.0" + "@metamask/sdk" "^0.17.1" "@web3-onboard/common" "^2.3.3" "@web3-onboard/mew-wallet@^2.0.4": @@ -5832,6 +6074,16 @@ "@web3-onboard/common" "^2.3.3" lodash.uniqby "^4.7.0" +"@web3-onboard/particle-network@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@web3-onboard/particle-network/-/particle-network-2.0.0.tgz#3120c507c0486b6c0f3e4b7a93967d0d97d83c69" + integrity sha512-2uiXMuKcRKe9lYnbxAa/jmfdtUmQruAyVuQ8QtPj0UQi5nBWHcrK/grmimUHzboxe/UCbn9+Qe8FrrGF1HA9Hw== + dependencies: + "@particle-network/auth" "^1.2.1" + "@particle-network/provider" "^1.2.0" + "@web3-onboard/common" "^2.3.3" + react-dom "^18.2.0" + "@web3-onboard/phantom@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@web3-onboard/phantom/-/phantom-2.0.3.tgz#56d308f8923e3a826d9d654a306c19ffc0bc262d" @@ -5930,12 +6182,12 @@ "@venly/web3-provider" "^3.1.1" "@web3-onboard/common" "^2.3.1" -"@web3-onboard/walletconnect@^2.5.2": - version "2.5.3" - resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.3.tgz#b8f71ee93de8cf151dd31732715bff250fcda293" - integrity sha512-ENrUwXBbja6gXWfF4G2pxhwOodT9MAMPum0E1KPyphzcs+QxjrC+aaXnYUpLLhZsjlAcIWcGrgpmtLP2NDhRXg== +"@web3-onboard/walletconnect@^2.5.4": + version "2.5.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.4.tgz#e9dcd15469b7e022c1a7bb742f0e7fddceb62e61" + integrity sha512-cvjzal9DEXkpi8TgHeszClZIRcIK6BtXYdH9w0gVOxVteRJoNQM5upK6b6Z2g+p5JK/eHBW9CwV9+Bq0eE5gFg== dependencies: - "@walletconnect/ethereum-provider" "^2.11.0" + "@walletconnect/ethereum-provider" "^2.11.2" "@web3-onboard/common" "^2.3.3" joi "17.9.1" rxjs "^7.5.2" @@ -6514,6 +6766,15 @@ axios@^0.21.0, axios@^0.21.2: dependencies: follow-redirects "^1.14.0" +axios@^1.3.6: + version "1.6.8" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.8.tgz#66d294951f5d988a00e87a0ffb955316a619ea66" + integrity sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + b4a@^1.6.0: version "1.6.4" resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" @@ -7174,7 +7435,7 @@ clone@^2.0.0, clone@^2.1.1: resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== -clsx@^1.0.0, clsx@^1.1.0: +clsx@^1.0.0, clsx@^1.1.0, clsx@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== @@ -7697,6 +7958,19 @@ dom-walk@^0.1.0: resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== +dotenv@^16.0.3: + version "16.4.5" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + +draggabilly@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/draggabilly/-/draggabilly-3.0.0.tgz#48defe10a67f346a0338caaa40c0765c4d3912d6" + integrity sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ== + dependencies: + get-size "^3.0.0" + unidragger "^3.0.0" + drbg.js@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" @@ -7746,7 +8020,7 @@ eccrypto@1.1.6: optionalDependencies: secp256k1 "3.7.1" -eciesjs@^0.3.15, eciesjs@^0.3.16: +eciesjs@^0.3.15: version "0.3.18" resolved "https://registry.yarnpkg.com/eciesjs/-/eciesjs-0.3.18.tgz#67b5d73a8466e40a45bbc2f2a3177e71e9c0643d" integrity sha512-RQhegEtLSyIiGJmFTZfvCTHER/fymipXFVx6OwSRYD6hOuy+6Kjpk0dGvIfP9kxn/smBpxQy71uxpGO406ITCw== @@ -8037,6 +8311,17 @@ eth-block-tracker@^7.0.0: json-rpc-random-id "^1.0.1" pify "^3.0.0" +eth-block-tracker@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-7.1.0.tgz#dfc16085c6817cc30caabba381deb8d204c1c766" + integrity sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg== + dependencies: + "@metamask/eth-json-rpc-provider" "^1.0.0" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^5.0.1" + json-rpc-random-id "^1.0.1" + pify "^3.0.0" + eth-crypto@^2.1.0: version "2.6.0" resolved "https://registry.yarnpkg.com/eth-crypto/-/eth-crypto-2.6.0.tgz#b777f367ae8c70e5917b3b7d52adab6b34841e29" @@ -8508,6 +8793,11 @@ ethjs-util@0.1.6, ethjs-util@^0.1.3, ethjs-util@^0.1.6: is-hex-prefixed "1.0.0" strip-hex-prefix "1.0.0" +ev-emitter@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-2.1.2.tgz#91737a2deae9fa95453e7e86cfae976f8c3ced38" + integrity sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q== + event-emitter@^0.3.5: version "0.3.5" resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" @@ -8598,6 +8888,14 @@ extension-port-stream@^2.0.1: dependencies: webextension-polyfill ">=0.10.0 <1.0" +extension-port-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extension-port-stream/-/extension-port-stream-3.0.0.tgz#00a7185fe2322708a36ed24843c81bd754925fef" + integrity sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw== + dependencies: + readable-stream "^3.6.2 || ^4.4.2" + webextension-polyfill ">=0.10.0 <1.0" + extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -8752,6 +9050,11 @@ follow-redirects@^1.15.0: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== +follow-redirects@^1.15.6: + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + for-each@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -8877,6 +9180,11 @@ get-port-please@^3.1.1: resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.1.tgz#2556623cddb4801d823c0a6a15eec038abb483be" integrity sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA== +get-size@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-size/-/get-size-3.0.0.tgz#00e39a8042a3de237b2fcf288eaf55d3f472417c" + integrity sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw== + get-stream@^6.0.0: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" @@ -9148,7 +9456,7 @@ hyphenate-style-name@^1.0.3: resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== -i18next-browser-languagedetector@^7.1.0: +i18next-browser-languagedetector@7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.1.0.tgz#01876fac51f86b78975e79b48ccb62e2313a2d7d" integrity sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA== @@ -9381,11 +9689,6 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-plain-obj@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== - is-promise@^2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" @@ -9611,15 +9914,6 @@ json-rpc-middleware-stream@^3.0.0: "@metamask/safe-event-emitter" "^2.0.0" readable-stream "^2.3.3" -json-rpc-middleware-stream@^4.2.1: - version "4.2.3" - resolved "https://registry.yarnpkg.com/json-rpc-middleware-stream/-/json-rpc-middleware-stream-4.2.3.tgz#08340846ffaa2a60287930773546eb4b7f7dbba2" - integrity sha512-4iFb0yffm5vo3eFKDbQgke9o17XBcLQ2c3sONrXSbcOLzP8LTojqo8hRGVgtJShhm5q4ZDSNq039fAx9o65E1w== - dependencies: - "@metamask/safe-event-emitter" "^3.0.0" - json-rpc-engine "^6.1.0" - readable-stream "^2.3.3" - json-rpc-random-id@^1.0.0, json-rpc-random-id@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-rpc-random-id/-/json-rpc-random-id-1.0.1.tgz#ba49d96aded1444dbb8da3d203748acbbcdec8c8" @@ -9885,6 +10179,15 @@ lit@2.7.5: lit-element "^3.3.0" lit-html "^2.7.0" +lit@2.7.6: + version "2.7.6" + resolved "https://registry.yarnpkg.com/lit/-/lit-2.7.6.tgz#810007b876ed43e0c70124de91831921598b1665" + integrity sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg== + dependencies: + "@lit/reactive-element" "^1.6.0" + lit-element "^3.3.0" + lit-html "^2.7.0" + lit@2.8.0: version "2.8.0" resolved "https://registry.yarnpkg.com/lit/-/lit-2.8.0.tgz#4d838ae03059bf9cafa06e5c61d8acc0081e974e" @@ -10122,13 +10425,6 @@ memoizee@^0.4.15: next-tick "^1.1.0" timers-ext "^0.1.7" -merge-options@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" - integrity sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ== - dependencies: - is-plain-obj "^2.1.0" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -10824,6 +11120,11 @@ polished@^4.2.2: dependencies: "@babel/runtime" "^7.17.8" +pony-cause@^2.1.10: + version "2.1.10" + resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-2.1.10.tgz#828457ad6f13be401a075dbf14107a9057945174" + integrity sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw== + postcss-import@^15.1.0: version "15.1.0" resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" @@ -10900,6 +11201,11 @@ preact@^10.12.0: resolved "https://registry.yarnpkg.com/preact/-/preact-10.19.2.tgz#841797620dba649aaac1f8be42d37c3202dcea8b" integrity sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg== +preact@^10.16.0: + version "10.20.0" + resolved "https://registry.yarnpkg.com/preact/-/preact-10.20.0.tgz#191c10a2ee3b9fca1a7ded6375266266380212f6" + integrity sha512-wU7iZw2BjsaKDal3pDRDy/HpPB6cuFOnVUCcw9aIPKG98+ZrXx3F+szkos8BVME5bquyKDKvRlOJFG8kMkcAbg== + precond@0.2: version "0.2.3" resolved "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz#aa9591bcaa24923f1e0f4849d240f47efc1075ac" @@ -10915,11 +11221,6 @@ prettier@^2.8.0: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - integrity sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw== - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -11258,14 +11559,6 @@ react-i18next@^12.2.0: "@babel/runtime" "^7.20.6" html-parse-stringify "^3.0.1" -react-i18next@^13.2.2: - version "13.3.1" - resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-13.3.1.tgz#9b072bf4dd4cafb028e92315a8a1415f8034bdca" - integrity sha512-JAtYREK879JXaN9GdzfBI4yJeo/XyLeXWUsRABvYXiFUakhZJ40l+kaTo+i+A/3cKIED41kS/HAbZ5BzFtq/Og== - dependencies: - "@babel/runtime" "^7.22.5" - html-parse-stringify "^3.0.1" - react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" @@ -11400,19 +11693,6 @@ read-cache@^1.0.0: dependencies: pify "^2.3.0" -readable-stream@2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" - integrity sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - safe-buffer "~5.1.1" - string_decoder "~1.0.3" - util-deprecate "~1.0.1" - readable-stream@^1.0.33: version "1.1.14" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" @@ -11423,7 +11703,7 @@ readable-stream@^1.0.33: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@^2.0.0, readable-stream@^2.2.9, readable-stream@^2.3.3, readable-stream@^2.3.7, readable-stream@~2.3.6: +readable-stream@^2.0.0, readable-stream@^2.2.9, readable-stream@^2.3.3, readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== @@ -11445,6 +11725,17 @@ readable-stream@^3.1.1, readable-stream@^3.5.0, readable-stream@^3.6.0, readable string_decoder "^1.1.1" util-deprecate "^1.0.1" +"readable-stream@^3.6.2 || ^4.4.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09" + integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g== + dependencies: + abort-controller "^3.0.0" + buffer "^6.0.3" + events "^3.3.0" + process "^0.11.10" + string_decoder "^1.3.0" + readable-stream@^4.3.0: version "4.4.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468" @@ -11662,6 +11953,14 @@ rlp@^2.0.0, rlp@^2.2.3, rlp@^2.2.4: dependencies: bn.js "^5.2.0" +rollup-plugin-dotenv@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-dotenv/-/rollup-plugin-dotenv-0.5.0.tgz#c2df297be52f3dcc0ae7fb048e08f906cee112e7" + integrity sha512-M2gZqEZebtcKaA7OBdO4UF3WmkI02wVD6UVwoxFlRKoq4/n1Q9Cw6UV8dPvVZYpGQ+ug2JPoogrCLaydIKU96A== + dependencies: + "@rollup/plugin-replace" "^5.0.1" + dotenv "^16.0.3" + rollup-plugin-polyfill-node@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/rollup-plugin-polyfill-node/-/rollup-plugin-polyfill-node-0.12.0.tgz#33d421ddb7fcb69c234461e508ca6d2db6193f1d" @@ -11891,6 +12190,13 @@ semver@^7.3.8: dependencies: lru-cache "^6.0.0" +semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + semver@~5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" @@ -12238,13 +12544,6 @@ string_decoder@~0.10.x: resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== -string_decoder@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" - integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== - dependencies: - safe-buffer "~5.1.0" - string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -12710,6 +13009,13 @@ unfetch@^4.2.0: resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== +unidragger@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/unidragger/-/unidragger-3.0.1.tgz#72b2e63f2571ca6e95a884b139dfec764e08c7f3" + integrity sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw== + dependencies: + ev-emitter "^2.0.0" + unload@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/unload/-/unload-2.4.1.tgz#b0c5b7fb44e17fcbf50dcb8fb53929c59dd226a5" @@ -12869,20 +13175,33 @@ util@^0.12.0, util@^0.12.4, util@^0.12.5: is-typed-array "^1.1.3" which-typed-array "^1.1.2" +uuid@8.3.2, uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== +uuid@9.0.1, uuid@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + uuid@^3.3.2: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uuidv4@^6.2.13: + version "6.2.13" + resolved "https://registry.yarnpkg.com/uuidv4/-/uuidv4-6.2.13.tgz#8f95ec5ef22d1f92c8e5d4c70b735d1c89572cb7" + integrity sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ== + dependencies: + "@types/uuid" "8.3.4" + uuid "8.3.2" valtio@1.10.6: version "1.10.6" @@ -12892,6 +13211,14 @@ valtio@1.10.6: proxy-compare "2.5.1" use-sync-external-store "1.2.0" +valtio@1.11.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/valtio/-/valtio-1.11.0.tgz#c029dcd17a0f99d2fbec933721fe64cfd32a31ed" + integrity sha512-65Yd0yU5qs86b5lN1eu/nzcTgQ9/6YnD6iO+DDaDbQLn1Zv2w12Gwk43WkPlUBxk5wL/6cD5YMFf7kj6HZ1Kpg== + dependencies: + proxy-compare "2.5.1" + use-sync-external-store "1.2.0" + valtio@1.11.2: version "1.11.2" resolved "https://registry.yarnpkg.com/valtio/-/valtio-1.11.2.tgz#b8049c02dfe65620635d23ebae9121a741bb6530" diff --git a/package.json b/package.json index eea780f6e..b47036510 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.25.0", + "version": "2.25.1", "private": true, "workspaces": { "packages": [ diff --git a/packages/demo/package.json b/packages/demo/package.json index fc554b8e1..c84465bf5 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.13-alpha.1", + "@web3-onboard/injected-wallets": "^2.10.13", "@web3-onboard/keepkey": "^2.3.8", "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", diff --git a/packages/injected/package.json b/packages/injected/package.json index 2295fda62..22779a268 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.13-alpha.1", + "version": "2.10.13", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", From 1770d7a9c4b0f771cbdba8acf7c0b6bbd69ececf Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 26 Mar 2024 14:48:40 -0600 Subject: [PATCH 31/49] Release 2.25.1 (docs) (#2119) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (develop) (#2101) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * [FIX] : Injected 6963 providers precedence over native (#2115) * Bump versions for release and Remove console.log * Ensure 6963 providers take precedence if found on the window * update versions for release --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon --- docs/package.json | 2 +- docs/yarn.lock | 8 ++++---- package.json | 2 +- packages/demo/package.json | 2 +- packages/injected/package.json | 2 +- packages/injected/src/index.ts | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/package.json b/docs/package.json index ced73ff9b..b61a629ca 100644 --- a/docs/package.json +++ b/docs/package.json @@ -67,7 +67,7 @@ "@web3-onboard/gas": "^2.1.8", "@web3-onboard/gnosis": "^2.1.10", "@web3-onboard/infinity-wallet": "^2.0.4", - "@web3-onboard/injected-wallets": "^2.10.12", + "@web3-onboard/injected-wallets": "^2.10.13", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.6.0", diff --git a/docs/yarn.lock b/docs/yarn.lock index 6ca10b5ee..7052ebf84 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -6003,10 +6003,10 @@ dependencies: "@infinitywallet/infinity-connector" "^1.0.6" -"@web3-onboard/injected-wallets@^2.10.12": - version "2.10.12" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.12.tgz#c0dc2f72e3a0f7a3c39f75c99762356ad8382a45" - integrity sha512-nurPfsIZ9EbuAtOjrr40J5h2HQ69KIIFUgAtO5iq5ox6I4Zw4k4hmu7rqby4pSYrbv/hwgiRBCha7+/X6d1VMg== +"@web3-onboard/injected-wallets@^2.10.13": + version "2.10.13-alpha.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13-alpha.1.tgz#6e7c54e242079d621ddd0c5aa79eec4ff5df8e5b" + integrity sha512-yBPt+25q6e3L3QbL8gxlGinhABVMRsaLMmpraAH+dfkRDxwrsvINcfrkZAOJu5K4ZOr1u9S3HUxd3bz5Eq8IPw== dependencies: "@web3-onboard/common" "^2.3.3" joi "17.9.1" diff --git a/package.json b/package.json index eea780f6e..b47036510 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.25.0", + "version": "2.25.1", "private": true, "workspaces": { "packages": [ diff --git a/packages/demo/package.json b/packages/demo/package.json index e6f80e336..c84465bf5 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.12", + "@web3-onboard/injected-wallets": "^2.10.13", "@web3-onboard/keepkey": "^2.3.8", "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", diff --git a/packages/injected/package.json b/packages/injected/package.json index b7dcb2916..22779a268 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.12", + "version": "2.10.13", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index eb802fa6f..e39ce8b33 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -89,7 +89,7 @@ function injected(options?: InjectedWalletOptions): WalletInit { // combine custom with standard wallets and dedupe const allWallets = uniqBy( - [...custom, ...standardWallets, ...providers6963], + [...custom, ...providers6963, ...standardWallets], ({ label }) => label ) From be8e7c8776d78702e7923cdb86f8b35e3b77033a Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 26 Mar 2024 15:14:02 -0600 Subject: [PATCH 32/49] Update docs node version --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8c34c823b..d95b11690 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -40,7 +40,7 @@ jobs: - name: Setup Nodejs and yarn uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "18.18" cache: yarn - name: Install dependencies From 9b871a1b3117e92a7c87285677fa5b35c544a8e0 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 1 Apr 2024 13:08:39 -0600 Subject: [PATCH 33/49] [FIX] - 6963 provider creation (#2123) * Bump versions for release and Remove console.log * Do try to create 1193 provider from 6963 injected provider as the providers are frozen by the standard and already in 1193 --- packages/injected/package.json | 2 +- packages/injected/src/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/injected/package.json b/packages/injected/package.json index 22779a268..df9b36a91 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.13", + "version": "2.10.14-alpha.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index e39ce8b33..8ffa6fbb0 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -53,10 +53,10 @@ function checkFor6963Providers() { label: name, getIcon: async () => icon, getInterface: async () => ({ - provider: createEIP1193Provider(provider) + provider }), platforms: ['all'], - eip6963Provider: createEIP1193Provider(provider) as InjectedProvider, + eip6963Provider: provider as InjectedProvider, checkProviderIdentity: ({ provider }) => !!provider }) }) From 4eff194a090b1e6f367e482c5b7133b72fbfed03 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Thu, 4 Apr 2024 11:03:04 -0600 Subject: [PATCH 34/49] [UPDATE] - Celo icon and demo support (#2131) * Bump versions for release and Remove console.log * Update celo icon and add celo support to demo examples * Update more docs * Interact with w3o providers * Use different celo icon * Update docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md * Update versions --- docs/package.json | 2 +- .../[...1]introduction/+page.md | 10 +++- .../docs/[...3]modules/[...1]core/+page.md | 14 ++++++ .../[...4]wallets/[...14]injected/+page.md | 6 ++- .../examples/[...1]connect-wallet/+page.md | 17 ++++++- examples/with-nextjs-13/web3-onboard.ts | 6 +++ examples/with-nextjs/pages/_app.js | 14 ++++-- .../src/providers/onboard-provider/options.ts | 6 +++ .../with-sveltekit/src/lib/web3-onboard.ts | 6 +++ examples/with-vanilla-js/src/onboard.js | 6 +++ examples/with-vite-react/src/web3-onboard.ts | 20 +++++--- .../src/components/HelloWorld.vue | 50 +++++++++++-------- examples/with-vuejs/src/App.vue | 6 +++ packages/core/package.json | 2 +- packages/core/src/icons/celo.ts | 13 +++-- packages/dcent/package.json | 6 +-- packages/demo/package.json | 2 +- packages/demo/src/App.svelte | 6 +++ packages/injected/src/index.ts | 2 +- packages/react/package.json | 4 +- packages/solid/package.json | 4 +- packages/vue/package.json | 4 +- yarn.lock | 20 ++++++++ 23 files changed, 172 insertions(+), 54 deletions(-) diff --git a/docs/package.json b/docs/package.json index b61a629ca..149202881 100644 --- a/docs/package.json +++ b/docs/package.json @@ -58,7 +58,7 @@ "@web3-onboard/capsule": "^2.0.1", "@web3-onboard/cede-store": "^2.2.0", "@web3-onboard/coinbase": "^2.2.7", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4-alpha.1", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.4", "@web3-onboard/fortmatic": "^2.0.19", diff --git a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md index 91b7302c5..4707e3355 100644 --- a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md +++ b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md @@ -32,9 +32,9 @@ Web3-Onboard is the quickest and easiest way to add multi-wallet and multi-chain - **Notify:** Real-time transaction notifications for all transaction states for the connected wallet address(es). In-notification speedups & cancels for hardware wallet connections. -### Supported Networks +### Natively Supported EVM Chains -web3-onboard supports all EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](../../modules/core.md#initialization). +web3-onboard supports ALL EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](../../modules/core.md#initialization). - Ethereum - Arbitrum One @@ -126,6 +126,12 @@ const onboard = Onboard({ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] }) diff --git a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md index 6bb769ac4..087a32e68 100644 --- a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md +++ b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md @@ -671,6 +671,12 @@ const onboard = Onboard({ token: 'OETH', label: 'Optimism', rpcUrl: 'https://mainnet.optimism.io' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { @@ -755,6 +761,10 @@ const onboard = Onboard({ To initiate a user to select and connect a wallet you can call the `connectWallet` function on an initialized Onboard instance. It will return a `Promise` that will resolve when the user either successfully connects a wallet, or when they dismiss the UI. The resolved value from the promise will be the latest state of the `wallets` array. The order of the wallets array is last to first, so the most recently selected wallet will be the first item in the array and can be thought of as the "primary wallet". If no wallet was selected, then the `wallets` array will have the same state as it had before calling `connectWallet`. +### Wallet Provider + +Wallets connected through web3-onboard are all passed to the dapp following the EIP-1193 standard. This allows for the same interaction between all wallets connected through web3-onboard and abstracts away the challenges of working with different wallet providers. + ### Example ```javascript @@ -766,6 +776,10 @@ async function connectWallet() { connectWallet() ``` +### Interacting with the providers - Transfer, Send, Sign using ethers.js + +For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) + ### Auto Selecting a Wallet A common UX pattern is to remember the last wallet that a user has previously connected by storing it in localStorage and then automatically selecting them for the user next time they visit your app. diff --git a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md index 8f317b0d8..cc84d188b 100644 --- a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md @@ -4,10 +4,14 @@ title: Injected Wallets # {$frontmatter.title} -This module lets web3-onboard automatically detect Browser Injected Wallets such as Metamask or Coinbase Wallet. We recommend you install this module to get the most out of your w3o implementation. This module supports [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) and [recognizes many injected wallets natively](#injected-wallets-supported-natively) as well as supports [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) and recognizes any wallet that has implemented 6963 support. +This module lets web3-onboard automatically detect Browser Injected Wallets such as Metamask or Coinbase Wallet. We recommend you install this module to get the most out of your w3o implementation. This module supports [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) and [recognizes many injected wallets natively](#injected-wallets-supported-natively) as well as supports all [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) compatible wallets. Note: Make sure to install the core module before installing other modules to w3o. +### Support all EIP-6963 Wallets out of the box + +Web3-Onboard supports all [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) compatible wallets out of the box and will automatically recognizes any wallet which has integrated 6963 support. + ## Install diff --git a/docs/src/routes/examples/[...1]connect-wallet/+page.md b/docs/src/routes/examples/[...1]connect-wallet/+page.md index 4185ad0b8..f65283af4 100644 --- a/docs/src/routes/examples/[...1]connect-wallet/+page.md +++ b/docs/src/routes/examples/[...1]connect-wallet/+page.md @@ -38,7 +38,6 @@ npm install @web3-onboard/react @web3-onboard/injected-wallets @web3-onboard/inf - ## Step 2: Import + Configure Import the libraries and any wallets you would like to use. For this example, we are going to use the injected wallets module. You can easily add more wallet support to your dapp via our other wallet modules. Additionally, we'll setup web3-onboard to support 2 chains: Ethereum mainnet and Polygon mainnet. @@ -156,6 +155,12 @@ const chains = [ token: 'ARB-ETH', label: 'Arbitrum', rpcUrl: 'https://rpc.ankr.com/arbitrum' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] @@ -412,6 +417,12 @@ const chains = [ token: 'ARB-ETH', label: 'Arbitrum', rpcUrl: 'https://rpc.ankr.com/arbitrum' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] @@ -497,3 +508,7 @@ Now that we have our wallet connected, let's display some basic information, suc + +## Interacting with the providers - Transfer, Send, Sign using ethers.js + +For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) \ No newline at end of file diff --git a/examples/with-nextjs-13/web3-onboard.ts b/examples/with-nextjs-13/web3-onboard.ts index 9ade5bb75..16fb7059d 100644 --- a/examples/with-nextjs-13/web3-onboard.ts +++ b/examples/with-nextjs-13/web3-onboard.ts @@ -123,6 +123,12 @@ export default init({ token: 'MATIC', label: 'Matic Mainnet', rpcUrl: 'https://matic-mainnet.chainstacklabs.com' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { diff --git a/examples/with-nextjs/pages/_app.js b/examples/with-nextjs/pages/_app.js index 6f1824185..579c90489 100644 --- a/examples/with-nextjs/pages/_app.js +++ b/examples/with-nextjs/pages/_app.js @@ -23,17 +23,23 @@ const baseMainnet = { label: 'Base', rpcUrl: 'https://mainnet.base.org' } +const celoMainnet = { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' +} -const chains = [ethereumRopsten, polygonMainnet, baseMainnet] +const chains = [ethereumRopsten, polygonMainnet, baseMainnet,celoMainnet] const wallets = [injectedModule()] const web3Onboard = init({ wallets, chains, appMetadata: { - name: "Web3-Onboard Demo", + name: 'Web3-Onboard Demo', icon: 'My App Icon', - description: "A demo of Web3-Onboard." + description: 'A demo of Web3-Onboard.' } }) @@ -45,4 +51,4 @@ function MyApp({ Component, pageProps }) { ) } -export default MyApp \ No newline at end of file +export default MyApp diff --git a/examples/with-solidjs/src/providers/onboard-provider/options.ts b/examples/with-solidjs/src/providers/onboard-provider/options.ts index aa0ffef8a..f151e80a7 100644 --- a/examples/with-solidjs/src/providers/onboard-provider/options.ts +++ b/examples/with-solidjs/src/providers/onboard-provider/options.ts @@ -28,6 +28,12 @@ export const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ]; diff --git a/examples/with-sveltekit/src/lib/web3-onboard.ts b/examples/with-sveltekit/src/lib/web3-onboard.ts index 5ce8d77bf..02ec180c7 100644 --- a/examples/with-sveltekit/src/lib/web3-onboard.ts +++ b/examples/with-sveltekit/src/lib/web3-onboard.ts @@ -33,6 +33,12 @@ const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] diff --git a/examples/with-vanilla-js/src/onboard.js b/examples/with-vanilla-js/src/onboard.js index 7f799e3be..1b2773aab 100644 --- a/examples/with-vanilla-js/src/onboard.js +++ b/examples/with-vanilla-js/src/onboard.js @@ -29,6 +29,12 @@ const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] diff --git a/examples/with-vite-react/src/web3-onboard.ts b/examples/with-vite-react/src/web3-onboard.ts index cacb6b1a2..7c7f9c7c9 100644 --- a/examples/with-vite-react/src/web3-onboard.ts +++ b/examples/with-vite-react/src/web3-onboard.ts @@ -33,14 +33,12 @@ const injected = injectedModule({ const walletLink = coinbaseModule() -const walletConnect = walletConnectModule( - { - version: 2, - // Replace with your apiKey - projectId: '4a49c32131502e8c12d54295295e2012', - dappUrl: 'https://onboard.blocknative.com/' - } -) +const walletConnect = walletConnectModule({ + version: 2, + // Replace with your apiKey + projectId: '4a49c32131502e8c12d54295295e2012', + dappUrl: 'https://onboard.blocknative.com/' +}) const portis = portisModule({ // Replace with your apiKey apiKey: 'b2b7586f-2b1e-4c30-a7fb-c2d1533b153b' @@ -137,6 +135,12 @@ export default init({ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { diff --git a/examples/with-vuejs-v2/src/components/HelloWorld.vue b/examples/with-vuejs-v2/src/components/HelloWorld.vue index 2b876a0c1..381652e33 100644 --- a/examples/with-vuejs-v2/src/components/HelloWorld.vue +++ b/examples/with-vuejs-v2/src/components/HelloWorld.vue @@ -22,17 +22,17 @@ + + ` diff --git a/packages/dcent/package.json b/packages/dcent/package.json index cdf1f6437..f955f4398 100644 --- a/packages/dcent/package.json +++ b/packages/dcent/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/dcent", - "version": "2.2.7", + "version": "2.2.8-alpha.1", "description": "D'CENT wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -56,8 +56,8 @@ "typescript": "^4.5.5" }, "dependencies": { - "@web3-onboard/common": "^2.3.3", - "@web3-onboard/hw-common": "^2.3.0", + "@web3-onboard/common": "^2.3.4", + "@web3-onboard/hw-common": "^2.3.1", "@ethereumjs/tx": "^3.4.0", "@ethersproject/providers": "^5.5.0", "eth-dcent-keyring": "^0.2.2" diff --git a/packages/demo/package.json b/packages/demo/package.json index c84465bf5..80bb6e7ab 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -32,7 +32,7 @@ "@web3-onboard/blocto": "^2.0.1", "@web3-onboard/capsule": "2.0.1", "@web3-onboard/cede-store": "^2.2.0", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4-alpha.1", "@web3-onboard/coinbase": "^2.2.7", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.3", diff --git a/packages/demo/src/App.svelte b/packages/demo/src/App.svelte index 8b45b67f5..00f14b8d1 100644 --- a/packages/demo/src/App.svelte +++ b/packages/demo/src/App.svelte @@ -315,6 +315,12 @@ label: 'Base', rpcUrl: 'https://mainnet.base.org' }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' + }, { id: '0x38', token: 'BNB', diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index 8ffa6fbb0..628c969f0 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -1,5 +1,5 @@ import uniqBy from 'lodash.uniqby' -import { createEIP1193Provider, type WalletInit } from '@web3-onboard/common' +import type { WalletInit } from '@web3-onboard/common' import { ProviderLabel } from './types.js' import standardWallets from './wallets.js' import { diff --git a/packages/react/package.json b/packages/react/package.json index cb9b25596..4e0c8efe9 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.14", + "version": "2.8.15-alpha.1", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4-alpha.1", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index dd9dfd56b..ab11afb25 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.1", + "version": "2.0.2-alpha.1", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4-alpha.1", "solid-js": "^1.8.1" } } diff --git a/packages/vue/package.json b/packages/vue/package.json index 5294a41bb..484a9ccc8 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.13", + "version": "2.7.14-alpha.1", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.4", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4-alpha.1", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 89a2c6428..5c3de1975 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6293,6 +6293,26 @@ ethers "5.5.4" joi "17.9.1" +"@web3-onboard/dcent@^2.2.7": + version "2.2.7" + resolved "https://registry.yarnpkg.com/@web3-onboard/dcent/-/dcent-2.2.7.tgz#f7de77d85fde96158321635eab4baad911a0b9dd" + integrity sha512-ajGtg0OJh+QN0d4SZJaTOgbtPmbMT+VYqxRMIapNa8L+07cVoukwM4RaksqOc69AjosKuPK0TFQa2m5NPu4hpQ== + dependencies: + "@ethereumjs/tx" "^3.4.0" + "@ethersproject/providers" "^5.5.0" + "@web3-onboard/common" "^2.3.3" + "@web3-onboard/hw-common" "^2.3.0" + eth-dcent-keyring "^0.2.2" + +"@web3-onboard/injected-wallets@^2.10.13": + version "2.10.13" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13.tgz#e82c5275db22f7711cce02c607e9e6e9ab144658" + integrity sha512-YnuwqbtlbAa6QyqJ/1YIkNLX92f8CkcFCt7HePjlZhYhaG9Gron/JzbAv2o7TcKQyySjahhwvvntvgXlABx8Ag== + dependencies: + "@web3-onboard/common" "^2.3.3" + joi "17.9.1" + lodash.uniqby "^4.7.0" + "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From 10e0700b672ee77a77e956dacf5e792309e38adf Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Thu, 4 Apr 2024 14:17:22 -0600 Subject: [PATCH 35/49] Release 2.25.2 (develop) (#2132) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (docs) (#2103) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor * bump docs to latest w3o verisons --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.1 (#2118) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Release 2.25.0 (develop) (#2101) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (docs) (#2103) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (develop) (#2101) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --… * Update docs node version * update versions --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon --- .github/workflows/docs.yml | 2 +- docs/package.json | 2 +- examples/with-sveltekit/package.json | 2 +- package.json | 2 +- packages/core/package.json | 2 +- packages/dcent/package.json | 2 +- packages/demo/package.json | 4 ++-- packages/injected/package.json | 2 +- packages/injected/src/index.ts | 2 +- packages/react/package.json | 4 ++-- packages/solid/package.json | 4 ++-- packages/vue/package.json | 4 ++-- yarn.lock | 17 ++--------------- 13 files changed, 18 insertions(+), 31 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8c34c823b..d95b11690 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -40,7 +40,7 @@ jobs: - name: Setup Nodejs and yarn uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "18.18" cache: yarn - name: Install dependencies diff --git a/docs/package.json b/docs/package.json index 149202881..dc48623a4 100644 --- a/docs/package.json +++ b/docs/package.json @@ -58,7 +58,7 @@ "@web3-onboard/capsule": "^2.0.1", "@web3-onboard/cede-store": "^2.2.0", "@web3-onboard/coinbase": "^2.2.7", - "@web3-onboard/core": "^2.21.4-alpha.1", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.4", "@web3-onboard/fortmatic": "^2.0.19", diff --git a/examples/with-sveltekit/package.json b/examples/with-sveltekit/package.json index dec2e87ef..fbe908030 100644 --- a/examples/with-sveltekit/package.json +++ b/examples/with-sveltekit/package.json @@ -35,7 +35,7 @@ "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "@fontsource/fira-mono": "^4.5.10", "@rollup/plugin-commonjs": "^25.0.7", - "@web3-onboard/core": "^2.21.3-alpha.1", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/injected-wallets": "^2.8.5", "@web3-onboard/walletconnect": "^2.3.6", "assert": "^2.1.0", diff --git a/package.json b/package.json index b47036510..227dcb334 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.25.1", + "version": "2.25.2", "private": true, "workspaces": { "packages": [ diff --git a/packages/core/package.json b/packages/core/package.json index fc2b1ef56..ced495256 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/core", - "version": "2.21.4-alpha.1", + "version": "2.21.4", "description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/dcent/package.json b/packages/dcent/package.json index f955f4398..02e5430a5 100644 --- a/packages/dcent/package.json +++ b/packages/dcent/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/dcent", - "version": "2.2.8-alpha.1", + "version": "2.2.8", "description": "D'CENT wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/demo/package.json b/packages/demo/package.json index 80bb6e7ab..51569d2cc 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -32,7 +32,7 @@ "@web3-onboard/blocto": "^2.0.1", "@web3-onboard/capsule": "2.0.1", "@web3-onboard/cede-store": "^2.2.0", - "@web3-onboard/core": "^2.21.4-alpha.1", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/coinbase": "^2.2.7", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.3", @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.13", + "@web3-onboard/injected-wallets": "^2.10.14", "@web3-onboard/keepkey": "^2.3.8", "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", diff --git a/packages/injected/package.json b/packages/injected/package.json index df9b36a91..fe8735ca1 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.14-alpha.1", + "version": "2.10.14", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index 628c969f0..8ffa6fbb0 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -1,5 +1,5 @@ import uniqBy from 'lodash.uniqby' -import type { WalletInit } from '@web3-onboard/common' +import { createEIP1193Provider, type WalletInit } from '@web3-onboard/common' import { ProviderLabel } from './types.js' import standardWallets from './wallets.js' import { diff --git a/packages/react/package.json b/packages/react/package.json index 4e0c8efe9..7c6613baa 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.15-alpha.1", + "version": "2.8.15", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.4-alpha.1", + "@web3-onboard/core": "^2.21.4", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index ab11afb25..6631cb3a0 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.2-alpha.1", + "version": "2.0.2", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.4-alpha.1", + "@web3-onboard/core": "^2.21.4", "solid-js": "^1.8.1" } } diff --git a/packages/vue/package.json b/packages/vue/package.json index 484a9ccc8..181fcfddf 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.14-alpha.1", + "version": "2.7.14", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.4", - "@web3-onboard/core": "^2.21.4-alpha.1", + "@web3-onboard/core": "^2.21.4", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 5c3de1975..8ab7327a9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6293,21 +6293,8 @@ ethers "5.5.4" joi "17.9.1" -"@web3-onboard/dcent@^2.2.7": - version "2.2.7" - resolved "https://registry.yarnpkg.com/@web3-onboard/dcent/-/dcent-2.2.7.tgz#f7de77d85fde96158321635eab4baad911a0b9dd" - integrity sha512-ajGtg0OJh+QN0d4SZJaTOgbtPmbMT+VYqxRMIapNa8L+07cVoukwM4RaksqOc69AjosKuPK0TFQa2m5NPu4hpQ== - dependencies: - "@ethereumjs/tx" "^3.4.0" - "@ethersproject/providers" "^5.5.0" - "@web3-onboard/common" "^2.3.3" - "@web3-onboard/hw-common" "^2.3.0" - eth-dcent-keyring "^0.2.2" - -"@web3-onboard/injected-wallets@^2.10.13": - version "2.10.13" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13.tgz#e82c5275db22f7711cce02c607e9e6e9ab144658" - integrity sha512-YnuwqbtlbAa6QyqJ/1YIkNLX92f8CkcFCt7HePjlZhYhaG9Gron/JzbAv2o7TcKQyySjahhwvvntvgXlABx8Ag== +"@web3-onboard/injected-wallets@^2.10.14": + version "2.10.14-alpha.1" dependencies: "@web3-onboard/common" "^2.3.3" joi "17.9.1" From 04ba2dcf9b7ce7ff0609a4a26effeb823b9bb7d7 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Thu, 4 Apr 2024 14:17:29 -0600 Subject: [PATCH 36/49] Release 2.25.2 (docs) (#2134) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (develop) (#2101) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * [FIX] : Injected 6963 providers precedence over native (#2115) * Bump versions for release and Remove console.log * Ensure 6963 providers take precedence if found on the window * Release 2.25.1 (#2118) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Release 2.25.0 (develop) (#2101) * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Change node verison for MM and trezor * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Decrement node version for metamask module * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump resource class for MM build * Reset node version * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node v to 18.9.1 * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (docs) (#2103) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Bump versions for release and Remove console.log * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (#2104) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update MetaMask CCI node version to 18.18.1 (#2105) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Bump CCI resource class for MetaMask module (#2106) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Update CCI node v for MetaMask and Trezor to 18.9.1 (#2107) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Refine CCI workflow for Prod Release, update Node V for MetaMask and Trezor (#2108) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Change node verison for MM and trezor * Decrement node version for metamask module * Bump resource class for MM build * Reset node version * Update node v to 18.9.1 * Update node min verison on MM module * Update npm publish script * Refine node v for metamask and trezor --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon * Release 2.25.0 (docs) (#2103) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * load ledger connect kit via package instead of loader (#2061) * load ledger connect kit via package instead of loader * change import ethereumprovider type file extension * Update default optional methods, bump to minor version as deps changed and test --------- Co-authored-by: Adam Carpenter * Bump ledger module node version for build to 16.14.2 (#2062) * Ledger - [FIX] : Bump ledger module node version for build to 18.0.0 because of WC dep (#2063) * Bump ledger module node version for build to 16.14.2 * Bump node version again for WC dep within ledger * Add Lif3 Wallet Support (#2058) * add lif3Wallet * Update package version and add wallet to docs * Fix Lif3 Wallet name --------- Co-authored-by: Tekrajs Co-authored-by: Adam Carpenter * Adds Particle Network (Wallet-as-a-Service) (#1962) * Add files via upload * Update README.md * Create +page.md * Update package.json * Rename +page.md to +page.md * Update apple.ts * Demo addition * Update packages/demo/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Update packages/particle-network/package.json Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * Fixes * Correction * Update index.ts * Update index.ts * Update index.ts * Update index.ts * Small type fix and format * async fix --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> * add particle to config.yml, reorder docs tabs, add particle to docs onboard (#2069) * Add capsule to docs wallet options (#2070) * Fix the connect modal getting covered by the bottom bar (#2057) * fix the connect modal being covered by the bottom bar * pump the package version * feat: remove .mobile-safari class * bump packages' version * bump the version of @web3-onboard/core in other packages --------- Co-authored-by: Adam Carpenter * feat: rabby support mobile (#2079) * FEAT - Add 6963 support to injected wallets module (#2076) * Add 6963 support to injected module * add option to disable usage * update docs * Update readmes * Helper fnc to check for executable js * Update packages/injected/src/wallets.ts * Merge in dev * feat: update blocto version (#2082) * feat: update blocto sdk version * feat: update blocto version * feat: update demo polygon testnet rpcUrl * feat: update package version * fix: update package version * fix: use optional chaining * fix: uppercase variable name * fix: use css vars for font size (wallet button) (#2072) * fix: use css vars for font-size * chore: bump version * chore: bump dependents * chore: bump versions * Bump module versions --------- Co-authored-by: Adam Carpenter * Update: WalletConnet deps to latest (#2083) * Update WC deps * Update WC versions * Fix the demo (#2086) * Update coinbase wallet dependencies, add new init props to contructor, add JS docs notes and update docs (#2093) * Bump packages that require common, fix inter url (#2092) * Update Trezor & Keepkey build node v to 18 (#2098) * Update trezor build node v to 18 * Update keepkey node v also * [FIX] - Keepkey build Node version to 16.20.2 (#2099) * Update trezor build node v to 18 * Update keepkey node v also * Update keepkey node v * Revert node v changes for bitkeep * Bump MetaMask module sdk deps (#2087) * Bump MetaMask deps * Add engines to metamask to define node version requirements * Update node version for metamask within CCI to 18.19.1 (#2100) * Bump versions for release and Remove console.log * Bump versions for release and Remove console.log * node engine * node engine * Release 2.25.0 (#2102) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Release 2.24.19 (develop) (#2042) * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --------- Co-authored-by: Max Alekseenko * Release 2.24.19 (docs) (#2044) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo * Release 2.24.19 (#2043) * Remove gamestop wallet support as wallet has been deprecated (#2037) * Update WC imports, bump WC package version, bump WC dep version (#2036) * Fix the Safe connector options and add Blockscout to the list of allowed domains (#2038) * change option name * add Blockscout to default list of allowed domains * change option name in docs * increment the version * return the old param name * Update packages/gnosis/package.json * Update packages/demo/package.json * Update packages/gnosis/package.json * Update packages/demo/package.json * Yarn it --------- Co-authored-by: Adam Carpenter * Update versions for release * Bump injected version in demo --------- Co-authored-by: Max Alekseenko * rebase main * Update node version required for Walletconnect package * Yarn * [FIX] - Update node version required for Walletconnect package (#2045) * rebase main * Update node version required for Walletconnect package * Yarn * Updated config.yml * Updated config.yml --… * [FIX] - 6963 provider creation (#2123) * Bump versions for release and Remove console.log * Do try to create 1193 provider from 6963 injected provider as the providers are frozen by the standard and already in 1193 * [UPDATE] - Celo icon and demo support (#2131) * Bump versions for release and Remove console.log * Update celo icon and add celo support to demo examples * Update more docs * Interact with w3o providers * Use different celo icon * Update docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md * Update versions * update versions * Update injected version --------- Co-authored-by: Max Alekseenko Co-authored-by: Samy Rabah Co-authored-by: Kean Laurens Co-authored-by: Tekrajs Co-authored-by: TABASCO <84655644+TABASCOatw@users.noreply.github.com> Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com> Co-authored-by: Hugh Do Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: jimmy.pan Co-authored-by: Ryan Waldon --- docs/package.json | 2 +- .../[...1]introduction/+page.md | 10 +++- .../docs/[...3]modules/[...1]core/+page.md | 14 ++++++ .../[...4]wallets/[...14]injected/+page.md | 6 ++- .../examples/[...1]connect-wallet/+page.md | 17 ++++++- examples/with-nextjs-13/web3-onboard.ts | 6 +++ examples/with-nextjs/pages/_app.js | 14 ++++-- .../src/providers/onboard-provider/options.ts | 6 +++ examples/with-sveltekit/package.json | 2 +- .../with-sveltekit/src/lib/web3-onboard.ts | 6 +++ examples/with-vanilla-js/src/onboard.js | 6 +++ examples/with-vite-react/src/web3-onboard.ts | 20 +++++--- .../src/components/HelloWorld.vue | 50 +++++++++++-------- examples/with-vuejs/src/App.vue | 6 +++ package.json | 2 +- packages/core/package.json | 2 +- packages/core/src/icons/celo.ts | 13 +++-- packages/dcent/package.json | 6 +-- packages/demo/package.json | 4 +- packages/demo/src/App.svelte | 6 +++ packages/injected/package.json | 2 +- packages/injected/src/index.ts | 4 +- packages/react/package.json | 4 +- packages/solid/package.json | 4 +- packages/vue/package.json | 4 +- yarn.lock | 7 +++ 26 files changed, 164 insertions(+), 59 deletions(-) diff --git a/docs/package.json b/docs/package.json index b61a629ca..dc48623a4 100644 --- a/docs/package.json +++ b/docs/package.json @@ -58,7 +58,7 @@ "@web3-onboard/capsule": "^2.0.1", "@web3-onboard/cede-store": "^2.2.0", "@web3-onboard/coinbase": "^2.2.7", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.4", "@web3-onboard/fortmatic": "^2.0.19", diff --git a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md index 91b7302c5..4707e3355 100644 --- a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md +++ b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md @@ -32,9 +32,9 @@ Web3-Onboard is the quickest and easiest way to add multi-wallet and multi-chain - **Notify:** Real-time transaction notifications for all transaction states for the connected wallet address(es). In-notification speedups & cancels for hardware wallet connections. -### Supported Networks +### Natively Supported EVM Chains -web3-onboard supports all EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](../../modules/core.md#initialization). +web3-onboard supports ALL EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](../../modules/core.md#initialization). - Ethereum - Arbitrum One @@ -126,6 +126,12 @@ const onboard = Onboard({ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] }) diff --git a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md index 6bb769ac4..087a32e68 100644 --- a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md +++ b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md @@ -671,6 +671,12 @@ const onboard = Onboard({ token: 'OETH', label: 'Optimism', rpcUrl: 'https://mainnet.optimism.io' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { @@ -755,6 +761,10 @@ const onboard = Onboard({ To initiate a user to select and connect a wallet you can call the `connectWallet` function on an initialized Onboard instance. It will return a `Promise` that will resolve when the user either successfully connects a wallet, or when they dismiss the UI. The resolved value from the promise will be the latest state of the `wallets` array. The order of the wallets array is last to first, so the most recently selected wallet will be the first item in the array and can be thought of as the "primary wallet". If no wallet was selected, then the `wallets` array will have the same state as it had before calling `connectWallet`. +### Wallet Provider + +Wallets connected through web3-onboard are all passed to the dapp following the EIP-1193 standard. This allows for the same interaction between all wallets connected through web3-onboard and abstracts away the challenges of working with different wallet providers. + ### Example ```javascript @@ -766,6 +776,10 @@ async function connectWallet() { connectWallet() ``` +### Interacting with the providers - Transfer, Send, Sign using ethers.js + +For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) + ### Auto Selecting a Wallet A common UX pattern is to remember the last wallet that a user has previously connected by storing it in localStorage and then automatically selecting them for the user next time they visit your app. diff --git a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md index 8f317b0d8..cc84d188b 100644 --- a/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...14]injected/+page.md @@ -4,10 +4,14 @@ title: Injected Wallets # {$frontmatter.title} -This module lets web3-onboard automatically detect Browser Injected Wallets such as Metamask or Coinbase Wallet. We recommend you install this module to get the most out of your w3o implementation. This module supports [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) and [recognizes many injected wallets natively](#injected-wallets-supported-natively) as well as supports [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) and recognizes any wallet that has implemented 6963 support. +This module lets web3-onboard automatically detect Browser Injected Wallets such as Metamask or Coinbase Wallet. We recommend you install this module to get the most out of your w3o implementation. This module supports [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) and [recognizes many injected wallets natively](#injected-wallets-supported-natively) as well as supports all [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) compatible wallets. Note: Make sure to install the core module before installing other modules to w3o. +### Support all EIP-6963 Wallets out of the box + +Web3-Onboard supports all [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) compatible wallets out of the box and will automatically recognizes any wallet which has integrated 6963 support. + ## Install diff --git a/docs/src/routes/examples/[...1]connect-wallet/+page.md b/docs/src/routes/examples/[...1]connect-wallet/+page.md index 4185ad0b8..f65283af4 100644 --- a/docs/src/routes/examples/[...1]connect-wallet/+page.md +++ b/docs/src/routes/examples/[...1]connect-wallet/+page.md @@ -38,7 +38,6 @@ npm install @web3-onboard/react @web3-onboard/injected-wallets @web3-onboard/inf - ## Step 2: Import + Configure Import the libraries and any wallets you would like to use. For this example, we are going to use the injected wallets module. You can easily add more wallet support to your dapp via our other wallet modules. Additionally, we'll setup web3-onboard to support 2 chains: Ethereum mainnet and Polygon mainnet. @@ -156,6 +155,12 @@ const chains = [ token: 'ARB-ETH', label: 'Arbitrum', rpcUrl: 'https://rpc.ankr.com/arbitrum' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] @@ -412,6 +417,12 @@ const chains = [ token: 'ARB-ETH', label: 'Arbitrum', rpcUrl: 'https://rpc.ankr.com/arbitrum' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] @@ -497,3 +508,7 @@ Now that we have our wallet connected, let's display some basic information, suc + +## Interacting with the providers - Transfer, Send, Sign using ethers.js + +For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) \ No newline at end of file diff --git a/examples/with-nextjs-13/web3-onboard.ts b/examples/with-nextjs-13/web3-onboard.ts index 9ade5bb75..16fb7059d 100644 --- a/examples/with-nextjs-13/web3-onboard.ts +++ b/examples/with-nextjs-13/web3-onboard.ts @@ -123,6 +123,12 @@ export default init({ token: 'MATIC', label: 'Matic Mainnet', rpcUrl: 'https://matic-mainnet.chainstacklabs.com' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { diff --git a/examples/with-nextjs/pages/_app.js b/examples/with-nextjs/pages/_app.js index 6f1824185..579c90489 100644 --- a/examples/with-nextjs/pages/_app.js +++ b/examples/with-nextjs/pages/_app.js @@ -23,17 +23,23 @@ const baseMainnet = { label: 'Base', rpcUrl: 'https://mainnet.base.org' } +const celoMainnet = { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' +} -const chains = [ethereumRopsten, polygonMainnet, baseMainnet] +const chains = [ethereumRopsten, polygonMainnet, baseMainnet,celoMainnet] const wallets = [injectedModule()] const web3Onboard = init({ wallets, chains, appMetadata: { - name: "Web3-Onboard Demo", + name: 'Web3-Onboard Demo', icon: 'My App Icon', - description: "A demo of Web3-Onboard." + description: 'A demo of Web3-Onboard.' } }) @@ -45,4 +51,4 @@ function MyApp({ Component, pageProps }) { ) } -export default MyApp \ No newline at end of file +export default MyApp diff --git a/examples/with-solidjs/src/providers/onboard-provider/options.ts b/examples/with-solidjs/src/providers/onboard-provider/options.ts index aa0ffef8a..f151e80a7 100644 --- a/examples/with-solidjs/src/providers/onboard-provider/options.ts +++ b/examples/with-solidjs/src/providers/onboard-provider/options.ts @@ -28,6 +28,12 @@ export const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ]; diff --git a/examples/with-sveltekit/package.json b/examples/with-sveltekit/package.json index dec2e87ef..fbe908030 100644 --- a/examples/with-sveltekit/package.json +++ b/examples/with-sveltekit/package.json @@ -35,7 +35,7 @@ "@esbuild-plugins/node-modules-polyfill": "^0.2.2", "@fontsource/fira-mono": "^4.5.10", "@rollup/plugin-commonjs": "^25.0.7", - "@web3-onboard/core": "^2.21.3-alpha.1", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/injected-wallets": "^2.8.5", "@web3-onboard/walletconnect": "^2.3.6", "assert": "^2.1.0", diff --git a/examples/with-sveltekit/src/lib/web3-onboard.ts b/examples/with-sveltekit/src/lib/web3-onboard.ts index 5ce8d77bf..02ec180c7 100644 --- a/examples/with-sveltekit/src/lib/web3-onboard.ts +++ b/examples/with-sveltekit/src/lib/web3-onboard.ts @@ -33,6 +33,12 @@ const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] diff --git a/examples/with-vanilla-js/src/onboard.js b/examples/with-vanilla-js/src/onboard.js index 7f799e3be..1b2773aab 100644 --- a/examples/with-vanilla-js/src/onboard.js +++ b/examples/with-vanilla-js/src/onboard.js @@ -29,6 +29,12 @@ const chains = [ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ] diff --git a/examples/with-vite-react/src/web3-onboard.ts b/examples/with-vite-react/src/web3-onboard.ts index cacb6b1a2..7c7f9c7c9 100644 --- a/examples/with-vite-react/src/web3-onboard.ts +++ b/examples/with-vite-react/src/web3-onboard.ts @@ -33,14 +33,12 @@ const injected = injectedModule({ const walletLink = coinbaseModule() -const walletConnect = walletConnectModule( - { - version: 2, - // Replace with your apiKey - projectId: '4a49c32131502e8c12d54295295e2012', - dappUrl: 'https://onboard.blocknative.com/' - } -) +const walletConnect = walletConnectModule({ + version: 2, + // Replace with your apiKey + projectId: '4a49c32131502e8c12d54295295e2012', + dappUrl: 'https://onboard.blocknative.com/' +}) const portis = portisModule({ // Replace with your apiKey apiKey: 'b2b7586f-2b1e-4c30-a7fb-c2d1533b153b' @@ -137,6 +135,12 @@ export default init({ token: 'ETH', label: 'Base', rpcUrl: 'https://mainnet.base.org' + }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' } ], appMetadata: { diff --git a/examples/with-vuejs-v2/src/components/HelloWorld.vue b/examples/with-vuejs-v2/src/components/HelloWorld.vue index 2b876a0c1..381652e33 100644 --- a/examples/with-vuejs-v2/src/components/HelloWorld.vue +++ b/examples/with-vuejs-v2/src/components/HelloWorld.vue @@ -22,17 +22,17 @@ + + ` diff --git a/packages/dcent/package.json b/packages/dcent/package.json index cdf1f6437..02e5430a5 100644 --- a/packages/dcent/package.json +++ b/packages/dcent/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/dcent", - "version": "2.2.7", + "version": "2.2.8", "description": "D'CENT wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -56,8 +56,8 @@ "typescript": "^4.5.5" }, "dependencies": { - "@web3-onboard/common": "^2.3.3", - "@web3-onboard/hw-common": "^2.3.0", + "@web3-onboard/common": "^2.3.4", + "@web3-onboard/hw-common": "^2.3.1", "@ethereumjs/tx": "^3.4.0", "@ethersproject/providers": "^5.5.0", "eth-dcent-keyring": "^0.2.2" diff --git a/packages/demo/package.json b/packages/demo/package.json index c84465bf5..51569d2cc 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -32,7 +32,7 @@ "@web3-onboard/blocto": "^2.0.1", "@web3-onboard/capsule": "2.0.1", "@web3-onboard/cede-store": "^2.2.0", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4", "@web3-onboard/coinbase": "^2.2.7", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.3", @@ -42,7 +42,7 @@ "@web3-onboard/gas": "^2.1.7", "@web3-onboard/gnosis": "^2.2.1", "@web3-onboard/infinity-wallet": "^2.0.3", - "@web3-onboard/injected-wallets": "^2.10.13", + "@web3-onboard/injected-wallets": "^2.10.14", "@web3-onboard/keepkey": "^2.3.8", "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", diff --git a/packages/demo/src/App.svelte b/packages/demo/src/App.svelte index 8b45b67f5..00f14b8d1 100644 --- a/packages/demo/src/App.svelte +++ b/packages/demo/src/App.svelte @@ -315,6 +315,12 @@ label: 'Base', rpcUrl: 'https://mainnet.base.org' }, + { + id: '0xa4ec', + token: 'ETH', + label: 'Celo', + rpcUrl: 'https://1rpc.io/celo' + }, { id: '0x38', token: 'BNB', diff --git a/packages/injected/package.json b/packages/injected/package.json index 22779a268..fe8735ca1 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.13", + "version": "2.10.14", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/index.ts b/packages/injected/src/index.ts index e39ce8b33..8ffa6fbb0 100644 --- a/packages/injected/src/index.ts +++ b/packages/injected/src/index.ts @@ -53,10 +53,10 @@ function checkFor6963Providers() { label: name, getIcon: async () => icon, getInterface: async () => ({ - provider: createEIP1193Provider(provider) + provider }), platforms: ['all'], - eip6963Provider: createEIP1193Provider(provider) as InjectedProvider, + eip6963Provider: provider as InjectedProvider, checkProviderIdentity: ({ provider }) => !!provider }) }) diff --git a/packages/react/package.json b/packages/react/package.json index cb9b25596..7c6613baa 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.14", + "version": "2.8.15", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index dd9dfd56b..6631cb3a0 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.1", + "version": "2.0.2", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4", "solid-js": "^1.8.1" } } diff --git a/packages/vue/package.json b/packages/vue/package.json index 5294a41bb..181fcfddf 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.13", + "version": "2.7.14", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.4", - "@web3-onboard/core": "^2.21.3", + "@web3-onboard/core": "^2.21.4", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 89a2c6428..8ab7327a9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6293,6 +6293,13 @@ ethers "5.5.4" joi "17.9.1" +"@web3-onboard/injected-wallets@^2.10.14": + version "2.10.14-alpha.1" + dependencies: + "@web3-onboard/common" "^2.3.3" + joi "17.9.1" + lodash.uniqby "^4.7.0" + "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From fc59cacd4a85529d8ca52559740b7a0818d02406 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Fri, 5 Apr 2024 08:59:01 -0600 Subject: [PATCH 37/49] UPDATE - Metamask sdk to latest (#2136) * Bump versions for release and Remove console.log * Update to latest version of mm sdk * Update v in docs --- docs/package.json | 2 +- packages/demo/package.json | 2 +- packages/metamask/package.json | 4 ++-- yarn.lock | 25 +++++++++---------------- 4 files changed, 13 insertions(+), 20 deletions(-) diff --git a/docs/package.json b/docs/package.json index dc48623a4..d8de6939a 100644 --- a/docs/package.json +++ b/docs/package.json @@ -72,7 +72,7 @@ "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.6.0", "@web3-onboard/magic": "^2.1.7", - "@web3-onboard/metamask": "^2.0.3", + "@web3-onboard/metamask": "^2.0.4-alpha.1", "@web3-onboard/mew-wallet": "^2.0.4", "@web3-onboard/phantom": "^2.0.3", "@web3-onboard/portis": "^2.1.7", diff --git a/packages/demo/package.json b/packages/demo/package.json index 51569d2cc..6524d37e9 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -47,7 +47,7 @@ "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", "@web3-onboard/magic": "^2.1.6", - "@web3-onboard/metamask": "^2.0.3", + "@web3-onboard/metamask": "^2.0.4-alpha.1", "@web3-onboard/mew-wallet": "^2.0.3", "@web3-onboard/phantom": "^2.0.3", "@web3-onboard/portis": "^2.1.6", diff --git a/packages/metamask/package.json b/packages/metamask/package.json index e1758a063..aa34ae7dd 100644 --- a/packages/metamask/package.json +++ b/packages/metamask/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/metamask", - "version": "2.0.3", + "version": "2.0.4-alpha.1", "description": "MetaMask SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -60,7 +60,7 @@ "typescript": "^5.2.2" }, "dependencies": { - "@metamask/sdk": "^0.17.1", + "@metamask/sdk": "^0.18.2", "@web3-onboard/common": "^2.3.3" }, "engines": { diff --git a/yarn.lock b/yarn.lock index 8ab7327a9..c5ded117e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2987,10 +2987,10 @@ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.0.0.tgz#8c2b9073fe0722d48693143b0dc8448840daa3bd" integrity sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ== -"@metamask/sdk-communication-layer@0.17.0": - version "0.17.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.17.0.tgz#890dbcdc983be32fdd9600cc996ede00cc2090fc" - integrity sha512-au1HzkU4VxAWjIvGGhvv/yPlB+x4jEi70c/GpjhHgJ7EG8TJprYy9jAOxfzc8h7hXRzOA8PCkFMzJu5COrJCYA== +"@metamask/sdk-communication-layer@0.18.2": + version "0.18.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.18.2.tgz#f7cf48a6938890397f39386bcfc82c8b967b7652" + integrity sha512-5Hf2K+v3PWjmk+yxl9C2UXc7bMp77tBu3nUvZrpETB+bJ5y5rsKSe8Tkz7EFTobP+Xp6zUmqkSGmw24kO+Qqag== dependencies: bufferutil "^4.0.8" date-fns "^2.29.3" @@ -3005,14 +3005,14 @@ dependencies: qr-code-styling "^1.6.0-rc.1" -"@metamask/sdk@^0.17.1": - version "0.17.1" - resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.17.1.tgz#a4febeae2306602e74f16e1db9fea56bd01d7fb2" - integrity sha512-Ltb3REkgKVXjJqoK4N7+ZVxbuP9ZYieS/H3ENcl+Un7BEg4ImIoX2XoUXIO1XdCyZHW8QN554mDb9RBR8FQ7Jw== +"@metamask/sdk@^0.18.2": + version "0.18.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.18.2.tgz#3ecbbe62530de0046fb885e70e3de9f6ce6b641a" + integrity sha512-iLiadHCDNxPKjOEjVxmhawLm6NdRW+2Cf1mnvQgHk/xueZysruZcwd1cpV63Eya5KfGl5T7fJNUwKur5zCY05g== dependencies: "@metamask/onboarding" "^1.0.1" "@metamask/providers" "^15.0.0" - "@metamask/sdk-communication-layer" "0.17.0" + "@metamask/sdk-communication-layer" "0.18.2" "@metamask/sdk-install-modal-web" "0.17.0" "@types/dom-screen-wake-lock" "^1.0.0" bowser "^2.9.0" @@ -6293,13 +6293,6 @@ ethers "5.5.4" joi "17.9.1" -"@web3-onboard/injected-wallets@^2.10.14": - version "2.10.14-alpha.1" - dependencies: - "@web3-onboard/common" "^2.3.3" - joi "17.9.1" - lodash.uniqby "^4.7.0" - "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From 20aee6306a0c470ab759cfb3852eaf0a5c6c905c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:27:52 -0600 Subject: [PATCH 38/49] Bump vite from 4.5.0 to 4.5.3 in /docs (#2130) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.0 to 4.5.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.3/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/package.json | 2 +- docs/yarn.lock | 50 +++++++++++++++++++++++------------------------ 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/docs/package.json b/docs/package.json index d8de6939a..154c8908d 100644 --- a/docs/package.json +++ b/docs/package.json @@ -46,7 +46,7 @@ "tslib": "^2.4.1", "typescript": "^5.0.4", "unplugin-icons": "^0.14.0", - "vite": "^4.5.0" + "vite": "^4.5.3" }, "type": "module", "dependencies": { diff --git a/docs/yarn.lock b/docs/yarn.lock index 7052ebf84..a060925a8 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -3212,10 +3212,10 @@ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.0.0.tgz#8c2b9073fe0722d48693143b0dc8448840daa3bd" integrity sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ== -"@metamask/sdk-communication-layer@0.17.0": - version "0.17.0" - resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.17.0.tgz#890dbcdc983be32fdd9600cc996ede00cc2090fc" - integrity sha512-au1HzkU4VxAWjIvGGhvv/yPlB+x4jEi70c/GpjhHgJ7EG8TJprYy9jAOxfzc8h7hXRzOA8PCkFMzJu5COrJCYA== +"@metamask/sdk-communication-layer@0.18.2": + version "0.18.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.18.2.tgz#f7cf48a6938890397f39386bcfc82c8b967b7652" + integrity sha512-5Hf2K+v3PWjmk+yxl9C2UXc7bMp77tBu3nUvZrpETB+bJ5y5rsKSe8Tkz7EFTobP+Xp6zUmqkSGmw24kO+Qqag== dependencies: bufferutil "^4.0.8" date-fns "^2.29.3" @@ -3230,14 +3230,14 @@ dependencies: qr-code-styling "^1.6.0-rc.1" -"@metamask/sdk@^0.17.1": - version "0.17.2" - resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.17.2.tgz#047e08a6a6460ca84efcfd2ebd477a83ba34c38a" - integrity sha512-5DkeywTJLf2BLCQ2aa2D7bIcoAc/107uFXlDA/1lpCnbWc9ZHloFomdu3d1e3dRegqCOzDGuJjOA+dPonDQZZw== +"@metamask/sdk@^0.18.2": + version "0.18.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.18.2.tgz#3ecbbe62530de0046fb885e70e3de9f6ce6b641a" + integrity sha512-iLiadHCDNxPKjOEjVxmhawLm6NdRW+2Cf1mnvQgHk/xueZysruZcwd1cpV63Eya5KfGl5T7fJNUwKur5zCY05g== dependencies: "@metamask/onboarding" "^1.0.1" "@metamask/providers" "^15.0.0" - "@metamask/sdk-communication-layer" "0.17.0" + "@metamask/sdk-communication-layer" "0.18.2" "@metamask/sdk-install-modal-web" "0.17.0" "@types/dom-screen-wake-lock" "^1.0.0" bowser "^2.9.0" @@ -5907,10 +5907,10 @@ ethers "5.5.4" joi "17.9.1" -"@web3-onboard/core@^2.21.3": - version "2.21.3" - resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.3.tgz#12f1561da218bae9d9d4c48cd132fa6ebaf4beca" - integrity sha512-PVQtsk5eLHNIxrLqjEtbF+w8yDxovTmgIQobrJj0D4m3wZE0Cr7AQay1q5u+bC1FKmTvQ7ZVzEXMFdquPxjA2A== +"@web3-onboard/core@^2.21.4": + version "2.21.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.4.tgz#0bf80a30c32f5fd8d5330cda4b6c6729c40ca316" + integrity sha512-+nOKj3hudHXfS5J8Ej5P5v/NWuG1b/863Ikaob/UHsCrulle5ILmBNrJqs2LESLdbHjZPFQBoJG+IxTPo7yIAA== dependencies: "@web3-onboard/common" "^2.3.4" bignumber.js "^9.0.0" @@ -6004,9 +6004,9 @@ "@infinitywallet/infinity-connector" "^1.0.6" "@web3-onboard/injected-wallets@^2.10.13": - version "2.10.13-alpha.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13-alpha.1.tgz#6e7c54e242079d621ddd0c5aa79eec4ff5df8e5b" - integrity sha512-yBPt+25q6e3L3QbL8gxlGinhABVMRsaLMmpraAH+dfkRDxwrsvINcfrkZAOJu5K4ZOr1u9S3HUxd3bz5Eq8IPw== + version "2.10.14" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.14.tgz#ad4f7585927651050caec232a62774f422fb9c01" + integrity sha512-lU/YCCYNr7+Qgg1lJ1vQofmJhMPZrkRTYO0lgkGsmLFVWZZ4rJIU1dm31h5iHm4nVUbw3ItYDICKsI1NgX46AQ== dependencies: "@web3-onboard/common" "^2.3.3" joi "17.9.1" @@ -6058,12 +6058,12 @@ magic-sdk "^8.1.0" rxjs "^7.5.2" -"@web3-onboard/metamask@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@web3-onboard/metamask/-/metamask-2.0.3.tgz#ea9ef80e90700134f99f7f0a8667ca6c3dad8775" - integrity sha512-kf+4jMtJfokSFNhOyV1WxOGtmvibUK58Lho+6cvDFGSzmFQ+q+U5jK9gWMm2gkb5+l70UibUHqVCrHPFdgey+w== +"@web3-onboard/metamask@^2.0.4-alpha.1": + version "2.0.4-alpha.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/metamask/-/metamask-2.0.4-alpha.1.tgz#82a2c38642ceca806ef9e336cb3f14fce4815d56" + integrity sha512-CF/ue+zYSm3Qz4rJaBRrfk6jqrity/rG/H+JOcZ5ajZPeCUm9T4O7W3bFvZtwmaoIE0WQVxzOWqRCzpVSgP79A== dependencies: - "@metamask/sdk" "^0.17.1" + "@metamask/sdk" "^0.18.2" "@web3-onboard/common" "^2.3.3" "@web3-onboard/mew-wallet@^2.0.4": @@ -13285,10 +13285,10 @@ viem@^1.0.0: isomorphic-ws "5.0.0" ws "8.12.0" -vite@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.0.tgz#ec406295b4167ac3bc23e26f9c8ff559287cff26" - integrity sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw== +vite@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.3.tgz#d88a4529ea58bae97294c7e2e6f0eab39a50fb1a" + integrity sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg== dependencies: esbuild "^0.18.10" postcss "^8.4.27" From 6b32f9862518f4a4abd7f7304de0beef3fecd91a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:28:16 -0600 Subject: [PATCH 39/49] Bump vite from 4.4.11 to 4.5.3 in /examples/with-solidjs (#2129) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.4.11 to 4.5.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.3/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-solidjs/package.json | 2 +- examples/with-solidjs/yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/with-solidjs/package.json b/examples/with-solidjs/package.json index 172686669..23085bc2d 100644 --- a/examples/with-solidjs/package.json +++ b/examples/with-solidjs/package.json @@ -12,7 +12,7 @@ "solid-js": "^1.7.8" }, "devDependencies": { - "vite": "^4.4.5", + "vite": "^4.5.3", "vite-plugin-solid": "^2.7.0" } } diff --git a/examples/with-solidjs/yarn.lock b/examples/with-solidjs/yarn.lock index 7a4712332..1242d30e0 100644 --- a/examples/with-solidjs/yarn.lock +++ b/examples/with-solidjs/yarn.lock @@ -758,10 +758,10 @@ vite-plugin-solid@^2.7.0: solid-refresh "^0.5.3" vitefu "^0.2.4" -vite@^4.4.5: - version "4.4.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.4.11.tgz#babdb055b08c69cfc4c468072a2e6c9ca62102b0" - integrity sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A== +vite@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.3.tgz#d88a4529ea58bae97294c7e2e6f0eab39a50fb1a" + integrity sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg== dependencies: esbuild "^0.18.10" postcss "^8.4.27" From d369f42e6d4e85bf00ba73840de2836c9ddced8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:28:29 -0600 Subject: [PATCH 40/49] Bump vite from 3.2.7 to 3.2.10 in /examples/with-vite-react (#2128) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 3.2.7 to 3.2.10. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v3.2.10/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v3.2.10/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-vite-react/package.json | 2 +- examples/with-vite-react/yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/with-vite-react/package.json b/examples/with-vite-react/package.json index 6038e7620..2abbeefa6 100644 --- a/examples/with-vite-react/package.json +++ b/examples/with-vite-react/package.json @@ -40,7 +40,7 @@ "buffer": "^6.0.3", "node-stdlib-browser": "^1.2.0", "typescript": "^4.6.4", - "vite": "^3.2.7", + "vite": "^3.2.10", "vite-plugin-node-stdlib-browser": "^0.1.1" } } diff --git a/examples/with-vite-react/yarn.lock b/examples/with-vite-react/yarn.lock index 30b5440a8..1d0e92128 100644 --- a/examples/with-vite-react/yarn.lock +++ b/examples/with-vite-react/yarn.lock @@ -9877,10 +9877,10 @@ vite-plugin-node-stdlib-browser@^0.1.1: dependencies: "@rollup/plugin-inject" "^4.0.4" -vite@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/vite/-/vite-3.2.7.tgz#35a62826bd4d6b778ae5db8766d023bcd4e7bef3" - integrity sha512-29pdXjk49xAP0QBr0xXqu2s5jiQIXNvE/xwd0vUizYT2Hzqe4BksNNoWllFVXJf4eLZ+UlVQmXfB4lWrc+t18g== +vite@^3.2.10: + version "3.2.10" + resolved "https://registry.yarnpkg.com/vite/-/vite-3.2.10.tgz#7ac79fead82cfb6b5bf65613cd82fba6dcc81340" + integrity sha512-Dx3olBo/ODNiMVk/cA5Yft9Ws+snLOXrhLtrI3F4XLt4syz2Yg8fayZMWScPKoz12v5BUv7VEmQHnsfpY80fYw== dependencies: esbuild "^0.15.9" postcss "^8.4.18" From d22fef6b14015f3270958ef2a8d2fb69a15aaaa4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:28:40 -0600 Subject: [PATCH 41/49] Bump vite from 4.0.5 to 4.5.3 in /examples/with-sveltekit (#2127) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.0.5 to 4.5.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.3/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-sveltekit/package.json | 2 +- examples/with-sveltekit/yarn.lock | 359 ++++++++++++--------------- 2 files changed, 161 insertions(+), 200 deletions(-) diff --git a/examples/with-sveltekit/package.json b/examples/with-sveltekit/package.json index fbe908030..9c659a481 100644 --- a/examples/with-sveltekit/package.json +++ b/examples/with-sveltekit/package.json @@ -27,7 +27,7 @@ "svelte-preprocess": "^5.0.1", "tslib": "^2.5.0", "typescript": "^4.9.5", - "vite": "^4.0.5" + "vite": "^4.5.3" }, "type": "module", "dependencies": { diff --git a/examples/with-sveltekit/yarn.lock b/examples/with-sveltekit/yarn.lock index 9fc7d62e9..8cf216457 100644 --- a/examples/with-sveltekit/yarn.lock +++ b/examples/with-sveltekit/yarn.lock @@ -15,115 +15,115 @@ escape-string-regexp "^4.0.0" rollup-plugin-node-polyfills "^0.2.1" -"@esbuild/android-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23" - integrity sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg== - -"@esbuild/android-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz#025b6246d3f68b7bbaa97069144fb5fb70f2fff2" - integrity sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw== - -"@esbuild/android-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz#c820e0fef982f99a85c4b8bfdd582835f04cd96e" - integrity sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ== - -"@esbuild/darwin-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz#edef4487af6b21afabba7be5132c26d22379b220" - integrity sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w== - -"@esbuild/darwin-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz#42829168730071c41ef0d028d8319eea0e2904b4" - integrity sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg== - -"@esbuild/freebsd-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz#1f4af488bfc7e9ced04207034d398e793b570a27" - integrity sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw== - -"@esbuild/freebsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz#636306f19e9bc981e06aa1d777302dad8fddaf72" - integrity sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug== - -"@esbuild/linux-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz#a003f7ff237c501e095d4f3a09e58fc7b25a4aca" - integrity sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g== - -"@esbuild/linux-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz#b591e6a59d9c4fe0eeadd4874b157ab78cf5f196" - integrity sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ== - -"@esbuild/linux-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz#24333a11027ef46a18f57019450a5188918e2a54" - integrity sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg== - -"@esbuild/linux-loong64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz#d5ad459d41ed42bbd4d005256b31882ec52227d8" - integrity sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ== - -"@esbuild/linux-mips64el@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz#4e5967a665c38360b0a8205594377d4dcf9c3726" - integrity sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw== - -"@esbuild/linux-ppc64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz#206443a02eb568f9fdf0b438fbd47d26e735afc8" - integrity sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g== - -"@esbuild/linux-riscv64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz#c351e433d009bf256e798ad048152c8d76da2fc9" - integrity sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw== - -"@esbuild/linux-s390x@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz#661f271e5d59615b84b6801d1c2123ad13d9bd87" - integrity sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w== - -"@esbuild/linux-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz#e4ba18e8b149a89c982351443a377c723762b85f" - integrity sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw== - -"@esbuild/netbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz#7d4f4041e30c5c07dd24ffa295c73f06038ec775" - integrity sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA== - -"@esbuild/openbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz#970fa7f8470681f3e6b1db0cc421a4af8060ec35" - integrity sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg== - -"@esbuild/sunos-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz#abc60e7c4abf8b89fb7a4fe69a1484132238022c" - integrity sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw== - -"@esbuild/win32-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz#7b0ff9e8c3265537a7a7b1fd9a24e7bd39fcd87a" - integrity sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw== - -"@esbuild/win32-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz#e90fe5267d71a7b7567afdc403dfd198c292eb09" - integrity sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig== - -"@esbuild/win32-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz#c5a1a4bfe1b57f0c3e61b29883525c6da3e5c091" - integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== +"@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + +"@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + +"@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + +"@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + +"@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + +"@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + +"@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + +"@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + +"@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + +"@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + +"@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + +"@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + +"@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + +"@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + +"@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + +"@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + +"@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + +"@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + +"@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + +"@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + +"@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + +"@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== "@eslint/eslintrc@^1.4.1": version "1.4.1" @@ -2619,33 +2619,33 @@ es6-weak-map@^2.0.3: es6-iterator "^2.0.3" es6-symbol "^3.1.1" -esbuild@^0.16.3: - version "0.16.17" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz#fc2c3914c57ee750635fee71b89f615f25065259" - integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== +esbuild@^0.18.10: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== optionalDependencies: - "@esbuild/android-arm" "0.16.17" - "@esbuild/android-arm64" "0.16.17" - "@esbuild/android-x64" "0.16.17" - "@esbuild/darwin-arm64" "0.16.17" - "@esbuild/darwin-x64" "0.16.17" - "@esbuild/freebsd-arm64" "0.16.17" - "@esbuild/freebsd-x64" "0.16.17" - "@esbuild/linux-arm" "0.16.17" - "@esbuild/linux-arm64" "0.16.17" - "@esbuild/linux-ia32" "0.16.17" - "@esbuild/linux-loong64" "0.16.17" - "@esbuild/linux-mips64el" "0.16.17" - "@esbuild/linux-ppc64" "0.16.17" - "@esbuild/linux-riscv64" "0.16.17" - "@esbuild/linux-s390x" "0.16.17" - "@esbuild/linux-x64" "0.16.17" - "@esbuild/netbsd-x64" "0.16.17" - "@esbuild/openbsd-x64" "0.16.17" - "@esbuild/sunos-x64" "0.16.17" - "@esbuild/win32-arm64" "0.16.17" - "@esbuild/win32-ia32" "0.16.17" - "@esbuild/win32-x64" "0.16.17" + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" escape-string-regexp@^4.0.0: version "4.0.0" @@ -3013,11 +3013,6 @@ fsevents@~2.3.2: resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - function-bind@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" @@ -3151,13 +3146,6 @@ has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: dependencies: has-symbols "^1.0.3" -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - hash-base@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" @@ -3275,13 +3263,6 @@ is-callable@^1.1.3: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-core-module@^2.9.0: - version "2.10.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" - integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== - dependencies: - has "^1.0.3" - is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -3665,10 +3646,10 @@ nanoid@^3.3.1: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== nanoid@^4.0.0: version "4.0.1" @@ -3833,11 +3814,6 @@ path-key@^3.1.0: resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - path-type@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" @@ -3909,14 +3885,14 @@ possible-typed-array-names@^1.0.0: resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== -postcss@^8.4.20: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== +postcss@^8.4.27: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" picocolors "^1.0.0" - source-map-js "^1.0.2" + source-map-js "^1.2.0" preact@10.4.1: version "10.4.1" @@ -4100,15 +4076,6 @@ resolve-from@^4.0.0: resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - reusify@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" @@ -4166,10 +4133,10 @@ rollup-pluginutils@^2.8.1: dependencies: estree-walker "^0.6.1" -rollup@^3.7.0: - version "3.12.0" - resolved "https://registry.npmjs.org/rollup/-/rollup-3.12.0.tgz#813d88ec11e36108da788fc471b3c81b365a7c29" - integrity sha512-4MZ8kA2HNYahIjz63rzrMMRvDqQDeS9LoriJvMuV0V6zIGysP36e9t4yObUfwdT9h/szXoHQideICftcdZklWg== +rollup@^3.27.1: + version "3.29.4" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981" + integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== optionalDependencies: fsevents "~2.3.2" @@ -4323,10 +4290,10 @@ sorcery@^0.11.0: minimist "^1.2.0" sander "^0.5.0" -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== sourcemap-codec@^1.4.8: version "1.4.8" @@ -4438,11 +4405,6 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - svelte-check@^3.0.3: version "3.0.3" resolved "https://registry.npmjs.org/svelte-check/-/svelte-check-3.0.3.tgz#7e89fe4d2adc43869983707822f7c4d7ede74505" @@ -4647,15 +4609,14 @@ valtio@1.10.5: proxy-compare "2.5.1" use-sync-external-store "1.2.0" -vite@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.0.5.tgz#634f0bd1edf8bb8468ed42a1c3fd938c67d2f94b" - integrity sha512-7m87RC+caiAxG+8j3jObveRLqaWA/neAdCat6JAZwMkSWqFHOvg8MYe5fAQxVBRAuKAQ1S6XDh3CBQuLNbY33w== +vite@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.3.tgz#d88a4529ea58bae97294c7e2e6f0eab39a50fb1a" + integrity sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg== dependencies: - esbuild "^0.16.3" - postcss "^8.4.20" - resolve "^1.22.1" - rollup "^3.7.0" + esbuild "^0.18.10" + postcss "^8.4.27" + rollup "^3.27.1" optionalDependencies: fsevents "~2.3.2" From f3bccd2af7f55c37950df247330ffe8f40c5b716 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:28:48 -0600 Subject: [PATCH 42/49] Bump vite from 4.0.5 to 4.5.3 in /examples/with-vuejs-v2 (#2126) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.0.5 to 4.5.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.3/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-vuejs-v2/package.json | 2 +- examples/with-vuejs-v2/yarn.lock | 358 +++++++++++++--------------- 2 files changed, 163 insertions(+), 197 deletions(-) diff --git a/examples/with-vuejs-v2/package.json b/examples/with-vuejs-v2/package.json index 27c853d78..aed4d4067 100644 --- a/examples/with-vuejs-v2/package.json +++ b/examples/with-vuejs-v2/package.json @@ -13,7 +13,7 @@ "vue-template-compiler": "2.7.14" }, "devDependencies": { - "vite": "^4.0.5", + "vite": "^4.5.3", "vite-plugin-vue2": "^2.0.3" } } diff --git a/examples/with-vuejs-v2/yarn.lock b/examples/with-vuejs-v2/yarn.lock index f5e73551b..37389271c 100644 --- a/examples/with-vuejs-v2/yarn.lock +++ b/examples/with-vuejs-v2/yarn.lock @@ -471,115 +471,115 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@esbuild/android-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23" - integrity sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg== - -"@esbuild/android-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz#025b6246d3f68b7bbaa97069144fb5fb70f2fff2" - integrity sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw== - -"@esbuild/android-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz#c820e0fef982f99a85c4b8bfdd582835f04cd96e" - integrity sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ== - -"@esbuild/darwin-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz#edef4487af6b21afabba7be5132c26d22379b220" - integrity sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w== - -"@esbuild/darwin-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz#42829168730071c41ef0d028d8319eea0e2904b4" - integrity sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg== - -"@esbuild/freebsd-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz#1f4af488bfc7e9ced04207034d398e793b570a27" - integrity sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw== - -"@esbuild/freebsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz#636306f19e9bc981e06aa1d777302dad8fddaf72" - integrity sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug== - -"@esbuild/linux-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz#a003f7ff237c501e095d4f3a09e58fc7b25a4aca" - integrity sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g== - -"@esbuild/linux-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz#b591e6a59d9c4fe0eeadd4874b157ab78cf5f196" - integrity sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ== - -"@esbuild/linux-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz#24333a11027ef46a18f57019450a5188918e2a54" - integrity sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg== - -"@esbuild/linux-loong64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz#d5ad459d41ed42bbd4d005256b31882ec52227d8" - integrity sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ== - -"@esbuild/linux-mips64el@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz#4e5967a665c38360b0a8205594377d4dcf9c3726" - integrity sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw== - -"@esbuild/linux-ppc64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz#206443a02eb568f9fdf0b438fbd47d26e735afc8" - integrity sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g== - -"@esbuild/linux-riscv64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz#c351e433d009bf256e798ad048152c8d76da2fc9" - integrity sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw== - -"@esbuild/linux-s390x@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz#661f271e5d59615b84b6801d1c2123ad13d9bd87" - integrity sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w== - -"@esbuild/linux-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz#e4ba18e8b149a89c982351443a377c723762b85f" - integrity sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw== - -"@esbuild/netbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz#7d4f4041e30c5c07dd24ffa295c73f06038ec775" - integrity sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA== - -"@esbuild/openbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz#970fa7f8470681f3e6b1db0cc421a4af8060ec35" - integrity sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg== - -"@esbuild/sunos-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz#abc60e7c4abf8b89fb7a4fe69a1484132238022c" - integrity sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw== - -"@esbuild/win32-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz#7b0ff9e8c3265537a7a7b1fd9a24e7bd39fcd87a" - integrity sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw== - -"@esbuild/win32-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz#e90fe5267d71a7b7567afdc403dfd198c292eb09" - integrity sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig== - -"@esbuild/win32-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz#c5a1a4bfe1b57f0c3e61b29883525c6da3e5c091" - integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== +"@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + +"@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + +"@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + +"@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + +"@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + +"@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + +"@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + +"@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + +"@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + +"@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + +"@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + +"@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + +"@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + +"@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + +"@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + +"@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + +"@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + +"@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + +"@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + +"@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + +"@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + +"@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== "@ethersproject/abi@5.5.0": version "5.5.0" @@ -1748,33 +1748,33 @@ es6-weak-map@^2.0.3: es6-iterator "^2.0.3" es6-symbol "^3.1.1" -esbuild@^0.16.3: - version "0.16.17" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz#fc2c3914c57ee750635fee71b89f615f25065259" - integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== +esbuild@^0.18.10: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== optionalDependencies: - "@esbuild/android-arm" "0.16.17" - "@esbuild/android-arm64" "0.16.17" - "@esbuild/android-x64" "0.16.17" - "@esbuild/darwin-arm64" "0.16.17" - "@esbuild/darwin-x64" "0.16.17" - "@esbuild/freebsd-arm64" "0.16.17" - "@esbuild/freebsd-x64" "0.16.17" - "@esbuild/linux-arm" "0.16.17" - "@esbuild/linux-arm64" "0.16.17" - "@esbuild/linux-ia32" "0.16.17" - "@esbuild/linux-loong64" "0.16.17" - "@esbuild/linux-mips64el" "0.16.17" - "@esbuild/linux-ppc64" "0.16.17" - "@esbuild/linux-riscv64" "0.16.17" - "@esbuild/linux-s390x" "0.16.17" - "@esbuild/linux-x64" "0.16.17" - "@esbuild/netbsd-x64" "0.16.17" - "@esbuild/openbsd-x64" "0.16.17" - "@esbuild/sunos-x64" "0.16.17" - "@esbuild/win32-arm64" "0.16.17" - "@esbuild/win32-ia32" "0.16.17" - "@esbuild/win32-x64" "0.16.17" + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" escalade@^3.1.1: version "3.1.1" @@ -1897,11 +1897,6 @@ fsevents@~2.3.2: resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -1932,13 +1927,6 @@ has-flag@^3.0.0: resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - hash-sum@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" @@ -1991,13 +1979,6 @@ intl-messageformat@^9.13.0: "@formatjs/icu-messageformat-parser" "2.1.0" tslib "^2.1.0" -is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== - dependencies: - has "^1.0.3" - is-promise@^2.2.2: version "2.2.2" resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" @@ -2138,11 +2119,16 @@ ms@2.1.2: resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -nanoid@^3.3.1, nanoid@^3.3.4: +nanoid@^3.3.1: version "3.3.4" resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + nanoid@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/nanoid/-/nanoid-4.0.0.tgz#6e144dee117609232c3f415c34b0e550e64999a5" @@ -2158,11 +2144,6 @@ node-releases@^2.0.8: resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae" integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - picocolors@^0.2.1: version "0.2.1" resolved "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" @@ -2194,14 +2175,14 @@ postcss@^7.0.36: picocolors "^0.2.1" source-map "^0.6.1" -postcss@^8.4.14, postcss@^8.4.20: - version "8.4.21" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" - integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== +postcss@^8.4.14, postcss@^8.4.27: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: - nanoid "^3.3.4" + nanoid "^3.3.7" picocolors "^1.0.0" - source-map-js "^1.0.2" + source-map-js "^1.2.0" "prettier@^1.18.2 || ^2.0.0", prettier@^2.6.2: version "2.8.3" @@ -2218,15 +2199,6 @@ querystring@^0.2.1: resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== -resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - rollup@^2.70.2: version "2.79.1" resolved "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" @@ -2234,10 +2206,10 @@ rollup@^2.70.2: optionalDependencies: fsevents "~2.3.2" -rollup@^3.7.0: - version "3.12.0" - resolved "https://registry.npmjs.org/rollup/-/rollup-3.12.0.tgz#813d88ec11e36108da788fc471b3c81b365a7c29" - integrity sha512-4MZ8kA2HNYahIjz63rzrMMRvDqQDeS9LoriJvMuV0V6zIGysP36e9t4yObUfwdT9h/szXoHQideICftcdZklWg== +rollup@^3.27.1: + version "3.29.4" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981" + integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== optionalDependencies: fsevents "~2.3.2" @@ -2277,10 +2249,10 @@ slash@^3.0.0: resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" @@ -2311,11 +2283,6 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - svelte-i18n@^3.3.13: version "3.6.0" resolved "https://registry.npmjs.org/svelte-i18n/-/svelte-i18n-3.6.0.tgz#0f345d066662dd8f46efefc0e867fb05b71c9dbd" @@ -2432,15 +2399,14 @@ vite-plugin-vue2@^2.0.3: source-map "^0.7.3" vue-template-babel-compiler "^1.2.0" -vite@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.0.5.tgz#634f0bd1edf8bb8468ed42a1c3fd938c67d2f94b" - integrity sha512-7m87RC+caiAxG+8j3jObveRLqaWA/neAdCat6JAZwMkSWqFHOvg8MYe5fAQxVBRAuKAQ1S6XDh3CBQuLNbY33w== +vite@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.3.tgz#d88a4529ea58bae97294c7e2e6f0eab39a50fb1a" + integrity sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg== dependencies: - esbuild "^0.16.3" - postcss "^8.4.20" - resolve "^1.22.1" - rollup "^3.7.0" + esbuild "^0.18.10" + postcss "^8.4.27" + rollup "^3.27.1" optionalDependencies: fsevents "~2.3.2" From 0e9183a9c0151a79bf5b9c896458e6864e54e0ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:28:55 -0600 Subject: [PATCH 43/49] Bump vite from 4.0.5 to 4.5.3 in /examples/with-vuejs (#2125) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.0.5 to 4.5.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v4.5.3/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.5.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-vuejs/package.json | 2 +- examples/with-vuejs/yarn.lock | 359 ++++++++++++++----------------- 2 files changed, 161 insertions(+), 200 deletions(-) diff --git a/examples/with-vuejs/package.json b/examples/with-vuejs/package.json index ee26a4397..53ca8d152 100644 --- a/examples/with-vuejs/package.json +++ b/examples/with-vuejs/package.json @@ -21,6 +21,6 @@ "eslint": "^8.33.0", "eslint-plugin-vue": "^9.9.0", "prettier": "^2.8.3", - "vite": "^4.0.5" + "vite": "^4.5.3" } } diff --git a/examples/with-vuejs/yarn.lock b/examples/with-vuejs/yarn.lock index 1c33b587f..2737620a3 100644 --- a/examples/with-vuejs/yarn.lock +++ b/examples/with-vuejs/yarn.lock @@ -7,115 +7,115 @@ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.18.10.tgz" integrity sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg== -"@esbuild/android-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23" - integrity sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg== - -"@esbuild/android-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz#025b6246d3f68b7bbaa97069144fb5fb70f2fff2" - integrity sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw== - -"@esbuild/android-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz#c820e0fef982f99a85c4b8bfdd582835f04cd96e" - integrity sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ== - -"@esbuild/darwin-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz" - integrity sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w== - -"@esbuild/darwin-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz#42829168730071c41ef0d028d8319eea0e2904b4" - integrity sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg== - -"@esbuild/freebsd-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz#1f4af488bfc7e9ced04207034d398e793b570a27" - integrity sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw== - -"@esbuild/freebsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz#636306f19e9bc981e06aa1d777302dad8fddaf72" - integrity sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug== - -"@esbuild/linux-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz#a003f7ff237c501e095d4f3a09e58fc7b25a4aca" - integrity sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g== - -"@esbuild/linux-arm@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz#b591e6a59d9c4fe0eeadd4874b157ab78cf5f196" - integrity sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ== - -"@esbuild/linux-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz#24333a11027ef46a18f57019450a5188918e2a54" - integrity sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg== - -"@esbuild/linux-loong64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz#d5ad459d41ed42bbd4d005256b31882ec52227d8" - integrity sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ== - -"@esbuild/linux-mips64el@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz#4e5967a665c38360b0a8205594377d4dcf9c3726" - integrity sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw== - -"@esbuild/linux-ppc64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz#206443a02eb568f9fdf0b438fbd47d26e735afc8" - integrity sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g== - -"@esbuild/linux-riscv64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz#c351e433d009bf256e798ad048152c8d76da2fc9" - integrity sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw== - -"@esbuild/linux-s390x@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz#661f271e5d59615b84b6801d1c2123ad13d9bd87" - integrity sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w== - -"@esbuild/linux-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz#e4ba18e8b149a89c982351443a377c723762b85f" - integrity sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw== - -"@esbuild/netbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz#7d4f4041e30c5c07dd24ffa295c73f06038ec775" - integrity sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA== - -"@esbuild/openbsd-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz#970fa7f8470681f3e6b1db0cc421a4af8060ec35" - integrity sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg== - -"@esbuild/sunos-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz#abc60e7c4abf8b89fb7a4fe69a1484132238022c" - integrity sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw== - -"@esbuild/win32-arm64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz#7b0ff9e8c3265537a7a7b1fd9a24e7bd39fcd87a" - integrity sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw== - -"@esbuild/win32-ia32@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz#e90fe5267d71a7b7567afdc403dfd198c292eb09" - integrity sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig== - -"@esbuild/win32-x64@0.16.17": - version "0.16.17" - resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz#c5a1a4bfe1b57f0c3e61b29883525c6da3e5c091" - integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== +"@esbuild/android-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" + integrity sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ== + +"@esbuild/android-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" + integrity sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw== + +"@esbuild/android-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" + integrity sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg== + +"@esbuild/darwin-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" + integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA== + +"@esbuild/darwin-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" + integrity sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ== + +"@esbuild/freebsd-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" + integrity sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw== + +"@esbuild/freebsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" + integrity sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ== + +"@esbuild/linux-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" + integrity sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA== + +"@esbuild/linux-arm@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" + integrity sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg== + +"@esbuild/linux-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" + integrity sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA== + +"@esbuild/linux-loong64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" + integrity sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg== + +"@esbuild/linux-mips64el@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" + integrity sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ== + +"@esbuild/linux-ppc64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" + integrity sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA== + +"@esbuild/linux-riscv64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" + integrity sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A== + +"@esbuild/linux-s390x@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" + integrity sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ== + +"@esbuild/linux-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" + integrity sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w== + +"@esbuild/netbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" + integrity sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A== + +"@esbuild/openbsd-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" + integrity sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg== + +"@esbuild/sunos-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" + integrity sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ== + +"@esbuild/win32-arm64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" + integrity sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg== + +"@esbuild/win32-ia32@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" + integrity sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g== + +"@esbuild/win32-x64@0.18.20": + version "0.18.20" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" + integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== "@eslint/eslintrc@^1.4.1": version "1.4.1" @@ -1254,33 +1254,33 @@ elliptic@6.5.4: minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" -esbuild@^0.16.3: - version "0.16.17" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz" - integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== +esbuild@^0.18.10: + version "0.18.20" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6" + integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== optionalDependencies: - "@esbuild/android-arm" "0.16.17" - "@esbuild/android-arm64" "0.16.17" - "@esbuild/android-x64" "0.16.17" - "@esbuild/darwin-arm64" "0.16.17" - "@esbuild/darwin-x64" "0.16.17" - "@esbuild/freebsd-arm64" "0.16.17" - "@esbuild/freebsd-x64" "0.16.17" - "@esbuild/linux-arm" "0.16.17" - "@esbuild/linux-arm64" "0.16.17" - "@esbuild/linux-ia32" "0.16.17" - "@esbuild/linux-loong64" "0.16.17" - "@esbuild/linux-mips64el" "0.16.17" - "@esbuild/linux-ppc64" "0.16.17" - "@esbuild/linux-riscv64" "0.16.17" - "@esbuild/linux-s390x" "0.16.17" - "@esbuild/linux-x64" "0.16.17" - "@esbuild/netbsd-x64" "0.16.17" - "@esbuild/openbsd-x64" "0.16.17" - "@esbuild/sunos-x64" "0.16.17" - "@esbuild/win32-arm64" "0.16.17" - "@esbuild/win32-ia32" "0.16.17" - "@esbuild/win32-x64" "0.16.17" + "@esbuild/android-arm" "0.18.20" + "@esbuild/android-arm64" "0.18.20" + "@esbuild/android-x64" "0.18.20" + "@esbuild/darwin-arm64" "0.18.20" + "@esbuild/darwin-x64" "0.18.20" + "@esbuild/freebsd-arm64" "0.18.20" + "@esbuild/freebsd-x64" "0.18.20" + "@esbuild/linux-arm" "0.18.20" + "@esbuild/linux-arm64" "0.18.20" + "@esbuild/linux-ia32" "0.18.20" + "@esbuild/linux-loong64" "0.18.20" + "@esbuild/linux-mips64el" "0.18.20" + "@esbuild/linux-ppc64" "0.18.20" + "@esbuild/linux-riscv64" "0.18.20" + "@esbuild/linux-s390x" "0.18.20" + "@esbuild/linux-x64" "0.18.20" + "@esbuild/netbsd-x64" "0.18.20" + "@esbuild/openbsd-x64" "0.18.20" + "@esbuild/sunos-x64" "0.18.20" + "@esbuild/win32-arm64" "0.18.20" + "@esbuild/win32-ia32" "0.18.20" + "@esbuild/win32-x64" "0.18.20" escape-string-regexp@^4.0.0: version "4.0.0" @@ -1571,11 +1571,6 @@ fsevents@~2.3.2: resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - glob-parent@^6.0.2: version "6.0.2" resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" @@ -1622,13 +1617,6 @@ has-flag@^4.0.0: resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz" @@ -1687,13 +1675,6 @@ intl-messageformat@^9.3.15: "@formatjs/icu-messageformat-parser" "2.1.0" tslib "^2.1.0" -is-core-module@^2.9.0: - version "2.9.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== - dependencies: - has "^1.0.3" - is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" @@ -1840,10 +1821,10 @@ nanoid@^3.3.1: resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== nanoid@^4.0.0: version "4.0.0" @@ -1917,11 +1898,6 @@ path-key@^3.1.0: resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - picocolors@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" @@ -1943,14 +1919,14 @@ postcss-selector-parser@^6.0.9: cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss@^8.1.10, postcss@^8.4.20: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== +postcss@^8.1.10, postcss@^8.4.27: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" picocolors "^1.0.0" - source-map-js "^1.0.2" + source-map-js "^1.2.0" prelude-ls@^1.2.1: version "1.2.1" @@ -1989,15 +1965,6 @@ resolve-from@^4.0.0: resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - reusify@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" @@ -2010,10 +1977,10 @@ rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^3.7.0: - version "3.12.0" - resolved "https://registry.npmjs.org/rollup/-/rollup-3.12.0.tgz" - integrity sha512-4MZ8kA2HNYahIjz63rzrMMRvDqQDeS9LoriJvMuV0V6zIGysP36e9t4yObUfwdT9h/szXoHQideICftcdZklWg== +rollup@^3.27.1: + version "3.29.4" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981" + integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== optionalDependencies: fsevents "~2.3.2" @@ -2069,10 +2036,10 @@ shebang-regex@^3.0.0: resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map@^0.6.1: version "0.6.1" @@ -2110,11 +2077,6 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - svelte-i18n@^3.3.13: version "3.4.0" resolved "https://registry.npmjs.org/svelte-i18n/-/svelte-i18n-3.4.0.tgz" @@ -2178,15 +2140,14 @@ util-deprecate@^1.0.2: resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -vite@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/vite/-/vite-4.0.5.tgz#634f0bd1edf8bb8468ed42a1c3fd938c67d2f94b" - integrity sha512-7m87RC+caiAxG+8j3jObveRLqaWA/neAdCat6JAZwMkSWqFHOvg8MYe5fAQxVBRAuKAQ1S6XDh3CBQuLNbY33w== +vite@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-4.5.3.tgz#d88a4529ea58bae97294c7e2e6f0eab39a50fb1a" + integrity sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg== dependencies: - esbuild "^0.16.3" - postcss "^8.4.20" - resolve "^1.22.1" - rollup "^3.7.0" + esbuild "^0.18.10" + postcss "^8.4.27" + rollup "^3.27.1" optionalDependencies: fsevents "~2.3.2" From b655a6f7745dcd65ee4888943e5e102f07f7c143 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:29:06 -0600 Subject: [PATCH 44/49] Bump express from 4.18.2 to 4.19.2 in /packages/demo (#2124) Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2. - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2) --- updated-dependencies: - dependency-name: express dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/demo/yarn.lock | 3422 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 3186 insertions(+), 236 deletions(-) diff --git a/packages/demo/yarn.lock b/packages/demo/yarn.lock index 9d4da3b4f..d446e5ed2 100644 --- a/packages/demo/yarn.lock +++ b/packages/demo/yarn.lock @@ -156,6 +156,21 @@ "@0xsequence/transactions" "^0.43.34" "@0xsequence/utils" "^0.43.34" +"@adraffy/ens-normalize@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" + integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== + +"@adraffy/ens-normalize@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz#223572538f6bea336750039bb43a4016dcc8182d" + integrity sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ== + +"@adraffy/ens-normalize@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.2.tgz#60111a5d9db45b2e5cbb6231b0bb8d97e8659316" + integrity sha512-0h+FrQDqe2Wn+IIGFkTCd4aAwTJ+7834Ek1COohCyV26AXhwQ7WQaz+4F/nLOeVl/3BtWHOHLPsq46V8YB46Eg== + "@adraffy/ens-normalize@1.9.4": version "1.9.4" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz#aae21cb858bbb0411949d5b7b3051f4209043f62" @@ -176,6 +191,14 @@ penpal "^6.0.1" validator "^13.11.0" +"@babel/code-frame@^7.0.0": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" + integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== + dependencies: + "@babel/highlight" "^7.24.2" + picocolors "^1.0.0" + "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.2.tgz#6a12ced93455827037bfb5ed8492820d60fc32cc" @@ -203,6 +226,13 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" +"@babel/helper-module-imports@^7.16.7": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" + integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== + dependencies: + "@babel/types" "^7.24.0" + "@babel/helper-module-imports@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" @@ -220,6 +250,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.23.4": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" + integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== + "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" @@ -230,6 +265,16 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== +"@babel/highlight@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" + integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + "@babel/plugin-transform-runtime@^7.5.5": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz#c956a3f8d1aa50816ff6c30c6288d66635c12990" @@ -249,6 +294,13 @@ dependencies: regenerator-runtime "^0.13.11" +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.19.4": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.1.tgz#431f9a794d173b53720e69a6464abc6f0e2a5c57" + integrity sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ== + dependencies: + regenerator-runtime "^0.14.0" + "@babel/runtime@^7.17.2", "@babel/runtime@^7.19.0", "@babel/runtime@^7.20.6", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.5.5": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" @@ -265,10 +317,19 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@bitget-wallet/web3-sdk@^0.0.6": - version "0.0.6" - resolved "https://registry.yarnpkg.com/@bitget-wallet/web3-sdk/-/web3-sdk-0.0.6.tgz#f30f7fbdeb804ddc98b175ed977340bc856011ed" - integrity sha512-UfMxJGmIAyqJBIY90nS1IrhFZvOzAvvcPt2/QhsfRQBYya8PoIwXEBofIfFeMgyVD00E7oq130DheAwFUduadA== +"@babel/types@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" + integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + +"@bitget-wallet/web3-sdk@^0.0.8": + version "0.0.8" + resolved "https://registry.yarnpkg.com/@bitget-wallet/web3-sdk/-/web3-sdk-0.0.8.tgz#1510b0b379654ff0de5e10ae19bef93fa86e46c3" + integrity sha512-WFk6URUxTCukKrU3YpTdWTCScrj6/wwd/0O7eSANeQl1KDbDs+yj/fAkN1Wy6ebI3NMcW6sqN9mrmfwz53dPMQ== dependencies: "@metamask/safe-event-emitter" "^3.0.0" "@solana/web3.js" "^1.78.0" @@ -284,26 +345,616 @@ safe-buffer "^5.1.2" web3 "^1.3.1" -"@blocto/sdk@^0.4.6": - version "0.4.9" - resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.4.9.tgz#646cfea7737d8e5bb4c57885c0bb26d132185826" - integrity sha512-fscOaN4oux/7ySaNCQtltKLIefcZ7J85TpW/LKgAqfbEniBQ3z6SYxkG8ud6SPJs/camfljr+5hRdvcjTZCgGw== +"@blocto/sdk@^0.9.1": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@blocto/sdk/-/sdk-0.9.1.tgz#86eb3f972f6bdd78a1c929e271c652f8ec5e1bd0" + integrity sha512-JPBKDUrgTrTc9PaCj1iNleMy68V6DARa93sJa6OBvxkFCtYNxGn+sNCOZqhCU/3YjQ6z75/Mls2oF4kQe/04cw== dependencies: - bs58 "^5.0.0" buffer "^6.0.3" eip1193-provider "^1.0.1" js-sha3 "^0.8.0" -"@cedelabs/providers@^1.1.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@cedelabs/providers/-/providers-1.2.0.tgz#f975bd2f27ec9a96a7d55d8d8389bff7160e1714" - integrity sha512-UHapAmXyFMCEn/3MyJoW255tW4qzE6TdTTrR9IZDOl/p1gnolmj+5So2SmlcBEIIYECNOupbiIbO23PBtTJBqg== +"@cedelabs/providers@^1.5.0": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@cedelabs/providers/-/providers-1.9.1.tgz#776b8422718f11f390fed2c30538177ba5be5c8f" + integrity sha512-SVkFxBH1726ceGa2hmvJ1mBA33TN8f6Xi/QOM9lcM0S6sGs1U25OcKhe6NcviYcZQcgBRfYPk7zWkP9T6dquLA== dependencies: "@metamask/providers" "^8.1.1" "@metamask/safe-event-emitter" "^3.0.0" json-rpc-engine "^6.1.0" -"@coinbase/wallet-sdk@^3.7.2": +"@celo/base@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@celo/base/-/base-3.2.0.tgz#19dcff6a822abb1f6b57af8f9db35a4c673aee62" + integrity sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ== + +"@celo/utils@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@celo/utils/-/utils-3.2.0.tgz#1dc39f619d24c3974d306cad23db7cdf3f9d487e" + integrity sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A== + dependencies: + "@celo/base" "3.2.0" + "@types/bn.js" "^5.1.0" + "@types/elliptic" "^6.4.9" + "@types/ethereumjs-util" "^5.2.0" + "@types/node" "^10.12.18" + bignumber.js "^9.0.0" + elliptic "^6.5.4" + ethereumjs-util "^5.2.0" + io-ts "2.0.1" + web3-eth-abi "1.3.6" + web3-utils "1.3.6" + +"@chakra-ui/accordion@1.4.12": + version "1.4.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/accordion/-/accordion-1.4.12.tgz#c990b3327ac8ffef472d6e76d77f15a809d2aa56" + integrity sha512-Hq5Ie1SI4mmtgBmeuir+f7QKgopZEyQOojgufo/A20keMSy5Yk9WZjkXNQgvoIRl1AsoziIPUlubQOtkBZjjbA== + dependencies: + "@chakra-ui/descendant" "2.1.4" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/transition" "1.4.8" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/alert@1.3.7": + version "1.3.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/alert/-/alert-1.3.7.tgz#f36020ffc3b2c26be67025c56bccbf0639a81a67" + integrity sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ== + dependencies: + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/anatomy@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/anatomy/-/anatomy-1.3.0.tgz#38a40dd6f2bb076fe8bebe8fb8e4769ea005e03d" + integrity sha512-vj/lcHkCuq/dtbl69DkNsftZTnrGEegB90ODs1B6rxw8iVMdDSYkthPPFAkqzNs4ppv1y2IBjELuVzpeta1OHA== + dependencies: + "@chakra-ui/theme-tools" "^1.3.6" + +"@chakra-ui/avatar@1.3.11": + version "1.3.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/avatar/-/avatar-1.3.11.tgz#abd8ffa9ad54756e549730f984fdae621ae51baa" + integrity sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA== + dependencies: + "@chakra-ui/image" "1.1.10" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/breadcrumb@1.3.6": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/breadcrumb/-/breadcrumb-1.3.6.tgz#fe22e162c37add5830bd1292172bb11d859c6f35" + integrity sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A== + dependencies: + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/button@1.5.10": + version "1.5.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/button/-/button-1.5.10.tgz#c339f78197b6bd63f109003177fd640ae6e6a632" + integrity sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/spinner" "1.2.6" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/checkbox@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/checkbox/-/checkbox-1.7.1.tgz#cd733f177d88c477ae5ece228b81cddc67b70c0e" + integrity sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA== + dependencies: + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/clickable@1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/clickable/-/clickable-1.2.6.tgz#7f3deef71580acf47c2395cac2c1734f43418a3f" + integrity sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg== + dependencies: + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/close-button@1.2.7": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/close-button/-/close-button-1.2.7.tgz#6f3073618ae777d7e36a80fb17bc00aaa790e7a5" + integrity sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw== + dependencies: + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/color-mode@1.4.8": + version "1.4.8" + resolved "https://registry.yarnpkg.com/@chakra-ui/color-mode/-/color-mode-1.4.8.tgz#e5367b909f5b4c782b239f9d37d4cf1a44c28559" + integrity sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-env" "1.1.6" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/control-box@1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/control-box/-/control-box-1.1.6.tgz#15a40a2cab525799988ae53948b61eed81a7f177" + integrity sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/counter@1.2.10": + version "1.2.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/counter/-/counter-1.2.10.tgz#544de1f53b783e8577cc74208ae1b0ca74385834" + integrity sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/css-reset@1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/css-reset/-/css-reset-1.1.3.tgz#da65507ea1d69ed309bc34619881e23b5004ec7d" + integrity sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw== + +"@chakra-ui/descendant@2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/descendant/-/descendant-2.1.4.tgz#b85c52b0b429da0a08d0950b4f8bef61b94f43f6" + integrity sha512-k1olHM6c0fcI5fQxO9rqg9rxripcfHMEm2LkORgH0CAzFn/U75CxCw5ec0IMedNWCdiv740enVfnfhBAoSg7gw== + dependencies: + "@chakra-ui/react-utils" "^1.2.3" + +"@chakra-ui/editable@1.4.2": + version "1.4.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/editable/-/editable-1.4.2.tgz#92d5266e737d52df1edc91c21a05c0a6048f881f" + integrity sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/focus-lock@1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/focus-lock/-/focus-lock-1.2.6.tgz#ecdc9688651c55c67f9059720f0885ea7c02b979" + integrity sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog== + dependencies: + "@chakra-ui/utils" "1.10.4" + react-focus-lock "2.5.2" + +"@chakra-ui/form-control@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/form-control/-/form-control-1.6.0.tgz#a2a7b82a385f75fababf3947d39e227b4d073929" + integrity sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/hooks@1.9.1": + version "1.9.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-1.9.1.tgz#7a00659e6bb4d56cf56022071eca0b77a7df1ac1" + integrity sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw== + dependencies: + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + compute-scroll-into-view "1.0.14" + copy-to-clipboard "3.3.1" + +"@chakra-ui/icon@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/icon/-/icon-2.0.5.tgz#d57f53e6a2c7ae1bae7292a1778fd466c02e2e29" + integrity sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/icon@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/icon/-/icon-3.2.0.tgz#92b9454aa0d561b4994bcd6a1b3bb1fdd5c67bef" + integrity sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ== + dependencies: + "@chakra-ui/shared-utils" "2.0.5" + +"@chakra-ui/icons@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/icons/-/icons-2.1.1.tgz#58ff0f9e703f2f4f89debd600ce4e438f43f9c9a" + integrity sha512-3p30hdo4LlRZTT5CwoAJq3G9fHI0wDc0pBaMHj4SUn0yomO+RcDRlzhdXqdr5cVnzax44sqXJVnf3oQG0eI+4g== + dependencies: + "@chakra-ui/icon" "3.2.0" + +"@chakra-ui/image@1.1.10": + version "1.1.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/image/-/image-1.1.10.tgz#65bae4086559937d25c728660ae743bce9360cb2" + integrity sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/input@1.4.6": + version "1.4.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/input/-/input-1.4.6.tgz#455f24e7a3f401ef10b50b68d9b0537676fbfec5" + integrity sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw== + dependencies: + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/layout@1.8.0": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/layout/-/layout-1.8.0.tgz#f95e78168644b45ac7327e4e0cfb1f0e6f7c3b4d" + integrity sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA== + dependencies: + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/live-region@1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/live-region/-/live-region-1.1.6.tgz#135461a19ae2d479eefb012376ffa0f500b83b16" + integrity sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/media-query@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/media-query/-/media-query-2.0.4.tgz#25e8074a19613d4ccce880a1f92c8e733708b079" + integrity sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA== + dependencies: + "@chakra-ui/react-env" "1.1.6" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/menu@1.8.12": + version "1.8.12" + resolved "https://registry.yarnpkg.com/@chakra-ui/menu/-/menu-1.8.12.tgz#98f9cbccfc8fbaaea1f19dcea16ffb96a25eb01f" + integrity sha512-X/s74VpOReQW4fCRCa21f/VOe++cXhPz2Sh7pDjtaT3zmKjrJwgk1Kw75cXfNX1eke6hf/wZ0FGweu/m7+C3OA== + dependencies: + "@chakra-ui/clickable" "1.2.6" + "@chakra-ui/descendant" "2.1.4" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/popper" "2.4.3" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/transition" "1.4.8" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/modal@1.11.1": + version "1.11.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/modal/-/modal-1.11.1.tgz#fedd757726cbc7ec3b614e1b0c7b46c7244f988e" + integrity sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A== + dependencies: + "@chakra-ui/close-button" "1.2.7" + "@chakra-ui/focus-lock" "1.2.6" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/portal" "1.3.10" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/transition" "1.4.8" + "@chakra-ui/utils" "1.10.4" + aria-hidden "^1.1.1" + react-remove-scroll "2.4.1" + +"@chakra-ui/number-input@1.4.7": + version "1.4.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/number-input/-/number-input-1.4.7.tgz#9d150c20a7d301e2ffe600251e68d9b6f70fcce0" + integrity sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ== + dependencies: + "@chakra-ui/counter" "1.2.10" + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/pin-input@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/pin-input/-/pin-input-1.7.11.tgz#d2bdfc29b10293efae35f6b35203d05b57ab29c3" + integrity sha512-KEVUHHmf22tI4F7gzT9+pHi4E5cCyte6M8rPEwRyuc0kUBo48D8OW0BJwGdESWOKMkQXazDF6Zg4o32t45tbpg== + dependencies: + "@chakra-ui/descendant" "2.1.4" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/popover@1.11.9": + version "1.11.9" + resolved "https://registry.yarnpkg.com/@chakra-ui/popover/-/popover-1.11.9.tgz#283a52c969f27ee7119774c255b786af6c9b2766" + integrity sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g== + dependencies: + "@chakra-ui/close-button" "1.2.7" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/popper" "2.4.3" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/popper@2.4.3": + version "2.4.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/popper/-/popper-2.4.3.tgz#fcdc917d13a56b9d44868c78a009e4dd692697a2" + integrity sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA== + dependencies: + "@chakra-ui/react-utils" "1.2.3" + "@popperjs/core" "^2.9.3" + +"@chakra-ui/portal@1.3.10": + version "1.3.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/portal/-/portal-1.3.10.tgz#d85b2cf1a8b3e2eca260d8e3ad485da0ee29856b" + integrity sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/progress@1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/progress/-/progress-1.2.6.tgz#4a3a40e826c8c72160d3c8ff411e86244e280ebc" + integrity sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ== + dependencies: + "@chakra-ui/theme-tools" "1.3.6" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/provider@1.7.14": + version "1.7.14" + resolved "https://registry.yarnpkg.com/@chakra-ui/provider/-/provider-1.7.14.tgz#74d19e3066ab02f2c14fa32d22dc12f8367b56f7" + integrity sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw== + dependencies: + "@chakra-ui/css-reset" "1.1.3" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/portal" "1.3.10" + "@chakra-ui/react-env" "1.1.6" + "@chakra-ui/system" "1.12.1" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/radio@1.5.1": + version "1.5.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/radio/-/radio-1.5.1.tgz#d2b691fde944c20eb594873f72eb61dfb84b15da" + integrity sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw== + dependencies: + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/react-env@1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-env/-/react-env-1.1.6.tgz#9915b02fd1f8ca62ccf578eaec793f1c4dea78b0" + integrity sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/react-utils@1.2.3", "@chakra-ui/react-utils@^1.2.3": + version "1.2.3" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-utils/-/react-utils-1.2.3.tgz#3356c9299bc8faada8fac6c5886ca65ec95bb5be" + integrity sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw== + dependencies: + "@chakra-ui/utils" "^1.10.4" + +"@chakra-ui/react@1.8.9": + version "1.8.9" + resolved "https://registry.yarnpkg.com/@chakra-ui/react/-/react-1.8.9.tgz#1d5a9ed2ce4958d1a006fb192f8a974440c89242" + integrity sha512-NfR5XKVqEWhchFLiWaTWkWeYZJK1SNF2O6sQxFVrX6M+nAgJ3Q9tfMk6/I3II+xc4hXJUcYmUvmw37vT92yMaQ== + dependencies: + "@chakra-ui/accordion" "1.4.12" + "@chakra-ui/alert" "1.3.7" + "@chakra-ui/avatar" "1.3.11" + "@chakra-ui/breadcrumb" "1.3.6" + "@chakra-ui/button" "1.5.10" + "@chakra-ui/checkbox" "1.7.1" + "@chakra-ui/close-button" "1.2.7" + "@chakra-ui/control-box" "1.1.6" + "@chakra-ui/counter" "1.2.10" + "@chakra-ui/css-reset" "1.1.3" + "@chakra-ui/editable" "1.4.2" + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/image" "1.1.10" + "@chakra-ui/input" "1.4.6" + "@chakra-ui/layout" "1.8.0" + "@chakra-ui/live-region" "1.1.6" + "@chakra-ui/media-query" "2.0.4" + "@chakra-ui/menu" "1.8.12" + "@chakra-ui/modal" "1.11.1" + "@chakra-ui/number-input" "1.4.7" + "@chakra-ui/pin-input" "1.7.11" + "@chakra-ui/popover" "1.11.9" + "@chakra-ui/popper" "2.4.3" + "@chakra-ui/portal" "1.3.10" + "@chakra-ui/progress" "1.2.6" + "@chakra-ui/provider" "1.7.14" + "@chakra-ui/radio" "1.5.1" + "@chakra-ui/react-env" "1.1.6" + "@chakra-ui/select" "1.2.11" + "@chakra-ui/skeleton" "1.2.14" + "@chakra-ui/slider" "1.5.11" + "@chakra-ui/spinner" "1.2.6" + "@chakra-ui/stat" "1.2.7" + "@chakra-ui/switch" "1.3.10" + "@chakra-ui/system" "1.12.1" + "@chakra-ui/table" "1.3.6" + "@chakra-ui/tabs" "1.6.11" + "@chakra-ui/tag" "1.2.7" + "@chakra-ui/textarea" "1.2.11" + "@chakra-ui/theme" "1.14.1" + "@chakra-ui/toast" "1.5.9" + "@chakra-ui/tooltip" "1.5.1" + "@chakra-ui/transition" "1.4.8" + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/select@1.2.11": + version "1.2.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/select/-/select-1.2.11.tgz#7762f2b7974a4587b4eb9536eb93b2295381aa9f" + integrity sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA== + dependencies: + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/shared-utils@2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz#cb2b49705e113853647f1822142619570feba081" + integrity sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q== + +"@chakra-ui/skeleton@1.2.14": + version "1.2.14" + resolved "https://registry.yarnpkg.com/@chakra-ui/skeleton/-/skeleton-1.2.14.tgz#c2028b03a975c76b13aaecdbbe168872079177b8" + integrity sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/media-query" "2.0.4" + "@chakra-ui/system" "1.12.1" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/slider@1.5.11": + version "1.5.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/slider/-/slider-1.5.11.tgz#e03585188547dad3dafdb4a4cbd64bfbf8a4025b" + integrity sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/spinner@1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/spinner/-/spinner-1.2.6.tgz#d85fb3d763a69d40570b591507c5087dba38e6c4" + integrity sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A== + dependencies: + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/stat@1.2.7": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/stat/-/stat-1.2.7.tgz#e173171d80f9e756966604e620987bbd7590d291" + integrity sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q== + dependencies: + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/styled-system@1.19.0": + version "1.19.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/styled-system/-/styled-system-1.19.0.tgz#102fadaefc1a2dfd8e0c4837eafa660531a08419" + integrity sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw== + dependencies: + "@chakra-ui/utils" "1.10.4" + csstype "3.0.9" + +"@chakra-ui/switch@1.3.10": + version "1.3.10" + resolved "https://registry.yarnpkg.com/@chakra-ui/switch/-/switch-1.3.10.tgz#6b0a3f199e6e654dbab6e01ccc762e1b29611c62" + integrity sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ== + dependencies: + "@chakra-ui/checkbox" "1.7.1" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/system@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/system/-/system-1.12.1.tgz#608655ef3f7cb82eedd8f20d2546458d90d77cce" + integrity sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg== + dependencies: + "@chakra-ui/color-mode" "1.4.8" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/styled-system" "1.19.0" + "@chakra-ui/utils" "1.10.4" + react-fast-compare "3.2.0" + +"@chakra-ui/table@1.3.6": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/table/-/table-1.3.6.tgz#e271676dc03cd4c684e4041df2cf394d86a28510" + integrity sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/tabs@1.6.11": + version "1.6.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/tabs/-/tabs-1.6.11.tgz#9f3f04f764cec4033711719b1bba8545038ac386" + integrity sha512-hGs2REEVVWyfgs+qEkPiUsNnqwv3QwXfKYyXaMnGS7CCkGgUiEvIO7n9968/KGnGbM4GuEHX+BxG2suIUf24yg== + dependencies: + "@chakra-ui/clickable" "1.2.6" + "@chakra-ui/descendant" "2.1.4" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/tag@1.2.7": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@chakra-ui/tag/-/tag-1.2.7.tgz#5861a92e83e63825f6fe563921d2704e921b585f" + integrity sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg== + dependencies: + "@chakra-ui/icon" "2.0.5" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/textarea@1.2.11": + version "1.2.11" + resolved "https://registry.yarnpkg.com/@chakra-ui/textarea/-/textarea-1.2.11.tgz#24209862cf9227d79228222b7cff2c50f7ff0add" + integrity sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg== + dependencies: + "@chakra-ui/form-control" "1.6.0" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/theme-tools@1.3.6", "@chakra-ui/theme-tools@^1.3.6": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme-tools/-/theme-tools-1.3.6.tgz#2e5b5c192efd685c158e940a5cedcb0eb51f8602" + integrity sha512-Wxz3XSJhPCU6OwCHEyH44EegEDQHwvlsx+KDkUDGevOjUU88YuNqOVkKtgTpgMLNQcsrYZ93oPWZUJqqCVNRew== + dependencies: + "@chakra-ui/utils" "1.10.4" + "@ctrl/tinycolor" "^3.4.0" + +"@chakra-ui/theme@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme/-/theme-1.14.1.tgz#84ce1643d4d7c89509e714ac989bcf8acd5578b8" + integrity sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA== + dependencies: + "@chakra-ui/anatomy" "1.3.0" + "@chakra-ui/theme-tools" "1.3.6" + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/toast@1.5.9": + version "1.5.9" + resolved "https://registry.yarnpkg.com/@chakra-ui/toast/-/toast-1.5.9.tgz#45521dc521186ce88aad07a3796545d15a6f9697" + integrity sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ== + dependencies: + "@chakra-ui/alert" "1.3.7" + "@chakra-ui/close-button" "1.2.7" + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/theme" "1.14.1" + "@chakra-ui/transition" "1.4.8" + "@chakra-ui/utils" "1.10.4" + "@reach/alert" "0.13.2" + +"@chakra-ui/tooltip@1.5.1": + version "1.5.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/tooltip/-/tooltip-1.5.1.tgz#c338476aa0f00fc89f6357bc22725329f90d8d5d" + integrity sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw== + dependencies: + "@chakra-ui/hooks" "1.9.1" + "@chakra-ui/popper" "2.4.3" + "@chakra-ui/portal" "1.3.10" + "@chakra-ui/react-utils" "1.2.3" + "@chakra-ui/utils" "1.10.4" + "@chakra-ui/visually-hidden" "1.1.6" + +"@chakra-ui/transition@1.4.8": + version "1.4.8" + resolved "https://registry.yarnpkg.com/@chakra-ui/transition/-/transition-1.4.8.tgz#ac0f4675da929ae69fc9d6db6a1edf61e982772c" + integrity sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@chakra-ui/utils@1.10.4", "@chakra-ui/utils@^1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@chakra-ui/utils/-/utils-1.10.4.tgz#40a32d4efd8684b2e7432a40b285796383eacfd3" + integrity sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA== + dependencies: + "@types/lodash.mergewith" "4.6.6" + css-box-model "1.2.1" + framesync "5.3.0" + lodash.mergewith "4.6.2" + +"@chakra-ui/visually-hidden@1.1.6": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@chakra-ui/visually-hidden/-/visually-hidden-1.1.6.tgz#7a546a5aebe4779c8f18d65b1f0e56249720f28d" + integrity sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ== + dependencies: + "@chakra-ui/utils" "1.10.4" + +"@coinbase/wallet-sdk@^3.6.6": version "3.7.2" resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.7.2.tgz#7a89bd9e3a06a1f26d4480d8642af33fb0c7e3aa" integrity sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ== @@ -326,6 +977,21 @@ stream-browserify "^3.0.0" util "^0.12.4" +"@coinbase/wallet-sdk@^3.9.3": + version "3.9.3" + resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-3.9.3.tgz#daf10cb0c85d0363315b7270cb3f02bedc408aab" + integrity sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw== + dependencies: + bn.js "^5.2.1" + buffer "^6.0.3" + clsx "^1.2.1" + eth-block-tracker "^7.1.0" + eth-json-rpc-filters "^6.0.0" + eventemitter3 "^5.0.1" + keccak "^3.0.3" + preact "^10.16.0" + sha.js "^2.4.11" + "@confio/ics23@^0.6.8": version "0.6.8" resolved "https://registry.yarnpkg.com/@confio/ics23/-/ics23-0.6.8.tgz#2a6b4f1f2b7b20a35d9a0745bb5a446e72930b3d" @@ -344,6 +1010,16 @@ "@cosmjs/math" "^0.29.3" "@cosmjs/utils" "^0.29.3" +"@cosmjs/amino@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.31.0.tgz#49b33047295002804ad51bdf7ec0c2c97f1b553d" + integrity sha512-xJ5CCEK7H79FTpOuEmlpSzVI+ZeYESTVvO3wHDgbnceIyAne3C68SvyaKqLUR4uJB0Z4q4+DZHbqW6itUiv4lA== + dependencies: + "@cosmjs/crypto" "^0.31.0" + "@cosmjs/encoding" "^0.31.0" + "@cosmjs/math" "^0.31.0" + "@cosmjs/utils" "^0.31.0" + "@cosmjs/amino@^0.29.3", "@cosmjs/amino@^0.29.4", "@cosmjs/amino@^0.29.5": version "0.29.5" resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.29.5.tgz#053b4739a90b15b9e2b781ccd484faf64bd49aec" @@ -354,6 +1030,16 @@ "@cosmjs/math" "^0.29.5" "@cosmjs/utils" "^0.29.5" +"@cosmjs/amino@^0.31.0": + version "0.31.3" + resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.31.3.tgz#0f4aa6bd68331c71bd51b187fa64f00eb075db0a" + integrity sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw== + dependencies: + "@cosmjs/crypto" "^0.31.3" + "@cosmjs/encoding" "^0.31.3" + "@cosmjs/math" "^0.31.3" + "@cosmjs/utils" "^0.31.3" + "@cosmjs/crypto@0.29.4": version "0.29.4" resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.29.4.tgz#2198e1d2da9eb310df9ed8b8609dbf1a370e900b" @@ -367,6 +1053,19 @@ elliptic "^6.5.4" libsodium-wrappers "^0.7.6" +"@cosmjs/crypto@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.31.0.tgz#0be3867ada0155da19c45a51f5fde08e84f9ec4b" + integrity sha512-UaqCe6Tgh0pe1QlZ66E13t6FlIF86QrnBXXq+EN7Xe1Rouza3fJ1ojGlPleJZkBoq3tAyYVIOOqdZIxtVj/sIQ== + dependencies: + "@cosmjs/encoding" "^0.31.0" + "@cosmjs/math" "^0.31.0" + "@cosmjs/utils" "^0.31.0" + "@noble/hashes" "^1" + bn.js "^5.2.0" + elliptic "^6.5.4" + libsodium-wrappers-sumo "^0.7.11" + "@cosmjs/crypto@^0.29.3", "@cosmjs/crypto@^0.29.5": version "0.29.5" resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.29.5.tgz#ab99fc382b93d8a8db075780cf07487a0f9519fd" @@ -380,6 +1079,28 @@ elliptic "^6.5.4" libsodium-wrappers "^0.7.6" +"@cosmjs/crypto@^0.31.0", "@cosmjs/crypto@^0.31.3": + version "0.31.3" + resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.31.3.tgz#c752cb6d682fdc735dcb45a2519f89c56ba16c26" + integrity sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ== + dependencies: + "@cosmjs/encoding" "^0.31.3" + "@cosmjs/math" "^0.31.3" + "@cosmjs/utils" "^0.31.3" + "@noble/hashes" "^1" + bn.js "^5.2.0" + elliptic "^6.5.4" + libsodium-wrappers-sumo "^0.7.11" + +"@cosmjs/encoding@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.31.0.tgz#9a6fd80b59c35fc20638a6436128ad0be681eafc" + integrity sha512-NYGQDRxT7MIRSlcbAezwxK0FqnaSPKCH7O32cmfpHNWorFxhy9lwmBoCvoe59Kd0HmArI4h+NGzLEfX3OLnA4Q== + dependencies: + base64-js "^1.3.0" + bech32 "^1.1.4" + readonly-date "^1.0.0" + "@cosmjs/encoding@^0.29.3", "@cosmjs/encoding@^0.29.4", "@cosmjs/encoding@^0.29.5": version "0.29.5" resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.29.5.tgz#009a4b1c596cdfd326f30ccfa79f5e56daa264f2" @@ -389,6 +1110,15 @@ bech32 "^1.1.4" readonly-date "^1.0.0" +"@cosmjs/encoding@^0.31.0", "@cosmjs/encoding@^0.31.3": + version "0.31.3" + resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.31.3.tgz#2519d9c9ae48368424971f253775c4580b54c5aa" + integrity sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg== + dependencies: + base64-js "^1.3.0" + bech32 "^1.1.4" + readonly-date "^1.0.0" + "@cosmjs/json-rpc@^0.29.5": version "0.29.5" resolved "https://registry.yarnpkg.com/@cosmjs/json-rpc/-/json-rpc-0.29.5.tgz#5e483a9bd98a6270f935adf0dfd8a1e7eb777fe4" @@ -404,6 +1134,13 @@ dependencies: bn.js "^5.2.0" +"@cosmjs/math@^0.31.0", "@cosmjs/math@^0.31.3": + version "0.31.3" + resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.31.3.tgz#767f7263d12ba1b9ed2f01f68d857597839fd957" + integrity sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A== + dependencies: + bn.js "^5.2.0" + "@cosmjs/proto-signing@0.29.3": version "0.29.3" resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.29.3.tgz#fa5ed609ed2a0007d8d5eacbeb1f5a89ba1b77ff" @@ -417,6 +1154,19 @@ cosmjs-types "^0.5.2" long "^4.0.0" +"@cosmjs/proto-signing@0.31.0": + version "0.31.0" + resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.31.0.tgz#7056963457cd967f53f56c2ab4491638e5ade2c0" + integrity sha512-JNlyOJRkn8EKB9mCthkjr6lVX6eyVQ09PFdmB4/DR874E62dFTvQ+YvyKMAgN7K7Dcjj26dVlAD3f6Xs7YOGDg== + dependencies: + "@cosmjs/amino" "^0.31.0" + "@cosmjs/crypto" "^0.31.0" + "@cosmjs/encoding" "^0.31.0" + "@cosmjs/math" "^0.31.0" + "@cosmjs/utils" "^0.31.0" + cosmjs-types "^0.8.0" + long "^4.0.0" + "@cosmjs/proto-signing@^0.29.3", "@cosmjs/proto-signing@^0.29.4", "@cosmjs/proto-signing@^0.29.5": version "0.29.5" resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.29.5.tgz#af3b62a46c2c2f1d2327d678b13b7262db1fe87c" @@ -504,11 +1254,140 @@ resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.29.5.tgz#3fed1b3528ae8c5f1eb5d29b68755bebfd3294ee" integrity sha512-m7h+RXDUxOzEOGt4P+3OVPX7PuakZT3GBmaM/Y2u+abN3xZkziykD/NvedYFvvCCdQo714XcGl33bwifS9FZPQ== +"@cosmjs/utils@^0.31.0", "@cosmjs/utils@^0.31.3": + version "0.31.3" + resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.31.3.tgz#f97bbfda35ad69e80cd5c7fe0a270cbda16db1ed" + integrity sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA== + +"@ctrl/tinycolor@^3.4.0": + version "3.6.1" + resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz#b6c75a56a1947cc916ea058772d666a2c8932f31" + integrity sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA== + "@discoveryjs/json-ext@^0.5.0": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== +"@emotion/babel-plugin@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" + integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/runtime" "^7.18.3" + "@emotion/hash" "^0.9.1" + "@emotion/memoize" "^0.8.1" + "@emotion/serialize" "^1.1.2" + babel-plugin-macros "^3.1.0" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.2.0" + +"@emotion/cache@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" + integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== + dependencies: + "@emotion/memoize" "^0.8.1" + "@emotion/sheet" "^1.2.2" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" + stylis "4.2.0" + +"@emotion/hash@^0.9.1": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" + integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== + +"@emotion/is-prop-valid@^0.8.2": + version "0.8.8" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" + integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== + dependencies: + "@emotion/memoize" "0.7.4" + +"@emotion/is-prop-valid@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz#d4175076679c6a26faa92b03bb786f9e52612337" + integrity sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw== + dependencies: + "@emotion/memoize" "^0.8.1" + +"@emotion/memoize@0.7.4": + version "0.7.4" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" + integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== + +"@emotion/memoize@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" + integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + +"@emotion/react@^11.10.8": + version "11.11.4" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.4.tgz#3a829cac25c1f00e126408fab7f891f00ecc3c1d" + integrity sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.11.0" + "@emotion/cache" "^11.11.0" + "@emotion/serialize" "^1.1.3" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" + hoist-non-react-statics "^3.3.1" + +"@emotion/serialize@^1.1.2", "@emotion/serialize@^1.1.3", "@emotion/serialize@^1.1.4": + version "1.1.4" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.4.tgz#fc8f6d80c492cfa08801d544a05331d1cc7cd451" + integrity sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ== + dependencies: + "@emotion/hash" "^0.9.1" + "@emotion/memoize" "^0.8.1" + "@emotion/unitless" "^0.8.1" + "@emotion/utils" "^1.2.1" + csstype "^3.0.2" + +"@emotion/sheet@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" + integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== + +"@emotion/styled@^11.10.8": + version "11.11.5" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.5.tgz#0c5c8febef9d86e8a926e663b2e5488705545dfb" + integrity sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.11.0" + "@emotion/is-prop-valid" "^1.2.2" + "@emotion/serialize" "^1.1.4" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" + "@emotion/utils" "^1.2.1" + +"@emotion/unitless@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" + integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== + +"@emotion/use-insertion-effect-with-fallbacks@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" + integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== + +"@emotion/utils@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" + integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== + +"@emotion/weak-memoize@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" + integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== + "@esbuild/android-arm64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz#276c5f99604054d3dbb733577e09adae944baa90" @@ -696,7 +1575,7 @@ "@ethereumjs/common" "^2.6.4" ethereumjs-util "^7.1.5" -"@ethereumjs/tx@^4.1.1", "@ethereumjs/tx@^4.1.2": +"@ethereumjs/tx@^4.1.1", "@ethereumjs/tx@^4.1.2", "@ethereumjs/tx@^4.2.0": version "4.2.0" resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-4.2.0.tgz#5988ae15daf5a3b3c815493bc6b495e76009e853" integrity sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw== @@ -715,6 +1594,21 @@ ethereum-cryptography "^2.0.0" micro-ftch "^0.3.1" +"@ethersproject/abi@5.0.7": + version "5.0.7" + resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.0.7.tgz#79e52452bd3ca2956d0e1c964207a58ad1a0ee7b" + integrity sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw== + dependencies: + "@ethersproject/address" "^5.0.4" + "@ethersproject/bignumber" "^5.0.7" + "@ethersproject/bytes" "^5.0.4" + "@ethersproject/constants" "^5.0.4" + "@ethersproject/hash" "^5.0.4" + "@ethersproject/keccak256" "^5.0.3" + "@ethersproject/logger" "^5.0.5" + "@ethersproject/properties" "^5.0.3" + "@ethersproject/strings" "^5.0.4" + "@ethersproject/abi@5.5.0": version "5.5.0" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.5.0.tgz#fb52820e22e50b854ff15ce1647cc508d6660613" @@ -804,7 +1698,7 @@ "@ethersproject/logger" "^5.5.0" "@ethersproject/rlp" "^5.5.0" -"@ethersproject/address@5.7.0", "@ethersproject/address@^5.5.0", "@ethersproject/address@^5.7.0": +"@ethersproject/address@5.7.0", "@ethersproject/address@^5.0.4", "@ethersproject/address@^5.5.0", "@ethersproject/address@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== @@ -854,7 +1748,7 @@ "@ethersproject/logger" "^5.5.0" bn.js "^4.11.9" -"@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.5.0", "@ethersproject/bignumber@^5.7.0": +"@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.0.7", "@ethersproject/bignumber@^5.5.0", "@ethersproject/bignumber@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== @@ -870,7 +1764,7 @@ dependencies: "@ethersproject/logger" "^5.5.0" -"@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.5.0", "@ethersproject/bytes@^5.7.0": +"@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.0.4", "@ethersproject/bytes@^5.5.0", "@ethersproject/bytes@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== @@ -884,7 +1778,7 @@ dependencies: "@ethersproject/bignumber" "^5.5.0" -"@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.5.0", "@ethersproject/constants@^5.7.0": +"@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.0.4", "@ethersproject/constants@^5.5.0", "@ethersproject/constants@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== @@ -937,7 +1831,7 @@ "@ethersproject/properties" "^5.5.0" "@ethersproject/strings" "^5.5.0" -"@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.5.0", "@ethersproject/hash@^5.7.0": +"@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.0.4", "@ethersproject/hash@^5.5.0", "@ethersproject/hash@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== @@ -1034,7 +1928,7 @@ "@ethersproject/bytes" "^5.5.0" js-sha3 "0.8.0" -"@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.5.0", "@ethersproject/keccak256@^5.7.0": +"@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.0.3", "@ethersproject/keccak256@^5.5.0", "@ethersproject/keccak256@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== @@ -1047,7 +1941,7 @@ resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.5.0.tgz#0c2caebeff98e10aefa5aef27d7441c7fd18cf5d" integrity sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg== -"@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.5.0", "@ethersproject/logger@^5.7.0": +"@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.0.5", "@ethersproject/logger@^5.5.0", "@ethersproject/logger@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== @@ -1089,7 +1983,7 @@ dependencies: "@ethersproject/logger" "^5.5.0" -"@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.5.0", "@ethersproject/properties@^5.7.0": +"@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.0.3", "@ethersproject/properties@^5.5.0", "@ethersproject/properties@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== @@ -1304,7 +2198,7 @@ "@ethersproject/constants" "^5.5.0" "@ethersproject/logger" "^5.5.0" -"@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.5.0", "@ethersproject/strings@^5.7.0": +"@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.0.4", "@ethersproject/strings@^5.5.0", "@ethersproject/strings@^5.7.0": version "5.7.0" resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== @@ -1575,7 +2469,7 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== @@ -1680,10 +2574,13 @@ rxjs "^6.6.3" typescript "^4.6.2" -"@ledgerhq/connect-kit-loader@^1.1.0": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.2.tgz#d550e3c1f046e4c796f32a75324b03606b7e226a" - integrity sha512-mscwGroSJQrCTjtNGBu+18FQbZYA4+q6Tyx6K7CXHl6AwgZKbWfZYdgP2F+fyZcRUdGRsMX8QtvU61VcGGtO1A== +"@ledgerhq/connect-kit@1.1.12": + version "1.1.12" + resolved "https://registry.yarnpkg.com/@ledgerhq/connect-kit/-/connect-kit-1.1.12.tgz#e6782c207a2c8d1f4db603d090c0bbecef02e5fd" + integrity sha512-dmnG2BGBckzaUaqXmkoDxy1+Yvk/simH8NNaZOQaOFk2EfFNsaw5Q3EKrw9tzqjSXmg6t6eGUNPxE0ji9uZprw== + dependencies: + rollup-plugin-dotenv "0.5.0" + uuid "9.0.1" "@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0": version "1.1.2" @@ -1744,6 +2641,15 @@ pify "^5.0.0" safe-stable-stringify "^2.4.3" +"@metamask/eth-json-rpc-provider@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@metamask/eth-json-rpc-provider/-/eth-json-rpc-provider-1.0.1.tgz#3fd5316c767847f4ca107518b611b15396a5a32c" + integrity sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA== + dependencies: + "@metamask/json-rpc-engine" "^7.0.0" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^5.0.1" + "@metamask/eth-json-rpc-provider@^2.1.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@metamask/eth-json-rpc-provider/-/eth-json-rpc-provider-2.2.0.tgz#7d7551ff075a42992cd7fd4054868f6a5f9ee541" @@ -1778,6 +2684,15 @@ tweetnacl "^1.0.3" tweetnacl-util "^0.15.1" +"@metamask/json-rpc-engine@^7.0.0", "@metamask/json-rpc-engine@^7.3.2": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-7.3.3.tgz#f2b30a2164558014bfcca45db10f5af291d989af" + integrity sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg== + dependencies: + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + "@metamask/json-rpc-engine@^7.1.0", "@metamask/json-rpc-engine@^7.1.1": version "7.1.1" resolved "https://registry.yarnpkg.com/@metamask/json-rpc-engine/-/json-rpc-engine-7.1.1.tgz#90d4c1e1fe3bcfc983563f6e07715319b8857190" @@ -1787,6 +2702,16 @@ "@metamask/safe-event-emitter" "^3.0.0" "@metamask/utils" "^8.1.0" +"@metamask/json-rpc-middleware-stream@^6.0.2": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@metamask/json-rpc-middleware-stream/-/json-rpc-middleware-stream-6.0.2.tgz#75852ce481f8f9f091edbfc04ffdf964f8f3cabd" + integrity sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q== + dependencies: + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + readable-stream "^3.6.2" + "@metamask/object-multiplex@^1.1.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-1.2.0.tgz#38fc15c142f61939391e1b9a8eed679696c7e4f4" @@ -1796,6 +2721,14 @@ once "^1.4.0" readable-stream "^2.3.3" +"@metamask/object-multiplex@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@metamask/object-multiplex/-/object-multiplex-2.0.0.tgz#aa6e4aa7b4e2f457ea4bb51cd7281d931e0aa35d" + integrity sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA== + dependencies: + once "^1.4.0" + readable-stream "^3.6.2" + "@metamask/obs-store@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@metamask/obs-store/-/obs-store-7.0.0.tgz#6cae5f28306bb3e83a381bc9ae22682316095bd3" @@ -1804,6 +2737,31 @@ "@metamask/safe-event-emitter" "^2.0.0" through2 "^2.0.3" +"@metamask/onboarding@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@metamask/onboarding/-/onboarding-1.0.1.tgz#14a36e1e175e2f69f09598e2008ab6dc1b3297e6" + integrity sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ== + dependencies: + bowser "^2.9.0" + +"@metamask/providers@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-15.0.0.tgz#e8957bb89d2f3379b32b60117d79a141e44db2bc" + integrity sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA== + dependencies: + "@metamask/json-rpc-engine" "^7.3.2" + "@metamask/json-rpc-middleware-stream" "^6.0.2" + "@metamask/object-multiplex" "^2.0.0" + "@metamask/rpc-errors" "^6.2.1" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^8.3.0" + detect-browser "^5.2.0" + extension-port-stream "^3.0.0" + fast-deep-equal "^3.1.3" + is-stream "^2.0.0" + readable-stream "^3.6.2" + webextension-polyfill "^0.10.0" + "@metamask/providers@^8.1.1": version "8.1.1" resolved "https://registry.yarnpkg.com/@metamask/providers/-/providers-8.1.1.tgz#7b0dbb54700c949aafba24c9b98e6f4e9d81f325" @@ -1838,6 +2796,14 @@ "@metamask/utils" "^8.1.0" fast-safe-stringify "^2.0.6" +"@metamask/rpc-errors@^6.2.1": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@metamask/rpc-errors/-/rpc-errors-6.2.1.tgz#f5daf429ededa7cb83069dc621bd5738fe2a1d80" + integrity sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw== + dependencies: + "@metamask/utils" "^8.3.0" + fast-safe-stringify "^2.0.6" + "@metamask/safe-event-emitter@2.0.0", "@metamask/safe-event-emitter@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz#af577b477c683fad17c619a78208cede06f9605c" @@ -1848,6 +2814,52 @@ resolved "https://registry.yarnpkg.com/@metamask/safe-event-emitter/-/safe-event-emitter-3.0.0.tgz#8c2b9073fe0722d48693143b0dc8448840daa3bd" integrity sha512-j6Z47VOmVyGMlnKXZmL0fyvWfEYtKWCA9yGZkU3FCsGZUT5lHGmvaV9JA5F2Y+010y7+ROtR3WMXIkvl/nVzqQ== +"@metamask/sdk-communication-layer@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-communication-layer/-/sdk-communication-layer-0.17.0.tgz#890dbcdc983be32fdd9600cc996ede00cc2090fc" + integrity sha512-au1HzkU4VxAWjIvGGhvv/yPlB+x4jEi70c/GpjhHgJ7EG8TJprYy9jAOxfzc8h7hXRzOA8PCkFMzJu5COrJCYA== + dependencies: + bufferutil "^4.0.8" + date-fns "^2.29.3" + debug "^4.3.4" + utf-8-validate "^6.0.3" + uuid "^8.3.2" + +"@metamask/sdk-install-modal-web@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@metamask/sdk-install-modal-web/-/sdk-install-modal-web-0.17.0.tgz#230e6868f52ff9adcb22ed07ffdfab26cd72a0c7" + integrity sha512-R/Cr3Z2ZDMHkYjp5XUz5gs2yyaFtN1TmvBYueoD++wEH659WmSIL6/HTrU/sTRImvOpxCkF+FihwbYrlqagisw== + dependencies: + qr-code-styling "^1.6.0-rc.1" + +"@metamask/sdk@^0.17.1": + version "0.17.2" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.17.2.tgz#047e08a6a6460ca84efcfd2ebd477a83ba34c38a" + integrity sha512-5DkeywTJLf2BLCQ2aa2D7bIcoAc/107uFXlDA/1lpCnbWc9ZHloFomdu3d1e3dRegqCOzDGuJjOA+dPonDQZZw== + dependencies: + "@metamask/onboarding" "^1.0.1" + "@metamask/providers" "^15.0.0" + "@metamask/sdk-communication-layer" "0.17.0" + "@metamask/sdk-install-modal-web" "0.17.0" + "@types/dom-screen-wake-lock" "^1.0.0" + bowser "^2.9.0" + cross-fetch "^4.0.0" + debug "^4.3.4" + eciesjs "^0.3.15" + eth-rpc-errors "^4.0.3" + eventemitter2 "^6.4.7" + i18next "22.5.1" + i18next-browser-languagedetector "7.1.0" + obj-multiplex "^1.0.0" + pump "^3.0.0" + qrcode-terminal-nooctal "^0.12.1" + react-native-webview "^11.26.0" + readable-stream "^3.6.2" + rollup-plugin-visualizer "^5.9.2" + socket.io-client "^4.5.1" + util "^0.12.4" + uuid "^8.3.2" + "@metamask/utils@^3.0.1": version "3.6.0" resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-3.6.0.tgz#b218b969a05ca7a8093b5d1670f6625061de707d" @@ -1858,7 +2870,7 @@ semver "^7.3.8" superstruct "^1.0.3" -"@metamask/utils@^5.0.0": +"@metamask/utils@^5.0.0", "@metamask/utils@^5.0.1": version "5.0.2" resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-5.0.2.tgz#140ba5061d90d9dac0280c19cab101bc18c8857c" integrity sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g== @@ -1881,6 +2893,21 @@ semver "^7.5.4" superstruct "^1.0.3" +"@metamask/utils@^8.3.0": + version "8.4.0" + resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-8.4.0.tgz#f44812c96467a4e1b70b2edff6ee89a9caa4e354" + integrity sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg== + dependencies: + "@ethereumjs/tx" "^4.2.0" + "@noble/hashes" "^1.3.1" + "@scure/base" "^1.1.3" + "@types/debug" "^4.1.7" + debug "^4.3.4" + pony-cause "^2.1.10" + semver "^7.5.4" + superstruct "^1.0.3" + uuid "^9.0.1" + "@motionone/animation@^10.15.1", "@motionone/animation@^10.16.3": version "10.16.3" resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.16.3.tgz#f5b71e27fd8b88b61f983adb0ed6c8e3e89281f9" @@ -1963,6 +2990,13 @@ jsbi "^3.1.5" sha.js "^2.4.11" +"@noble/curves@1.0.0", "@noble/curves@~1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.0.0.tgz#e40be8c7daf088aaf291887cbc73f43464a92932" + integrity sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw== + dependencies: + "@noble/hashes" "1.3.0" + "@noble/curves@1.1.0", "@noble/curves@~1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.1.0.tgz#f13fc667c89184bc04cccb9b11e8e7bae27d8c3d" @@ -1977,6 +3011,16 @@ dependencies: "@noble/hashes" "1.3.2" +"@noble/hashes@1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" + integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== + +"@noble/hashes@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1" + integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg== + "@noble/hashes@1.3.1": version "1.3.1" resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.1.tgz#8831ef002114670c603c458ab8b11328406953a9" @@ -1987,6 +3031,11 @@ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== +"@noble/secp256k1@1.7.1": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c" + integrity sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -2016,11 +3065,149 @@ "@babel/runtime" "^7.19.0" axios "0.27.2" +"@parcel/watcher-android-arm64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84" + integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg== + +"@parcel/watcher-darwin-arm64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34" + integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA== + +"@parcel/watcher-darwin-x64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020" + integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg== + +"@parcel/watcher-freebsd-x64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8" + integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w== + +"@parcel/watcher-linux-arm-glibc@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d" + integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA== + +"@parcel/watcher-linux-arm64-glibc@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7" + integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA== + +"@parcel/watcher-linux-arm64-musl@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635" + integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA== + +"@parcel/watcher-linux-x64-glibc@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39" + integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg== + +"@parcel/watcher-linux-x64-musl@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16" + integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ== + +"@parcel/watcher-wasm@^2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz#c4353e4fdb96ee14389856f7f6f6d21b7dcef9e1" + integrity sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA== + dependencies: + is-glob "^4.0.3" + micromatch "^4.0.5" + napi-wasm "^1.1.0" + +"@parcel/watcher-win32-arm64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc" + integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg== + +"@parcel/watcher-win32-ia32@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7" + integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw== + +"@parcel/watcher-win32-x64@2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf" + integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A== + +"@parcel/watcher@^2.4.1": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8" + 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" + 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" + +"@particle-network/analytics@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/analytics/-/analytics-1.0.1.tgz#b3657cf7aaea57f90a7ac2c03f72b8786c298012" + integrity sha512-ApcSMo1BXQlywO+lvOpG3Y2/SVGNCpJzXO/4e3zHzE/9j+uMehsilDzPwWQwLhrCXZYwVm7mmE71Gs36yobiNw== + dependencies: + hash.js "^1.1.7" + uuidv4 "^6.2.13" + +"@particle-network/auth@^1.2.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@particle-network/auth/-/auth-1.3.1.tgz#f9ee51749e3b10e700e0d8c51a8c0769ab0b9851" + integrity sha512-hu6ie5RjjN4X+6y/vfjyCsSX3pQuS8k8ZoMb61QWwhWsnZXKzpBUVeAEk55aGfxxXY+KfBkSmZosyaZHGoHnfw== + dependencies: + "@particle-network/analytics" "^1.0.1" + "@particle-network/chains" "*" + "@particle-network/crypto" "^1.0.1" + buffer "^6.0.3" + draggabilly "^3.0.0" + +"@particle-network/chains@*": + version "1.3.27" + resolved "https://registry.yarnpkg.com/@particle-network/chains/-/chains-1.3.27.tgz#dca4f2714d23957cc68cb1301de1f310895658db" + integrity sha512-+my+i0jqZjUoP+mNXxsPc2D7o3Cijl6uRvvWyTT0DmpyK1P+9yFpUuhEHUVmZMriTGKXv6synner16CD8/AkpQ== + +"@particle-network/crypto@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@particle-network/crypto/-/crypto-1.0.1.tgz#26afef622a3eb906dca5c810fef8001ffee29029" + integrity sha512-GgvHmHcFiNkCLZdcJOgctSbgvs251yp+EAdUydOE3gSoIxN6KEr/Snu9DebENhd/nFb7FDk5ap0Hg49P7pj1fg== + dependencies: + crypto-js "^4.1.1" + uuidv4 "^6.2.13" + +"@particle-network/provider@^1.2.0": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@particle-network/provider/-/provider-1.3.2.tgz#68ae98cca471c7612206cb43c915719cd321fb25" + integrity sha512-3XAUMCISTMYE57LZik7PrVanLIUyyU1ufb5eHtsoQw5ORfH0IeX3E5o6x5mxtfOXKfxVQ0tsIoLRMw0jMmSDpA== + dependencies: + "@particle-network/chains" "*" + axios "^1.3.6" + uuid "^8.3.2" + "@pedrouid/environment@^1.0.1": version "1.0.1" resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec" integrity sha512-HaW78NszGzRZd9SeoI3JD11JqY+lubnaOx7Pewj5pfjqWXOEATpeKIFb9Z4t2WBUK2iryiXX3lzWwmYWgUL0Ug== +"@popperjs/core@^2.9.3": + version "2.11.8" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== + "@portis/web3@^4.0.6": version "4.0.7" resolved "https://registry.yarnpkg.com/@portis/web3/-/web3-4.0.7.tgz#4700e79ef35c12736ade82a31dc71c045b97209d" @@ -2084,6 +3271,57 @@ resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== +"@ramp-network/ramp-instant-sdk@^4.0.2": + version "4.0.5" + resolved "https://registry.yarnpkg.com/@ramp-network/ramp-instant-sdk/-/ramp-instant-sdk-4.0.5.tgz#4477acfc04e3b18d40a47aecd2b716ae349cd9ca" + integrity sha512-iQubpyGSy4wy/Pg7nZPclVOB+/edgAhmN1RUh9l+Ry+NbnUNu9e3c8x5o5hOHl//J1m0Roj+hKRt0qRVmWdNHA== + dependencies: + body-scroll-lock "^3.1.5" + +"@reach/alert@0.13.2": + version "0.13.2" + resolved "https://registry.yarnpkg.com/@reach/alert/-/alert-0.13.2.tgz#71c4a848d51341f1d6d9eaae060975391c224870" + integrity sha512-LDz83AXCrClyq/MWe+0vaZfHp1Ytqn+kgL5VxG7rirUvmluWaj/snxzfNPWn0Ma4K2YENmXXRC/iHt5X95SqIg== + dependencies: + "@reach/utils" "0.13.2" + "@reach/visually-hidden" "0.13.2" + prop-types "^15.7.2" + tslib "^2.1.0" + +"@reach/utils@0.13.2": + version "0.13.2" + resolved "https://registry.yarnpkg.com/@reach/utils/-/utils-0.13.2.tgz#87e8fef8ebfe583fa48250238a1a3ed03189fcc8" + integrity sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ== + dependencies: + "@types/warning" "^3.0.0" + tslib "^2.1.0" + warning "^4.0.3" + +"@reach/visually-hidden@0.13.2": + version "0.13.2" + resolved "https://registry.yarnpkg.com/@reach/visually-hidden/-/visually-hidden-0.13.2.tgz#ee21de376a7e57e60dc92d95a671073796caa17e" + integrity sha512-sPZwNS0/duOuG0mYwE5DmgEAzW9VhgU3aIt1+mrfT/xiT9Cdncqke+kRBQgU708q/Ttm9tWsoHni03nn/SuPTQ== + dependencies: + prop-types "^15.7.2" + tslib "^2.1.0" + +"@rollup/plugin-replace@^5.0.1": + version "5.0.5" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf" + integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + +"@rollup/pluginutils@^5.0.1": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" + integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^2.3.1" + "@safe-global/safe-apps-provider@^0.18.0": version "0.18.0" resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.18.0.tgz#81f1f00684840832e4fe2f92f26891533abd7b10" @@ -2092,6 +3330,14 @@ "@safe-global/safe-apps-sdk" "^8.1.0" events "^3.3.0" +"@safe-global/safe-apps-provider@^0.18.1": + version "0.18.2" + resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-provider/-/safe-apps-provider-0.18.2.tgz#336f3f4bb6ebbad9354e6551687491efc73991bc" + integrity sha512-yHHAcppwE7aIUWEeZiYAClQzZCdP5l0Kbd0CBlhKAsTcqZnx4Gh3G3G3frY5LlWcGzp9qmQ5jv+J1GBpaZLDgw== + dependencies: + "@safe-global/safe-apps-sdk" "^9.0.0" + events "^3.3.0" + "@safe-global/safe-apps-sdk@^8.1.0": version "8.1.0" resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.1.0.tgz#d1d0c69cd2bf4eef8a79c5d677d16971926aa64a" @@ -2100,16 +3346,38 @@ "@safe-global/safe-gateway-typescript-sdk" "^3.5.3" viem "^1.0.0" +"@safe-global/safe-apps-sdk@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@safe-global/safe-apps-sdk/-/safe-apps-sdk-9.0.0.tgz#56635663f5a73773c5929d9c45ffea2b75dab69b" + integrity sha512-fEqmQBU3JqTjORSl3XYrcaxdxkUqeeM39qsQjqCzzTHioN8DEfg3JCLq6EBoXzcKTVOYi8SPzLV7KJccdDw+4w== + dependencies: + "@safe-global/safe-gateway-typescript-sdk" "^3.5.3" + viem "^1.6.0" + "@safe-global/safe-gateway-typescript-sdk@^3.5.3": version "3.12.0" resolved "https://registry.yarnpkg.com/@safe-global/safe-gateway-typescript-sdk/-/safe-gateway-typescript-sdk-3.12.0.tgz#aa767a32f4d10f4ec9a47ad7e32d547d3b51e94c" integrity sha512-hExCo62lScVC9/ztVqYEYL2pFxcqLTvB8fj0WtdP5FWrvbtEgD0pbVolchzD5bf85pbzvEwdAxSVS7EdCZxTNw== +"@scure/base@^1.1.3": + version "1.1.6" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.6.tgz#8ce5d304b436e4c84f896e0550c83e4d88cb917d" + integrity sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g== + "@scure/base@~1.1.0", "@scure/base@~1.1.2": version "1.1.3" resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.3.tgz#8584115565228290a6c6c4961973e0903bb3df2f" integrity sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q== +"@scure/bip32@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.0.tgz#6c8d980ef3f290987736acd0ee2e0f0d50068d87" + integrity sha512-bcKpo1oj54hGholplGLpqPHRbIsnbixFtc06nwuNM5/dwSXOq/AAYoIBRsBmnZJSdfeNW5rnff7NTAz3ZCqR9Q== + dependencies: + "@noble/curves" "~1.0.0" + "@noble/hashes" "~1.3.0" + "@scure/base" "~1.1.0" + "@scure/bip32@1.3.1": version "1.3.1" resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.1.tgz#7248aea723667f98160f593d621c47e208ccbb10" @@ -2128,6 +3396,14 @@ "@noble/hashes" "~1.3.2" "@scure/base" "~1.1.2" +"@scure/bip39@1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.0.tgz#a207e2ef96de354de7d0002292ba1503538fc77b" + integrity sha512-SX/uKq52cuxm4YFXWFaVByaSHJh2w3BnokVSeUJVCv6K7WulT9u2BuNRBhuFl8vAuYnzx9bEu9WgpcNYTrYieg== + dependencies: + "@noble/hashes" "~1.3.0" + "@scure/base" "~1.1.0" + "@scure/bip39@1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" @@ -2419,6 +3695,40 @@ dependencies: defer-to-connect "^2.0.1" +"@tanstack/query-core@4.36.1": + version "4.36.1" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-4.36.1.tgz#79f8c1a539d47c83104210be2388813a7af2e524" + integrity sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA== + +"@tanstack/query-persist-client-core@4.36.1": + version "4.36.1" + resolved "https://registry.yarnpkg.com/@tanstack/query-persist-client-core/-/query-persist-client-core-4.36.1.tgz#4d7284994bdc2a15fe6cbe7161be21e03033fe12" + integrity sha512-eocgCeI7D7TRv1IUUBMfVwOI0wdSmMkBIbkKhqEdTrnUHUQEeOaYac8oeZk2cumAWJdycu6P/wB+WqGynTnzXg== + dependencies: + "@tanstack/query-core" "4.36.1" + +"@tanstack/query-sync-storage-persister@^4.27.1": + version "4.36.1" + resolved "https://registry.yarnpkg.com/@tanstack/query-sync-storage-persister/-/query-sync-storage-persister-4.36.1.tgz#bf5d800d54416bc88f150792a53e25ed8aa8769f" + integrity sha512-yMEt5hWe2+1eclf1agMtXHnPIkxEida0lYWkfdhR8U6KXk/lO4Vca6piJmhKI85t0NHlx3l/z6zX+t/Fn5O9NA== + dependencies: + "@tanstack/query-persist-client-core" "4.36.1" + +"@tanstack/react-query-persist-client@^4.28.0": + version "4.36.1" + resolved "https://registry.yarnpkg.com/@tanstack/react-query-persist-client/-/react-query-persist-client-4.36.1.tgz#d96fa44cdc661534379623423da596a7b5dc13a7" + integrity sha512-32I5b9aAu4NCiXZ7Te/KEQLfHbYeTNriVPrKYcvEThnZ9tlW01vLcSoxpUIsMYRsembvJUUAkzYBAiZHLOd6pQ== + dependencies: + "@tanstack/query-persist-client-core" "4.36.1" + +"@tanstack/react-query@^4.28.0": + version "4.36.1" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-4.36.1.tgz#acb589fab4085060e2e78013164868c9c785e5d2" + integrity sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw== + dependencies: + "@tanstack/query-core" "4.36.1" + use-sync-external-store "^1.2.0" + "@toruslabs/base-controllers@^2.8.0", "@toruslabs/base-controllers@^2.8.1": version "2.9.0" resolved "https://registry.yarnpkg.com/@toruslabs/base-controllers/-/base-controllers-2.9.0.tgz#e23f4228b5a90bf94ba9b0b27451f3024bd1acc4" @@ -2751,6 +4061,13 @@ varuint-bitcoin "^1.1.2" wif "^2.0.6" +"@types/bn.js@*": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.5.tgz#2e0dacdcce2c0f16b905d20ff87aedbc6f7b4bf0" + integrity sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A== + dependencies: + "@types/node" "*" + "@types/bn.js@5.1.1": version "5.1.1" resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.1.tgz#b51e1b55920a4ca26e9285ff79936bbdec910682" @@ -2827,6 +4144,18 @@ dependencies: "@types/ms" "*" +"@types/dom-screen-wake-lock@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@types/dom-screen-wake-lock/-/dom-screen-wake-lock-1.0.3.tgz#c3588a5f6f40fae957f9ce5be9bc4927a61bb9a0" + integrity sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw== + +"@types/elliptic@^6.4.9": + version "6.4.18" + resolved "https://registry.yarnpkg.com/@types/elliptic/-/elliptic-6.4.18.tgz#bc96e26e1ccccbabe8b6f0e409c85898635482e1" + integrity sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw== + dependencies: + "@types/bn.js" "*" + "@types/eslint-scope@^3.7.3": version "3.7.5" resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e" @@ -2848,6 +4177,14 @@ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453" integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== +"@types/ethereumjs-util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@types/ethereumjs-util/-/ethereumjs-util-5.2.0.tgz#f49fe8114789ec0871721392c09318c3eb56671b" + integrity sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ== + dependencies: + "@types/bn.js" "*" + "@types/node" "*" + "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": version "4.17.37" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz#7e4b7b59da9142138a2aaa7621f5abedce8c7320" @@ -2902,6 +4239,11 @@ dependencies: "@types/node" "*" +"@types/js-cookie@^2.2.6": + version "2.2.7" + resolved "https://registry.yarnpkg.com/@types/js-cookie/-/js-cookie-2.2.7.tgz#226a9e31680835a6188e887f3988e60c04d3f6a3" + integrity sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA== + "@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.13" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" @@ -2914,6 +4256,18 @@ dependencies: "@types/node" "*" +"@types/lodash.mergewith@4.6.6": + version "4.6.6" + resolved "https://registry.yarnpkg.com/@types/lodash.mergewith/-/lodash.mergewith-4.6.6.tgz#c4698f5b214a433ff35cb2c75ee6ec7f99d79f10" + integrity sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg== + dependencies: + "@types/lodash" "*" + +"@types/lodash@*": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.0.tgz#d774355e41f372d5350a4d0714abb48194a489c3" + integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== + "@types/lodash@^4.14.136": version "4.14.199" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.199.tgz#c3edb5650149d847a277a8961a7ad360c474e9bf" @@ -2951,11 +4305,26 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== +"@types/node@18.15.13": + version "18.15.13" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.13.tgz#f64277c341150c979e42b00e4ac289290c9df469" + integrity sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q== + +"@types/node@^10.12.18": + version "10.17.60" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" + integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== + "@types/node@^12.12.54", "@types/node@^12.12.6", "@types/node@^12.7.1": version "12.20.55" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== +"@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + "@types/pbkdf2@^3.0.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@types/pbkdf2/-/pbkdf2-3.1.0.tgz#039a0e9b67da0cdc4ee5dab865caa6b267bb66b1" @@ -2992,6 +4361,13 @@ dependencies: "@types/node" "*" +"@types/secp256k1@^4.0.4": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@types/secp256k1/-/secp256k1-4.0.6.tgz#d60ba2349a51c2cbc5e816dcd831a42029d376bf" + integrity sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ== + dependencies: + "@types/node" "*" + "@types/send@*": version "0.17.2" resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.2.tgz#af78a4495e3c2b79bfbdac3955fdd50e03cc98f2" @@ -3028,11 +4404,21 @@ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.4.tgz#2b38784cd16957d3782e8e2b31c03bc1d13b4d65" integrity sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ== +"@types/uuid@8.3.4": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + "@types/w3c-web-usb@^1.0.6": version "1.0.8" resolved "https://registry.yarnpkg.com/@types/w3c-web-usb/-/w3c-web-usb-1.0.8.tgz#c593fef468b6e6051209c8aa89d1ead08005e23d" integrity sha512-ouEoUTyB27wFXUUyl0uKIE6VkeCczDtazWTiZGD1M4onceJnp8KnHDf7CzLbpwzek2ZFWXTC5KrNDRc9q/Jf6Q== +"@types/warning@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.3.tgz#d1884c8cc4a426d1ac117ca2611bf333834c6798" + integrity sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q== + "@types/web@^0.0.100": version "0.0.100" resolved "https://registry.yarnpkg.com/@types/web/-/web-0.0.100.tgz#174f5952c40ab0940b0aa04e76d2f2776005b8c6" @@ -3052,6 +4438,13 @@ dependencies: "@types/node" "*" +"@types/ws@^8.5.4": + version "8.5.10" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787" + integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== + dependencies: + "@types/node" "*" + "@uauth/common@2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@uauth/common/-/common-2.3.0.tgz#de0018503614e993af9f6373983bc53828bf9b80" @@ -3078,6 +4471,51 @@ crypto-js "^4.1.1" elliptic "^6.5.4" +"@usecapsule/user-management-client@0.18.0": + version "0.18.0" + resolved "https://registry.yarnpkg.com/@usecapsule/user-management-client/-/user-management-client-0.18.0.tgz#2198eb04a5fc89f9134903877bd36f4c6291a198" + integrity sha512-Zyy1OD0CwLgd9LrY/agjugLZOGhBzrKF3aBKbSkHZMKtVSRWnsvSf6j1MqFTBj10k119EuF8e97LtdcNghkDog== + dependencies: + axios "^0.27.2" + +"@usecapsule/web-sdk@0.29.4": + version "0.29.4" + resolved "https://registry.yarnpkg.com/@usecapsule/web-sdk/-/web-sdk-0.29.4.tgz#17e5e2604f97d59ccd2f4ba69b7b99a021f3dadd" + integrity sha512-0V2rknVTVdrz7Gt3K8BvfYqz/yXFWgfscrHM5S4NfOBhVITYdg/Sd3naCROyNBrbXRpmOBUA23AlF+7jo/GkMA== + dependencies: + "@celo/utils" "3.2.0" + "@chakra-ui/icons" "^2.1.1" + "@chakra-ui/react" "1.8.9" + "@cosmjs/amino" "0.31.0" + "@cosmjs/crypto" "0.31.0" + "@cosmjs/encoding" "0.31.0" + "@cosmjs/proto-signing" "0.31.0" + "@emotion/react" "^11.10.8" + "@emotion/styled" "^11.10.8" + "@ramp-network/ramp-instant-sdk" "^4.0.2" + "@usecapsule/user-management-client" "0.18.0" + "@wagmi/chains" "^1.8.0" + "@wagmi/connectors" "^3.0.0" + assert "^2.1.0" + axios "1.4.0" + base64url "3.0.1" + buffer "6.0.3" + cbor-web "8.1.0" + cosmjs-types "0.8.0" + crypto-browserify "3.12.0" + elliptic "6.5.4" + ethereumjs-util "7.1.5" + ethers "6.6.4" + eventemitter3 "5.0.1" + framer-motion "^10.12.7" + node-forge "1.3.1" + polished "^4.2.2" + react-qr-code "2.0.11" + react-use "17.4.0" + stream-browserify "3.0.0" + viem "1.5.3" + wagmi "^1.4.2" + "@venly/connect@^2.2.3": version "2.2.3" resolved "https://registry.yarnpkg.com/@venly/connect/-/connect-2.2.3.tgz#7633cde29c619b2d750e1426fc0d86611281d9d2" @@ -3102,6 +4540,41 @@ eth-block-tracker "^8.0.0" eth-json-rpc-filters "^6.0.1" +"@wagmi/chains@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@wagmi/chains/-/chains-1.6.0.tgz#eb992ad28dbaaab729b5bcab3e5b461e8a035656" + integrity sha512-5FRlVxse5P4ZaHG3GTvxwVANSmYJas1eQrTBHhjxVtqXoorm0aLmCHbhmN8Xo1yu09PaWKlleEvfE98yH4AgIw== + +"@wagmi/chains@^1.8.0": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@wagmi/chains/-/chains-1.8.0.tgz#70e5fd0d50c8f9b8e63585eaf8544481e71707d3" + integrity sha512-UXo0GF0Cl0+neKC2KAmVAahv8L/5rACbFRRqkDvHMefzY6Fh7yzJd8F4GaGNNG3w4hj8eUB/E3+dEpaTYDN62w== + +"@wagmi/connectors@3.1.11", "@wagmi/connectors@^3.0.0": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@wagmi/connectors/-/connectors-3.1.11.tgz#98c3a73555bd4c96e562b0258bb2c770fa37b621" + integrity sha512-wzxp9f9PtSUFjDUP/QDjc1t7HON4D8wrVKsw35ejdO8hToDpx1gU9lwH/47Zo/1zExGezQc392sjoHSszYd7OA== + dependencies: + "@coinbase/wallet-sdk" "^3.6.6" + "@safe-global/safe-apps-provider" "^0.18.1" + "@safe-global/safe-apps-sdk" "^8.1.0" + "@walletconnect/ethereum-provider" "2.11.0" + "@walletconnect/legacy-provider" "^2.0.0" + "@walletconnect/modal" "2.6.2" + "@walletconnect/utils" "2.11.0" + abitype "0.8.7" + eventemitter3 "^4.0.7" + +"@wagmi/core@1.4.13": + version "1.4.13" + resolved "https://registry.yarnpkg.com/@wagmi/core/-/core-1.4.13.tgz#8a29bb0370141d48232e3d0b60011dbd8f91a37d" + integrity sha512-ytMCvXbBOgfDu9Qw67279wq/jNEe7EZLjLyekX7ROnvHRADqFr3lwZI6ih41UmtRZAmXAx8Ghyuqy154EjB5mQ== + dependencies: + "@wagmi/connectors" "3.1.11" + abitype "0.8.7" + eventemitter3 "^4.0.7" + zustand "^4.3.1" + "@walletconnect/browser-utils@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@walletconnect/browser-utils/-/browser-utils-1.8.0.tgz#33c10e777aa6be86c713095b5206d63d32df0951" @@ -3123,25 +4596,49 @@ "@walletconnect/types" "^1.8.0" "@walletconnect/utils" "^1.8.0" -"@walletconnect/core@2.10.2": - version "2.10.2" - resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.10.2.tgz#a1bf6e3e87b33f9df795ce0970d8ddd400fdc8a3" - integrity sha512-JQz/xp3SLEpTeRQctdck2ugSBVEpMxoSE+lFi2voJkZop1hv6P+uqr6E4PzjFluAjeAnKlT1xvra0aFWjPWVcw== +"@walletconnect/core@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.0.tgz#3a4e301077b2f858fd916b7a20b5b984d1afce63" + integrity sha512-2Tjp5BCevI7dbmqo/OrCjX4tqgMqwJNQLlQAlphqPfvwlF9+tIu6pGcVbSN3U9zyXzWIZCeleqEaWUeSeET4Ew== dependencies: "@walletconnect/heartbeat" "1.2.1" "@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/jsonrpc-ws-connection" "1.0.14" + "@walletconnect/keyvaluestorage" "^1.1.1" "@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.10.2" - "@walletconnect/utils" "2.10.2" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" + events "^3.3.0" + isomorphic-unfetch "3.1.0" + lodash.isequal "4.5.0" + uint8arrays "^3.1.0" + +"@walletconnect/core@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/core/-/core-2.11.3.tgz#c81855722cb9afd411f91f5345c7874f48bade0b" + integrity sha512-/9m4EqiggFUwkQDv5PDWbcTI+yCVnBd/iYW5iIHEkivg2/mnBr2bQz2r/vtPjp19r/ZK62Dx0+UN3U+BWP8ulQ== + dependencies: + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-provider" "1.0.13" + "@walletconnect/jsonrpc-types" "1.0.3" + "@walletconnect/jsonrpc-utils" "1.0.8" + "@walletconnect/jsonrpc-ws-connection" "1.0.14" + "@walletconnect/keyvaluestorage" "^1.1.1" + "@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.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" + isomorphic-unfetch "3.1.0" lodash.isequal "4.5.0" uint8arrays "^3.1.0" @@ -3176,7 +4673,7 @@ "@walletconnect/types" "^1.8.0" "@walletconnect/utils" "^1.8.0" -"@walletconnect/crypto@^1.0.2": +"@walletconnect/crypto@^1.0.2", "@walletconnect/crypto@^1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@walletconnect/crypto/-/crypto-1.0.3.tgz#7b8dd4d7e2884fe3543c7c07aea425eef5ef9dd4" integrity sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g== @@ -3204,6 +4701,22 @@ dependencies: tslib "1.14.1" +"@walletconnect/ethereum-provider@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.0.tgz#feb90368d8b2608d7d120ac8feeb3e26eac8c709" + integrity sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA== + dependencies: + "@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/modal" "^2.6.2" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/universal-provider" "2.11.0" + "@walletconnect/utils" "2.11.0" + events "^3.3.0" + "@walletconnect/ethereum-provider@2.9.1": version "2.9.1" resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.9.1.tgz#6f41acb38259a59f383d490396aa9c0933839d0b" @@ -3219,19 +4732,20 @@ "@walletconnect/utils" "2.9.1" events "^3.3.0" -"@walletconnect/ethereum-provider@^2.10.2": - version "2.10.2" - resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.2.tgz#d5aca538fbcbbf7dd771bceb2430de30f06411de" - integrity sha512-QMYFZ6+rVq2CJLdIPdKK0j1Qm66UA27oQU5V2SrL8EVwl7wFfm0Bq7fnL+qAWeDpn612dNeNErpk/ROa1zWlWg== +"@walletconnect/ethereum-provider@^2.11.2": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/ethereum-provider/-/ethereum-provider-2.11.3.tgz#a9fd8b6a3ed65ab0331a1329bece9c0f47292262" + integrity sha512-lg+ZzjLfk1GZgLVwMBmCteSNQ6hVn0Fgo1xDnzU/Ak3IqyfWIeMcM79Z5NgPLQOwqBVGckoBnx5BU5wai+AjGg== dependencies: "@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.10.2" - "@walletconnect/types" "2.10.2" - "@walletconnect/universal-provider" "2.10.2" - "@walletconnect/utils" "2.10.2" + "@walletconnect/modal" "^2.6.2" + "@walletconnect/sign-client" "2.11.3" + "@walletconnect/types" "2.11.3" + "@walletconnect/universal-provider" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/events@^1.0.1": @@ -3260,7 +4774,7 @@ "@walletconnect/types" "^1.8.0" "@walletconnect/utils" "^1.8.0" -"@walletconnect/jsonrpc-http-connection@^1.0.7": +"@walletconnect/jsonrpc-http-connection@^1.0.4", "@walletconnect/jsonrpc-http-connection@^1.0.7": version "1.0.7" resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz#a6973569b8854c22da707a759d241e4f5c2d5a98" integrity sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ== @@ -3270,7 +4784,7 @@ cross-fetch "^3.1.4" tslib "1.14.1" -"@walletconnect/jsonrpc-provider@1.0.13", "@walletconnect/jsonrpc-provider@^1.0.13": +"@walletconnect/jsonrpc-provider@1.0.13", "@walletconnect/jsonrpc-provider@^1.0.13", "@walletconnect/jsonrpc-provider@^1.0.6": version "1.0.13" resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz#9a74da648d015e1fffc745f0c7d629457f53648b" integrity sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g== @@ -3287,7 +4801,7 @@ keyvaluestorage-interface "^1.0.0" tslib "1.14.1" -"@walletconnect/jsonrpc-utils@1.0.8", "@walletconnect/jsonrpc-utils@^1.0.3", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.7", "@walletconnect/jsonrpc-utils@^1.0.8": +"@walletconnect/jsonrpc-utils@1.0.8", "@walletconnect/jsonrpc-utils@^1.0.3", "@walletconnect/jsonrpc-utils@^1.0.4", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.7", "@walletconnect/jsonrpc-utils@^1.0.8": version "1.0.8" resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz#82d0cc6a5d6ff0ecc277cb35f71402c91ad48d72" integrity sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw== @@ -3307,6 +4821,16 @@ tslib "1.14.1" ws "^7.5.1" +"@walletconnect/jsonrpc-ws-connection@1.0.14": + version "1.0.14" + resolved "https://registry.yarnpkg.com/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.14.tgz#eec700e74766c7887de2bd76c91a0206628732aa" + integrity sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA== + dependencies: + "@walletconnect/jsonrpc-utils" "^1.0.6" + "@walletconnect/safe-json" "^1.0.2" + events "^3.3.0" + ws "^7.5.1" + "@walletconnect/keyvaluestorage@^1.0.2": version "1.0.2" resolved "https://registry.yarnpkg.com/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz#92f5ca0f54c1a88a093778842ce0c874d86369c8" @@ -3315,13 +4839,75 @@ safe-json-utils "^1.1.1" tslib "1.14.1" -"@walletconnect/legacy-types@2.0.0": +"@walletconnect/keyvaluestorage@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.1.1.tgz#dd2caddabfbaf80f6b8993a0704d8b83115a1842" + integrity sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA== + dependencies: + "@walletconnect/safe-json" "^1.0.1" + idb-keyval "^6.2.1" + unstorage "^1.9.0" + +"@walletconnect/legacy-client@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@walletconnect/legacy-client/-/legacy-client-2.0.0.tgz#9f2c09694789fd4b6c5d68d6423b44bac55aed30" + integrity sha512-v5L7rYk9loVnfvUf0mF+76bUPFaU5/Vh7mzL6/950CD/yoGdzYZ3Kj+L7mkC6HPMEGeQsBP1+sqBuiVGZ/aODA== + dependencies: + "@walletconnect/crypto" "^1.0.3" + "@walletconnect/encoding" "^1.0.2" + "@walletconnect/jsonrpc-utils" "^1.0.4" + "@walletconnect/legacy-types" "^2.0.0" + "@walletconnect/legacy-utils" "^2.0.0" + "@walletconnect/safe-json" "^1.0.1" + "@walletconnect/window-getters" "^1.0.1" + "@walletconnect/window-metadata" "^1.0.1" + detect-browser "^5.3.0" + query-string "^6.13.5" + +"@walletconnect/legacy-modal@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@walletconnect/legacy-modal/-/legacy-modal-2.0.0.tgz#d0fab01a1337a8f5d88cdb1430cbef2d46072bbf" + integrity sha512-jckNd8lMhm4X7dX9TDdxM3bXKJnaqkRs6K2Mo5j6GmbIF9Eyx40jZ5+q457RVxvM6ciZEDT5s1wBHWdWoOo+9Q== + dependencies: + "@walletconnect/legacy-types" "^2.0.0" + "@walletconnect/legacy-utils" "^2.0.0" + copy-to-clipboard "^3.3.3" + preact "^10.12.0" + qrcode "^1.5.1" + +"@walletconnect/legacy-provider@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@walletconnect/legacy-provider/-/legacy-provider-2.0.0.tgz#08e2db1e4c234743b2f30422bc8100bc42e8fc44" + integrity sha512-A8xPebMI1A+50HbWwTpFCbwP7G+1NGKdTKyg8BUUg3h3Y9JucpC1W6w/x0v1Xw7qFEqQnz74LoIN/A3ytH9xrQ== + dependencies: + "@walletconnect/jsonrpc-http-connection" "^1.0.4" + "@walletconnect/jsonrpc-provider" "^1.0.6" + "@walletconnect/legacy-client" "^2.0.0" + "@walletconnect/legacy-modal" "^2.0.0" + "@walletconnect/legacy-types" "^2.0.0" + "@walletconnect/legacy-utils" "^2.0.0" + +"@walletconnect/legacy-types@2.0.0", "@walletconnect/legacy-types@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@walletconnect/legacy-types/-/legacy-types-2.0.0.tgz#224278ae2874c6a2ca805c2d1d062a511dcf7227" integrity sha512-sOVrA7HUdbI1OwKyPOQU0/DdvTSVFlsXWpAk2K2WvP2erTkBWPMTJq6cv2BmKdoJ3p6gLApT7sd+jHi3OF71uw== dependencies: "@walletconnect/jsonrpc-types" "^1.0.2" +"@walletconnect/legacy-utils@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@walletconnect/legacy-utils/-/legacy-utils-2.0.0.tgz#e3a637c00783f9cd2ae139b640f82223ab78ed9d" + integrity sha512-CPWxSVVXw0kgNCxvU126g4GiV3mzXmC8IPJ15twE46aJ1FX+RHEIfAzFMFz2F2+fEhBxL63A7dwNQKDXorRPcQ== + dependencies: + "@walletconnect/encoding" "^1.0.2" + "@walletconnect/jsonrpc-utils" "^1.0.4" + "@walletconnect/legacy-types" "^2.0.0" + "@walletconnect/safe-json" "^1.0.1" + "@walletconnect/window-getters" "^1.0.1" + "@walletconnect/window-metadata" "^1.0.1" + detect-browser "^5.3.0" + query-string "^6.13.5" + "@walletconnect/logger@^2.0.1": version "2.0.1" resolved "https://registry.yarnpkg.com/@walletconnect/logger/-/logger-2.0.1.tgz#7f489b96e9a1ff6bf3e58f0fbd6d69718bf844a8" @@ -3377,7 +4963,7 @@ "@walletconnect/modal-core" "2.6.1" "@walletconnect/modal-ui" "2.6.1" -"@walletconnect/modal@2.6.2": +"@walletconnect/modal@2.6.2", "@walletconnect/modal@^2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@walletconnect/modal/-/modal-2.6.2.tgz#4b534a836f5039eeb3268b80be7217a94dd12651" integrity sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA== @@ -3439,19 +5025,34 @@ dependencies: tslib "1.14.1" -"@walletconnect/sign-client@2.10.2": - version "2.10.2" - resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.10.2.tgz#33300a9cfe42487473f66b73c99535f6b26f8c54" - integrity sha512-vviSLV3f92I0bReX+OLr1HmbH0uIzYEQQFd1MzIfDk9PkfFT/LLAHhUnDaIAMkIdippqDcJia+5QEtT4JihL3Q== +"@walletconnect/sign-client@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.0.tgz#de10f976cc1b8ab04b7f7c27f6a298e4e083ab25" + integrity sha512-H2ukscibBS+6WrzQWh+WyVBqO5z4F5et12JcwobdwgHnJSlqIoZxqnUYYWNCI5rUR5UKsKWaUyto4AE9N5dw4Q== dependencies: - "@walletconnect/core" "2.10.2" + "@walletconnect/core" "2.11.0" "@walletconnect/events" "^1.0.1" "@walletconnect/heartbeat" "1.2.1" "@walletconnect/jsonrpc-utils" "1.0.8" "@walletconnect/logger" "^2.0.1" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.2" - "@walletconnect/utils" "2.10.2" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" + events "^3.3.0" + +"@walletconnect/sign-client@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/sign-client/-/sign-client-2.11.3.tgz#3ea7b3acf92ee31cc42b45d42e66c44b4720b28b" + integrity sha512-JVjLTxN/3NjMXv5zalSGKuSYLRyU2yX6AWEdq17cInlrwODpbWZr6PS1uxMWdH4r90DXBLhdtwDbEq/pfd0BPg== + dependencies: + "@walletconnect/core" "2.11.3" + "@walletconnect/events" "^1.0.1" + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-utils" "1.0.8" + "@walletconnect/logger" "^2.0.1" + "@walletconnect/time" "^1.0.2" + "@walletconnect/types" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/sign-client@2.9.1": @@ -3497,6 +5098,30 @@ "@walletconnect/logger" "^2.0.1" events "^3.3.0" +"@walletconnect/types@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.0.tgz#474a009c56faa9ef4063b76ed84415c801dc9f1e" + integrity sha512-AB5b1lrEbCGHxqS2vqfCkIoODieH+ZAUp9rA1O2ftrhnqDJiJK983Df87JhYhECsQUBHHfALphA8ydER0q+9sw== + dependencies: + "@walletconnect/events" "^1.0.1" + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-types" "1.0.3" + "@walletconnect/keyvaluestorage" "^1.1.1" + "@walletconnect/logger" "^2.0.1" + events "^3.3.0" + +"@walletconnect/types@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.11.3.tgz#8ce43cb77e8fd9d5269847cdd73bcfa7cce7dd1a" + integrity sha512-JY4wA9MVosDW9dcJMTpnwliste0aJGJ1X6Q4ulLsQsgWRSEBRkLila0oUT01TDBW9Yq8uUp7uFOUTaKx6KWVAg== + dependencies: + "@walletconnect/events" "^1.0.1" + "@walletconnect/heartbeat" "1.2.1" + "@walletconnect/jsonrpc-types" "1.0.3" + "@walletconnect/keyvaluestorage" "^1.1.1" + "@walletconnect/logger" "^2.0.1" + events "^3.3.0" + "@walletconnect/types@2.9.1": version "2.9.1" resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-2.9.1.tgz#cb32ff396cc8880a7395f28716d1e82f407e1372" @@ -3514,19 +5139,34 @@ resolved "https://registry.yarnpkg.com/@walletconnect/types/-/types-1.8.0.tgz#3f5e85b2d6b149337f727ab8a71b8471d8d9a195" integrity sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg== -"@walletconnect/universal-provider@2.10.2": - version "2.10.2" - resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.10.2.tgz#85c8da39f65da8fe33f65f62689e703607b5ddc5" - integrity sha512-wFgI0LbQ3D56sgaUMsgOHCM5m8WLxiC71BGuCKQfApgsbNMVKugYVy2zWHyUyi8sqTQHI+uSaVpDev4UHq9LEw== +"@walletconnect/universal-provider@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.0.tgz#89053c2360b5ce766c213ca4e33bb4ce4976b0be" + integrity sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA== dependencies: "@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.10.2" - "@walletconnect/types" "2.10.2" - "@walletconnect/utils" "2.10.2" + "@walletconnect/sign-client" "2.11.0" + "@walletconnect/types" "2.11.0" + "@walletconnect/utils" "2.11.0" + events "^3.3.0" + +"@walletconnect/universal-provider@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/universal-provider/-/universal-provider-2.11.3.tgz#63001737430904a8437c4220fe8cab7ec99c5d79" + integrity sha512-5iW7eAEuf4YV079wYoqU9mCRAxPU7Vhh+3n8DtUkUAET/5M0HCxmq0dGw26TxNJvXeIVrQmmmaj9QyeJsiVy3w== + dependencies: + "@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.11.3" + "@walletconnect/types" "2.11.3" + "@walletconnect/utils" "2.11.3" events "^3.3.0" "@walletconnect/universal-provider@2.9.1": @@ -3544,10 +5184,10 @@ "@walletconnect/utils" "2.9.1" events "^3.3.0" -"@walletconnect/utils@2.10.2", "@walletconnect/utils@^2.5.2": - version "2.10.2" - resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.2.tgz#1f2c6a2f1bb95bcc4517b1e94aa7164c9286eb46" - integrity sha512-syxXRpc2yhSknMu3IfiBGobxOY7fLfLTJuw+ppKaeO6WUdZpIit3wfuGOcc0Ms3ZPFCrGfyGOoZsCvgdXtptRg== +"@walletconnect/utils@2.11.0": + version "2.11.0" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.0.tgz#31c95151c823022077883dda61800cdea71879b7" + integrity sha512-hxkHPlTlDQILHfIKXlmzgNJau/YcSBC3XHUSuZuKZbNEw3duFT6h6pm3HT/1+j1a22IG05WDsNBuTCRkwss+BQ== dependencies: "@stablelib/chacha20poly1305" "1.0.1" "@stablelib/hkdf" "1.0.1" @@ -3557,7 +5197,27 @@ "@walletconnect/relay-api" "^1.0.9" "@walletconnect/safe-json" "^1.0.2" "@walletconnect/time" "^1.0.2" - "@walletconnect/types" "2.10.2" + "@walletconnect/types" "2.11.0" + "@walletconnect/window-getters" "^1.0.1" + "@walletconnect/window-metadata" "^1.0.1" + detect-browser "5.3.0" + query-string "7.1.3" + uint8arrays "^3.1.0" + +"@walletconnect/utils@2.11.3": + version "2.11.3" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.11.3.tgz#3731809b54902655cf202e0bf0e8f268780e8b54" + integrity sha512-jsdNkrl/IcTkzWFn0S2d0urzBXg6RxVJtUYRsUx3qI3wzOGiABP9ui3yiZ3SgZOv9aRe62PaNp1qpbYZ+zPb8Q== + 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/relay-api" "^1.0.9" + "@walletconnect/safe-json" "^1.0.2" + "@walletconnect/time" "^1.0.2" + "@walletconnect/types" "2.11.3" "@walletconnect/window-getters" "^1.0.1" "@walletconnect/window-metadata" "^1.0.1" detect-browser "5.3.0" @@ -3597,6 +5257,26 @@ js-sha3 "0.8.0" query-string "6.13.5" +"@walletconnect/utils@^2.5.2": + version "2.10.2" + resolved "https://registry.yarnpkg.com/@walletconnect/utils/-/utils-2.10.2.tgz#1f2c6a2f1bb95bcc4517b1e94aa7164c9286eb46" + integrity sha512-syxXRpc2yhSknMu3IfiBGobxOY7fLfLTJuw+ppKaeO6WUdZpIit3wfuGOcc0Ms3ZPFCrGfyGOoZsCvgdXtptRg== + 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/relay-api" "^1.0.9" + "@walletconnect/safe-json" "^1.0.2" + "@walletconnect/time" "^1.0.2" + "@walletconnect/types" "2.10.2" + "@walletconnect/window-getters" "^1.0.1" + "@walletconnect/window-metadata" "^1.0.1" + detect-browser "5.3.0" + query-string "7.1.3" + uint8arrays "^3.1.0" + "@walletconnect/window-getters@1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@walletconnect/window-getters/-/window-getters-1.0.0.tgz#1053224f77e725dfd611c83931b5f6c98c32bfc8" @@ -3632,36 +5312,46 @@ "@arcana/auth" "^1.0.7" "@web3-onboard/common" "2.3.3" -"@web3-onboard/bitget@2.0.0": - version "2.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/bitget/-/bitget-2.0.0-alpha.1.tgz#b119f0765de0a7a63f74d9bf81f2d2af9ad3fc00" - integrity sha512-VqNyRZPUnLaXvZjDvoD/9ueEYYUPaX4duAQ1MJvuJszSYnFLaIJVNrZHRF/zRo5Saq8Mzj7s3ouY/Yj1yXB99g== +"@web3-onboard/bitget@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/bitget/-/bitget-2.0.1.tgz#70f8d8c756b0c4975e3588080f2352bdec0634fa" + integrity sha512-98NynzBzCu/BnOvc3myEkqvNDrz0/VBWLld/L84mCZxF6axoYFXvwGr/8OC7F2+SN+bHyz3OOitJgvbJOPFv8g== dependencies: - "@bitget-wallet/web3-sdk" "^0.0.6" + "@bitget-wallet/web3-sdk" "^0.0.8" "@web3-onboard/common" "^2.3.3" -"@web3-onboard/blocto@2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@web3-onboard/blocto/-/blocto-2.0.0.tgz#eb631e911b7c13ad11089bb3574e97b673f14463" - integrity sha512-99/YzRuE9VBXWVLI6tAKxwFvCXq7WV24a3rM76yY5yVEEeNfewh8PWQ/2Yfz71Vfi6YWVPKzGo3LHspz4caTzA== +"@web3-onboard/blocto@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/blocto/-/blocto-2.0.1.tgz#5960b11b2febbabade8d2f5fe980d97af4182316" + integrity sha512-+OwiyfyDFruTrKA4+bnIjwgWaKKhWYdnAlceFMg29sfDGklc+HaL3prCPcQLdT6uzp52EQhygJrxsUcZsp/flQ== dependencies: - "@blocto/sdk" "^0.4.6" + "@blocto/sdk" "^0.9.1" "@web3-onboard/common" "^2.3.1" -"@web3-onboard/cede-store@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@web3-onboard/cede-store/-/cede-store-2.1.0.tgz#60e8ae91a98f777da4ff8639f8e7b954c7d09a80" - integrity sha512-C2Ryz6qBOM6abMdUxd9lj+ACXDu0sCUSo4vC+qXqG+Rp2b1UGyVWX3BhcNYMPr3J+tWDdQeuj8kGN9JmlgsXBg== +"@web3-onboard/capsule@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/capsule/-/capsule-2.0.1.tgz#e1bd7382f70b1d23f8f67ac2826883ce06a23686" + integrity sha512-R6cg9sGJXJMPMJ7gvOkvev4ZzkNMYomxmwYBuYreqiFH1gqmQxX6zn6vQMSxKF/S16JkLA3S4/wbZ9C6fGNN5w== dependencies: - "@cedelabs/providers" "^1.1.0" + "@usecapsule/web-sdk" "0.29.4" + "@wagmi/chains" "^1.8.0" "@web3-onboard/common" "^2.3.3" + react-dom "^18.2.0" -"@web3-onboard/coinbase@^2.2.6": - version "2.2.6" - resolved "https://registry.yarnpkg.com/@web3-onboard/coinbase/-/coinbase-2.2.6.tgz#2690bc70a0b28ee6784ba7ffaba658101207c69b" - integrity sha512-ALvTN8VuAwRwSK87mPEN2h1Tam3r1d9aJg6dloPS9z5T101n4RqwqB++3D8NEOvOZw8832ZV9kH+nU/wvtGZJA== +"@web3-onboard/cede-store@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@web3-onboard/cede-store/-/cede-store-2.2.0.tgz#49148feef4f49e71c41a4d8104eea7adad703781" + integrity sha512-zUvQFvEmjtk8ek+Jr/9/0lw1XfpKt6hYgvbS2ve3BOHJdoxEAY7mQ+aGywnkHV5lhMA8DkMBao2wKuRV7L97Mg== + dependencies: + "@cedelabs/providers" "^1.5.0" + "@web3-onboard/common" "^2.3.3" + +"@web3-onboard/coinbase@^2.2.7": + version "2.2.7" + resolved "https://registry.yarnpkg.com/@web3-onboard/coinbase/-/coinbase-2.2.7.tgz#e649acd9bb1e1599e6c92e3ddb4315cd26fe7b3e" + integrity sha512-gHIiir6byvt5xTFGlf4xwDtysmDFU92BdH9ZzTWfrqKQdprNAlO+ydNnmytxzXf6RsPIRL0NmT8n3xCAWe8s1w== dependencies: - "@coinbase/wallet-sdk" "^3.7.2" + "@coinbase/wallet-sdk" "^3.9.3" "@web3-onboard/common" "^2.3.3" "@web3-onboard/common@2.3.3", "@web3-onboard/common@^2.3.1", "@web3-onboard/common@^2.3.3": @@ -3673,12 +5363,21 @@ ethers "5.5.4" joi "17.9.1" -"@web3-onboard/core@^2.21.2": - version "2.21.2" - resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.2.tgz#962683efc87b29ee9150ab8d7ea9568ea3b41dd5" - integrity sha512-apzVi2zWqs4ktZBBJ60x1e4odI1mSoZ2c69bXUg36A0xI0iRFQ9Od44peI3mfTDEru7hWsr81Nv6l+v3HRSKLw== +"@web3-onboard/common@^2.3.4": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/common/-/common-2.3.4.tgz#1ce41e090c19e8ac802c45737de3dda3dabea751" + integrity sha512-LQM7ZA1LoJ4GirsVEWHkv9KNJcrIT+AplR957BP5O8tll+p/A1GCju89C7jAMnb3+9LShUCwHcbE4o8l8gVb9A== dependencies: - "@web3-onboard/common" "^2.3.3" + bignumber.js "^9.1.0" + ethers "5.5.4" + joi "17.9.1" + +"@web3-onboard/core@^2.21.3": + version "2.21.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.3.tgz#12f1561da218bae9d9d4c48cd132fa6ebaf4beca" + integrity sha512-PVQtsk5eLHNIxrLqjEtbF+w8yDxovTmgIQobrJj0D4m3wZE0Cr7AQay1q5u+bC1FKmTvQ7ZVzEXMFdquPxjA2A== + dependencies: + "@web3-onboard/common" "^2.3.4" bignumber.js "^9.0.0" bnc-sdk "^4.6.7" bowser "^2.11.0" @@ -3742,10 +5441,10 @@ joi "17.8.1" rxjs "^7.5.2" -"@web3-onboard/gnosis@^2.1.10": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@web3-onboard/gnosis/-/gnosis-2.2.0.tgz#134dd79d13b651934f4233760f4337752d1c35df" - integrity sha512-+CtvrI30jj3zJdplQfrCU1rSAUN6R0rfBZggl8JXvqsH5CNTFjU3ctVWeqbyGBPfcVhRQ5oLqKcj464LTwy2iw== +"@web3-onboard/gnosis@^2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/gnosis/-/gnosis-2.2.1.tgz#77522571dd62e00770fc5ee1ffa9fb070dc1296f" + integrity sha512-O4nlsS9EKP4iJq92Pz9li+Ax9G9MK/haydI1aISnIe+hC9Lt7Ynnq6T2tpsIR1aF5GRwF+4LqN4RnfH/Rp4hYA== dependencies: "@web3-onboard/common" "^2.3.3" @@ -3760,6 +5459,17 @@ joi "17.9.1" rxjs "^7.5.2" +"@web3-onboard/hw-common@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@web3-onboard/hw-common/-/hw-common-2.3.1.tgz#1a968a0b40e64bb6b82593810c15b1fa7f620306" + integrity sha512-Dbztkmr+0iN3BJmwu7f3nvk7atbJEm9AmySlyyIYTqn+kuPWk88j8s1PAyHHOej2lLrtswyj1c3ER65O5S1M2g== + dependencies: + "@ethereumjs/common" "2.6.2" + "@web3-onboard/common" "^2.3.4" + ethers "5.5.4" + joi "17.9.1" + rxjs "^7.5.2" + "@web3-onboard/infinity-wallet@^2.0.3": version "2.0.4" resolved "https://registry.yarnpkg.com/@web3-onboard/infinity-wallet/-/infinity-wallet-2.0.4.tgz#e377431ef66f7ab16fc8d3b5feb2000ce615f885" @@ -3767,45 +5477,45 @@ dependencies: "@infinitywallet/infinity-connector" "^1.0.6" -"@web3-onboard/injected-wallets@^2.10.8": - version "2.10.8-alpha.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.8-alpha.1.tgz#b912150f376daded97cf9810e46d8684782bbedf" - integrity sha512-i4Y4m3qfIzv0eEFXGUh3W4aJfFKS5yIxRlpwJW0trirJBQ/zBMgnnBBDjOS7CKOU7/Sd9k6L5L8bS1Foogqfbg== +"@web3-onboard/injected-wallets@^2.10.13": + version "2.10.13" + resolved "https://registry.yarnpkg.com/@web3-onboard/injected-wallets/-/injected-wallets-2.10.13.tgz#e82c5275db22f7711cce02c607e9e6e9ab144658" + integrity sha512-YnuwqbtlbAa6QyqJ/1YIkNLX92f8CkcFCt7HePjlZhYhaG9Gron/JzbAv2o7TcKQyySjahhwvvntvgXlABx8Ag== dependencies: "@web3-onboard/common" "^2.3.3" joi "17.9.1" lodash.uniqby "^4.7.0" -"@web3-onboard/keepkey@^2.3.7": - version "2.3.7" - resolved "https://registry.yarnpkg.com/@web3-onboard/keepkey/-/keepkey-2.3.7.tgz#843f26f8a1ae45428126bdf3eade4bc28f0283fe" - integrity sha512-LBhvE/gdpXCdiXm95dqL7z/1ERaLUOGv9Apz2m3TQdp24uZ+WkdFo+jogMcJOXGm1l+wL1mD4WcFBUfE6GbDLA== +"@web3-onboard/keepkey@^2.3.8": + version "2.3.8" + resolved "https://registry.yarnpkg.com/@web3-onboard/keepkey/-/keepkey-2.3.8.tgz#5b82cb6c0899a0ca4648b07d33507095464a9a7a" + integrity sha512-5yx/GeO+YK3aD4Wa9McoEfnOjskedRF5ABq2Wr0pUPeEFxhoS5Mi4i//205KTn3Tgv9q0e65liYXNItzCn03lA== dependencies: "@ethersproject/providers" "^5.5.0" "@shapeshiftoss/hdwallet-core" "^1.15.2" "@shapeshiftoss/hdwallet-keepkey-webusb" "^1.15.2" - "@web3-onboard/common" "^2.3.3" - "@web3-onboard/hw-common" "^2.3.0" + "@web3-onboard/common" "^2.3.4" + "@web3-onboard/hw-common" "^2.3.1" ethereumjs-util "^7.1.3" -"@web3-onboard/keystone@^2.3.7": - version "2.3.7" - resolved "https://registry.yarnpkg.com/@web3-onboard/keystone/-/keystone-2.3.7.tgz#e8355a9ffcaa36baf8033a10010b86aa8ebb4d06" - integrity sha512-9KdRQJ3htg9uSF3t8o2a5T32aQ+J2VA0mKYaXns2ZgsSznd4WqvQFuyrQi015b0rn6zkXM3BKFcMhu0OJtRwHw== +"@web3-onboard/keystone@^2.3.8": + version "2.3.8" + resolved "https://registry.yarnpkg.com/@web3-onboard/keystone/-/keystone-2.3.8.tgz#c1447161d1d91b88170400e7ebfb7284db54d351" + integrity sha512-1kwf3luSMlv61R9KGxXNVB6548Axmsppq+JL++wACFBwKBig3JQrvqw1llIc9rkPUGcxq+o/FDY3XpBeO7jrig== dependencies: "@ethereumjs/tx" "^3.4.0" "@ethersproject/providers" "^5.5.0" "@keystonehq/eth-keyring" "^0.14.00.3" - "@web3-onboard/common" "^2.3.3" - "@web3-onboard/hw-common" "^2.3.0" + "@web3-onboard/common" "^2.3.4" + "@web3-onboard/hw-common" "^2.3.1" -"@web3-onboard/ledger@^2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@web3-onboard/ledger/-/ledger-2.5.2.tgz#09ae2b28e873156a8ead65ad428f7cd061a78ee6" - integrity sha512-Hnq4HvhtUrRlr3rcM70uDxqsky9riV676tNUElTyi1baqi58dm2IPgctzMqEamlJqYIRLXlhcf+FaMaf4vZMHg== +"@web3-onboard/ledger@^2.6.0": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@web3-onboard/ledger/-/ledger-2.6.0.tgz#e8a8e2504a835cfb6ac32c0448d37e990e3e3972" + integrity sha512-ZfOVMY1io6cUOLyMkMdopFxPBvuKkk2NnqifNIXq5CUYNRQtxagzg4wwn6paaMHIIoXzutnqD1mTA6B3UKCCiA== dependencies: "@ethersproject/providers" "5.5.0" - "@ledgerhq/connect-kit-loader" "^1.1.0" + "@ledgerhq/connect-kit" "1.1.12" "@walletconnect/client" "^1.8.0" "@walletconnect/ethereum-provider" "2.9.1" "@walletconnect/modal" "2.6.1" @@ -3822,6 +5532,14 @@ magic-sdk "^8.1.0" rxjs "^7.5.2" +"@web3-onboard/metamask@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@web3-onboard/metamask/-/metamask-2.0.3.tgz#ea9ef80e90700134f99f7f0a8667ca6c3dad8775" + integrity sha512-kf+4jMtJfokSFNhOyV1WxOGtmvibUK58Lho+6cvDFGSzmFQ+q+U5jK9gWMm2gkb5+l70UibUHqVCrHPFdgey+w== + dependencies: + "@metamask/sdk" "^0.17.1" + "@web3-onboard/common" "^2.3.3" + "@web3-onboard/mew-wallet@^2.0.3": version "2.0.4" resolved "https://registry.yarnpkg.com/@web3-onboard/mew-wallet/-/mew-wallet-2.0.4.tgz#badfc34f107f3d68bae9bab0c6540e906e57ed6a" @@ -3830,6 +5548,16 @@ "@web3-onboard/common" "^2.3.3" lodash.uniqby "^4.7.0" +"@web3-onboard/particle-network@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@web3-onboard/particle-network/-/particle-network-2.0.0.tgz#3120c507c0486b6c0f3e4b7a93967d0d97d83c69" + integrity sha512-2uiXMuKcRKe9lYnbxAa/jmfdtUmQruAyVuQ8QtPj0UQi5nBWHcrK/grmimUHzboxe/UCbn9+Qe8FrrGF1HA9Hw== + dependencies: + "@particle-network/auth" "^1.2.1" + "@particle-network/provider" "^1.2.0" + "@web3-onboard/common" "^2.3.3" + react-dom "^18.2.0" + "@web3-onboard/phantom@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@web3-onboard/phantom/-/phantom-2.0.3.tgz#56d308f8923e3a826d9d654a306c19ffc0bc262d" @@ -3883,16 +5611,16 @@ svelte "^3.49.0" svelte-i18n "^3.3.13" -"@web3-onboard/trezor@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@web3-onboard/trezor/-/trezor-2.4.3.tgz#a509ce37eff5ee4432a85c8a62217b1b2a757f73" - integrity sha512-Um/g766/jzbSd9tBCAWqD7vJOPX+V6bxqGP2SX8Hh8G3cXtMklTUkmbrY2spp8QHPj2HcQWHVIxfjsFVFcqmUg== +"@web3-onboard/trezor@^2.4.4": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/trezor/-/trezor-2.4.4.tgz#71ae98a86f4a0978bc7b76d4b2253de2bc7effa3" + integrity sha512-4NeNAdy8Qg3cfFo35vDHBNU18cMKiHUkl0nZi9VDWSxnEzv0ydesx9n0z79BHqu046vV3m5b4mqf2jJeVAlcEQ== dependencies: "@ethereumjs/tx" "^3.4.0" "@ethersproject/providers" "^5.5.0" "@trezor/connect-web" "^9.0.11" - "@web3-onboard/common" "^2.3.3" - "@web3-onboard/hw-common" "^2.3.0" + "@web3-onboard/common" "^2.3.4" + "@web3-onboard/hw-common" "^2.3.1" buffer "^6.0.3" eth-crypto "^2.1.0" ethereumjs-util "^7.1.3" @@ -3928,13 +5656,12 @@ "@venly/web3-provider" "^3.1.1" "@web3-onboard/common" "^2.3.1" -"@web3-onboard/walletconnect@^2.5.0": - version "2.5.0-alpha.1" - resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.0-alpha.1.tgz#9ceee3e60fe0e8369af011951f39eebb5002fd27" - integrity sha512-dhUZevfn5XXkd+q6G/OurnfcgSJopseR371zudmCqx551lWBumN3j7cNrydHHidv366K8pLW3KKeLYPx+GYDBg== +"@web3-onboard/walletconnect@^2.5.4": + version "2.5.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/walletconnect/-/walletconnect-2.5.4.tgz#e9dcd15469b7e022c1a7bb742f0e7fddceb62e61" + integrity sha512-cvjzal9DEXkpi8TgHeszClZIRcIK6BtXYdH9w0gVOxVteRJoNQM5upK6b6Z2g+p5JK/eHBW9CwV9+Bq0eE5gFg== dependencies: - "@walletconnect/ethereum-provider" "^2.10.2" - "@walletconnect/modal" "2.6.2" + "@walletconnect/ethereum-provider" "^2.11.2" "@web3-onboard/common" "^2.3.3" joi "17.9.1" rxjs "^7.5.2" @@ -4303,6 +6030,11 @@ resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.7.0.tgz#e1993689ac42d2b16e9194376cfb6753f6254db1" integrity sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q== +"@xobotyi/scrollbar-width@^1.9.5": + version "1.9.5" + resolved "https://registry.yarnpkg.com/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz#80224a6919272f405b87913ca13b92929bdf3c4d" + integrity sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ== + "@xtuc/ieee754@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" @@ -4321,6 +6053,16 @@ JSONStream@^1.3.5: jsonparse "^1.2.0" through ">=2.2.7 <3" +abitype@0.8.7: + version "0.8.7" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.8.7.tgz#e4b3f051febd08111f486c0cc6a98fa72d033622" + integrity sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w== + +abitype@0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.3.tgz#294d25288ee683d72baf4e1fed757034e3c8c277" + integrity sha512-dz4qCQLurx97FQhnb/EIYTk/ldQ+oafEDUqC0VVIeQS1Q48/YWt/9YNfMmp9SLFqN41ktxny3c8aYxHjmFIB/w== + abitype@0.9.8: version "0.9.8" resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.8.tgz#1f120b6b717459deafd213dfbf3a3dd1bf10ae8c" @@ -4370,6 +6112,11 @@ acorn@7.1.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== +acorn@^8.11.3: + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + acorn@^8.7.1, acorn@^8.8.2: version "8.10.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" @@ -4380,6 +6127,11 @@ aes-js@3.0.0: resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== +aes-js@4.0.0-beta.5: + version "4.0.0-beta.5" + resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-4.0.0-beta.5.tgz#8d2452c52adedebc3a3e28465d858c11ca315873" + integrity sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q== + aes-js@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.1.2.tgz#db9aabde85d5caabbfc0d4f2a4446960f627146a" @@ -4466,7 +6218,7 @@ ansi-regex@^6.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== -ansi-styles@^3.2.0: +ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -4480,7 +6232,7 @@ ansi-styles@^4.0.0: dependencies: color-convert "^2.0.1" -anymatch@~3.1.2: +anymatch@^3.1.3, anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== @@ -4488,6 +6240,13 @@ anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" +aria-hidden@^1.1.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.4.tgz#b78e383fdbc04d05762c78b4a25a501e736c4522" + integrity sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A== + dependencies: + tslib "^2.0.0" + array-flatten@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -4525,7 +6284,7 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^2.0.0: +assert@^2.0.0, assert@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== @@ -4606,7 +6365,7 @@ axios@0.21.1: dependencies: follow-redirects "^1.10.0" -axios@0.27.2: +axios@0.27.2, axios@^0.27.2: version "0.27.2" resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== @@ -4614,6 +6373,15 @@ axios@0.27.2: follow-redirects "^1.14.9" form-data "^4.0.0" +axios@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.4.0.tgz#38a7bf1224cd308de271146038b551d725f0be1f" + integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + axios@^0.18.0: version "0.18.1" resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.1.tgz#ff3f0de2e7b5d180e757ad98000f1081b87bcea3" @@ -4629,11 +6397,29 @@ axios@^0.21.0, axios@^0.21.2: dependencies: follow-redirects "^1.14.0" +axios@^1.3.6: + version "1.6.8" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.8.tgz#66d294951f5d988a00e87a0ffb955316a619ea66" + integrity sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + b4a@^1.6.0: version "1.6.4" resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== +babel-plugin-macros@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== + dependencies: + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" + babel-plugin-polyfill-corejs2@^0.4.6: version "0.4.6" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313" @@ -4692,7 +6478,7 @@ base64-js@^1.3.0, base64-js@^1.3.1: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== -base64url@^3.0.1: +base64url@3.0.1, base64url@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/base64url/-/base64url-3.0.1.tgz#6399d572e2bc3f90a9a8b22d5dbb0a32d33f788d" integrity sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A== @@ -4888,25 +6674,7 @@ bnc-sdk@^4.6.7: rxjs "^6.6.3" sturdy-websocket "^0.1.12" -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -body-parser@^1.16.0: +body-parser@1.20.2, body-parser@^1.16.0: version "1.20.2" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== @@ -4924,6 +6692,11 @@ body-parser@^1.16.0: type-is "~1.6.18" unpipe "1.0.0" +body-scroll-lock@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz#c1392d9217ed2c3e237fee1e910f6cdd80b7aaec" + integrity sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg== + bonjour@^3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" @@ -5131,7 +6904,7 @@ buffer@^5.0.5, buffer@^5.1.0, buffer@^5.4.3, buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" -bufferutil@^4.0.1: +bufferutil@^4.0.1, bufferutil@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.8.tgz#1de6a71092d65d7766c4d8a522b261a6e787e8ea" integrity sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw== @@ -5191,6 +6964,11 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -5218,6 +6996,20 @@ cbor-sync@^1.0.4: resolved "https://registry.yarnpkg.com/cbor-sync/-/cbor-sync-1.0.4.tgz#5a11a1ab75c2a14d1af1b237fd84aa8c1593662f" integrity sha512-GWlXN4wiz0vdWWXBU71Dvc1q3aBo0HytqwAZnXF1wOwjqNnDWA1vZ1gDMFLlqohak31VQzmhiYfiCX5QSSfagA== +cbor-web@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/cbor-web/-/cbor-web-8.1.0.tgz#c1148e91ca6bfc0f5c07c1df164854596e2e33d6" + integrity sha512-2hWHHMVrfffgoEmsAUh8vCxHoLa1vgodtC73+C5cSarkJlwTapnqAzcHINlP6Ej0DXuP4OmmJ9LF+JaNM5Lj/g== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + checkpoint-store@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/checkpoint-store/-/checkpoint-store-1.1.0.tgz#04e4cb516b91433893581e6d4601a78e9552ea06" @@ -5240,6 +7032,21 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" +chokidar@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + 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" + optionalDependencies: + fsevents "~2.3.2" + chownr@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -5269,6 +7076,13 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" +citty@^0.1.5, citty@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/citty/-/citty-0.1.6.tgz#0f7904da1ed4625e1a9ea7e0fa780981aab7c5e4" + integrity sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ== + dependencies: + consola "^3.2.3" + class-is@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/class-is/-/class-is-1.1.0.tgz#9d3c0fba0440d211d843cec3dedfa48055005825" @@ -5295,6 +7109,15 @@ cli-color@^2.0.3: memoizee "^0.4.15" timers-ext "^0.1.7" +clipboardy@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-4.0.0.tgz#e73ced93a76d19dd379ebf1f297565426dffdca1" + integrity sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w== + dependencies: + execa "^8.0.1" + is-wsl "^3.1.0" + is64bit "^2.0.0" + cliui@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" @@ -5313,6 +7136,15 @@ cliui@^6.0.0: strip-ansi "^6.0.0" wrap-ansi "^6.2.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone-deep@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" @@ -5334,7 +7166,7 @@ clone@^2.0.0, clone@^2.1.1: resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== -clsx@^1.1.0: +clsx@^1.1.0, clsx@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== @@ -5412,6 +7244,11 @@ compression@^1.7.4: safe-buffer "5.1.2" vary "~1.1.2" +compute-scroll-into-view@1.0.14: + version "1.0.14" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.14.tgz#80e3ebb25d6aa89f42e533956cb4b16a04cfe759" + integrity sha512-mKDjINe3tc6hGelUMNDzuhorIUZ7kS7BwyY0r2wQd2HOH2tRuJykiC06iSEX8y1TuhNzvz4GcJnK16mM2J1NMQ== + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -5422,6 +7259,11 @@ connect-history-api-fallback@^1.6.0: resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== +consola@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/consola/-/consola-3.2.3.tgz#0741857aa88cfa0d6fd53f1cff0375136e98502f" + integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ== + content-disposition@0.5.4: version "0.5.4" resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" @@ -5443,15 +7285,25 @@ content-type@~1.0.4, content-type@~1.0.5: resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== +convert-source-map@^1.5.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-es@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.1.0.tgz#68f8d9f48aeb5a534f3896f80e792760d3d20def" + integrity sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw== + cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== cookiejar@^2.1.1: version "2.1.4" @@ -5463,6 +7315,13 @@ copy-text-to-clipboard@^3.0.1: resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz#0202b2d9bdae30a49a53f898626dcc3b49ad960b" integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== +copy-to-clipboard@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" + integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== + dependencies: + toggle-selection "^1.0.6" + copy-to-clipboard@^3.3.1, copy-to-clipboard@^3.3.3: version "3.3.3" resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz#55ac43a1db8ae639a4bd99511c148cdd1b83a1b0" @@ -5500,6 +7359,25 @@ cors@^2.8.1: object-assign "^4" vary "^1" +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cosmjs-types@0.8.0, cosmjs-types@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.8.0.tgz#2ed78f3e990f770229726f95f3ef5bf9e2b6859b" + integrity sha512-Q2Mj95Fl0PYMWEhA2LuGEIhipF7mQwd9gTQ85DdP9jjjopeoGaDxvmPa5nakNzsq7FnO1DMTatXTAx6bxMH7Lg== + dependencies: + long "^4.0.0" + protobufjs "~6.11.2" + cosmjs-types@^0.5.1, cosmjs-types@^0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.5.2.tgz#2d42b354946f330dfb5c90a87fdc2a36f97b965d" @@ -5580,13 +7458,6 @@ cross-fetch@^4.0.0: dependencies: node-fetch "^2.6.12" -cross-fetch@^3.1.6: - version "3.1.8" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" - integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== - dependencies: - node-fetch "^2.6.12" - cross-spawn@^7.0.1, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -5596,7 +7467,12 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.12.0: +crossws@^0.2.0, crossws@^0.2.2: + version "0.2.4" + resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03" + integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg== + +crypto-browserify@3.12.0, crypto-browserify@^3.12.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== @@ -5628,6 +7504,20 @@ crypto-js@^4.0.0, crypto-js@^4.1.1: resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== +css-box-model@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/css-box-model/-/css-box-model-1.2.1.tgz#59951d3b81fd6b2074a62d49444415b0d2b4d7c1" + integrity sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw== + dependencies: + tiny-invariant "^1.0.6" + +css-in-js-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz#640ae6a33646d401fc720c54fc61c42cd76ae2bb" + integrity sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A== + dependencies: + hyphenate-style-name "^1.0.3" + css-loader@^5.0.1: version "5.2.7" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz#9b9f111edf6fb2be5dc62525644cbc9c232064ae" @@ -5644,11 +7534,29 @@ css-loader@^5.0.1: schema-utils "^3.0.0" semver "^7.3.5" +css-tree@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== +csstype@3.0.9: + version "3.0.9" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" + integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== + +csstype@^3.0.2, csstype@^3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + d@1, d@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" @@ -5664,6 +7572,13 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +date-fns@^2.29.3: + version "2.30.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== + dependencies: + "@babel/runtime" "^7.21.0" + dcent-web-connector@^0.11.2: version "0.11.4" resolved "https://registry.yarnpkg.com/dcent-web-connector/-/dcent-web-connector-0.11.4.tgz#3fba5612fdca670bea2e0b63a3742ae17d761724" @@ -5787,6 +7702,11 @@ define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: has-property-descriptors "^1.0.0" object-keys "^1.1.1" +defu@^6.1.3, defu@^6.1.4: + version "6.1.4" + resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479" + integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg== + del@^6.0.0: version "6.1.1" resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" @@ -5829,6 +7749,11 @@ des.js@^1.0.0: inherits "^2.0.1" minimalistic-assert "^1.0.0" +destr@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/destr/-/destr-2.0.3.tgz#7f9e97cb3d16dbdca7be52aca1644ce402cfe449" + integrity sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ== + destroy@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" @@ -5839,11 +7764,21 @@ detect-browser@5.2.0: resolved "https://registry.yarnpkg.com/detect-browser/-/detect-browser-5.2.0.tgz#c9cd5afa96a6a19fda0bbe9e9be48a6b6e1e9c97" integrity sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA== -detect-browser@5.3.0, detect-browser@^5.2.0: +detect-browser@5.3.0, detect-browser@^5.2.0, detect-browser@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/detect-browser/-/detect-browser-5.3.0.tgz#9705ef2bddf46072d0f7265a1fe300e36fe7ceca" integrity sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w== +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== + +detect-node-es@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" + integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== + detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" @@ -5895,6 +7830,19 @@ dom-walk@^0.1.0: resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== +dotenv@^16.0.3: + version "16.4.5" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + +draggabilly@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/draggabilly/-/draggabilly-3.0.0.tgz#48defe10a67f346a0338caaa40c0765c4d3912d6" + integrity sha512-aEs+B6prbMZQMxc9lgTpCBfyCUhRur/VFucHhIOvlvvdARTj7TcDmX/cdOUtqbjJJUh7+agyJXR5Z6IFe1MxwQ== + dependencies: + get-size "^3.0.0" + unidragger "^3.0.0" + drbg.js@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" @@ -5944,6 +7892,15 @@ eccrypto@1.1.6: optionalDependencies: secp256k1 "3.7.1" +eciesjs@^0.3.15: + version "0.3.18" + resolved "https://registry.yarnpkg.com/eciesjs/-/eciesjs-0.3.18.tgz#67b5d73a8466e40a45bbc2f2a3177e71e9c0643d" + integrity sha512-RQhegEtLSyIiGJmFTZfvCTHER/fymipXFVx6OwSRYD6hOuy+6Kjpk0dGvIfP9kxn/smBpxQy71uxpGO406ITCw== + dependencies: + "@types/secp256k1" "^4.0.4" + futoin-hkdf "^1.5.3" + secp256k1 "^5.0.0" + ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" @@ -6015,7 +7972,7 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1, end-of-stream@^1.4.4: +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.0, end-of-stream@^1.4.1, end-of-stream@^1.4.4: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -6058,6 +8015,20 @@ errno@~0.1.1: dependencies: prr "~1.0.1" +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + dependencies: + stackframe "^1.3.4" + es-module-lexer@^1.2.1: version "1.3.1" resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" @@ -6149,6 +8120,21 @@ escape-html@~1.0.3: resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== +escape-string-regexp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + eslint-scope@5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" @@ -6186,7 +8172,7 @@ estraverse@^5.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -estree-walker@^2: +estree-walker@^2, estree-walker@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== @@ -6218,6 +8204,17 @@ eth-block-tracker@^4.4.2: pify "^3.0.0" safe-event-emitter "^1.0.1" +eth-block-tracker@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-7.1.0.tgz#dfc16085c6817cc30caabba381deb8d204c1c766" + integrity sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg== + dependencies: + "@metamask/eth-json-rpc-provider" "^1.0.0" + "@metamask/safe-event-emitter" "^3.0.0" + "@metamask/utils" "^5.0.1" + json-rpc-random-id "^1.0.1" + pify "^3.0.0" + eth-block-tracker@^8.0.0: version "8.1.0" resolved "https://registry.yarnpkg.com/eth-block-tracker/-/eth-block-tracker-8.1.0.tgz#6ca4f6b955ff3e114f5aa0e8d36b11196ad1ea92" @@ -6282,7 +8279,7 @@ eth-json-rpc-filters@^4.2.1: json-rpc-engine "^6.1.0" pify "^5.0.0" -eth-json-rpc-filters@^6.0.1: +eth-json-rpc-filters@^6.0.0, eth-json-rpc-filters@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/eth-json-rpc-filters/-/eth-json-rpc-filters-6.0.1.tgz#0b3e370f017f5c6f58d3e7bd0756d8099ed85c56" integrity sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig== @@ -6548,7 +8545,7 @@ ethereumjs-util@7.1.5, ethereumjs-util@^7.0.10, ethereumjs-util@^7.0.7, ethereum ethereum-cryptography "^0.1.3" rlp "^2.2.4" -ethereumjs-util@^5.0.0, ethereumjs-util@^5.1.1, ethereumjs-util@^5.1.2, ethereumjs-util@^5.1.5: +ethereumjs-util@^5.0.0, ethereumjs-util@^5.1.1, ethereumjs-util@^5.1.2, ethereumjs-util@^5.1.5, ethereumjs-util@^5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-5.2.1.tgz#a833f0e5fca7e5b361384dc76301a721f537bf65" integrity sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ== @@ -6699,6 +8696,19 @@ ethers@5.7.2: "@ethersproject/web" "5.7.1" "@ethersproject/wordlists" "5.7.0" +ethers@6.6.4: + version "6.6.4" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.6.4.tgz#f03a86effcd55e82aed96a2fb9a56a9febd3e3d5" + integrity sha512-r3myN2hEnydmu23iiIj5kjWnCh5JNzlqrE/z+Kw5UqH173F+JOWzU6qkFB4HVC50epgxzKSL2Hq1oNXA877vwQ== + dependencies: + "@adraffy/ens-normalize" "1.9.2" + "@noble/hashes" "1.1.2" + "@noble/secp256k1" "1.7.1" + "@types/node" "18.15.13" + aes-js "4.0.0-beta.5" + tslib "2.4.0" + ws "8.5.0" + ethjs-unit@0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/ethjs-unit/-/ethjs-unit-0.1.6.tgz#c665921e476e87bce2a9d588a6fe0405b2c41699" @@ -6715,6 +8725,11 @@ ethjs-util@0.1.6, ethjs-util@^0.1.3, ethjs-util@^0.1.6: is-hex-prefixed "1.0.0" strip-hex-prefix "1.0.0" +ev-emitter@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ev-emitter/-/ev-emitter-2.1.2.tgz#91737a2deae9fa95453e7e86cfae976f8c3ced38" + integrity sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q== + event-emitter@^0.3.5: version "0.3.5" resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" @@ -6733,7 +8748,7 @@ eventemitter2@^5.0.1: resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-5.0.1.tgz#6197a095d5fb6b57e8942f6fd7eaad63a09c9452" integrity sha512-5EM1GHXycJBS6mauYAbVKT1cVs7POKWb2NXD4Vyt8dDqeZa7LaDK1/sjtL+Zb0lzTpSNil4596Dyu97hz37QLg== -eventemitter2@^6.4.5: +eventemitter2@^6.4.5, eventemitter2@^6.4.7: version "6.4.9" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.9.tgz#41f2750781b4230ed58827bc119d293471ecb125" integrity sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg== @@ -6743,16 +8758,16 @@ eventemitter3@4.0.4: resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== +eventemitter3@5.0.1, eventemitter3@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" + integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== + eventemitter3@^4.0.0, eventemitter3@^4.0.4, eventemitter3@^4.0.7: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== -eventemitter3@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" - integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== - events@3.3.0, events@^3.0.0, events@^3.2.0, events@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" @@ -6781,22 +8796,37 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +execa@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" + 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" + exenv@^1.2.0: version "1.2.2" resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw== express@^4.14.0, express@^4.17.1: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + version "4.19.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.1" + body-parser "1.20.2" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.5.0" + cookie "0.6.0" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" @@ -6842,6 +8872,14 @@ extension-port-stream@^2.0.1: dependencies: webextension-polyfill ">=0.10.0 <1.0" +extension-port-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extension-port-stream/-/extension-port-stream-3.0.0.tgz#00a7185fe2322708a36ed24843c81bd754925fef" + integrity sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw== + dependencies: + readable-stream "^3.6.2 || ^4.4.2" + webextension-polyfill ">=0.10.0 <1.0" + extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -6890,6 +8928,11 @@ fast-json-stable-stringify@^2.0.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== +fast-loops@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fast-loops/-/fast-loops-1.1.3.tgz#ce96adb86d07e7bf9b4822ab9c6fac9964981f75" + integrity sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g== + fast-redact@^3.0.0: version "3.3.0" resolved "https://registry.yarnpkg.com/fast-redact/-/fast-redact-3.3.0.tgz#7c83ce3a7be4898241a46560d51de10f653f7634" @@ -6900,6 +8943,11 @@ fast-safe-stringify@^2.0.6, fast-safe-stringify@^2.1.1: resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== +fast-shallow-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz#d4dcaf6472440dcefa6f88b98e3251e27f25628b" + integrity sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw== + fast-stable-stringify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313" @@ -6910,6 +8958,11 @@ fastest-levenshtein@^1.0.12: resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== +fastest-stable-stringify@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz#3757a6774f6ec8de40c4e86ec28ea02417214c76" + integrity sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q== + fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" @@ -6954,6 +9007,11 @@ finalhandler@1.2.0: statuses "2.0.1" unpipe "~1.0.0" +find-root@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + find-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" @@ -6974,6 +9032,13 @@ flat@^5.0.2: resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== +focus-lock@^0.9.1: + version "0.9.2" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.9.2.tgz#9d30918aaa99b1b97677731053d017f82a540d5b" + integrity sha512-YtHxjX7a0IC0ZACL5wsX8QdncXofWpGPNoVMuI/nZUrPGp6LmNI6+D5j0pPj+v8Kw5EpweA+T5yImK0rnWf7oQ== + dependencies: + tslib "^2.0.3" + follow-redirects@1.5.10: version "1.5.10" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" @@ -6986,6 +9051,11 @@ follow-redirects@^1.0.0, follow-redirects@^1.10.0, follow-redirects@^1.14.0, fol resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== +follow-redirects@^1.15.0, follow-redirects@^1.15.6: + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + for-each@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -7031,6 +9101,22 @@ forwarded@0.2.0: resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== +framer-motion@^10.12.7: + version "10.18.0" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.18.0.tgz#1f4fc51403996ea7170af885bd44a7079d255950" + integrity sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w== + dependencies: + tslib "^2.4.0" + optionalDependencies: + "@emotion/is-prop-valid" "^0.8.2" + +framesync@5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/framesync/-/framesync-5.3.0.tgz#0ecfc955e8f5a6ddc8fdb0cc024070947e1a0d9b" + integrity sha512-oc5m68HDO/tuK2blj7ZcdEBRx3p1PjrgHazL8GYEpvULhrtGIFbQArN6cQS2QhW8mitffaB+VYzMjDqBxxQeoA== + dependencies: + tslib "^2.1.0" + fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" @@ -7082,7 +9168,12 @@ functions-have-names@^1.2.3: resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -get-caller-file@^2.0.1: +futoin-hkdf@^1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/futoin-hkdf/-/futoin-hkdf-1.5.3.tgz#6c8024f2e1429da086d4e18289ef2239ad33ee35" + integrity sha512-SewY5KdMpaoCeh7jachEWFsh1nNlaDjNHZXWqL5IGwtpEYHTgkr2+AMCgNwKWkcc0wpSYrZfR7he4WdmHFtDxQ== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== @@ -7097,6 +9188,21 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@ has-proto "^1.0.1" has-symbols "^1.0.3" +get-nonce@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" + integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== + +get-port-please@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.2.tgz#502795e56217128e4183025c89a48c71652f4e49" + integrity sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ== + +get-size@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-size/-/get-size-3.0.0.tgz#00e39a8042a3de237b2fcf288eaf55d3f472417c" + integrity sha512-Y8aiXLq4leR7807UY0yuKEwif5s3kbVp1nTv+i4jBeoUzByTLKkLWu/HorS6/pB+7gsB0o7OTogC8AoOOeT0Hw== + get-stream@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" @@ -7109,6 +9215,11 @@ get-stream@^6.0.0, get-stream@^6.0.1: resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== +get-stream@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" + integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== + getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" @@ -7235,6 +9346,22 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.4, graceful-fs@^4.2.6, resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" integrity sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w== +h3@^1.10.2, h3@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/h3/-/h3-1.11.1.tgz#e9414ae6f2a076a345ea07256b320edb29bab9f7" + integrity sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A== + dependencies: + 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" + handle-thing@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" @@ -7253,6 +9380,11 @@ har-validator@~5.1.3: ajv "^6.12.3" har-schema "^2.0.0" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -7328,6 +9460,13 @@ hmac-drbg@^1.0.1: minimalistic-assert "^1.0.0" minimalistic-crypto-utils "^1.0.1" +hoist-non-react-statics@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + hpack.js@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" @@ -7411,6 +9550,11 @@ http-proxy@^1.18.1: follow-redirects "^1.0.0" requires-port "^1.0.0" +http-shutdown@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/http-shutdown/-/http-shutdown-1.2.2.tgz#41bc78fc767637c4c95179bc492f312c0ae64c5f" + integrity sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw== + http-signature@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" @@ -7459,6 +9603,11 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +human-signals@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" + integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== + humanize-ms@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" @@ -7466,7 +9615,19 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" -i18next@^22.4.13: +hyphenate-style-name@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" + integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== + +i18next-browser-languagedetector@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/i18next-browser-languagedetector/-/i18next-browser-languagedetector-7.1.0.tgz#01876fac51f86b78975e79b48ccb62e2313a2d7d" + integrity sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA== + dependencies: + "@babel/runtime" "^7.19.4" + +i18next@22.5.1, i18next@^22.4.13: version "22.5.1" resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.5.1.tgz#99df0b318741a506000c243429a7352e5f44d424" integrity sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA== @@ -7490,6 +9651,11 @@ icss-utils@^5.0.0, icss-utils@^5.1.0: resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== +idb-keyval@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/idb-keyval/-/idb-keyval-6.2.1.tgz#94516d625346d16f56f3b33855da11bfded2db33" + integrity sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg== + idna-uts46-hx@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz#a1dc5c4df37eee522bf66d969cc980e00e8711f9" @@ -7517,6 +9683,14 @@ immediate@~3.0.5: resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + import-local@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" @@ -7548,6 +9722,14 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== +inline-style-prefixer@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-7.0.0.tgz#991d550735d42069f528ac1bcdacd378d1305442" + integrity sha512-I7GEdScunP1dQ6IM2mQWh6v0mOYdYmH3Bp31UecKdrcUgcURTcctSe1IECdUznSHKSmsHtjrT3CwCPI1pyxfUQ== + dependencies: + css-in-js-utils "^3.1.0" + fast-loops "^1.1.3" + int64-buffer@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/int64-buffer/-/int64-buffer-1.0.1.tgz#c78d841b444cadf036cd04f8683696c740f15dca" @@ -7568,6 +9750,18 @@ intl-messageformat@^9.13.0: "@formatjs/icu-messageformat-parser" "2.1.0" tslib "^2.1.0" +invariant@2.2.4, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +io-ts@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/io-ts/-/io-ts-2.0.1.tgz#1261c12f915c2f48d16393a36966636b48a45aa1" + integrity sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ== + ip@^1.1.0: version "1.1.8" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" @@ -7588,6 +9782,11 @@ ipaddr.js@^2.0.1: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== +iron-webcrypto@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.1.0.tgz#f902f0cdbd77554b2195ecbb65558c311b01edfd" + integrity sha512-5vgYsCakNlaQub1orZK5QmNYhwYtcllTkZBp5sfIaCqY93Cf6l+v2rtE+E4TMbcfjxDMCdrO8wmp7+ZvhDECLA== + is-arguments@^1.0.4: version "1.1.1" resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" @@ -7596,6 +9795,11 @@ is-arguments@^1.0.4: call-bind "^1.0.2" has-tostringtag "^1.0.0" +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -7632,6 +9836,11 @@ is-docker@^2.0.0, is-docker@^2.1.1: resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -7664,7 +9873,7 @@ is-generator-function@^1.0.7: dependencies: has-tostringtag "^1.0.0" -is-glob@^4.0.1, is-glob@~4.0.1: +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -7676,6 +9885,13 @@ is-hex-prefixed@1.0.0: resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554" integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA== +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" + is-nan@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" @@ -7729,6 +9945,11 @@ is-stream@^2.0.0, is-stream@^2.0.1: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + is-typed-array@^1.1.3: version "1.1.12" resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" @@ -7748,6 +9969,20 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" +is-wsl@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-3.1.0.tgz#e1c657e39c10090afcbedec61720f6b924c3cbd2" + integrity sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw== + dependencies: + is-inside-container "^1.0.0" + +is64bit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is64bit/-/is64bit-2.0.0.tgz#198c627cbcb198bbec402251f88e5e1a51236c07" + integrity sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw== + dependencies: + system-architecture "^0.1.0" + is_js@^0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/is_js/-/is_js-0.9.0.tgz#0ab94540502ba7afa24c856aa985561669e9c52d" @@ -7778,6 +10013,19 @@ isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== +isomorphic-unfetch@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f" + integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== + dependencies: + node-fetch "^2.6.1" + unfetch "^4.2.0" + +isomorphic-ws@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" + integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw== + isomorphic-ws@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" @@ -7820,6 +10068,11 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" +jiti@^1.21.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== + joi@17.8.1: version "17.8.1" resolved "https://registry.yarnpkg.com/joi/-/joi-17.8.1.tgz#82f08b9b7b16e770537914155e78f3fe185b9d18" @@ -7853,6 +10106,11 @@ js-base64@^3.7.2: resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca" integrity sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA== +js-cookie@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" + integrity sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ== + js-sha256@0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" @@ -7868,7 +10126,7 @@ js-sha3@^0.5.7: resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g== -"js-tokens@^3.0.0 || ^4.0.0": +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== @@ -7888,7 +10146,7 @@ json-buffer@3.0.1: resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-parse-even-better-errors@^2.3.1: +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== @@ -7954,6 +10212,11 @@ json5@^2.1.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jsonc-parser@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a" + integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA== + jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -8100,6 +10363,18 @@ levelup@^1.2.1: semver "~5.4.1" xtend "~4.0.0" +libsodium-sumo@^0.7.13: + version "0.7.13" + resolved "https://registry.yarnpkg.com/libsodium-sumo/-/libsodium-sumo-0.7.13.tgz#533b97d2be44b1277e59c1f9f60805978ac5542d" + integrity sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ== + +libsodium-wrappers-sumo@^0.7.11: + version "0.7.13" + resolved "https://registry.yarnpkg.com/libsodium-wrappers-sumo/-/libsodium-wrappers-sumo-0.7.13.tgz#a33aea845a0bb56db067548f04feba28c730ab8e" + integrity sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ== + dependencies: + libsodium-sumo "^0.7.13" + libsodium-wrappers@^0.7.6: version "0.7.13" resolved "https://registry.yarnpkg.com/libsodium-wrappers/-/libsodium-wrappers-0.7.13.tgz#83299e06ee1466057ba0e64e532777d2929b90d3" @@ -8119,6 +10394,35 @@ lie@3.1.1: dependencies: immediate "~3.0.5" +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +listhen@^1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.7.2.tgz#66b81740692269d5d8cafdc475020f2fc51afbae" + 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" + lit-element@^3.3.0: version "3.3.3" resolved "https://registry.yarnpkg.com/lit-element/-/lit-element-3.3.3.tgz#10bc19702b96ef5416cf7a70177255bfb17b3209" @@ -8219,6 +10523,11 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== +lodash.mergewith@4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" + integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== + lodash.partition@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.partition/-/lodash.partition-4.6.0.tgz#a38e46b73469e0420b0da1212e66d414be364ba4" @@ -8271,6 +10580,11 @@ lowercase-keys@^3.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== +lru-cache@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -8307,6 +10621,13 @@ magic-sdk@^8.1.0: "@magic-sdk/types" "^7.1.1" localforage "^1.7.4" +magic-string@^0.30.3: + version "0.30.8" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.8.tgz#14e8624246d2bedba70d5462aa99ac9681844613" + integrity sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + md5.js@^1.3.4: version "1.3.5" resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" @@ -8316,6 +10637,11 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -8398,7 +10724,7 @@ micro-ftch@^0.3.1: resolved "https://registry.yarnpkg.com/micro-ftch/-/micro-ftch-0.3.1.tgz#6cb83388de4c1f279a034fb0cf96dfc050853c5f" integrity sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg== -micromatch@^4.0.2, micromatch@^4.0.4: +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -8431,11 +10757,21 @@ mime@1.6.0: resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== +mime@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" + integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== + mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" @@ -8518,6 +10854,16 @@ mkdirp@^0.5.5, mkdirp@^0.5.6: dependencies: minimist "^1.2.6" +mlly@^1.2.0, mlly@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.6.1.tgz#0983067dc3366d6314fc5e12712884e6978d028f" + integrity sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA== + dependencies: + acorn "^8.11.3" + pathe "^1.1.2" + pkg-types "^1.0.3" + ufo "^1.3.2" + mock-fs@^4.1.0: version "4.14.0" resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.14.0.tgz#ce5124d2c601421255985e6e94da80a7357b1b18" @@ -8535,7 +10881,7 @@ motion@10.16.2: "@motionone/utils" "^10.15.1" "@motionone/vue" "^10.16.2" -mri@^1.1.0: +mri@^1.1.0, mri@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== @@ -8628,6 +10974,20 @@ nan@^2.13.2, nan@^2.14.0, nan@^2.2.1: resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== +nano-css@^5.3.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/nano-css/-/nano-css-5.6.1.tgz#964120cb1af6cccaa6d0717a473ccd876b34c197" + integrity sha512-T2Mhc//CepkTa3X4pUhKgbEheJHYAxD0VptuqFhDbGMUWVV2m+lkNiW/Ieuj35wrfC8Zm0l7HvssQh7zcEttSw== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + css-tree "^1.1.2" + csstype "^3.1.2" + fastest-stable-stringify "^2.0.2" + inline-style-prefixer "^7.0.0" + rtl-css-js "^1.16.1" + stacktrace-js "^2.0.2" + stylis "^4.3.0" + nano-json-stream-parser@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz#0cc8f6d0e2b622b479c40d499c46d64b755c6f5f" @@ -8643,6 +11003,11 @@ nanoid@^4.0.0: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-4.0.2.tgz#140b3c5003959adbebf521c170f282c5e7f9fb9e" integrity sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw== +napi-wasm@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.0.tgz#bbe617823765ae9c1bc12ff5942370eae7b2ba4e" + integrity sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg== + ndjson@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/ndjson/-/ndjson-1.5.0.tgz#ae603b36b134bcec347b452422b0bf98d5832ec8" @@ -8688,6 +11053,11 @@ node-addon-api@^7.0.0: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.0.0.tgz#8136add2f510997b3b94814f4af1cce0b0e3962e" integrity sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA== +node-fetch-native@^1.6.1, node-fetch-native@^1.6.2, node-fetch-native@^1.6.3: + version "1.6.4" + resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" + integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== + node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: version "2.7.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" @@ -8695,7 +11065,7 @@ node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" -node-forge@^1: +node-forge@1.3.1, node-forge@^1, node-forge@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== @@ -8727,6 +11097,13 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" +npm-run-path@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f" + integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== + dependencies: + path-key "^4.0.0" + number-to-bn@1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/number-to-bn/-/number-to-bn-1.7.0.tgz#bb3623592f7e5f9e0030b1977bd41a0c53fe1ea0" @@ -8740,6 +11117,15 @@ oauth-sign@~0.9.0: resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== +obj-multiplex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/obj-multiplex/-/obj-multiplex-1.0.0.tgz#2f2ae6bfd4ae11befe742ea9ea5b36636eabffc1" + integrity sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA== + dependencies: + end-of-stream "^1.4.0" + once "^1.4.0" + readable-stream "^2.3.3" + object-assign@^4, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -8795,6 +11181,20 @@ obuf@^1.0.0, obuf@^1.1.2: resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== +ofetch@^1.3.3: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.3.4.tgz#7ea65ced3c592ec2b9906975ae3fe1d26a56f635" + integrity sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw== + dependencies: + destr "^2.0.3" + node-fetch-native "^1.6.3" + ufo "^1.5.3" + +ohash@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.3.tgz#f12c3c50bfe7271ce3fd1097d42568122ccdcf07" + integrity sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw== + on-exit-leak-free@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz#b39c9e3bf7690d890f4861558b0d7b90a442d209" @@ -8826,7 +11226,14 @@ onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -open@^8.0.9: +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +open@^8.0.9, open@^8.4.0: version "8.4.2" resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== @@ -8915,6 +11322,13 @@ pako@~1.0.5: resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + parse-asn1@^5.0.0, parse-asn1@^5.1.5: version "5.1.6" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" @@ -8931,6 +11345,16 @@ parse-headers@^2.0.0: resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9" integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA== +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" @@ -8961,6 +11385,11 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" @@ -8976,6 +11405,11 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +pathe@^1.1.0, pathe@^1.1.1, pathe@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec" + integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== + pbjs@^0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/pbjs/-/pbjs-0.0.5.tgz#b4c88e15aac4552ca0922aa64cd5338efd3447bf" @@ -9068,6 +11502,15 @@ pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" +pkg-types@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" + integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== + dependencies: + jsonc-parser "^3.2.0" + mlly "^1.2.0" + pathe "^1.1.0" + pngjs@^3.3.0: version "3.4.0" resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" @@ -9085,6 +11528,18 @@ pocket-js-core@0.0.3: dependencies: axios "^0.18.0" +polished@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.3.1.tgz#5a00ae32715609f83d89f6f31d0f0261c6170548" + integrity sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA== + dependencies: + "@babel/runtime" "^7.17.8" + +pony-cause@^2.1.10: + version "2.1.10" + resolved "https://registry.yarnpkg.com/pony-cause/-/pony-cause-2.1.10.tgz#828457ad6f13be401a075dbf14107a9057945174" + integrity sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw== + portfinder@^1.0.28: version "1.0.32" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81" @@ -9149,6 +11604,11 @@ preact@10.4.1: resolved "https://registry.yarnpkg.com/preact/-/preact-10.4.1.tgz#9b3ba020547673a231c6cf16f0fbaef0e8863431" integrity sha512-WKrRpCSwL2t3tpOOGhf2WfTpcmbpxaWtDbdJdKdjd0aEiTkvOmS4NBkG6kzlaAHI9AkQ3iVqbFWM3Ei7mZ4o1Q== +preact@^10.12.0, preact@^10.16.0: + version "10.20.1" + resolved "https://registry.yarnpkg.com/preact/-/preact-10.20.1.tgz#1bc598ab630d8612978f7533da45809a8298542b" + integrity sha512-JIFjgFg9B2qnOoGiYMVBtrcFxHqn+dNXbq76bVmcaHYJFYR4lW67AOcXgAYQQTDYXDOg/kTZrKPNCdRgJ2UJmw== + preact@^10.5.9: version "10.18.1" resolved "https://registry.yarnpkg.com/preact/-/preact-10.18.1.tgz#3b84bb305f0b05f4ad5784b981d15fcec4e105da" @@ -9182,7 +11642,7 @@ promise-to-callback@^1.0.0: is-fn "^1.0.0" set-immediate-shim "^1.0.1" -prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2: +prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -9255,6 +11715,11 @@ proxy-compare@2.5.1: resolved "https://registry.yarnpkg.com/proxy-compare/-/proxy-compare-2.5.1.tgz#17818e33d1653fbac8c2ec31406bce8a2966f600" integrity sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA== +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" @@ -9316,16 +11781,28 @@ pushdata-bitcoin@^1.0.1: dependencies: bitcoin-ops "^1.3.0" +qr-code-styling@^1.6.0-rc.1: + version "1.6.0-rc.1" + resolved "https://registry.yarnpkg.com/qr-code-styling/-/qr-code-styling-1.6.0-rc.1.tgz#6c89e185fa50cc9135101085c12ae95b06f1b290" + integrity sha512-ModRIiW6oUnsP18QzrRYZSc/CFKFKIdj7pUs57AEVH20ajlglRpN3HukjHk0UbNMTlKGuaYl7Gt6/O5Gg2NU2Q== + dependencies: + qrcode-generator "^1.4.3" + qr.js@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/qr.js/-/qr.js-0.0.0.tgz#cace86386f59a0db8050fa90d9b6b0e88a1e364f" integrity sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ== -qrcode-generator@^1.4.1: +qrcode-generator@^1.4.1, qrcode-generator@^1.4.3: version "1.4.4" resolved "https://registry.yarnpkg.com/qrcode-generator/-/qrcode-generator-1.4.4.tgz#63f771224854759329a99048806a53ed278740e7" integrity sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw== +qrcode-terminal-nooctal@^0.12.1: + version "0.12.1" + resolved "https://registry.yarnpkg.com/qrcode-terminal-nooctal/-/qrcode-terminal-nooctal-0.12.1.tgz#45016aca0d82b2818de7af0a06d072ad671fbe2e" + integrity sha512-jy/kkD0iIMDjTucB+5T6KBsnirlhegDH47vHgrj5MejchSQmi/EAMM0xMFeePgV9CJkkAapNakpVUWYgHvtdKg== + qrcode.react@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/qrcode.react/-/qrcode.react-1.0.1.tgz#2834bb50e5e275ffe5af6906eff15391fe9e38a5" @@ -9348,7 +11825,7 @@ qrcode@1.4.4: pngjs "^3.3.0" yargs "^13.2.4" -qrcode@1.5.3: +qrcode@1.5.3, qrcode@^1.5.1: version "1.5.3" resolved "https://registry.yarnpkg.com/qrcode/-/qrcode-1.5.3.tgz#03afa80912c0dccf12bc93f615a535aad1066170" integrity sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg== @@ -9405,6 +11882,16 @@ query-string@^5.0.1: object-assign "^4.1.0" strict-uri-encode "^1.0.0" +query-string@^6.13.5: + version "6.14.1" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" + integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw== + dependencies: + decode-uri-component "^0.2.0" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -9420,6 +11907,11 @@ quick-lru@^5.1.1: resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== +radix3@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/radix3/-/radix3-1.1.2.tgz#fd27d2af3896c6bf4bcdfab6427c69c2afc69ec0" + integrity sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA== + randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" @@ -9440,16 +11932,6 @@ range-parser@^1.2.1, range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== - dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" - raw-body@2.5.2: version "2.5.2" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" @@ -9460,6 +11942,13 @@ raw-body@2.5.2: iconv-lite "0.4.24" unpipe "1.0.0" +react-clientside-effect@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz#29f9b14e944a376b03fb650eed2a754dd128ea3a" + integrity sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg== + dependencies: + "@babel/runtime" "^7.12.13" + react-dom@16.13.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" @@ -9478,6 +11967,23 @@ react-dom@^18.2.0: loose-envify "^1.1.0" scheduler "^0.23.0" +react-fast-compare@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" + integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== + +react-focus-lock@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.5.2.tgz#f1e4db5e25cd8789351f2bd5ebe91e9dcb9c2922" + integrity sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ== + dependencies: + "@babel/runtime" "^7.0.0" + focus-lock "^0.9.1" + prop-types "^15.6.2" + react-clientside-effect "^1.2.5" + use-callback-ref "^1.2.5" + use-sidecar "^1.0.5" + react-i18next@^12.2.0: version "12.3.1" resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-12.3.1.tgz#30134a41a2a71c61dc69c6383504929aed1c99e7" @@ -9486,7 +11992,7 @@ react-i18next@^12.2.0: "@babel/runtime" "^7.20.6" html-parse-stringify "^3.0.1" -react-is@^16.13.1: +react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -9506,6 +12012,22 @@ react-modal@^3.12.1: react-lifecycles-compat "^3.0.0" warning "^4.0.3" +react-native-webview@^11.26.0: + version "11.26.1" + resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-11.26.1.tgz#658c09ed5162dc170b361e48c2dd26c9712879da" + integrity sha512-hC7BkxOpf+z0UKhxFSFTPAM4shQzYmZHoELa6/8a/MspcjEP7ukYKpuSUTLDywQditT8yI9idfcKvfZDKQExGw== + dependencies: + escape-string-regexp "2.0.0" + invariant "2.2.4" + +react-qr-code@2.0.11: + version "2.0.11" + resolved "https://registry.yarnpkg.com/react-qr-code/-/react-qr-code-2.0.11.tgz#444c759a2100424972e17135fbe0e32eaffa19e8" + integrity sha512-P7mvVM5vk9NjGdHMt4Z0KWeeJYwRAtonHTghZT2r+AASinLUUKQ9wfsGH2lPKsT++gps7hXmaiMGRvwTDEL9OA== + dependencies: + prop-types "^15.8.1" + qr.js "0.0.0" + react-qr-reader@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/react-qr-reader/-/react-qr-reader-2.2.1.tgz#dc89046d1c1a1da837a683dd970de5926817d55b" @@ -9523,6 +12045,59 @@ react-qrcode-logo@^2.9.0: lodash.isequal "^4.5.0" qrcode-generator "^1.4.1" +react-remove-scroll-bar@^2.1.0: + version "2.3.6" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz#3e585e9d163be84a010180b18721e851ac81a29c" + integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g== + dependencies: + react-style-singleton "^2.2.1" + tslib "^2.0.0" + +react-remove-scroll@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.4.1.tgz#e0af6126621083a5064591d367291a81b2d107f5" + integrity sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA== + dependencies: + react-remove-scroll-bar "^2.1.0" + react-style-singleton "^2.1.0" + tslib "^1.0.0" + use-callback-ref "^1.2.3" + use-sidecar "^1.0.1" + +react-style-singleton@^2.1.0, react-style-singleton@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" + integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== + dependencies: + get-nonce "^1.0.0" + invariant "^2.2.4" + tslib "^2.0.0" + +react-universal-interface@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/react-universal-interface/-/react-universal-interface-0.6.2.tgz#5e8d438a01729a4dbbcbeeceb0b86be146fe2b3b" + integrity sha512-dg8yXdcQmvgR13RIlZbTRQOoUrDciFVoSBZILwjE2LFISxZZ8loVJKAkuzswl5js8BHda79bIb2b84ehU8IjXw== + +react-use@17.4.0: + version "17.4.0" + resolved "https://registry.yarnpkg.com/react-use/-/react-use-17.4.0.tgz#cefef258b0a6c534a5c8021c2528ac6e1a4cdc6d" + integrity sha512-TgbNTCA33Wl7xzIJegn1HndB4qTS9u03QUwyNycUnXaweZkE4Kq2SB+Yoxx8qbshkZGYBDvUXbXWRUmQDcZZ/Q== + dependencies: + "@types/js-cookie" "^2.2.6" + "@xobotyi/scrollbar-width" "^1.9.5" + copy-to-clipboard "^3.3.1" + fast-deep-equal "^3.1.3" + fast-shallow-equal "^1.0.0" + js-cookie "^2.2.1" + nano-css "^5.3.1" + react-universal-interface "^0.6.2" + resize-observer-polyfill "^1.5.1" + screenfull "^5.1.0" + set-harmonic-interval "^1.0.1" + throttle-debounce "^3.0.1" + ts-easing "^0.2.0" + tslib "^2.1.0" + react@16.13.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" @@ -9564,6 +12139,17 @@ readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.5.0, readable string_decoder "^1.1.1" util-deprecate "^1.0.1" +"readable-stream@^3.6.2 || ^4.4.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09" + integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g== + dependencies: + abort-controller "^3.0.0" + buffer "^6.0.3" + events "^3.3.0" + process "^0.11.10" + string_decoder "^1.3.0" + readable-stream@^4.4.1, readable-stream@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.4.2.tgz#e6aced27ad3b9d726d8308515b9a1b98dc1b9d13" @@ -9674,6 +12260,11 @@ requires-port@^1.0.0: resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== +resize-observer-polyfill@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== + resolve-alpn@^1.0.0, resolve-alpn@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" @@ -9686,12 +12277,17 @@ resolve-cwd@^3.0.0: dependencies: resolve-from "^5.0.0" +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + resolve-from@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve@^1.14.2, resolve@^1.9.0: +resolve@^1.14.2, resolve@^1.19.0, resolve@^1.9.0: version "1.22.8" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== @@ -9795,6 +12391,24 @@ rlp@^2.0.0, rlp@^2.2.3, rlp@^2.2.4: dependencies: bn.js "^5.2.0" +rollup-plugin-dotenv@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-dotenv/-/rollup-plugin-dotenv-0.5.0.tgz#c2df297be52f3dcc0ae7fb048e08f906cee112e7" + integrity sha512-M2gZqEZebtcKaA7OBdO4UF3WmkI02wVD6UVwoxFlRKoq4/n1Q9Cw6UV8dPvVZYpGQ+ug2JPoogrCLaydIKU96A== + dependencies: + "@rollup/plugin-replace" "^5.0.1" + dotenv "^16.0.3" + +rollup-plugin-visualizer@^5.9.2: + version "5.12.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz#661542191ce78ee4f378995297260d0c1efb1302" + integrity sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ== + dependencies: + open "^8.4.0" + picomatch "^2.3.1" + source-map "^0.7.4" + yargs "^17.5.1" + rpc-websockets@^7.5.1: version "7.6.0" resolved "https://registry.yarnpkg.com/rpc-websockets/-/rpc-websockets-7.6.0.tgz#d3f4c0dac108ca35566b0e31552c32e58928cd04" @@ -9815,6 +12429,13 @@ rtcpeerconnection-shim@^1.2.15: dependencies: sdp "^2.6.0" +rtl-css-js@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/rtl-css-js/-/rtl-css-js-1.16.1.tgz#4b48b4354b0ff917a30488d95100fbf7219a3e80" + integrity sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg== + dependencies: + "@babel/runtime" "^7.1.2" + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -9914,6 +12535,11 @@ schema-utils@^4.0.0: ajv-formats "^2.1.1" ajv-keywords "^5.1.0" +screenfull@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/screenfull/-/screenfull-5.2.0.tgz#6533d524d30621fc1283b9692146f3f13a93d1ba" + integrity sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA== + scrypt-js@3.0.1, scrypt-js@^3.0.0, scrypt-js@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" @@ -9938,7 +12564,7 @@ secp256k1@3.7.1: nan "^2.14.0" safe-buffer "^5.1.2" -secp256k1@5.0.0: +secp256k1@5.0.0, secp256k1@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-5.0.0.tgz#be6f0c8c7722e2481e9773336d351de8cddd12f7" integrity sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA== @@ -10083,6 +12709,11 @@ set-function-name@^2.0.0: functions-have-names "^1.2.3" has-property-descriptors "^1.0.0" +set-harmonic-interval@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz#e1773705539cdfb80ce1c3d99e7f298bb3995249" + integrity sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g== + set-immediate-shim@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" @@ -10144,6 +12775,11 @@ signal-exit@^3.0.3: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + signed-varint@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/signed-varint/-/signed-varint-2.0.1.tgz#50a9989da7c98c2c61dad119bc97470ef8528129" @@ -10175,6 +12811,16 @@ smart-buffer@^4.2.0: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== +socket.io-client@^4.5.1: + version "4.7.5" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.5.tgz#919be76916989758bdc20eec63f7ee0ae45c05b7" + integrity sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ== + dependencies: + "@socket.io/component-emitter" "~3.1.0" + debug "~4.3.2" + engine.io-client "~6.5.2" + socket.io-parser "~4.2.4" + socket.io-client@^4.6.1: version "4.7.2" resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.2.tgz#f2f13f68058bd4e40f94f2a1541f275157ff2c08" @@ -10244,11 +12890,26 @@ source-map-support@~0.5.20: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.6.0, source-map@~0.6.1: +source-map@0.5.6: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== + +source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +source-map@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + spdy-transport@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" @@ -10304,6 +12965,35 @@ sshpk@^1.7.0: safer-buffer "^2.0.2" tweetnacl "~0.14.0" +stack-generator@^2.0.5: + version "2.0.10" + resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.10.tgz#8ae171e985ed62287d4f1ed55a1633b3fb53bb4d" + integrity sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ== + dependencies: + stackframe "^1.3.4" + +stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + +stacktrace-gps@^3.0.4: + version "3.1.2" + resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz#0c40b24a9b119b20da4525c398795338966a2fb0" + integrity sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ== + dependencies: + source-map "0.5.6" + stackframe "^1.3.4" + +stacktrace-js@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.2.tgz#4ca93ea9f494752d55709a081d400fdaebee897b" + integrity sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg== + dependencies: + error-stack-parser "^2.0.6" + stack-generator "^2.0.5" + stacktrace-gps "^3.0.4" + statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" @@ -10314,7 +13004,12 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== -stream-browserify@^3.0.0: +std-env@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" + integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== + +stream-browserify@3.0.0, stream-browserify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== @@ -10356,7 +13051,7 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.1.0, string-width@^4.2.0: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -10410,6 +13105,11 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + strip-hex-prefix@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz#0c5f155fef1151373377de9dbb588da05500e36f" @@ -10424,6 +13124,16 @@ sturdy-websocket@^0.1.12: dependencies: lodash.defaults "^4.2.0" +stylis@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" + integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== + +stylis@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.1.tgz#ed8a9ebf9f76fe1e12d462f5cc3c4c980b23a7eb" + integrity sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ== + superstruct@^0.14.2: version "0.14.2" resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b" @@ -10439,6 +13149,13 @@ superstruct@^1.0.3: resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-1.0.3.tgz#de626a5b49c6641ff4d37da3c7598e7a87697046" integrity sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg== +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@^8.0.0: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" @@ -10510,6 +13227,11 @@ symbol-observable@^2.0.3: resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a" integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA== +system-architecture@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/system-architecture/-/system-architecture-0.1.0.tgz#71012b3ac141427d97c67c56bc7921af6bff122d" + integrity sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA== + tallyho-detect-provider@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/tallyho-detect-provider/-/tallyho-detect-provider-1.0.2.tgz#6e462c34494217d39a83e22709dd855488b2d32d" @@ -10573,6 +13295,11 @@ thread-stream@^0.15.1: dependencies: real-require "^0.1.0" +throttle-debounce@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-3.0.1.tgz#32f94d84dfa894f786c9a1f290e7a645b6a19abb" + integrity sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg== + through2@^2.0.2, through2@^2.0.3: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" @@ -10612,6 +13339,11 @@ tiny-glob@^0.2.9: globalyzer "0.1.0" globrex "^0.1.2" +tiny-invariant@^1.0.6: + version "1.3.3" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" + integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== + tiny-secp256k1@^1.1.3, tiny-secp256k1@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/tiny-secp256k1/-/tiny-secp256k1-1.1.6.tgz#7e224d2bee8ab8283f284e40e6b4acb74ffe047c" @@ -10668,12 +13400,22 @@ ts-custom-error@^3.3.1: resolved "https://registry.yarnpkg.com/ts-custom-error/-/ts-custom-error-3.3.1.tgz#8bd3c8fc6b8dc8e1cb329267c45200f1e17a65d1" integrity sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A== -tslib@1.14.1, tslib@^1.9.0: +ts-easing@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ts-easing/-/ts-easing-0.2.0.tgz#c8a8a35025105566588d87dbda05dd7fbfa5a4ec" + integrity sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ== + +tslib@1.14.1, tslib@^1.0.0, tslib@^1.9.0: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.0, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0: +tslib@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== @@ -10750,6 +13492,11 @@ ua-parser-js@^1.0.35: resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.36.tgz#a9ab6b9bd3a8efb90bb0816674b412717b7c428c" integrity sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw== +ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.3.tgz#3325bd3c977b6c6cd3160bf4ff52989adc9d3344" + integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw== + uint8arrays@^3.0.0, uint8arrays@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/uint8arrays/-/uint8arrays-3.1.1.tgz#2d8762acce159ccd9936057572dade9459f65ae0" @@ -10762,11 +13509,44 @@ ultron@~1.1.0: resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== +uncrypto@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/uncrypto/-/uncrypto-0.1.3.tgz#e1288d609226f2d02d8d69ee861fa20d8348ef2b" + integrity sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q== + +underscore@1.12.1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e" + integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw== + undici-types@~5.25.1: version "5.25.3" resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3" integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA== +unenv@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.9.0.tgz#469502ae85be1bd3a6aa60f810972b1a904ca312" + 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" + +unfetch@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be" + integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + +unidragger@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/unidragger/-/unidragger-3.0.1.tgz#72b2e63f2571ca6e95a884b139dfec764e08c7f3" + integrity sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw== + dependencies: + ev-emitter "^2.0.0" + universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -10782,6 +13562,31 @@ unpipe@1.0.0, unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== +unstorage@^1.9.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.10.2.tgz#fb7590ada8b30e83be9318f85100158b02a76dae" + 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" + +untun@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/untun/-/untun-0.1.3.tgz#5d10dee37a3a5737ff03d158be877dae0a0e58a6" + integrity sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ== + dependencies: + citty "^0.1.5" + consola "^3.2.3" + pathe "^1.1.1" + update-browserslist-db@^1.0.13: version "1.0.13" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" @@ -10790,6 +13595,11 @@ update-browserslist-db@^1.0.13: escalade "^3.1.1" picocolors "^1.0.0" +uqr@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/uqr/-/uqr-0.1.2.tgz#5c6cd5dcff9581f9bb35b982cb89e2c483a41d7d" + integrity sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA== + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -10810,15 +13620,6 @@ url@^0.11.0: punycode "^1.4.1" qs "^6.11.2" -usb@^2.9.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/usb/-/usb-2.11.0.tgz#bbb2257c65534635a450aed3754df7c8844d518e" - integrity sha512-u5+NZ6DtoW8TIBtuSArQGAZZ/K15i3lYvZBAYmcgI+RcDS9G50/KPrUd3CrU8M92ahyCvg5e0gc8BDvr5Hwejg== - dependencies: - "@types/w3c-web-usb" "^1.0.6" - node-addon-api "^7.0.0" - node-gyp-build "^4.5.0" - usb@^2.9.0: version "2.10.0" resolved "https://registry.yarnpkg.com/usb/-/usb-2.10.0.tgz#c582b62d709c85d63c76a9864fc670d6ad65928b" @@ -10828,7 +13629,22 @@ usb@^2.9.0: node-addon-api "^7.0.0" node-gyp-build "^4.5.0" -use-sync-external-store@1.2.0: +use-callback-ref@^1.2.3, use-callback-ref@^1.2.5: + version "1.3.2" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.2.tgz#6134c7f6ff76e2be0b56c809b17a650c942b1693" + integrity sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA== + dependencies: + tslib "^2.0.0" + +use-sidecar@^1.0.1, use-sidecar@^1.0.5: + version "1.1.2" + resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" + integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== + dependencies: + detect-node-es "^1.1.0" + tslib "^2.0.0" + +use-sync-external-store@1.2.0, use-sync-external-store@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== @@ -10840,6 +13656,13 @@ utf-8-validate@^5.0.2: dependencies: node-gyp-build "^4.3.0" +utf-8-validate@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-6.0.3.tgz#7d8c936d854e86b24d1d655f138ee27d2636d777" + integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== + dependencies: + node-gyp-build "^4.3.0" + utf8@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/utf8/-/utf8-3.0.0.tgz#f052eed1364d696e769ef058b183df88c87f69d1" @@ -10866,25 +13689,33 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== +uuid@8.3.2, uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== +uuid@9.0.1, uuid@^9.0.0, uuid@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + uuid@^3.3.2: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - -uuid@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" - integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== +uuidv4@^6.2.13: + version "6.2.13" + resolved "https://registry.yarnpkg.com/uuidv4/-/uuidv4-6.2.13.tgz#8f95ec5ef22d1f92c8e5d4c70b735d1c89572cb7" + integrity sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ== + dependencies: + "@types/uuid" "8.3.4" + uuid "8.3.2" validator@^13.11.0: version "13.11.0" @@ -10948,6 +13779,22 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +viem@1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/viem/-/viem-1.5.3.tgz#076a95e0c11d03b6cfa8abb1bd19b48a2c02e056" + integrity sha512-oImpSDDvm8Y72qxXV0pCAGAqQLYgo8YENdz9EKS8ExnnOJLascpex4LNazNyp9cksjm3ORpVpbqGMr9Cy1z2mg== + dependencies: + "@adraffy/ens-normalize" "1.9.0" + "@noble/curves" "1.0.0" + "@noble/hashes" "1.3.0" + "@scure/bip32" "1.3.0" + "@scure/bip39" "1.2.0" + "@types/ws" "^8.5.4" + "@wagmi/chains" "1.6.0" + abitype "0.9.3" + isomorphic-ws "5.0.0" + ws "8.12.0" + viem@^1.0.0: version "1.16.6" resolved "https://registry.yarnpkg.com/viem/-/viem-1.16.6.tgz#78118c9269506a59e2bc4deab13f1646e113d3fc" @@ -10962,11 +13809,37 @@ viem@^1.0.0: isows "1.0.3" ws "8.13.0" +viem@^1.6.0: + version "1.21.4" + resolved "https://registry.yarnpkg.com/viem/-/viem-1.21.4.tgz#883760e9222540a5a7e0339809202b45fe6a842d" + integrity sha512-BNVYdSaUjeS2zKQgPs+49e5JKocfo60Ib2yiXOWBT6LuVxY1I/6fFX3waEtpXvL1Xn4qu+BVitVtMh9lyThyhQ== + dependencies: + "@adraffy/ens-normalize" "1.10.0" + "@noble/curves" "1.2.0" + "@noble/hashes" "1.3.2" + "@scure/bip32" "1.3.2" + "@scure/bip39" "1.2.1" + abitype "0.9.8" + isows "1.0.3" + ws "8.13.0" + void-elements@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== +wagmi@^1.4.2: + version "1.4.13" + resolved "https://registry.yarnpkg.com/wagmi/-/wagmi-1.4.13.tgz#dc8dc077c7c2195877d7e33477b0417f5d2add4f" + integrity sha512-AScVYFjqNt1wMgL99Bob7MLdhoTZ3XKiOZL5HVBdy4W1sh7QodA3gQ8IsmTuUrQ7oQaTxjiXEhwg7sWNrPBvJA== + dependencies: + "@tanstack/query-sync-storage-persister" "^4.27.1" + "@tanstack/react-query" "^4.28.0" + "@tanstack/react-query-persist-client" "^4.28.0" + "@wagmi/core" "1.4.13" + abitype "0.8.7" + use-sync-external-store "^1.2.0" + warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" @@ -11123,6 +13996,15 @@ web3-eth-abi@1.10.2: "@ethersproject/abi" "^5.6.3" web3-utils "1.10.2" +web3-eth-abi@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.3.6.tgz#4272ca48d817aa651bbf97b269f5ff10abc2b8a9" + integrity sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ== + dependencies: + "@ethersproject/abi" "5.0.7" + underscore "1.12.1" + web3-utils "1.3.6" + web3-eth-accounts@1.10.2: version "1.10.2" resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.10.2.tgz#5ce9e4de0f84a88e72801810b98cc25164956404" @@ -11326,6 +14208,20 @@ web3-utils@1.10.2: randombytes "^2.1.0" utf8 "3.0.0" +web3-utils@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.3.6.tgz#390bc9fa3a7179746963cfaca55bb80ac4d8dc10" + integrity sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg== + dependencies: + bn.js "^4.11.9" + eth-lib "0.2.8" + ethereum-bloom-filters "^1.0.6" + ethjs-unit "0.1.6" + number-to-bn "1.7.0" + randombytes "^2.1.0" + underscore "1.12.1" + utf8 "3.0.0" + web3-utils@1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.5.2.tgz#150982dcb1918ffc54eba87528e28f009ebc03aa" @@ -11603,6 +14499,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -11623,11 +14528,21 @@ ws@7.5.9, ws@^7, ws@^7.2.0, ws@^7.4.0, ws@^7.4.5, ws@^7.5.1: resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== +ws@8.12.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8" + integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig== + ws@8.13.0: version "8.13.0" resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== +ws@8.5.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f" + integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== + ws@8.9.0: version "8.9.0" resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e" @@ -11726,6 +14641,11 @@ y18n@^4.0.0: resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + yaeti@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577" @@ -11741,6 +14661,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + yargs-parser@^13.1.2: version "13.1.2" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" @@ -11757,6 +14682,11 @@ yargs-parser@^18.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + yargs@^13.2.4: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" @@ -11789,3 +14719,23 @@ yargs@^15.3.1: which-module "^2.0.0" y18n "^4.0.0" yargs-parser "^18.1.2" + +yargs@^17.5.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +zustand@^4.3.1: + version "4.5.2" + resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.5.2.tgz#fddbe7cac1e71d45413b3682cdb47b48034c3848" + integrity sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g== + dependencies: + use-sync-external-store "1.2.0" From 21c07ded0042d6d367ca74b729aacba483836247 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:29:27 -0600 Subject: [PATCH 45/49] Bump express from 4.18.2 to 4.19.2 in /examples/with-vite-react (#2120) Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2. - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2) --- updated-dependencies: - dependency-name: express dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/with-vite-react/yarn.lock | 53 ++++++++++++++++++++++++------ 1 file changed, 43 insertions(+), 10 deletions(-) diff --git a/examples/with-vite-react/yarn.lock b/examples/with-vite-react/yarn.lock index 1d0e92128..4b7ccdfcd 100644 --- a/examples/with-vite-react/yarn.lock +++ b/examples/with-vite-react/yarn.lock @@ -4160,7 +4160,25 @@ bnc-sdk@^4.6.7: rxjs "^6.6.3" sturdy-websocket "^0.1.12" -body-parser@1.20.1, body-parser@^1.16.0: +body-parser@1.20.2: + version "1.20.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +body-parser@^1.16.0: version "1.20.1" resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== @@ -4685,6 +4703,11 @@ content-type@~1.0.4: resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== +content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + convert-source-map@^1.7.0: version "1.8.0" resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" @@ -4697,10 +4720,10 @@ cookie-signature@1.0.6: resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== cookiejar@^2.1.1: version "2.1.4" @@ -6050,16 +6073,16 @@ exenv@^1.2.0: integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw== express@^4.14.0: - version "4.18.2" - resolved "https://registry.npmjs.org/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + version "4.19.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== dependencies: accepts "~1.3.8" array-flatten "1.1.1" - body-parser "1.20.1" + body-parser "1.20.2" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.5.0" + cookie "0.6.0" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" @@ -8558,6 +8581,16 @@ raw-body@2.5.1: iconv-lite "0.4.24" unpipe "1.0.0" +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + rc@^1.2.7: version "1.2.8" resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" From 197599e4b8295add053ca6c27ec94aaeae695df1 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 8 Apr 2024 12:24:12 -0600 Subject: [PATCH 46/49] FEAT - Support Degen chain (#2138) * Bump versions for release and Remove console.log * Add degen support, update docs, add degen to examples * Update injected imports --- .github/ISSUE_TEMPLATE/BUG.yml | 2 +- docs/src/lib/services/onboard.js | 6 ++++++ docs/src/routes/+page.md | 12 ++++++------ .../[...1]introduction/+page.md | 7 +++++++ .../docs/[...3]modules/[...1]core/+page.md | 6 ++++++ .../[...5]transaction-preview/+page.md | 6 +++--- .../examples/[...1]connect-wallet/+page.md | 14 +++++++++++++- .../examples/[...2]uniswap-widget/+page.md | 7 +++++++ examples/with-ledger/pages/index.js | 6 ++++++ examples/with-nextjs-13/web3-onboard.ts | 6 ++++++ examples/with-nextjs/pages/_app.js | 6 ++++++ .../src/providers/onboard-provider/options.ts | 6 ++++++ .../with-sveltekit/src/lib/web3-onboard.ts | 6 ++++++ examples/with-vanilla-js/src/onboard.js | 6 ++++++ examples/with-vite-react/src/web3-onboard.ts | 6 ++++++ .../src/components/HelloWorld.vue | 6 ++++++ examples/with-vuejs/src/App.vue | 6 ++++++ packages/core/README.md | 6 ++++++ packages/core/package.json | 2 +- packages/core/src/icons/degen.ts | 12 ++++++++++++ packages/core/src/icons/index.ts | 1 + packages/core/src/utils.ts | 14 +++++++++++--- packages/demo/package.json | 2 +- packages/demo/src/App.svelte | 6 ++++++ packages/react/package.json | 4 ++-- packages/solid/package.json | 4 ++-- packages/transaction-preview/README.md | 6 +++--- packages/vue/package.json | 4 ++-- yarn.lock | 19 +++++++++++++++++++ 29 files changed, 169 insertions(+), 25 deletions(-) create mode 100644 packages/core/src/icons/degen.ts diff --git a/.github/ISSUE_TEMPLATE/BUG.yml b/.github/ISSUE_TEMPLATE/BUG.yml index e3cf85ad5..59142c886 100644 --- a/.github/ISSUE_TEMPLATE/BUG.yml +++ b/.github/ISSUE_TEMPLATE/BUG.yml @@ -46,7 +46,7 @@ body: - '@web3-onboard/decent' - '@web3-onboard/formatic' - '@web3-onboard/gnosis' - - '@web3-onboard/injected' + - '@web3-onboard/injected-wallets' - '@web3-onboard/keepkey' - '@web3-onboard/keystone' - '@web3-onboard/ledger' diff --git a/docs/src/lib/services/onboard.js b/docs/src/lib/services/onboard.js index fdbef44a4..c20865aaa 100644 --- a/docs/src/lib/services/onboard.js +++ b/docs/src/lib/services/onboard.js @@ -247,6 +247,12 @@ const intiOnboard = async (theme) => { token: 'OETH', label: 'Optimism', rpcUrl: 'https://mainnet.optimism.io' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/docs/src/routes/+page.md b/docs/src/routes/+page.md index 8ecc94d75..cc8b53b5d 100644 --- a/docs/src/routes/+page.md +++ b/docs/src/routes/+page.md @@ -13,14 +13,14 @@ ```sh copy -npm i @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +npm i @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` ```sh copy -yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +yarn add @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` @@ -32,14 +32,14 @@ yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-pre ```sh copy -npm i @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +npm i @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` ```sh copy -yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +yarn add @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` @@ -48,14 +48,14 @@ yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-pre ```sh copy -npm i @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +npm i @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` ```sh copy -yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +yarn add @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` diff --git a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md index 4707e3355..f75533be0 100644 --- a/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md +++ b/docs/src/routes/docs/[...1]overview/[...1]introduction/+page.md @@ -45,6 +45,7 @@ web3-onboard supports ALL EVM networks. Supporting a new network is simply a mat - Avalanche - BNB Chain - Celo +- Degen - Fantom - Gnosis Chain - Harmony One @@ -132,6 +133,12 @@ const onboard = Onboard({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] }) diff --git a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md index 087a32e68..f62e8bf65 100644 --- a/docs/src/routes/docs/[...3]modules/[...1]core/+page.md +++ b/docs/src/routes/docs/[...3]modules/[...1]core/+page.md @@ -677,6 +677,12 @@ const onboard = Onboard({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/docs/src/routes/docs/[...3]modules/[...5]transaction-preview/+page.md b/docs/src/routes/docs/[...3]modules/[...5]transaction-preview/+page.md index b2512f893..43efaff0d 100644 --- a/docs/src/routes/docs/[...3]modules/[...5]transaction-preview/+page.md +++ b/docs/src/routes/docs/[...3]modules/[...5]transaction-preview/+page.md @@ -27,14 +27,14 @@ Full Simulation Platform API documentation can be found [here](https://docs.bloc ```sh copy -yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +yarn add @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` ```sh copy -npm i @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview +npm i @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview ``` @@ -48,7 +48,7 @@ To use the Transaction Preview package with web3-onboard all a developer needs t ```typescript copy import Onboard from '@web3-onboard/core' -import injectedModule from '@web3-onboard/injected' +import injectedModule from '@web3-onboard/injected-wallets' import transactionPreviewModule from '@web3-onboard/transaction-preview' const injected = injectedModule() diff --git a/docs/src/routes/examples/[...1]connect-wallet/+page.md b/docs/src/routes/examples/[...1]connect-wallet/+page.md index f65283af4..8d83ad791 100644 --- a/docs/src/routes/examples/[...1]connect-wallet/+page.md +++ b/docs/src/routes/examples/[...1]connect-wallet/+page.md @@ -161,6 +161,12 @@ const chains = [ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] @@ -423,6 +429,12 @@ const chains = [ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] @@ -511,4 +523,4 @@ Now that we have our wallet connected, let's display some basic information, suc ## Interacting with the providers - Transfer, Send, Sign using ethers.js -For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) \ No newline at end of file +For examples of interacting with the wallet providers please see our demo project [here](https://github.com/blocknative/web3-onboard/blob/9b871a1b3117e92a7c87285677fa5b35c544a8e0/packages/demo/src/App.svelte#L447) diff --git a/docs/src/routes/examples/[...2]uniswap-widget/+page.md b/docs/src/routes/examples/[...2]uniswap-widget/+page.md index 9494da086..0c20bcdb3 100644 --- a/docs/src/routes/examples/[...2]uniswap-widget/+page.md +++ b/docs/src/routes/examples/[...2]uniswap-widget/+page.md @@ -59,6 +59,13 @@ const polygonMainnet = { rpcUrl: 'https://matic-mainnet.chainstacklabs.com' } +const degenChain = { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' +} + const chains = [ethereumRopsten, polygonMainnet] const wallets = [injectedModule()] diff --git a/examples/with-ledger/pages/index.js b/examples/with-ledger/pages/index.js index a0c497351..dece8e4dc 100644 --- a/examples/with-ledger/pages/index.js +++ b/examples/with-ledger/pages/index.js @@ -64,6 +64,12 @@ init({ token: 'FTM', label: 'Fantom', rpcUrl: 'https://rpc.ftm.tools/' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/examples/with-nextjs-13/web3-onboard.ts b/examples/with-nextjs-13/web3-onboard.ts index 16fb7059d..0d8339230 100644 --- a/examples/with-nextjs-13/web3-onboard.ts +++ b/examples/with-nextjs-13/web3-onboard.ts @@ -129,6 +129,12 @@ export default init({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/examples/with-nextjs/pages/_app.js b/examples/with-nextjs/pages/_app.js index 579c90489..4222d2ef7 100644 --- a/examples/with-nextjs/pages/_app.js +++ b/examples/with-nextjs/pages/_app.js @@ -28,6 +28,12 @@ const celoMainnet = { token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' +}, +{ + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } const chains = [ethereumRopsten, polygonMainnet, baseMainnet,celoMainnet] diff --git a/examples/with-solidjs/src/providers/onboard-provider/options.ts b/examples/with-solidjs/src/providers/onboard-provider/options.ts index f151e80a7..fde5386c5 100644 --- a/examples/with-solidjs/src/providers/onboard-provider/options.ts +++ b/examples/with-solidjs/src/providers/onboard-provider/options.ts @@ -34,6 +34,12 @@ export const chains = [ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ]; diff --git a/examples/with-sveltekit/src/lib/web3-onboard.ts b/examples/with-sveltekit/src/lib/web3-onboard.ts index 02ec180c7..c4736a1dc 100644 --- a/examples/with-sveltekit/src/lib/web3-onboard.ts +++ b/examples/with-sveltekit/src/lib/web3-onboard.ts @@ -39,6 +39,12 @@ const chains = [ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] diff --git a/examples/with-vanilla-js/src/onboard.js b/examples/with-vanilla-js/src/onboard.js index 1b2773aab..6aa8985a2 100644 --- a/examples/with-vanilla-js/src/onboard.js +++ b/examples/with-vanilla-js/src/onboard.js @@ -35,6 +35,12 @@ const chains = [ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] diff --git a/examples/with-vite-react/src/web3-onboard.ts b/examples/with-vite-react/src/web3-onboard.ts index 7c7f9c7c9..05e273f9d 100644 --- a/examples/with-vite-react/src/web3-onboard.ts +++ b/examples/with-vite-react/src/web3-onboard.ts @@ -141,6 +141,12 @@ export default init({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/examples/with-vuejs-v2/src/components/HelloWorld.vue b/examples/with-vuejs-v2/src/components/HelloWorld.vue index 381652e33..b61b505a9 100644 --- a/examples/with-vuejs-v2/src/components/HelloWorld.vue +++ b/examples/with-vuejs-v2/src/components/HelloWorld.vue @@ -66,6 +66,12 @@ const web3Onboard = init({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] }) diff --git a/examples/with-vuejs/src/App.vue b/examples/with-vuejs/src/App.vue index 6689800ee..d48ee5807 100644 --- a/examples/with-vuejs/src/App.vue +++ b/examples/with-vuejs/src/App.vue @@ -34,6 +34,12 @@ init({ token: 'ETH', label: 'Celo', rpcUrl: 'https://1rpc.io/celo' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ] }) diff --git a/packages/core/README.md b/packages/core/README.md index efb355c55..6b31ef7ab 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -635,6 +635,12 @@ const onboard = Onboard({ token: 'FTM', label: 'Fantom Mainnet', rpcUrl: 'https://rpc.ftm.tools/' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], appMetadata: { diff --git a/packages/core/package.json b/packages/core/package.json index ced495256..bf2199970 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/core", - "version": "2.21.4", + "version": "2.21.5-alpha.1", "description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/core/src/icons/degen.ts b/packages/core/src/icons/degen.ts new file mode 100644 index 000000000..8bc8d206a --- /dev/null +++ b/packages/core/src/icons/degen.ts @@ -0,0 +1,12 @@ +export default ` + + + + + + + + + + +` \ No newline at end of file diff --git a/packages/core/src/icons/index.ts b/packages/core/src/icons/index.ts index 3dda66abc..8565422dd 100644 --- a/packages/core/src/icons/index.ts +++ b/packages/core/src/icons/index.ts @@ -23,3 +23,4 @@ export { default as caretIcon } from './caret.js' export { default as warningIcon } from './warning.js' export { default as successIcon } from './success.js' export { default as pendingIcon } from './pending.js' +export { default as degenIcon } from './degen.js' diff --git a/packages/core/src/utils.ts b/packages/core/src/utils.ts index ea7a4d2cf..3242645fa 100644 --- a/packages/core/src/utils.ts +++ b/packages/core/src/utils.ts @@ -28,7 +28,8 @@ import { avalancheIcon, harmonyOneIcon, arbitrumIcon, - baseIcon + baseIcon, + degenIcon } from './icons/index.js' import type { @@ -137,7 +138,8 @@ export const chainIdToLabel: Record = { '0x64': 'Gnosis', '0x63564C40': 'Harmony One', '0xa4b1': 'Arbitrum One', - '0xa4ba': 'Arbitrum Nova' + '0xa4ba': 'Arbitrum Nova', + '0x27bc86aa': 'Degen' } export const networkToChainId: Record = { @@ -150,7 +152,9 @@ export const networkToChainId: Record = { 'bsc-main': '0x38', 'matic-main': '0x89', 'fantom-main': '0xfa', - 'matic-mumbai': '0x80001' + 'matic-mumbai': '0x80001', + 'degen': '0x27bc86aa' + } export const chainStyles: Record = { @@ -233,6 +237,10 @@ export const chainStyles: Record = { '0x80001': { icon: polygonIcon, color: '#8247E5' + }, + '0x27bc86aa': { + icon: degenIcon, + color: '#a36dfe' } } diff --git a/packages/demo/package.json b/packages/demo/package.json index 6524d37e9..9a2dd3775 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -32,7 +32,7 @@ "@web3-onboard/blocto": "^2.0.1", "@web3-onboard/capsule": "2.0.1", "@web3-onboard/cede-store": "^2.2.0", - "@web3-onboard/core": "^2.21.4", + "@web3-onboard/core": "^2.21.5-alpha.1", "@web3-onboard/coinbase": "^2.2.7", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.3", diff --git a/packages/demo/src/App.svelte b/packages/demo/src/App.svelte index 00f14b8d1..428983330 100644 --- a/packages/demo/src/App.svelte +++ b/packages/demo/src/App.svelte @@ -348,6 +348,12 @@ token: 'OETH', label: 'Optimism', rpcUrl: 'https://mainnet.optimism.io' + }, + { + id: 666666666, + token: 'DEGEN', + label: 'Degen', + rpcUrl: 'https://rpc.degen.tips' } ], connect: { diff --git a/packages/react/package.json b/packages/react/package.json index 7c6613baa..f53455d4e 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.15", + "version": "2.8.16-alpha.1", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.4", + "@web3-onboard/core": "^2.21.5-alpha.1", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index 6631cb3a0..2bf87b0f4 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.2", + "version": "2.0.3-alpha.1", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.4", + "@web3-onboard/core": "^2.21.5-alpha.1", "solid-js": "^1.8.1" } } diff --git a/packages/transaction-preview/README.md b/packages/transaction-preview/README.md index b7ec836c9..455f98693 100644 --- a/packages/transaction-preview/README.md +++ b/packages/transaction-preview/README.md @@ -11,10 +11,10 @@ Full Simulation Platform API documentation can be found [here](https://docs.bloc ### Install **NPM** -`npm i @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview` +`npm i @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview` **Yarn** -`yarn add @web3-onboard/core @web3-onboard/injected @web3-onboard/transaction-preview` +`yarn add @web3-onboard/core @web3-onboard/injected-wallets @web3-onboard/transaction-preview` ### Usage with Web3-Onboard Core package @@ -24,7 +24,7 @@ To use the Transaction Preview package with web3-onboard all a developer needs t ```typescript import Onboard from '@web3-onboard/core' -import injectedModule from '@web3-onboard/injected' +import injectedModule from '@web3-onboard/injected-wallets' import transactionPreviewModule from '@web3-onboard/transaction-preview' const injected = injectedModule() diff --git a/packages/vue/package.json b/packages/vue/package.json index 181fcfddf..6f4ac088c 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.14", + "version": "2.7.15-alpha.1", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.4", - "@web3-onboard/core": "^2.21.4", + "@web3-onboard/core": "^2.21.5-alpha.1", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index c5ded117e..dfb24b39b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6293,6 +6293,25 @@ ethers "5.5.4" joi "17.9.1" +"@web3-onboard/core@^2.21.4": + version "2.21.4" + resolved "https://registry.yarnpkg.com/@web3-onboard/core/-/core-2.21.4.tgz#0bf80a30c32f5fd8d5330cda4b6c6729c40ca316" + integrity sha512-+nOKj3hudHXfS5J8Ej5P5v/NWuG1b/863Ikaob/UHsCrulle5ILmBNrJqs2LESLdbHjZPFQBoJG+IxTPo7yIAA== + dependencies: + "@web3-onboard/common" "^2.3.4" + bignumber.js "^9.0.0" + bnc-sdk "^4.6.7" + bowser "^2.11.0" + ethers "5.5.3" + eventemitter3 "^4.0.7" + joi "17.9.1" + lodash.merge "^4.6.2" + lodash.partition "^4.6.0" + nanoid "^4.0.0" + rxjs "^7.5.5" + svelte "^3.49.0" + svelte-i18n "^3.3.13" + "@web3-react/abstract-connector@^6.0.7": version "6.0.7" resolved "https://registry.yarnpkg.com/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz#401b3c045f1e0fab04256311be49d5144e9badc6" From 580bc92b0ee8c0bf4ee4dbd677b41605215dbb56 Mon Sep 17 00:00:00 2001 From: web3luhao <95836286+web3luhao@users.noreply.github.com> Date: Tue, 9 Apr 2024 22:49:58 +0800 Subject: [PATCH 47/49] update foxwallet logo (#2137) * update foxwallet logo * Update packages/injected/package.json Co-authored-by: Adam Carpenter --------- Co-authored-by: Adam Carpenter --- packages/injected/package.json | 2 +- packages/injected/src/icons/foxwallet.ts | 15 +-------------- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/packages/injected/package.json b/packages/injected/package.json index fe8735ca1..f7a2f37d9 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.14", + "version": "2.10.15-alpha.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/injected/src/icons/foxwallet.ts b/packages/injected/src/icons/foxwallet.ts index c71cf4fc2..512daf28e 100644 --- a/packages/injected/src/icons/foxwallet.ts +++ b/packages/injected/src/icons/foxwallet.ts @@ -1,14 +1 @@ -export default ` - - - - - - - - - - - - -` +export default `` From 67a0d5b474ee1fddccc1b1536e6e2efd9070eabf Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 9 Apr 2024 10:18:24 -0600 Subject: [PATCH 48/49] Update versions for release --- docs/package.json | 6 +++--- packages/core/package.json | 2 +- packages/demo/package.json | 4 ++-- packages/injected/package.json | 2 +- packages/metamask/package.json | 4 ++-- packages/react/package.json | 4 ++-- packages/solid/package.json | 4 ++-- packages/vue/package.json | 4 ++-- yarn.lock | 8 ++++---- 9 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/package.json b/docs/package.json index 154c8908d..17bd909ea 100644 --- a/docs/package.json +++ b/docs/package.json @@ -58,7 +58,7 @@ "@web3-onboard/capsule": "^2.0.1", "@web3-onboard/cede-store": "^2.2.0", "@web3-onboard/coinbase": "^2.2.7", - "@web3-onboard/core": "^2.21.4", + "@web3-onboard/core": "^2.21.5", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.4", "@web3-onboard/fortmatic": "^2.0.19", @@ -67,12 +67,12 @@ "@web3-onboard/gas": "^2.1.8", "@web3-onboard/gnosis": "^2.1.10", "@web3-onboard/infinity-wallet": "^2.0.4", - "@web3-onboard/injected-wallets": "^2.10.13", + "@web3-onboard/injected-wallets": "^2.10.15", "@web3-onboard/keepkey": "^2.3.7", "@web3-onboard/keystone": "^2.3.7", "@web3-onboard/ledger": "^2.6.0", "@web3-onboard/magic": "^2.1.7", - "@web3-onboard/metamask": "^2.0.4-alpha.1", + "@web3-onboard/metamask": "^2.0.4", "@web3-onboard/mew-wallet": "^2.0.4", "@web3-onboard/phantom": "^2.0.3", "@web3-onboard/portis": "^2.1.7", diff --git a/packages/core/package.json b/packages/core/package.json index bf2199970..82b6b76d3 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/core", - "version": "2.21.5-alpha.1", + "version": "2.21.5", "description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/demo/package.json b/packages/demo/package.json index 9a2dd3775..56360d3f8 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -32,7 +32,7 @@ "@web3-onboard/blocto": "^2.0.1", "@web3-onboard/capsule": "2.0.1", "@web3-onboard/cede-store": "^2.2.0", - "@web3-onboard/core": "^2.21.5-alpha.1", + "@web3-onboard/core": "^2.21.5", "@web3-onboard/coinbase": "^2.2.7", "@web3-onboard/dcent": "^2.2.7", "@web3-onboard/enkrypt": "^2.0.3", @@ -47,7 +47,7 @@ "@web3-onboard/keystone": "^2.3.8", "@web3-onboard/ledger": "^2.6.0", "@web3-onboard/magic": "^2.1.6", - "@web3-onboard/metamask": "^2.0.4-alpha.1", + "@web3-onboard/metamask": "^2.0.4", "@web3-onboard/mew-wallet": "^2.0.3", "@web3-onboard/phantom": "^2.0.3", "@web3-onboard/portis": "^2.1.6", diff --git a/packages/injected/package.json b/packages/injected/package.json index f7a2f37d9..8551de0ad 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.15-alpha.1", + "version": "2.10.1", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/metamask/package.json b/packages/metamask/package.json index aa34ae7dd..66144288c 100644 --- a/packages/metamask/package.json +++ b/packages/metamask/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/metamask", - "version": "2.0.4-alpha.1", + "version": "2.0.4", "description": "MetaMask SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -60,7 +60,7 @@ "typescript": "^5.2.2" }, "dependencies": { - "@metamask/sdk": "^0.18.2", + "@metamask/sdk": "^0.18.3", "@web3-onboard/common": "^2.3.3" }, "engines": { diff --git a/packages/react/package.json b/packages/react/package.json index f53455d4e..870ece2dd 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.16-alpha.1", + "version": "2.8.16", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.5-alpha.1", + "@web3-onboard/core": "^2.21.5", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/solid/package.json b/packages/solid/package.json index 2bf87b0f4..0339b2177 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/solid", - "version": "2.0.3-alpha.1", + "version": "2.0.3", "description": "A collection of solid Composables for integrating Web3-Onboard in to a Solid project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.5-alpha.1", + "@web3-onboard/core": "^2.21.5", "solid-js": "^1.8.1" } } diff --git a/packages/vue/package.json b/packages/vue/package.json index 6f4ac088c..895f47d41 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.15-alpha.1", + "version": "2.7.15", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -62,7 +62,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.4", - "@web3-onboard/core": "^2.21.5-alpha.1", + "@web3-onboard/core": "^2.21.5", "vue-demi": "^0.12.4" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 8379f8420..ca0bee08d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3005,10 +3005,10 @@ dependencies: qr-code-styling "^1.6.0-rc.1" -"@metamask/sdk@^0.18.2": - version "0.18.2" - resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.18.2.tgz#3ecbbe62530de0046fb885e70e3de9f6ce6b641a" - integrity sha512-iLiadHCDNxPKjOEjVxmhawLm6NdRW+2Cf1mnvQgHk/xueZysruZcwd1cpV63Eya5KfGl5T7fJNUwKur5zCY05g== +"@metamask/sdk@^0.18.3": + version "0.18.3" + resolved "https://registry.yarnpkg.com/@metamask/sdk/-/sdk-0.18.3.tgz#0e29fc88633fc8d74495d7f149eb7a34a2f4b4ef" + integrity sha512-rdPJ0RjxMnikpI1uqJJDYkBE8smyM49G9ErzauBzDjdlpnkjt6TdF0Qobro8yHv/glLrECy+38BjlT3eSQTOiQ== dependencies: "@metamask/onboarding" "^1.0.1" "@metamask/providers" "^15.0.0" From 35e8884545ffd29c4dbeefb56ca14877a762335d Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 9 Apr 2024 11:24:58 -0600 Subject: [PATCH 49/49] update injected version snafu --- packages/injected/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/injected/package.json b/packages/injected/package.json index 8551de0ad..5e7a4c5dd 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/injected-wallets", - "version": "2.10.1", + "version": "2.10.15", "description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum",