From d00902f50f137178d0689676ca77c575bc51b88c Mon Sep 17 00:00:00 2001 From: Sven Date: Mon, 31 Mar 2025 10:23:50 +0200 Subject: [PATCH 1/5] improve social latency --- packages/adapters/ethers/src/client.ts | 6 +- packages/adapters/ethers5/src/client.ts | 6 +- packages/adapters/solana/src/client.ts | 3 +- .../solana/src/providers/AuthProvider.ts | 5 +- packages/adapters/wagmi/src/client.ts | 6 +- .../wagmi/src/connectors/AuthConnector.ts | 7 +- .../src/solana/SolanaTypesUtil.ts | 1 + .../src/adapters/ChainAdapterBlueprint.ts | 1 + .../appkit/src/client/appkit-base-client.ts | 5 +- packages/appkit/src/client/appkit.ts | 11 +- .../src/controllers/ConnectionController.ts | 1 + .../views/w3m-connecting-social-view/index.ts | 14 +- .../wallet-button/src/utils/ConnectorUtil.ts | 9 +- packages/wallet/src/W3mFrameProvider.ts | 49 +- packages/wallet/src/W3mFrameSchema.ts | 11 +- pnpm-lock.yaml | 1099 ++++++++--------- 16 files changed, 642 insertions(+), 592 deletions(-) diff --git a/packages/adapters/ethers/src/client.ts b/packages/adapters/ethers/src/client.ts index 36aca3fe30..fef9148641 100644 --- a/packages/adapters/ethers/src/client.ts +++ b/packages/adapters/ethers/src/client.ts @@ -334,7 +334,8 @@ export class EthersAdapter extends AdapterBlueprint { public async connect({ id, type, - chainId + chainId, + socialUri }: AdapterBlueprint.ConnectParams): Promise { const connector = this.connectors.find(c => c.id === id) const selectedProvider = connector?.provider as Provider @@ -350,7 +351,8 @@ export class EthersAdapter extends AdapterBlueprint { if (type === 'AUTH') { const { address } = await (selectedProvider as unknown as W3mFrameProvider).connect({ chainId, - preferredAccountType: OptionsController.state.defaultAccountTypes.eip155 + preferredAccountType: OptionsController.state.defaultAccountTypes.eip155, + socialUri }) accounts = [address] diff --git a/packages/adapters/ethers5/src/client.ts b/packages/adapters/ethers5/src/client.ts index 8fcd230347..5b7ec5c0fb 100644 --- a/packages/adapters/ethers5/src/client.ts +++ b/packages/adapters/ethers5/src/client.ts @@ -334,7 +334,8 @@ export class Ethers5Adapter extends AdapterBlueprint { public async connect({ id, type, - chainId + chainId, + socialUri }: AdapterBlueprint.ConnectParams): Promise { const connector = this.connectors.find(c => c.id === id) const selectedProvider = connector?.provider as Provider @@ -349,7 +350,8 @@ export class Ethers5Adapter extends AdapterBlueprint { if (type === 'AUTH') { const { address } = await (selectedProvider as unknown as W3mFrameProvider).connect({ chainId, - preferredAccountType: OptionsController.state.defaultAccountTypes.eip155 + preferredAccountType: OptionsController.state.defaultAccountTypes.eip155, + socialUri }) accounts = [address] diff --git a/packages/adapters/solana/src/client.ts b/packages/adapters/solana/src/client.ts index a2be27b070..418043daa4 100644 --- a/packages/adapters/solana/src/client.ts +++ b/packages/adapters/solana/src/client.ts @@ -239,7 +239,8 @@ export class SolanaAdapter extends AdapterBlueprint { } const address = await connector.connect({ - chainId: params.chainId as string + chainId: params.chainId as string, + socialUri: params.socialUri }) this.listenProviderEvents(connector) diff --git a/packages/adapters/solana/src/providers/AuthProvider.ts b/packages/adapters/solana/src/providers/AuthProvider.ts index 6b53e86521..bcc16dd4c1 100644 --- a/packages/adapters/solana/src/providers/AuthProvider.ts +++ b/packages/adapters/solana/src/providers/AuthProvider.ts @@ -48,10 +48,11 @@ export class AuthProvider extends ProviderEventEmitter implements SolanaProvider ) } - public async connect(params: { chainId?: string } = {}) { + public async connect(params: { chainId?: string; socialUri?: string } = {}) { const chainId = params.chainId || this.getActiveChain()?.id await this.provider.connect({ - chainId: withSolanaNamespace(chainId) + chainId: withSolanaNamespace(chainId), + socialUri: params.socialUri }) if (!this.publicKey) { diff --git a/packages/adapters/wagmi/src/client.ts b/packages/adapters/wagmi/src/client.ts index bf6be45f1c..40fbfa2f7a 100644 --- a/packages/adapters/wagmi/src/client.ts +++ b/packages/adapters/wagmi/src/client.ts @@ -509,7 +509,7 @@ export class WagmiAdapter extends AdapterBlueprint { public async connect( params: AdapterBlueprint.ConnectParams ): Promise { - const { id, provider, type, info, chainId } = params + const { id, provider, type, info, chainId, socialUri } = params const connector = this.getWagmiConnector(id) if (!connector) { @@ -523,7 +523,9 @@ export class WagmiAdapter extends AdapterBlueprint { const res = await connect(this.wagmiConfig, { connector, - chainId: chainId ? Number(chainId) : undefined + chainId: chainId ? Number(chainId) : undefined, + // @ts-expect-error socialUri is needed for auth connector but not in wagmi types + socialUri }) return { diff --git a/packages/adapters/wagmi/src/connectors/AuthConnector.ts b/packages/adapters/wagmi/src/connectors/AuthConnector.ts index e871f0bb6e..061ed6ad7d 100644 --- a/packages/adapters/wagmi/src/connectors/AuthConnector.ts +++ b/packages/adapters/wagmi/src/connectors/AuthConnector.ts @@ -38,7 +38,9 @@ export function authConnector(parameters: AuthParameters) { type: 'AUTH', chain: CommonConstantsUtil.CHAIN.EVM, - async connect(options = {}) { + async connect( + options: { chainId?: number; isReconnecting?: boolean; socialUri?: string } = {} + ) { const provider = await this.getProvider() let chainId = options.chainId @@ -58,7 +60,8 @@ export function authConnector(parameters: AuthParameters) { accounts } = await provider.connect({ chainId, - preferredAccountType: OptionsController.state.defaultAccountTypes.eip155 + preferredAccountType: OptionsController.state.defaultAccountTypes.eip155, + socialUri: options.socialUri }) currentAccounts = accounts?.map(a => a.address as Address) || [address as Address] diff --git a/packages/appkit-utils/src/solana/SolanaTypesUtil.ts b/packages/appkit-utils/src/solana/SolanaTypesUtil.ts index 907c313253..5e2bdf5e68 100644 --- a/packages/appkit-utils/src/solana/SolanaTypesUtil.ts +++ b/packages/appkit-utils/src/solana/SolanaTypesUtil.ts @@ -51,6 +51,7 @@ export interface Provider connect: (params?: { chainId?: string onUri?: ((uri: string) => void) | undefined + socialUri?: string }) => Promise disconnect: () => Promise signMessage: (message: Uint8Array) => Promise diff --git a/packages/appkit/src/adapters/ChainAdapterBlueprint.ts b/packages/appkit/src/adapters/ChainAdapterBlueprint.ts index 18a915ee26..9b4e68afcc 100644 --- a/packages/appkit/src/adapters/ChainAdapterBlueprint.ts +++ b/packages/appkit/src/adapters/ChainAdapterBlueprint.ts @@ -437,6 +437,7 @@ export namespace AdapterBlueprint { chain?: ChainNamespace chainId?: number | string rpcUrl?: string + socialUri?: string } export type ReconnectParams = ConnectParams diff --git a/packages/appkit/src/client/appkit-base-client.ts b/packages/appkit/src/client/appkit-base-client.ts index 9b15a12fe2..51ef4fa7be 100644 --- a/packages/appkit/src/client/appkit-base-client.ts +++ b/packages/appkit/src/client/appkit-base-client.ts @@ -370,7 +370,7 @@ export abstract class AppKitBaseClient { }) await this.syncWalletConnectAccount() }, - connectExternal: async ({ id, info, type, provider, chain, caipNetwork }) => { + connectExternal: async ({ id, info, type, provider, chain, caipNetwork, socialUri }) => { const activeChain = ChainController.state.activeChain as ChainNamespace const chainToUse = chain || activeChain const adapter = this.getAdapter(chainToUse) @@ -398,7 +398,8 @@ export abstract class AppKitBaseClient { chainId: caipNetwork?.id || fallbackCaipNetwork?.id, rpcUrl: caipNetwork?.rpcUrls?.default?.http?.[0] || - fallbackCaipNetwork?.rpcUrls?.default?.http?.[0] + fallbackCaipNetwork?.rpcUrls?.default?.http?.[0], + socialUri }) if (!res) { diff --git a/packages/appkit/src/client/appkit.ts b/packages/appkit/src/client/appkit.ts index 6d7fa663f6..c95c2eba80 100644 --- a/packages/appkit/src/client/appkit.ts +++ b/packages/appkit/src/client/appkit.ts @@ -272,8 +272,15 @@ export class AppKit extends AppKitBaseClient { if (socialProviderToConnect && authConnector) { this.setLoading(true, chainNamespace) - await authConnector.provider.connectSocial(resultUri) - await ConnectionController.connectExternal(authConnector, authConnector.chain) + await ConnectionController.connectExternal( + { + id: authConnector.id, + type: authConnector.type, + socialUri: resultUri + }, + authConnector.chain + ) + StorageUtil.setConnectedSocialProvider(socialProviderToConnect) StorageUtil.removeTelegramSocialProvider() diff --git a/packages/controllers/src/controllers/ConnectionController.ts b/packages/controllers/src/controllers/ConnectionController.ts index da6deb9d0f..dd729f3394 100644 --- a/packages/controllers/src/controllers/ConnectionController.ts +++ b/packages/controllers/src/controllers/ConnectionController.ts @@ -32,6 +32,7 @@ export interface ConnectExternalOptions { chain?: ChainNamespace chainId?: number | string caipNetwork?: CaipNetwork + socialUri?: string } export interface ConnectionControllerClient { diff --git a/packages/scaffold-ui/src/views/w3m-connecting-social-view/index.ts b/packages/scaffold-ui/src/views/w3m-connecting-social-view/index.ts index f16cddae1e..34f252b9c0 100644 --- a/packages/scaffold-ui/src/views/w3m-connecting-social-view/index.ts +++ b/packages/scaffold-ui/src/views/w3m-connecting-social-view/index.ts @@ -142,14 +142,18 @@ export class W3mConnectingSocialView extends LitElement { properties: { provider: this.socialProvider } }) } - await this.authConnector.provider.connectSocial(uri) + await ConnectionController.connectExternal( + { + id: this.authConnector.id, + type: this.authConnector.type, + socialUri: uri + }, + this.authConnector.chain + ) if (this.socialProvider) { StorageUtil.setConnectedSocialProvider(this.socialProvider) - await ConnectionController.connectExternal( - this.authConnector, - this.authConnector.chain - ) + EventsController.sendEvent({ type: 'track', event: 'SOCIAL_LOGIN_SUCCESS', diff --git a/packages/wallet-button/src/utils/ConnectorUtil.ts b/packages/wallet-button/src/utils/ConnectorUtil.ts index 5ff6b9b232..4717264b64 100644 --- a/packages/wallet-button/src/utils/ConnectorUtil.ts +++ b/packages/wallet-button/src/utils/ConnectorUtil.ts @@ -121,7 +121,14 @@ export const ConnectorUtil = { properties: { provider: socialProvider } }) } - await authConnector.provider.connectSocial(uri) + await ConnectionController.connectExternal( + { + id: authConnector.id, + type: authConnector.type, + socialUri: uri + }, + authConnector.chain + ) if (socialProvider) { StorageUtil.setConnectedSocialProvider(socialProvider) diff --git a/packages/wallet/src/W3mFrameProvider.ts b/packages/wallet/src/W3mFrameProvider.ts index 8a166eb55a..056bc4c4a7 100644 --- a/packages/wallet/src/W3mFrameProvider.ts +++ b/packages/wallet/src/W3mFrameProvider.ts @@ -284,21 +284,44 @@ export class W3mFrameProvider { // -- Provider Methods ------------------------------------------------ public async connect(payload?: W3mFrameTypes.Requests['AppGetUserRequest']) { - try { - const chainId = payload?.chainId || this.getLastUsedChainId() || 1 - const response = await this.appEvent<'GetUser'>({ - type: W3mFrameConstants.APP_GET_USER, - payload: { ...payload, chainId } - } as W3mFrameTypes.AppEvent) - this.setLoginSuccess(response.email) - this.setLastUsedChainId(response.chainId) + if (payload?.socialUri) { + try { + const response = await this.appEvent<'ConnectSocial'>({ + type: W3mFrameConstants.APP_CONNECT_SOCIAL, + payload: { uri: payload.socialUri, preferredAccountType: payload.preferredAccountType } + } as W3mFrameTypes.AppEvent) + + if (response.userName) { + this.setSocialLoginSuccess(response.userName) + } - this.user = response + this.setLoginSuccess(response.email) + this.setLastUsedChainId(response.chainId) - return response - } catch (error) { - this.w3mLogger?.logger.error({ error }, 'Error connecting') - throw error + this.user = response + + return response + } catch (error) { + this.w3mLogger?.logger.error({ error }, 'Error connecting social') + throw error + } + } else { + try { + const chainId = payload?.chainId || this.getLastUsedChainId() || 1 + const response = await this.appEvent<'GetUser'>({ + type: W3mFrameConstants.APP_GET_USER, + payload: { ...payload, chainId } + } as W3mFrameTypes.AppEvent) + this.setLoginSuccess(response.email) + this.setLastUsedChainId(response.chainId) + + this.user = response + + return response + } catch (error) { + this.w3mLogger?.logger.error({ error }, 'Error connecting') + throw error + } } } diff --git a/packages/wallet/src/W3mFrameSchema.ts b/packages/wallet/src/W3mFrameSchema.ts index 33ec1b8921..4ac1ba105f 100644 --- a/packages/wallet/src/W3mFrameSchema.ts +++ b/packages/wallet/src/W3mFrameSchema.ts @@ -39,10 +39,14 @@ export const GetTransactionByHashResponse = z.object({ export const AppSwitchNetworkRequest = z.object({ chainId: z.string().or(z.number()) }) export const AppConnectEmailRequest = z.object({ email: z.string().email() }) export const AppConnectOtpRequest = z.object({ otp: z.string() }) -export const AppConnectSocialRequest = z.object({ uri: z.string() }) +export const AppConnectSocialRequest = z.object({ + uri: z.string(), + preferredAccountType: z.optional(z.string()) +}) export const AppGetUserRequest = z.object({ chainId: z.optional(z.string().or(z.number())), - preferredAccountType: z.optional(z.string()) + preferredAccountType: z.optional(z.string()), + socialUri: z.optional(z.string()) }) export const AppGetSocialRedirectUriRequest = z.object({ provider: z.enum(['google', 'github', 'apple', 'facebook', 'x', 'discord']) @@ -97,7 +101,8 @@ export const FrameConnectSocialResponse = z.object({ }) ) .optional(), - userName: z.string().optional().nullable() + userName: z.string().optional().nullable(), + preferredAccountType: z.optional(z.string()) }) export const FrameUpdateEmailResponse = z.object({ action: z.enum(['VERIFY_PRIMARY_OTP', 'VERIFY_SECONDARY_OTP']) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8d7f27f51b..44c3e20fc1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -39,7 +39,7 @@ importers: version: 6.18.1(eslint@8.56.0)(typescript@5.7.3) '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@vitest/ui': specifier: 2.1.8 version: 2.1.8(vitest@2.1.9) @@ -90,7 +90,7 @@ importers: version: 0.23.0(rollup@4.37.0)(vite@5.4.12(@types/node@22.13.9)(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) apps/browser-extension: dependencies: @@ -298,7 +298,7 @@ importers: version: 8.49.0(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@14.2.25(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.94.0) '@solana/wallet-adapter-wallets': specifier: 0.19.32 - version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8) + version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(db0@0.3.1)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8) '@solana/web3.js': specifier: 1.98.0 version: 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) @@ -349,7 +349,7 @@ importers: version: 2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) wagmi: specifier: 2.14.15 - version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.56.2(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.56.2(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) devDependencies: '@types/node': specifier: 22.13.4 @@ -1457,7 +1457,7 @@ importers: version: 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-wallets': specifier: 0.19.32 - version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.8.2))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.8.2))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(db0@0.3.1)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8) '@tanstack/react-query': specifier: 5.24.8 version: 5.24.8(react@19.0.0) @@ -1534,7 +1534,7 @@ importers: version: 2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) wagmi: specifier: 2.14.15 - version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.67.1(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.67.1(react@19.0.0))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) devDependencies: '@eslint/compat': specifier: 1.2.3 @@ -1629,7 +1629,7 @@ importers: version: 2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) wagmi: specifier: 2.14.15 - version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.67.1(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.67.1(react@19.0.0))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) devDependencies: '@eslint/compat': specifier: 1.2.7 @@ -1831,7 +1831,7 @@ importers: version: 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-wallets': specifier: 0.19.32 - version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + version: 0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(db0@0.3.1)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8) vue: specifier: 3.4.3 version: 3.4.3(typescript@5.7.3) @@ -1976,7 +1976,7 @@ importers: version: 2.1.21 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@wallet-standard/features': specifier: 1.0.3 version: 1.0.3 @@ -1985,7 +1985,7 @@ importers: version: 2.19.1(db0@0.3.1)(ioredis@5.6.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/adapters/ethers: dependencies: @@ -2029,13 +2029,13 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@walletconnect/types': specifier: 2.19.1 version: 2.19.1(db0@0.3.1)(ioredis@5.6.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/adapters/ethers5: dependencies: @@ -2079,13 +2079,13 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@walletconnect/types': specifier: 2.19.1 version: 2.19.1(db0@0.3.1)(ioredis@5.6.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/adapters/polkadot: dependencies: @@ -2101,10 +2101,10 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/adapters/solana: dependencies: @@ -2172,7 +2172,7 @@ importers: version: 19.0.0 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@vue/runtime-core': specifier: 3.4.3 version: 3.4.3 @@ -2184,7 +2184,7 @@ importers: version: 19.0.0(react@19.0.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) vue: specifier: 3.4.3 version: 3.4.3(typescript@5.8.2) @@ -2240,13 +2240,13 @@ importers: version: 19.0.0 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@walletconnect/types': specifier: 2.19.1 version: 2.19.1(db0@0.3.1)(ioredis@5.6.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/appkit: dependencies: @@ -2298,7 +2298,7 @@ importers: version: 19.0.0 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) '@vue/runtime-core': specifier: 3.4.3 version: 3.4.3 @@ -2310,7 +2310,7 @@ importers: version: 19.0.0(react@19.0.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) vue: specifier: 3.x version: 3.5.13(typescript@5.8.2) @@ -2353,10 +2353,10 @@ importers: version: 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/cdn: dependencies: @@ -2455,10 +2455,10 @@ importers: version: 6.2.2 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/controllers: dependencies: @@ -2480,10 +2480,10 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) vue: specifier: 3.5.13 version: 3.5.13(typescript@5.8.2) @@ -2496,10 +2496,10 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/experimental: dependencies: @@ -2533,10 +2533,10 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/polyfills: dependencies: @@ -2574,10 +2574,10 @@ importers: version: 4.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/siwe: dependencies: @@ -2635,13 +2635,13 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) happy-dom: specifier: 15.11.7 version: 15.11.7 vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/ui: dependencies: @@ -2672,7 +2672,7 @@ importers: version: 19.0.0 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) eslint-plugin-lit: specifier: 1.11.0 version: 1.11.0(eslint@8.56.0) @@ -2687,7 +2687,7 @@ importers: version: 19.0.0(react@19.0.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/ui-new: dependencies: @@ -2718,7 +2718,7 @@ importers: version: 19.0.4(@types/react@19.0.0) '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) eslint-plugin-lit: specifier: 1.15.0 version: 1.15.0(eslint@8.56.0) @@ -2733,7 +2733,7 @@ importers: version: 19.0.0(react@19.0.0) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/wallet: dependencies: @@ -2752,13 +2752,13 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) jsdom: specifier: 24.1.0 version: 24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) packages/wallet-button: dependencies: @@ -2789,7 +2789,7 @@ importers: version: 19.0.0 '@vitest/coverage-v8': specifier: 2.1.9 - version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) + version: 2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0)) eslint-plugin-react-hooks: specifier: 5.2.0 version: 5.2.0(eslint@8.56.0) @@ -2798,7 +2798,7 @@ importers: version: 19.0.0 vitest: specifier: 2.1.9 - version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + version: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) services/id-allocation-service: dependencies: @@ -9609,8 +9609,8 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@18.19.83': - resolution: {integrity: sha512-D69JeR5SfFS5H6FLbUaS0vE4r1dGhmMBbG4Ed6BNS4wkDK8GZjsdCShT5LCN59vOHEUHnFCY9J4aclXlIphMkA==} + '@types/node@18.19.84': + resolution: {integrity: sha512-ACYy2HGcZPHxEeWTqowTF7dhXN+JU1o7Gr4b41klnn6pj2LD6rsiGqSZojMdk1Jh2ys3m76ap+ae1vvE4+5+vg==} '@types/node@22.13.4': resolution: {integrity: sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==} @@ -9671,8 +9671,8 @@ packages: '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + '@types/semver@7.7.0': + resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} '@types/send@0.17.4': resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} @@ -9789,83 +9789,83 @@ packages: '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} - '@unhead/vue@2.0.1': - resolution: {integrity: sha512-B5/MyP2HUCh6xtr/kcuEz5Es/ZlU9IQWdUOpkOGKSRgo3Fb4Clg4PuB8pjytegkA5qyeZC7HtXyerTa3JJKsqg==} + '@unhead/vue@2.0.2': + resolution: {integrity: sha512-pUGcbmPNCALOVWnQRtIjJ5ubNaZus3nHfCBDPEVwhbiLzeLF6wbhgTakwksZ1EegKNOZwRAkmVbV6i+23OYEUQ==} peerDependencies: vue: '>=3.5.13' - '@unrs/rspack-resolver-binding-darwin-arm64@1.3.0': - resolution: {integrity: sha512-EcjI0Hh2HiNOM0B9UuYH1PfLWgE6/SBQ4dKoHXWNloERfveha/n6aUZSBThtPGnJenmdfaJYXXZtqyNbWtJAFw==} + '@unrs/resolver-binding-darwin-arm64@1.3.2': + resolution: {integrity: sha512-ddnlXgRi0Fog5+7U5Q1qY62wl95Q1lB4tXQX1UIA9YHmRCHN2twaQW0/4tDVGCvTVEU3xEayU7VemEr7GcBYUw==} cpu: [arm64] os: [darwin] - '@unrs/rspack-resolver-binding-darwin-x64@1.3.0': - resolution: {integrity: sha512-3CgG+mhfudDfnaDqwEl0W1mcGTto5f5mqPyJSXcWDxrnNc7pr/p01khIgWOoOD1eCwVejmgpYvRKGBwJPwgHOQ==} + '@unrs/resolver-binding-darwin-x64@1.3.2': + resolution: {integrity: sha512-tnl9xoEeg503jis+LW5cuq4hyLGQyqaoBL8VdPSqcewo/FL1C8POHbzl+AL25TidWYJD+R6bGUTE381kA1sT9w==} cpu: [x64] os: [darwin] - '@unrs/rspack-resolver-binding-freebsd-x64@1.3.0': - resolution: {integrity: sha512-ww8BwryDrpXlSajwSIEUXEv8oKDkw04L2ke3hxjaxWohuBV8pAQie9XBS4yQTyREuL2ypcqbARfoCXJJzVp7ig==} + '@unrs/resolver-binding-freebsd-x64@1.3.2': + resolution: {integrity: sha512-zyPn9LFCCjhKPeCtECZaiMUgkYN/VpLb4a9Xv7QriJmTaQxsuDtXqOHifrzUXIhorJTyS+5MOKDuNL0X9I4EHA==} cpu: [x64] os: [freebsd] - '@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.3.0': - resolution: {integrity: sha512-WyhonI1mkuAlnG2iaMjk7uy4aWX+FWi2Au8qCCwj57wVHbAEfrN6xN2YhzbrsCC+ciumKhj5c01MqwsnYDNzWQ==} + '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2': + resolution: {integrity: sha512-UWx56Wh59Ro69fe+Wfvld4E1n9KG0e3zeouWLn8eSasyi/yVH/7ZW3CLTVFQ81oMKSpXwr5u6RpzttDXZKiO4g==} cpu: [arm] os: [linux] - '@unrs/rspack-resolver-binding-linux-arm-musleabihf@1.3.0': - resolution: {integrity: sha512-+uCP6hIAMVWHKQnLZHESJ1U1TFVGLR3FTeaS2A4zB0k8w+IbZlWwl9FiBUOwOiqhcCCyKiUEifgnYFNGpxi3pw==} + '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2': + resolution: {integrity: sha512-VYGQXsOEJtfaoY2fOm8Z9ii5idFaHFYlrq3yMFZPaFKo8ufOXYm8hnfru7qetbM9MX116iWaPC0ZX5sK+1Dr+g==} cpu: [arm] os: [linux] - '@unrs/rspack-resolver-binding-linux-arm64-gnu@1.3.0': - resolution: {integrity: sha512-p+s/Wp8rf75Qqs2EPw4HC0xVLLW+/60MlVAsB7TYLoeg1e1CU/QCis36FxpziLS0ZY2+wXdTnPUxr+5kkThzwQ==} + '@unrs/resolver-binding-linux-arm64-gnu@1.3.2': + resolution: {integrity: sha512-3zP420zxJfYPD1rGp2/OTIBxF8E3+/6VqCG+DEO6kkDgBiloa7Y8pw1o7N9BfgAC+VC8FPZsFXhV2lpx+lLRMQ==} cpu: [arm64] os: [linux] - '@unrs/rspack-resolver-binding-linux-arm64-musl@1.3.0': - resolution: {integrity: sha512-cZEL9jmZ2kAN53MEk+fFCRJM8pRwOEboDn7sTLjZW+hL6a0/8JNfHP20n8+MBDrhyD34BSF4A6wPCj/LNhtOIQ==} + '@unrs/resolver-binding-linux-arm64-musl@1.3.2': + resolution: {integrity: sha512-ZWjSleUgr88H4Kei7yT4PlPqySTuWN1OYDDcdbmMCtLWFly3ed+rkrcCb3gvqXdDbYrGOtzv3g2qPEN+WWNv5Q==} cpu: [arm64] os: [linux] - '@unrs/rspack-resolver-binding-linux-ppc64-gnu@1.3.0': - resolution: {integrity: sha512-IOeRhcMXTNlk2oApsOozYVcOHu4t1EKYKnTz4huzdPyKNPX0Y9C7X8/6rk4aR3Inb5s4oVMT9IVKdgNXLcpGAQ==} + '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2': + resolution: {integrity: sha512-p+5OvYJ2UOlpjes3WfBlxyvQok2u26hLyPxLFHkYlfzhZW0juhvBf/tvewz1LDFe30M7zL9cF4OOO5dcvtk+cw==} cpu: [ppc64] os: [linux] - '@unrs/rspack-resolver-binding-linux-s390x-gnu@1.3.0': - resolution: {integrity: sha512-op54XrlEbhgVRCxzF1pHFcLamdOmHDapwrqJ9xYRB7ZjwP/zQCKzz/uAsSaAlyQmbSi/PXV7lwfca4xkv860/Q==} + '@unrs/resolver-binding-linux-s390x-gnu@1.3.2': + resolution: {integrity: sha512-yweY7I6SqNn3kvj6vE4PQRo7j8Oz6+NiUhmgciBNAUOuI3Jq0bnW29hbHJdxZRSN1kYkQnSkbbA1tT8VnK816w==} cpu: [s390x] os: [linux] - '@unrs/rspack-resolver-binding-linux-x64-gnu@1.3.0': - resolution: {integrity: sha512-orbQF7sN02N/b9QF8Xp1RBO5YkfI+AYo9VZw0H2Gh4JYWSuiDHjOPEeFPDIRyWmXbQJuiVNSB+e1pZOjPPKIyg==} + '@unrs/resolver-binding-linux-x64-gnu@1.3.2': + resolution: {integrity: sha512-fNIvtzJcGN9hzWTIayrTSk2+KHQrqKbbY+I88xMVMOFV9t4AXha4veJdKaIuuks+2JNr6GuuNdsL7+exywZ32w==} cpu: [x64] os: [linux] - '@unrs/rspack-resolver-binding-linux-x64-musl@1.3.0': - resolution: {integrity: sha512-kpjqjIAC9MfsjmlgmgeC8U9gZi6g/HTuCqpI7SBMjsa7/9MvBaQ6TJ7dtnsV/+DXvfJ2+L5teBBXG+XxfpvIFA==} + '@unrs/resolver-binding-linux-x64-musl@1.3.2': + resolution: {integrity: sha512-OaFEw8WAjiwBGxutQgkWhoAGB5BQqZJ8Gjt/mW+m6DWNjimcxU22uWCuEtfw1CIwLlKPOzsgH0429fWmZcTGkg==} cpu: [x64] os: [linux] - '@unrs/rspack-resolver-binding-wasm32-wasi@1.3.0': - resolution: {integrity: sha512-JAg0hY3kGsCPk7Jgh16yMTBZ6VEnoNR1DFZxiozjKwH+zSCfuDuM5S15gr50ofbwVw9drobIP2TTHdKZ15MJZQ==} + '@unrs/resolver-binding-wasm32-wasi@1.3.2': + resolution: {integrity: sha512-u+sumtO7M0AGQ9bNQrF4BHNpUyxo23FM/yXZfmVAicTQ+mXtG06O7pm5zQUw3Mr4jRs2I84uh4O0hd8bdouuvQ==} engines: {node: '>=14.0.0'} cpu: [wasm32] - '@unrs/rspack-resolver-binding-win32-arm64-msvc@1.3.0': - resolution: {integrity: sha512-h5N83i407ntS3ndDkhT/3vC3Dj8oP0BIwMtekETNJcxk7IuWccSXifzCEhdxxu/FOX4OICGIHdHrxf5fJuAjfw==} + '@unrs/resolver-binding-win32-arm64-msvc@1.3.2': + resolution: {integrity: sha512-ZAJKy95vmDIHsRFuPNqPQRON8r2mSMf3p9DoX+OMOhvu2c8OXGg8MvhGRf3PNg45ozRrPdXDnngURKgaFfpGoQ==} cpu: [arm64] os: [win32] - '@unrs/rspack-resolver-binding-win32-ia32-msvc@1.3.0': - resolution: {integrity: sha512-9QH7Gq3dRL8Q/D6PGS3Dwtjx9yw6kbCEu6iBkAUhFTDAuVUk2L0H/5NekRVA13AQaSc3OsEUKt60EOn/kq5Dug==} + '@unrs/resolver-binding-win32-ia32-msvc@1.3.2': + resolution: {integrity: sha512-nQG4YFAS2BLoKVQFK/FrWJvFATI5DQUWQrcPcsWG9Ve5BLLHZuPOrJ2SpAJwLXQrRv6XHSFAYGI8wQpBg/CiFA==} cpu: [ia32] os: [win32] - '@unrs/rspack-resolver-binding-win32-x64-msvc@1.3.0': - resolution: {integrity: sha512-IYuXJCuwBOVV0H73l6auaZwtAPHjCPBJkxd4Co0yO6dSjDM5Na5OceaxhUmJLZ3z8kuEGhTYWIHH7PchGztnlg==} + '@unrs/resolver-binding-win32-x64-msvc@1.3.2': + resolution: {integrity: sha512-XBWpUP0mHya6yGBwNefhyEa6V7HgYKCxEAY4qhTm/PcAQyBPNmjj97VZJOJkVdUsyuuii7xmq0pXWX/c2aToHQ==} cpu: [x64] os: [win32] @@ -10599,8 +10599,8 @@ packages: alien-signals@0.2.2: resolution: {integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==} - alien-signals@1.0.8: - resolution: {integrity: sha512-5Tnk+Q3E7b4NgTgxAyoggQHeEzUicxgiZhcFvBQhM4catV+wFDTmoHPectL7FL5YzkCjz4zhB/y00Q7n3vwVGQ==} + alien-signals@1.0.9: + resolution: {integrity: sha512-2dQYgGZHrW4pOYv0BWiw4cH/ElhwmLnQDcj/fdnRRF2OO3YBqgJXSleI1EbbXdQsuC5oCvr6+VKAOEElsmcx4Q==} ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} @@ -12063,8 +12063,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.124: - resolution: {integrity: sha512-riELkpDUqBi00gqreV3RIGoowxGrfueEKBd6zPdOk/I8lvuFpBGNkYoHof3zUHbiTBsIU8oxdIIL/WNrAG1/7A==} + electron-to-chromium@1.5.128: + resolution: {integrity: sha512-bo1A4HH/NS522Ws0QNFIzyPcyUUNV/yyy70Ho1xqfGYzPUme2F/xr4tlEOuM6/A538U1vDA7a4XfCd1CKRegKQ==} elliptic@6.6.1: resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} @@ -12278,8 +12278,8 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-import-resolver-typescript@3.9.1: - resolution: {integrity: sha512-euxa5rTGqHeqVxmOHT25hpk58PxkQ4mNoX6Yun4ooGaCHAxOCojJYNvjmyeOQxj/LyW+3fulH0+xtk+p2kPPTw==} + eslint-import-resolver-typescript@3.10.0: + resolution: {integrity: sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -12734,8 +12734,8 @@ packages: flatted@3.3.3: resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} - flow-parser@0.265.3: - resolution: {integrity: sha512-YH50TTYgnzDnuaZlAxLYQ0UZtXSbbizMO3OCpoY8obvLReJmvQ5UUW22efsC3SZJmze/tATfQ0PtkKul2XwWBw==} + flow-parser@0.266.0: + resolution: {integrity: sha512-FK3Zlmnrp5lwNQZ8Ul+m0vVwnA4/Ww84+HzXKCgTmO/1aBoZcQS5f2PJfBMaGYKH2HYIm/l8qpNhw0Wxzb8x5g==} engines: {node: '>=0.4.0'} focus-lock@1.3.6: @@ -13409,8 +13409,8 @@ packages: resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} engines: {node: '>= 0.4'} - is-bun-module@1.3.0: - resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} @@ -14112,7 +14112,6 @@ packages: lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. lodash.isinteger@4.0.4: resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} @@ -14692,8 +14691,8 @@ packages: '@types/node': optional: true - nwsapi@2.2.19: - resolution: {integrity: sha512-94bcyI3RsqiZufXjkr3ltkI86iEl+I7uiHVDtcq9wJUTwYQJ5odHDeSzkkrRzi80jJ8MaeZgqKjH1bAWAFw9bA==} + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} nypm@0.5.4: resolution: {integrity: sha512-X0SNNrZiGU8/e/zAB7sCTtdxWTMSIO73q+xuKgglm2Yvzwlo8UoC5FNySQFCvl84uPaeADkqHUZUkWy4aH4xOA==} @@ -15121,8 +15120,8 @@ packages: pinpoint@1.1.0: resolution: {integrity: sha512-+04FTD9x7Cls2rihLlo57QDCcHoLBGn5Dk51SwtFBWkUWLxZaBXyNVpCw1S+atvE7GmnFjeaRZ0WLq3UYuqAdg==} - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} engines: {node: '>= 6'} pkg-dir@3.0.0: @@ -16050,9 +16049,6 @@ packages: rrweb-cssom@0.8.0: resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} - rspack-resolver@1.3.0: - resolution: {integrity: sha512-az/PLDwa1xijNv4bAFBS8mtqqJC1Y3lVyFag4cuyIUOHq/ft5kSZlHbqYaLZLpsQtPWv4ZGDo5ycySKJzUvU/A==} - rtcpeerconnection-shim@1.2.15: resolution: {integrity: sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw==} engines: {node: '>=6.0.0', npm: '>=3.10.0'} @@ -17115,8 +17111,8 @@ packages: unenv@2.0.0-rc.15: resolution: {integrity: sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==} - unhead@2.0.1: - resolution: {integrity: sha512-OiZ/3lQTbcdSUwSVtIK9U+cmf9uJYVdDA0BbY7rFcdUv1YFdyCWb+QmOzFyMoUNbwkqOLUqDQISWegXJXjCjSA==} + unhead@2.0.2: + resolution: {integrity: sha512-1pcK/rSA70sezpdgmupQPd/yrul8pVFJRwMvWjEthbsXoTXMqjNQlV7NBXWeWt5r2uje1lZJsvRTHF7IvdOhcg==} unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} @@ -17141,8 +17137,8 @@ packages: unidragger@3.0.1: resolution: {integrity: sha512-RngbGSwBFmqGBWjkaH+yB677uzR95blSQyxq6hYbrQCejH3Mx1nm8DVOuh3M9k2fQyTstWUG5qlgCnNqV/9jVw==} - unimport@4.1.2: - resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==} + unimport@4.1.3: + resolution: {integrity: sha512-H+IVJ7rAkE3b+oC8rSJ2FsPaVsweeMC8eKZc+C6Mz7+hxDF45AnrY/tVCNRBvzMwWNcJEV67WdAVcal27iMjOw==} engines: {node: '>=18.12.0'} union@0.5.0: @@ -17207,6 +17203,9 @@ packages: resolution: {integrity: sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==} engines: {node: '>=18.12.0'} + unrs-resolver@1.3.2: + resolution: {integrity: sha512-ZKQBC351Ubw0PY8xWhneIfb6dygTQeUHtCcNGd0QB618zabD/WbFMYdRyJ7xeVT+6G82K5v/oyZO0QSHFtbIuw==} + unstorage@1.15.0: resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==} peerDependencies: @@ -19354,7 +19353,7 @@ snapshots: clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 - pirates: 4.0.6 + pirates: 4.0.7 source-map-support: 0.5.21 '@babel/runtime@7.26.9': @@ -21759,7 +21758,7 @@ snapshots: jest-regex-util: 29.6.3 jest-util: 29.7.0 micromatch: 4.0.8 - pirates: 4.0.6 + pirates: 4.0.7 slash: 3.0.0 write-file-atomic: 4.0.2 transitivePeerDependencies: @@ -21774,69 +21773,7 @@ snapshots: '@types/yargs': 17.0.33 chalk: 4.1.2 - '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': - dependencies: - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) - bs58: 5.0.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - ioredis - - typescript - - uploadthing - - utf-8-validate - - zod - - '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)': - dependencies: - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) - bs58: 5.0.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - ioredis - - typescript - - uploadthing - - utf-8-validate - - zod - - '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@walletconnect/qrcode-modal': 1.8.0 @@ -21867,12 +21804,12 @@ snapshots: - utf-8-validate - zod - '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)': + '@jnwng/walletconnect-solana@0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) bs58: 5.0.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -22641,7 +22578,7 @@ snapshots: std-env: 3.8.1 ufo: 1.5.4 unctx: 2.4.1 - unimport: 4.1.2 + unimport: 4.1.3 untyped: 2.0.0 transitivePeerDependencies: - magicast @@ -22668,7 +22605,7 @@ snapshots: std-env: 3.8.1 ufo: 1.5.4 unctx: 2.4.1 - unimport: 4.1.2 + unimport: 4.1.3 untyped: 2.0.0 transitivePeerDependencies: - magicast @@ -26788,9 +26725,9 @@ snapshots: '@solana/wallet-standard-util': 1.1.2 '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@solana/wallet-adapter-base': 0.9.24(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -26817,67 +26754,9 @@ snapshots: - utf-8-validate - zod - '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)': - dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-base': 0.9.24(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - ioredis - - typescript - - uploadthing - - utf-8-validate - - zod - - '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': - dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) - '@solana/wallet-adapter-base': 0.9.24(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - ioredis - - typescript - - uploadthing - - utf-8-validate - - zod - - '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)': + '@solana/wallet-adapter-walletconnect@0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10) + '@jnwng/walletconnect-solana': 0.2.0(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@solana/wallet-adapter-base': 0.9.24(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -26904,84 +26783,7 @@ snapshots: - utf-8-validate - zod - '@solana/wallet-adapter-wallets@0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8)': - dependencies: - '@solana/wallet-adapter-alpha': 0.1.11(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-avana': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-bitkeep': 0.3.21(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-bitpie': 0.5.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-clover': 0.4.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coin98': 0.5.21(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coinbase': 0.1.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coinhub': 0.3.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-fractal': 0.1.9(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@solana/wallet-adapter-huobi': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-hyperpay': 0.1.15(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-keystone': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-krystal': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-ledger': 0.9.26(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-mathwallet': 0.9.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-neko': 0.2.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-nightly': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-nufi': 0.1.18(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-onto': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-particle': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0) - '@solana/wallet-adapter-phantom': 0.9.25(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-safepal': 0.5.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-saifu': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-salmon': 0.1.15(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-sky': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-solflare': 0.6.29(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-solong': 0.9.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-spot': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-tokenary': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-tokenpocket': 0.4.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-torus': 0.11.29(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-trezor': 0.1.3(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-trust': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-unsafe-burner': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-walletconnect': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) - '@solana/wallet-adapter-xdefi': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@babel/runtime' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@sentry/types' - - '@solana/sysvars' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bs58 - - bufferutil - - db0 - - encoding - - expo-constants - - expo-localization - - fastestsmallesttextencoderdecoder - - ioredis - - react - - react-dom - - react-native - - supports-color - - tslib - - typescript - - uploadthing - - utf-8-validate - - ws - - zod - - '@solana/wallet-adapter-wallets@0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + '@solana/wallet-adapter-wallets@0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(db0@0.3.1)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.23.8)': dependencies: '@solana/wallet-adapter-alpha': 0.1.11(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-avana': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) @@ -27017,7 +26819,7 @@ snapshots: '@solana/wallet-adapter-trezor': 0.1.3(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(tslib@2.8.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-trust': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-unsafe-burner': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-walletconnect': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-walletconnect': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@solana/wallet-adapter-xdefi': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -27135,83 +26937,6 @@ snapshots: - ws - zod - '@solana/wallet-adapter-wallets@0.19.32(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.8.2))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tslib@2.8.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))': - dependencies: - '@solana/wallet-adapter-alpha': 0.1.11(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-avana': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-bitkeep': 0.3.21(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-bitpie': 0.5.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-clover': 0.4.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coin98': 0.5.21(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coinbase': 0.1.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-coinhub': 0.3.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-fractal': 0.1.9(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@solana/wallet-adapter-huobi': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-hyperpay': 0.1.15(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-keystone': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-krystal': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-ledger': 0.9.26(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-mathwallet': 0.9.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-neko': 0.2.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-nightly': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-nufi': 0.1.18(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-onto': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-particle': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bs58@6.0.0) - '@solana/wallet-adapter-phantom': 0.9.25(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-safepal': 0.5.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-saifu': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-salmon': 0.1.15(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-sky': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-solflare': 0.6.29(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-solong': 0.9.19(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-spot': 0.1.16(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-tokenary': 0.1.13(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-tokenpocket': 0.4.20(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-torus': 0.11.29(@babel/runtime@7.26.9)(@sentry/types@7.119.1)(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-trezor': 0.1.3(@solana/sysvars@2.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.8.2))(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(tslib@2.8.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-trust': 0.1.14(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-unsafe-burner': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-walletconnect': 0.1.17(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-xdefi': 0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - '@solana/web3.js': 1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@babel/runtime' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@sentry/types' - - '@solana/sysvars' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bs58 - - bufferutil - - db0 - - encoding - - expo-constants - - expo-localization - - fastestsmallesttextencoderdecoder - - ioredis - - react - - react-dom - - react-native - - supports-color - - tslib - - typescript - - uploadthing - - utf-8-validate - - ws - - zod - '@solana/wallet-adapter-xdefi@0.1.8(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))': dependencies: '@solana/wallet-adapter-base': 0.9.24(@solana/web3.js@1.98.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) @@ -27647,7 +27372,7 @@ snapshots: '@storybook/node-logger': 7.6.20 '@storybook/telemetry': 7.6.20 '@storybook/types': 7.6.20 - '@types/semver': 7.5.8 + '@types/semver': 7.7.0 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 @@ -27737,7 +27462,7 @@ snapshots: '@storybook/node-logger': 7.6.20 '@storybook/types': 7.6.20 '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.83 + '@types/node': 18.19.84 '@types/node-fetch': 2.6.12 '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 @@ -27766,7 +27491,7 @@ snapshots: '@storybook/node-logger': 7.6.7 '@storybook/types': 7.6.7 '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.83 + '@types/node': 18.19.84 '@types/node-fetch': 2.6.12 '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 @@ -27815,9 +27540,9 @@ snapshots: '@storybook/telemetry': 7.6.20 '@storybook/types': 7.6.20 '@types/detect-port': 1.3.5 - '@types/node': 18.19.83 + '@types/node': 18.19.84 '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.8 + '@types/semver': 7.7.0 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.5 @@ -27863,9 +27588,9 @@ snapshots: '@storybook/telemetry': 7.6.7 '@storybook/types': 7.6.7 '@types/detect-port': 1.3.5 - '@types/node': 18.19.83 + '@types/node': 18.19.84 '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.8 + '@types/semver': 7.7.0 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.5 @@ -29058,7 +28783,7 @@ snapshots: '@types/node@12.20.55': {} - '@types/node@18.19.83': + '@types/node@18.19.84': dependencies: undici-types: 5.26.5 @@ -29122,7 +28847,7 @@ snapshots: '@types/resolve@1.20.2': {} - '@types/semver@7.5.8': {} + '@types/semver@7.7.0': {} '@types/send@0.17.4': dependencies: @@ -29251,7 +28976,7 @@ snapshots: dependencies: '@eslint-community/eslint-utils': 4.5.1(eslint@8.56.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 + '@types/semver': 7.7.0 '@typescript-eslint/scope-manager': 6.18.1 '@typescript-eslint/types': 6.18.1 '@typescript-eslint/typescript-estree': 6.18.1(typescript@5.7.3) @@ -29268,64 +28993,64 @@ snapshots: '@ungap/structured-clone@1.3.0': {} - '@unhead/vue@2.0.1(vue@3.5.13(typescript@5.7.3))': + '@unhead/vue@2.0.2(vue@3.5.13(typescript@5.7.3))': dependencies: hookable: 5.5.3 - unhead: 2.0.1 + unhead: 2.0.2 vue: 3.5.13(typescript@5.7.3) optional: true - '@unhead/vue@2.0.1(vue@3.5.13(typescript@5.8.2))': + '@unhead/vue@2.0.2(vue@3.5.13(typescript@5.8.2))': dependencies: hookable: 5.5.3 - unhead: 2.0.1 + unhead: 2.0.2 vue: 3.5.13(typescript@5.8.2) - '@unrs/rspack-resolver-binding-darwin-arm64@1.3.0': + '@unrs/resolver-binding-darwin-arm64@1.3.2': optional: true - '@unrs/rspack-resolver-binding-darwin-x64@1.3.0': + '@unrs/resolver-binding-darwin-x64@1.3.2': optional: true - '@unrs/rspack-resolver-binding-freebsd-x64@1.3.0': + '@unrs/resolver-binding-freebsd-x64@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-arm-gnueabihf@1.3.0': + '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-arm-musleabihf@1.3.0': + '@unrs/resolver-binding-linux-arm-musleabihf@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-arm64-gnu@1.3.0': + '@unrs/resolver-binding-linux-arm64-gnu@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-arm64-musl@1.3.0': + '@unrs/resolver-binding-linux-arm64-musl@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-ppc64-gnu@1.3.0': + '@unrs/resolver-binding-linux-ppc64-gnu@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-s390x-gnu@1.3.0': + '@unrs/resolver-binding-linux-s390x-gnu@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-x64-gnu@1.3.0': + '@unrs/resolver-binding-linux-x64-gnu@1.3.2': optional: true - '@unrs/rspack-resolver-binding-linux-x64-musl@1.3.0': + '@unrs/resolver-binding-linux-x64-musl@1.3.2': optional: true - '@unrs/rspack-resolver-binding-wasm32-wasi@1.3.0': + '@unrs/resolver-binding-wasm32-wasi@1.3.2': dependencies: '@napi-rs/wasm-runtime': 0.2.7 optional: true - '@unrs/rspack-resolver-binding-win32-arm64-msvc@1.3.0': + '@unrs/resolver-binding-win32-arm64-msvc@1.3.2': optional: true - '@unrs/rspack-resolver-binding-win32-ia32-msvc@1.3.0': + '@unrs/resolver-binding-win32-ia32-msvc@1.3.2': optional: true - '@unrs/rspack-resolver-binding-win32-x64-msvc@1.3.0': + '@unrs/resolver-binding-win32-x64-msvc@1.3.2': optional: true '@vanilla-extract/babel-plugin-debug-ids@1.2.0': @@ -29514,7 +29239,7 @@ snapshots: vue: 3.5.13(typescript@5.7.3) optional: true - '@vitest/coverage-v8@2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0))': + '@vitest/coverage-v8@2.1.9(vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -29528,7 +29253,7 @@ snapshots: std-env: 3.8.1 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + vitest: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) transitivePeerDependencies: - supports-color @@ -29579,7 +29304,7 @@ snapshots: sirv: 3.0.1 tinyglobby: 0.2.12 tinyrainbow: 1.2.0 - vitest: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) + vitest: 2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0) '@vitest/utils@2.1.8': dependencies: @@ -29803,7 +29528,7 @@ snapshots: '@vue/compiler-dom': 3.5.13 '@vue/compiler-vue2': 2.7.16 '@vue/shared': 3.5.13 - alien-signals: 1.0.8 + alien-signals: 1.0.9 minimatch: 9.0.5 muggle-string: 0.4.1 path-browserify: 1.0.1 @@ -29870,6 +29595,45 @@ snapshots: '@vue/shared@3.5.13': {} + '@wagmi/connectors@5.7.11(@types/react@19.0.0)(@wagmi/core@2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@coinbase/wallet-sdk': 4.3.0 + '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)) + '@walletconnect/ethereum-provider': 2.19.1(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.7.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - supports-color + - uploadthing + - utf-8-validate + - zod + '@wagmi/connectors@5.7.11(@types/react@19.0.0)(@wagmi/core@2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: '@coinbase/wallet-sdk': 4.3.0 @@ -29987,6 +29751,45 @@ snapshots: - utf-8-validate - zod + '@wagmi/connectors@5.7.11(@wagmi/core@2.16.7(@tanstack/query-core@5.67.1)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@coinbase/wallet-sdk': 4.3.0 + '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.5(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)) + '@walletconnect/ethereum-provider': 2.19.1(@types/react@19.0.0)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.8.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - supports-color + - uploadthing + - utf-8-validate + - zod + '@wagmi/connectors@5.7.8(@types/react@19.0.0)(@wagmi/core@2.16.5(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: '@coinbase/wallet-sdk': 4.3.0 @@ -30397,68 +30200,108 @@ snapshots: - utf-8-validate - zod - '@walletconnect/core@2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/core@2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/environment@1.0.1': dependencies: - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-provider': 1.0.14 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.11 - '@walletconnect/relay-auth': 1.1.0 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10) - '@walletconnect/window-getters': 1.0.1 - es-toolkit: 1.33.0 - events: 3.3.0 - uint8arrays: 3.1.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@deno/kv' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - ioredis - - typescript - - uploadthing - - utf-8-validate - - zod + tslib: 1.14.1 - '@walletconnect/core@2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@walletconnect/ethereum-provider@2.17.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.11 - '@walletconnect/relay-auth': 1.1.0 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) - '@walletconnect/window-getters': 1.0.1 - es-toolkit: 1.33.0 + '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) + '@walletconnect/sign-client': 2.17.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.17.0(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.17.0(db0@0.3.1)(ioredis@5.6.0) events: 3.3.0 - uint8arrays: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -30471,33 +30314,31 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@types/react' - '@upstash/redis' - '@vercel/blob' - '@vercel/kv' - aws4fetch - bufferutil - db0 + - encoding - ioredis - - typescript + - react - uploadthing - utf-8-validate - - zod - '@walletconnect/environment@1.0.1': - dependencies: - tslib: 1.14.1 - - '@walletconnect/ethereum-provider@2.17.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.18.0-canary-ak-8(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: + '@reown/appkit': 1.6.7-core-2.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) - '@walletconnect/sign-client': 2.17.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.17.0(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.17.0(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/sign-client': 2.18.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.18.0(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/universal-provider': 2.18.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.18.0(db0@0.3.1)(ioredis@5.6.0) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -30521,12 +30362,14 @@ snapshots: - encoding - ioredis - react + - typescript - uploadthing - utf-8-validate + - zod - '@walletconnect/ethereum-provider@2.18.0-canary-ak-8(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@walletconnect/ethereum-provider@2.18.0-canary-ak-8(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@reown/appkit': 1.6.7-core-2.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@reown/appkit': 1.6.7-core-2.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 @@ -30564,18 +30407,18 @@ snapshots: - utf-8-validate - zod - '@walletconnect/ethereum-provider@2.18.0-canary-ak-8(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@walletconnect/ethereum-provider@2.19.1(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit': 1.6.7-core-2.0(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/sign-client': 2.18.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.18.0(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/universal-provider': 2.18.0(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.18.0(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -30604,7 +30447,7 @@ snapshots: - utf-8-validate - zod - '@walletconnect/ethereum-provider@2.19.1(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.19.1(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 @@ -30612,10 +30455,10 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) - '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -30692,7 +30535,7 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) @@ -30732,7 +30575,7 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/modal': 2.7.0(@types/react@19.0.0)(react@19.0.0) - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) @@ -31119,6 +30962,76 @@ snapshots: - utf-8-validate - zod + '@walletconnect/sign-client@2.19.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@walletconnect/core': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/sign-client@2.19.1(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@walletconnect/core': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + '@walletconnect/time@1.0.2': dependencies: tslib: 1.14.1 @@ -31445,7 +31358,7 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) es-toolkit: 1.33.0 @@ -31484,7 +31397,7 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@walletconnect/types': 2.19.1(db0@0.3.1)(ioredis@5.6.0) '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) es-toolkit: 1.33.0 @@ -32084,7 +31997,7 @@ snapshots: alien-signals@0.2.2: {} - alien-signals@1.0.8: {} + alien-signals@1.0.9: {} ansi-colors@4.1.3: {} @@ -32626,7 +32539,7 @@ snapshots: browserslist@4.24.4: dependencies: caniuse-lite: 1.0.30001707 - electron-to-chromium: 1.5.124 + electron-to-chromium: 1.5.128 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.24.4) @@ -33690,7 +33603,7 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.124: {} + electron-to-chromium@1.5.128: {} elliptic@6.6.1: dependencies: @@ -34070,8 +33983,8 @@ snapshots: '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.7.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.9.1)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@8.56.0) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.56.0) eslint-plugin-react: 7.37.4(eslint@8.56.0) eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.56.0) @@ -34094,33 +34007,33 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0)(eslint@8.56.0): + eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0)(eslint@8.56.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0 eslint: 8.56.0 get-tsconfig: 4.10.0 - is-bun-module: 1.3.0 - rspack-resolver: 1.3.0 + is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.12 + unrs-resolver: 1.3.2 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.9.1)(eslint@8.56.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@8.56.0) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0)(eslint@8.56.0))(eslint@8.56.0): + eslint-module-utils@2.12.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.7.3) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@8.56.0) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.9.1)(eslint@8.56.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@8.56.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -34131,7 +34044,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0)(eslint@8.56.0))(eslint@8.56.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.7.3))(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -34797,7 +34710,7 @@ snapshots: flatted@3.3.3: {} - flow-parser@0.265.3: {} + flow-parser@0.266.0: {} focus-lock@1.3.6: dependencies: @@ -35538,7 +35451,7 @@ snapshots: call-bound: 1.0.4 has-tostringtag: 1.0.2 - is-bun-module@1.3.0: + is-bun-module@2.0.0: dependencies: semver: 7.7.1 @@ -35902,7 +35815,7 @@ snapshots: '@babel/register': 7.25.9(@babel/core@7.26.10) babel-core: 7.0.0-bridge.0(@babel/core@7.26.10) chalk: 4.1.2 - flow-parser: 0.265.3 + flow-parser: 0.266.0 graceful-fs: 4.2.11 micromatch: 4.0.8 neo-async: 2.6.2 @@ -35925,7 +35838,7 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.19 + nwsapi: 2.2.20 parse5: 7.2.1 rrweb-cssom: 0.7.1 saxes: 6.0.0 @@ -36807,7 +36720,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.4.1 unenv: 2.0.0-rc.15 - unimport: 4.1.2 + unimport: 4.1.3 unplugin-utils: 0.2.4 unstorage: 1.15.0(db0@0.3.1)(idb-keyval@6.2.1)(ioredis@5.6.0) untyped: 2.0.0 @@ -36963,7 +36876,7 @@ snapshots: '@nuxt/telemetry': 2.6.6(magicast@0.3.5) '@nuxt/vite-builder': 3.16.0(@types/node@22.13.9)(eslint@8.56.0)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(terser@5.39.0)(typescript@5.8.2)(vue-tsc@2.2.8(typescript@5.8.2))(vue@3.5.13(typescript@5.8.2))(yaml@2.7.0) '@oxc-parser/wasm': 0.56.5 - '@unhead/vue': 2.0.1(vue@3.5.13(typescript@5.8.2)) + '@unhead/vue': 2.0.2(vue@3.5.13(typescript@5.8.2)) '@vue/shared': 3.5.13 c12: 3.0.2(magicast@0.3.5) chokidar: 4.0.3 @@ -37009,7 +36922,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.4.1 unenv: 2.0.0-rc.15 - unimport: 4.1.2 + unimport: 4.1.3 unplugin: 2.2.2 unplugin-vue-router: 0.12.0(vue-router@4.5.0(vue@3.5.13(typescript@5.8.2)))(vue@3.5.13(typescript@5.8.2)) unstorage: 1.15.0(db0@0.3.1)(idb-keyval@6.2.1)(ioredis@5.6.0) @@ -37084,7 +36997,7 @@ snapshots: '@nuxt/telemetry': 2.6.6(magicast@0.3.5) '@nuxt/vite-builder': 3.16.0(@types/node@22.13.9)(eslint@8.56.0)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.37.0)(terser@5.39.0)(typescript@5.8.2)(vue-tsc@2.2.8(typescript@5.8.2))(vue@3.5.13(typescript@5.8.2))(yaml@2.7.0) '@oxc-parser/wasm': 0.56.5 - '@unhead/vue': 2.0.1(vue@3.5.13(typescript@5.8.2)) + '@unhead/vue': 2.0.2(vue@3.5.13(typescript@5.8.2)) '@vue/shared': 3.5.13 c12: 3.0.2(magicast@0.3.5) chokidar: 4.0.3 @@ -37130,7 +37043,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.4.1 unenv: 2.0.0-rc.15 - unimport: 4.1.2 + unimport: 4.1.3 unplugin: 2.2.2 unplugin-vue-router: 0.12.0(vue-router@4.5.0(vue@3.5.13(typescript@5.8.2)))(vue@3.5.13(typescript@5.8.2)) unstorage: 1.15.0(db0@0.3.1)(idb-keyval@6.2.1)(ioredis@5.6.0) @@ -37205,7 +37118,7 @@ snapshots: '@nuxt/telemetry': 2.6.6(magicast@0.3.5) '@nuxt/vite-builder': 3.16.0(@types/node@22.13.9)(eslint@8.56.0)(lightningcss@1.29.3)(rollup@4.37.0)(terser@5.39.0)(typescript@5.7.3)(vue-tsc@2.1.8(typescript@5.7.3))(vue@3.5.13(typescript@5.7.3)) '@oxc-parser/wasm': 0.56.5 - '@unhead/vue': 2.0.1(vue@3.5.13(typescript@5.7.3)) + '@unhead/vue': 2.0.2(vue@3.5.13(typescript@5.7.3)) '@vue/shared': 3.5.13 c12: 3.0.2(magicast@0.3.5) chokidar: 4.0.3 @@ -37251,7 +37164,7 @@ snapshots: uncrypto: 0.1.3 unctx: 2.4.1 unenv: 2.0.0-rc.15 - unimport: 4.1.2 + unimport: 4.1.3 unplugin: 2.2.2 unplugin-vue-router: 0.12.0(vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)) unstorage: 1.15.0(db0@0.3.1)(idb-keyval@6.2.1)(ioredis@5.6.0) @@ -37316,7 +37229,7 @@ snapshots: - yaml optional: true - nwsapi@2.2.19: {} + nwsapi@2.2.20: {} nypm@0.5.4: dependencies: @@ -37884,7 +37797,7 @@ snapshots: pinpoint@1.1.0: {} - pirates@4.0.6: {} + pirates@4.0.7: {} pkg-dir@3.0.0: dependencies: @@ -38908,24 +38821,6 @@ snapshots: rrweb-cssom@0.8.0: {} - rspack-resolver@1.3.0: - optionalDependencies: - '@unrs/rspack-resolver-binding-darwin-arm64': 1.3.0 - '@unrs/rspack-resolver-binding-darwin-x64': 1.3.0 - '@unrs/rspack-resolver-binding-freebsd-x64': 1.3.0 - '@unrs/rspack-resolver-binding-linux-arm-gnueabihf': 1.3.0 - '@unrs/rspack-resolver-binding-linux-arm-musleabihf': 1.3.0 - '@unrs/rspack-resolver-binding-linux-arm64-gnu': 1.3.0 - '@unrs/rspack-resolver-binding-linux-arm64-musl': 1.3.0 - '@unrs/rspack-resolver-binding-linux-ppc64-gnu': 1.3.0 - '@unrs/rspack-resolver-binding-linux-s390x-gnu': 1.3.0 - '@unrs/rspack-resolver-binding-linux-x64-gnu': 1.3.0 - '@unrs/rspack-resolver-binding-linux-x64-musl': 1.3.0 - '@unrs/rspack-resolver-binding-wasm32-wasi': 1.3.0 - '@unrs/rspack-resolver-binding-win32-arm64-msvc': 1.3.0 - '@unrs/rspack-resolver-binding-win32-ia32-msvc': 1.3.0 - '@unrs/rspack-resolver-binding-win32-x64-msvc': 1.3.0 - rtcpeerconnection-shim@1.2.15: dependencies: sdp: 2.12.0 @@ -39488,7 +39383,7 @@ snapshots: glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 - pirates: 4.0.6 + pirates: 4.0.7 ts-interface-checker: 0.1.13 superjson@2.2.2: @@ -40190,7 +40085,7 @@ snapshots: pathe: 2.0.3 ufo: 1.5.4 - unhead@2.0.1: + unhead@2.0.2: dependencies: hookable: 5.5.3 @@ -40211,7 +40106,7 @@ snapshots: dependencies: ev-emitter: 2.1.2 - unimport@4.1.2: + unimport@4.1.3: dependencies: acorn: 8.14.1 escape-string-regexp: 5.0.0 @@ -40221,7 +40116,7 @@ snapshots: mlly: 1.7.4 pathe: 2.0.3 picomatch: 4.0.2 - pkg-types: 1.3.1 + pkg-types: 2.1.0 scule: 1.3.0 strip-literal: 3.0.0 tinyglobby: 0.2.12 @@ -40328,6 +40223,24 @@ snapshots: acorn: 8.14.1 webpack-virtual-modules: 0.6.2 + unrs-resolver@1.3.2: + optionalDependencies: + '@unrs/resolver-binding-darwin-arm64': 1.3.2 + '@unrs/resolver-binding-darwin-x64': 1.3.2 + '@unrs/resolver-binding-freebsd-x64': 1.3.2 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.3.2 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.3.2 + '@unrs/resolver-binding-linux-arm64-gnu': 1.3.2 + '@unrs/resolver-binding-linux-arm64-musl': 1.3.2 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.3.2 + '@unrs/resolver-binding-linux-s390x-gnu': 1.3.2 + '@unrs/resolver-binding-linux-x64-gnu': 1.3.2 + '@unrs/resolver-binding-linux-x64-musl': 1.3.2 + '@unrs/resolver-binding-wasm32-wasi': 1.3.2 + '@unrs/resolver-binding-win32-arm64-msvc': 1.3.2 + '@unrs/resolver-binding-win32-ia32-msvc': 1.3.2 + '@unrs/resolver-binding-win32-x64-msvc': 1.3.2 + unstorage@1.15.0(db0@0.3.1)(idb-keyval@6.2.1)(ioredis@5.6.0): dependencies: anymatch: 3.1.3 @@ -40895,7 +40808,7 @@ snapshots: optionalDependencies: vite: 6.2.1(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.39.0)(yaml@2.7.0) - vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8)(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0): + vitest@2.1.9(@types/node@22.13.9)(@vitest/ui@2.1.8(vitest@2.1.9))(happy-dom@15.11.7)(jsdom@24.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.3)(terser@5.39.0): dependencies: '@vitest/expect': 2.1.9 '@vitest/mocker': 2.1.9(vite@5.4.12(@types/node@22.13.9)(lightningcss@1.29.3)(terser@5.39.0)) @@ -41062,6 +40975,44 @@ snapshots: - utf-8-validate - zod + wagmi@2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.56.2(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): + dependencies: + '@tanstack/react-query': 5.56.2(react@19.0.0) + '@wagmi/connectors': 5.7.11(@types/react@19.0.0)(@wagmi/core@2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(db0@0.3.1)(ioredis@5.6.0)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8)) + react: 19.0.0 + use-sync-external-store: 1.4.0(react@19.0.0) + viem: 2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.7.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - immer + - ioredis + - supports-color + - uploadthing + - utf-8-validate + - zod + wagmi@2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.56.2(react@19.0.0))(@types/react@19.0.0)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: '@tanstack/react-query': 5.56.2(react@19.0.0) @@ -41214,6 +41165,44 @@ snapshots: - utf-8-validate - zod + wagmi@2.14.15(@tanstack/query-core@5.67.1)(@tanstack/react-query@5.67.1(react@19.0.0))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): + dependencies: + '@tanstack/react-query': 5.67.1(react@19.0.0) + '@wagmi/connectors': 5.7.11(@wagmi/core@2.16.7(@tanstack/query-core@5.67.1)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.67.1)(@types/react@19.0.0)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8)) + react: 19.0.0 + use-sync-external-store: 1.4.0(react@19.0.0) + viem: 2.23.13(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.8.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - immer + - ioredis + - supports-color + - uploadthing + - utf-8-validate + - zod + walker@1.0.8: dependencies: makeerror: 1.0.12 From fad9ab22572a81070d9cc29b60464cf133d34b93 Mon Sep 17 00:00:00 2001 From: Sven Date: Tue, 1 Apr 2025 09:10:57 +0200 Subject: [PATCH 2/5] add canary version --- .changeset/modern-eyes-smash.md | 24 ++++++++ .changeset/pre.json | 77 ++++++++++++++++++++++++++ packages/adapters/bitcoin/CHANGELOG.md | 16 ++++++ packages/adapters/bitcoin/package.json | 2 +- packages/adapters/ethers/CHANGELOG.md | 19 +++++++ packages/adapters/ethers/package.json | 2 +- packages/adapters/ethers5/CHANGELOG.md | 19 +++++++ packages/adapters/ethers5/package.json | 2 +- packages/adapters/solana/CHANGELOG.md | 18 ++++++ packages/adapters/solana/package.json | 2 +- packages/adapters/wagmi/CHANGELOG.md | 19 +++++++ packages/adapters/wagmi/package.json | 2 +- packages/appkit-utils/CHANGELOG.md | 16 ++++++ packages/appkit-utils/package.json | 2 +- packages/appkit/CHANGELOG.md | 19 +++++++ packages/appkit/exports/constants.ts | 2 +- packages/appkit/package.json | 2 +- packages/cdn/CHANGELOG.md | 18 ++++++ packages/cdn/package.json | 2 +- packages/cli/CHANGELOG.md | 10 ++++ packages/cli/package.json | 2 +- packages/common/CHANGELOG.md | 10 ++++ packages/common/package.json | 2 +- packages/controllers/CHANGELOG.md | 14 +++++ packages/controllers/package.json | 2 +- packages/core-legacy/CHANGELOG.md | 13 +++++ packages/core-legacy/package.json | 2 +- packages/experimental/CHANGELOG.md | 17 ++++++ packages/experimental/package.json | 2 +- packages/polyfills/CHANGELOG.md | 10 ++++ packages/polyfills/package.json | 2 +- packages/scaffold-ui/CHANGELOG.md | 17 ++++++ packages/scaffold-ui/package.json | 2 +- packages/siwe/CHANGELOG.md | 17 ++++++ packages/siwe/package.json | 2 +- packages/siwx/CHANGELOG.md | 15 +++++ packages/siwx/package.json | 2 +- packages/ui/CHANGELOG.md | 15 +++++ packages/ui/package.json | 2 +- packages/wallet-button/CHANGELOG.md | 16 ++++++ packages/wallet-button/package.json | 2 +- packages/wallet/CHANGELOG.md | 14 +++++ packages/wallet/package.json | 2 +- 43 files changed, 434 insertions(+), 21 deletions(-) create mode 100644 .changeset/modern-eyes-smash.md create mode 100644 .changeset/pre.json diff --git a/.changeset/modern-eyes-smash.md b/.changeset/modern-eyes-smash.md new file mode 100644 index 0000000000..10bfd14395 --- /dev/null +++ b/.changeset/modern-eyes-smash.md @@ -0,0 +1,24 @@ +--- +'@reown/appkit-adapter-ethers5': patch +'@reown/appkit-adapter-ethers': patch +'@reown/appkit-adapter-solana': patch +'@reown/appkit-adapter-wagmi': patch +'@reown/appkit-wallet-button': patch +'@reown/appkit-utils': patch +'@reown/appkit-controllers': patch +'@reown/appkit-scaffold-ui': patch +'@reown/appkit': patch +'@reown/appkit-wallet': patch +'@reown/appkit-adapter-bitcoin': patch +'@reown/appkit-cdn': patch +'@reown/appkit-cli': patch +'@reown/appkit-common': patch +'@reown/appkit-core': patch +'@reown/appkit-experimental': patch +'@reown/appkit-polyfills': patch +'@reown/appkit-siwe': patch +'@reown/appkit-siwx': patch +'@reown/appkit-ui': patch +--- + +Test version for social login improvements diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 0000000000..872eb0bcdb --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,77 @@ +{ + "mode": "exit", + "tag": "7f005fd744d7d75ca9c0ce920705ec7f95908dbe", + "initialVersions": { + "@apps/browser-extension": "1.0.0", + "@apps/builder": "1.1.7", + "@apps/gallery": "1.5.2", + "@apps/laboratory": "1.5.1", + "@examples/html-ak-basic": "1.2.0", + "@examples/html-ak-basic-sign-client": "1.2.0", + "@examples/html-ak-basic-up": "1.2.0", + "@examples/html-bitcoin": "1.2.0", + "@examples/html-ep": "1.2.0", + "@examples/html-ethers": "1.2.0", + "@examples/html-solana": "1.2.0", + "@examples/html-wagmi": "1.2.0", + "@examples/html-wagmi-cdn": "1.2.0", + "@examples/html-wagmi-solana-bitcoin": "1.2.0", + "@examples/html-wagmi-wallet-button": "1.2.0", + "@examples/next-ak-basic-app-router": "1.0.5", + "@examples/next-ak-basic-sign-client-app-router": "1.0.5", + "@examples/next-ak-basic-up-app-router": "1.0.5", + "@examples/next-bitcoin-app-router": "1.0.5", + "@examples/next-ep-app-router": "1.0.5", + "@examples/next-ethers-app-router": "1.0.5", + "@examples/next-wagmi-app-router": "1.0.5", + "@examples/next-wagmi-solana-bitcoin-app-router": "1.0.5", + "@examples/parcel-react-wagmi": "1.0.0", + "@examples/react-ak-basic": "1.2.0", + "@examples/react-ak-basic-sign-client": "1.2.0", + "@examples/react-ak-basic-up": "1.2.0", + "@examples/react-ep": "1.2.0", + "@examples/react-ethers": "1.2.0", + "@examples/react-ethers5": "1.2.0", + "@examples/react-solana": "1.2.0", + "@examples/react-wagmi": "1.2.0", + "@examples/sveltekit-4-wagmi": "0.0.1", + "@examples/sveltekit-ethers": "0.0.1", + "@examples/sveltekit-wagmi": "0.0.1", + "@examples/vue-ak-basic": "1.2.0", + "@examples/vue-ak-basic-sign-client": "1.2.0", + "@examples/vue-ak-basic-up": "1.2.0", + "@examples/vue-ep": "1.2.0", + "@examples/vue-ethers-solana": "1.2.0", + "@examples/vue-ethers5": "1.2.0", + "@examples/vue-solana": "1.2.0", + "@examples/vue-wagmi": "1.2.0", + "@examples/vue-wagmi-solana": "1.2.0", + "@reown/appkit-adapter-bitcoin": "1.7.1", + "@reown/appkit-adapter-ethers": "1.7.1", + "@reown/appkit-adapter-ethers5": "1.7.1", + "@reown/appkit-adapter-polkadot": "1.5.2", + "@reown/appkit-adapter-solana": "1.7.1", + "@reown/appkit-adapter-wagmi": "1.7.1", + "@reown/appkit": "1.7.1", + "@reown/appkit-utils": "1.7.1", + "@reown/appkit-cdn": "1.7.1", + "@reown/appkit-cli": "1.7.1", + "@reown/appkit-common": "1.7.1", + "@reown/appkit-controllers": "1.7.1", + "@reown/appkit-core": "1.7.1", + "@reown/appkit-experimental": "1.7.1", + "@reown/appkit-polyfills": "1.7.1", + "@reown/appkit-scaffold-ui": "1.7.1", + "@reown/appkit-siwe": "1.7.1", + "@reown/appkit-siwx": "1.7.1", + "@reown/appkit-ui": "1.7.1", + "@reown/appkit-ui-new": "1.4.1", + "@reown/appkit-wallet": "1.7.1", + "@reown/appkit-wallet-button": "1.7.1" + }, + "changesets": [ + "fancy-falcons-knock", + "modern-eyes-smash", + "tame-views-fall" + ] +} diff --git a/packages/adapters/bitcoin/CHANGELOG.md b/packages/adapters/bitcoin/CHANGELOG.md index 6e63350e01..07ea38ff56 100644 --- a/packages/adapters/bitcoin/CHANGELOG.md +++ b/packages/adapters/bitcoin/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-adapter-bitcoin +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/adapters/bitcoin/package.json b/packages/adapters/bitcoin/package.json index fc335a01c5..caf32e10c0 100644 --- a/packages/adapters/bitcoin/package.json +++ b/packages/adapters/bitcoin/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-adapter-bitcoin", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/adapters/ethers/CHANGELOG.md b/packages/adapters/ethers/CHANGELOG.md index 11f0480c22..f23a7982a8 100644 --- a/packages/adapters/ethers/CHANGELOG.md +++ b/packages/adapters/ethers/CHANGELOG.md @@ -1,5 +1,24 @@ # @reown/appkit-adapter-ethers +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-scaffold-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/adapters/ethers/package.json b/packages/adapters/ethers/package.json index c6ed267118..20e2b0f684 100644 --- a/packages/adapters/ethers/package.json +++ b/packages/adapters/ethers/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-adapter-ethers", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/src/index.js", diff --git a/packages/adapters/ethers5/CHANGELOG.md b/packages/adapters/ethers5/CHANGELOG.md index df5d5f1977..0774ad2d57 100644 --- a/packages/adapters/ethers5/CHANGELOG.md +++ b/packages/adapters/ethers5/CHANGELOG.md @@ -1,5 +1,24 @@ # @reown/appkit-adapter-ethers5 +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-scaffold-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/adapters/ethers5/package.json b/packages/adapters/ethers5/package.json index 29f8218b3c..e21e3282bf 100644 --- a/packages/adapters/ethers5/package.json +++ b/packages/adapters/ethers5/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-adapter-ethers5", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/src/index.js", diff --git a/packages/adapters/solana/CHANGELOG.md b/packages/adapters/solana/CHANGELOG.md index bdcd78af09..25d0172844 100644 --- a/packages/adapters/solana/CHANGELOG.md +++ b/packages/adapters/solana/CHANGELOG.md @@ -1,5 +1,23 @@ # @reown/appkit-adapter-solana +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/adapters/solana/package.json b/packages/adapters/solana/package.json index 581dc27794..f466949d25 100644 --- a/packages/adapters/solana/package.json +++ b/packages/adapters/solana/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-adapter-solana", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/src/index.js", diff --git a/packages/adapters/wagmi/CHANGELOG.md b/packages/adapters/wagmi/CHANGELOG.md index d919f9d82d..9ea190a6a4 100644 --- a/packages/adapters/wagmi/CHANGELOG.md +++ b/packages/adapters/wagmi/CHANGELOG.md @@ -1,5 +1,24 @@ # @reown/appkit-adapter-wagmi +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-scaffold-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/adapters/wagmi/package.json b/packages/adapters/wagmi/package.json index b19e035d73..21741d1950 100644 --- a/packages/adapters/wagmi/package.json +++ b/packages/adapters/wagmi/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-adapter-wagmi", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/src/index.js", diff --git a/packages/appkit-utils/CHANGELOG.md b/packages/appkit-utils/CHANGELOG.md index 0f6f32dfb0..7422aa95b8 100644 --- a/packages/appkit-utils/CHANGELOG.md +++ b/packages/appkit-utils/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-utils +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/appkit-utils/package.json b/packages/appkit-utils/package.json index b2640014f0..353a19da12 100644 --- a/packages/appkit-utils/package.json +++ b/packages/appkit-utils/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-utils", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/appkit/CHANGELOG.md b/packages/appkit/CHANGELOG.md index 79de0f5a85..dd9e02713c 100644 --- a/packages/appkit/CHANGELOG.md +++ b/packages/appkit/CHANGELOG.md @@ -1,5 +1,24 @@ # @reown/appkit +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-scaffold-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/appkit/exports/constants.ts b/packages/appkit/exports/constants.ts index 320f9439c0..bd2b101cd2 100644 --- a/packages/appkit/exports/constants.ts +++ b/packages/appkit/exports/constants.ts @@ -1 +1 @@ -export const PACKAGE_VERSION = '1.7.1' +export const PACKAGE_VERSION = '1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0' diff --git a/packages/appkit/package.json b/packages/appkit/package.json index 88a99d8e38..4e5ea0dadb 100644 --- a/packages/appkit/package.json +++ b/packages/appkit/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "type": "module", "main": "./dist/esm/exports/index.js", "types": "./dist/types/exports/index.d.ts", diff --git a/packages/cdn/CHANGELOG.md b/packages/cdn/CHANGELOG.md index c29b7ae4c5..adf09b5fdb 100644 --- a/packages/cdn/CHANGELOG.md +++ b/packages/cdn/CHANGELOG.md @@ -1,5 +1,23 @@ # @reown/appkit-cdn +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-adapter-ethers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-adapter-ethers5@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-adapter-solana@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-adapter-wagmi@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/cdn/package.json b/packages/cdn/package.json index b70a5ea49e..3ba51af11d 100644 --- a/packages/cdn/package.json +++ b/packages/cdn/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-cdn", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "main": "dist/wagmi.js", "type": "module", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index fa87b2afe7..77e785ed89 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @reown/appkit-cli +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + ## 1.7.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 61e54edae8..7e82487150 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-cli", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "description": "Reown AppKit CLI", "main": "index.js", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index e7fa962dbd..474fa2a5ce 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,15 @@ # @reown/appkit-common +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + ## 1.7.1 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index a91c7cc861..b0b3410cc6 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-common", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/index.js", diff --git a/packages/controllers/CHANGELOG.md b/packages/controllers/CHANGELOG.md index dccbf4fe51..c8dc33fb5d 100644 --- a/packages/controllers/CHANGELOG.md +++ b/packages/controllers/CHANGELOG.md @@ -1,5 +1,19 @@ # @reown/appkit-core +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/controllers/package.json b/packages/controllers/package.json index 99e0eee499..77269f9d72 100644 --- a/packages/controllers/package.json +++ b/packages/controllers/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-controllers", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/core-legacy/CHANGELOG.md b/packages/core-legacy/CHANGELOG.md index 9da83fd3be..52fb6ffcd6 100644 --- a/packages/core-legacy/CHANGELOG.md +++ b/packages/core-legacy/CHANGELOG.md @@ -1,5 +1,18 @@ # @reown/appkit-core +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/core-legacy/package.json b/packages/core-legacy/package.json index ba5db728dc..2005fe27fb 100644 --- a/packages/core-legacy/package.json +++ b/packages/core-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-core", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/experimental/CHANGELOG.md b/packages/experimental/CHANGELOG.md index 672b3a4dc9..d5a8c20bea 100644 --- a/packages/experimental/CHANGELOG.md +++ b/packages/experimental/CHANGELOG.md @@ -1,5 +1,22 @@ # @reown/appkit-experimental +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/experimental/package.json b/packages/experimental/package.json index 920e96e9ee..7bbae41770 100644 --- a/packages/experimental/package.json +++ b/packages/experimental/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-experimental", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/polyfills/CHANGELOG.md b/packages/polyfills/CHANGELOG.md index 81e306e217..ccfa7dfdf8 100644 --- a/packages/polyfills/CHANGELOG.md +++ b/packages/polyfills/CHANGELOG.md @@ -1,5 +1,15 @@ # @reown/appkit-polyfills +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + ## 1.7.1 ### Patch Changes diff --git a/packages/polyfills/package.json b/packages/polyfills/package.json index fa041ec521..2da526e031 100644 --- a/packages/polyfills/package.json +++ b/packages/polyfills/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-polyfills", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/index.js", diff --git a/packages/scaffold-ui/CHANGELOG.md b/packages/scaffold-ui/CHANGELOG.md index 8258d70d1b..22781b63d4 100644 --- a/packages/scaffold-ui/CHANGELOG.md +++ b/packages/scaffold-ui/CHANGELOG.md @@ -1,5 +1,22 @@ # @reown/appkit-scaffold-ui +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/scaffold-ui/package.json b/packages/scaffold-ui/package.json index 385733fd1b..85a942b9d9 100644 --- a/packages/scaffold-ui/package.json +++ b/packages/scaffold-ui/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-scaffold-ui", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "type": "module", "main": "./dist/esm/exports/index.js", "types": "./dist/types/exports/index.d.ts", diff --git a/packages/siwe/CHANGELOG.md b/packages/siwe/CHANGELOG.md index 7013b6de28..620f95019d 100644 --- a/packages/siwe/CHANGELOG.md +++ b/packages/siwe/CHANGELOG.md @@ -1,5 +1,22 @@ # @reown/appkit-siwe +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/siwe/package.json b/packages/siwe/package.json index 7174f6679e..e6e4cbc617 100644 --- a/packages/siwe/package.json +++ b/packages/siwe/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-siwe", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", diff --git a/packages/siwx/CHANGELOG.md b/packages/siwx/CHANGELOG.md index 4f05b0c7ff..dc98fcd8ea 100644 --- a/packages/siwx/CHANGELOG.md +++ b/packages/siwx/CHANGELOG.md @@ -1,5 +1,20 @@ # @reown/appkit-siwx +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/siwx/package.json b/packages/siwx/package.json index a450618939..25a67d07ba 100644 --- a/packages/siwx/package.json +++ b/packages/siwx/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-siwx", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/src/index.js", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index b9203b51a0..9c099370a2 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,20 @@ # @reown/appkit-ui +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-wallet@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index 1020e16ea7..6083137bc7 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-ui", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "type": "module", "main": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/wallet-button/CHANGELOG.md b/packages/wallet-button/CHANGELOG.md index 0c85b583b5..0302e2ccc6 100644 --- a/packages/wallet-button/CHANGELOG.md +++ b/packages/wallet-button/CHANGELOG.md @@ -1,5 +1,21 @@ # @reown/appkit-wallet-button +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-utils@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-controllers@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-ui@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/wallet-button/package.json b/packages/wallet-button/package.json index d6e6d262e7..c639691174 100644 --- a/packages/wallet-button/package.json +++ b/packages/wallet-button/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-wallet-button", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "type": "module", "main": "./dist/esm/exports/index.js", "types": "./dist/types/exports/index.d.ts", diff --git a/packages/wallet/CHANGELOG.md b/packages/wallet/CHANGELOG.md index b9b18ac085..0dabfa932d 100644 --- a/packages/wallet/CHANGELOG.md +++ b/packages/wallet/CHANGELOG.md @@ -1,5 +1,19 @@ # @reown/appkit-wallet +## 1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + +### Patch Changes + +- [#4091](https://github.com/reown-com/appkit/pull/4091) [`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the WalletConnect wallet button wasn't opening the "All Wallets" modal view on mobile devices + +- Test version for social login improvements + +- [#4094](https://github.com/reown-com/appkit/pull/4094) [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users were required to re-check the legal checkbox after navigating away and returning to the connect view + +- Updated dependencies [[`1fc664d`](https://github.com/reown-com/appkit/commit/1fc664db6b109ac2ce9c66aec31a3ae2d6419589), [`af1e79a`](https://github.com/reown-com/appkit/commit/af1e79a76d32def90c9605dc8e53a2ade002033c)]: + - @reown/appkit-common@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + - @reown/appkit-polyfills@1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0 + ## 1.7.1 ### Patch Changes diff --git a/packages/wallet/package.json b/packages/wallet/package.json index 5f8555d488..f2eee70bb4 100644 --- a/packages/wallet/package.json +++ b/packages/wallet/package.json @@ -1,6 +1,6 @@ { "name": "@reown/appkit-wallet", - "version": "1.7.1", + "version": "1.7.2-7f005fd744d7d75ca9c0ce920705ec7f95908dbe.0", "sideEffects": false, "type": "module", "main": "./dist/esm/exports/index.js", From 42da21c72ea117a0f1914d94b20d6d5e730e29a4 Mon Sep 17 00:00:00 2001 From: Sven Date: Wed, 2 Apr 2025 17:09:15 +0200 Subject: [PATCH 3/5] update farcaster tests --- apps/laboratory/tests/email-after-farcaster.spec.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/laboratory/tests/email-after-farcaster.spec.ts b/apps/laboratory/tests/email-after-farcaster.spec.ts index befe928b45..7e669e1e16 100644 --- a/apps/laboratory/tests/email-after-farcaster.spec.ts +++ b/apps/laboratory/tests/email-after-farcaster.spec.ts @@ -114,7 +114,6 @@ emailTestAfterFarcaster( 'it should show loading on page refresh after abort login with farcaster', async () => { await page.page.reload() - await validator.expectConnectButtonLoading() await validator.expectAccountButtonReady() } ) @@ -124,7 +123,9 @@ emailTestAfterFarcaster( async () => { // Clear cache and set offline to simulate token balance fetch failure await page.page.evaluate(() => window.localStorage.removeItem('@appkit/portfolio_cache')) - await page.page.context().setOffline(true) + await context.route('**/*', route => { + route.abort() + }) await page.openAccount() await validator.expectSnackbar('Token Balance Unavailable') await page.closeModal() @@ -134,7 +135,7 @@ emailTestAfterFarcaster( emailTestAfterFarcaster( 'it should disconnect correctly after abort login with farcaster', async () => { - await page.page.context().setOffline(false) + await context.unroute('**/*') await page.goToSettings() await page.disconnect() await validator.expectDisconnected() @@ -144,7 +145,9 @@ emailTestAfterFarcaster( emailTestAfterFarcaster( 'it should abort request if it takes more than 30 seconds after abort login with farcaster', async () => { - await page.page.context().setOffline(true) + await context.route('**/*', route => { + route.abort() + }) await page.loginWithEmail(tempEmail, false) await page.page.waitForTimeout(30_000) await validator.expectSnackbar('Something went wrong') From f0c354dbfe250eb3d8c26d6ce93dcb700d089297 Mon Sep 17 00:00:00 2001 From: Sven Date: Tue, 8 Apr 2025 14:25:28 +0200 Subject: [PATCH 4/5] remove pre.json and update changeset --- .changeset/modern-eyes-smash.md | 2 +- .changeset/pre.json | 77 --------------------------------- 2 files changed, 1 insertion(+), 78 deletions(-) delete mode 100644 .changeset/pre.json diff --git a/.changeset/modern-eyes-smash.md b/.changeset/modern-eyes-smash.md index 10bfd14395..b2a6887851 100644 --- a/.changeset/modern-eyes-smash.md +++ b/.changeset/modern-eyes-smash.md @@ -21,4 +21,4 @@ '@reown/appkit-ui': patch --- -Test version for social login improvements +This change includes social login improvments. We will remove an abudant call that we make to our backend to receive the users data. Also changed the wallet schema according to the new data that we receive. diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 872eb0bcdb..0000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "mode": "exit", - "tag": "7f005fd744d7d75ca9c0ce920705ec7f95908dbe", - "initialVersions": { - "@apps/browser-extension": "1.0.0", - "@apps/builder": "1.1.7", - "@apps/gallery": "1.5.2", - "@apps/laboratory": "1.5.1", - "@examples/html-ak-basic": "1.2.0", - "@examples/html-ak-basic-sign-client": "1.2.0", - "@examples/html-ak-basic-up": "1.2.0", - "@examples/html-bitcoin": "1.2.0", - "@examples/html-ep": "1.2.0", - "@examples/html-ethers": "1.2.0", - "@examples/html-solana": "1.2.0", - "@examples/html-wagmi": "1.2.0", - "@examples/html-wagmi-cdn": "1.2.0", - "@examples/html-wagmi-solana-bitcoin": "1.2.0", - "@examples/html-wagmi-wallet-button": "1.2.0", - "@examples/next-ak-basic-app-router": "1.0.5", - "@examples/next-ak-basic-sign-client-app-router": "1.0.5", - "@examples/next-ak-basic-up-app-router": "1.0.5", - "@examples/next-bitcoin-app-router": "1.0.5", - "@examples/next-ep-app-router": "1.0.5", - "@examples/next-ethers-app-router": "1.0.5", - "@examples/next-wagmi-app-router": "1.0.5", - "@examples/next-wagmi-solana-bitcoin-app-router": "1.0.5", - "@examples/parcel-react-wagmi": "1.0.0", - "@examples/react-ak-basic": "1.2.0", - "@examples/react-ak-basic-sign-client": "1.2.0", - "@examples/react-ak-basic-up": "1.2.0", - "@examples/react-ep": "1.2.0", - "@examples/react-ethers": "1.2.0", - "@examples/react-ethers5": "1.2.0", - "@examples/react-solana": "1.2.0", - "@examples/react-wagmi": "1.2.0", - "@examples/sveltekit-4-wagmi": "0.0.1", - "@examples/sveltekit-ethers": "0.0.1", - "@examples/sveltekit-wagmi": "0.0.1", - "@examples/vue-ak-basic": "1.2.0", - "@examples/vue-ak-basic-sign-client": "1.2.0", - "@examples/vue-ak-basic-up": "1.2.0", - "@examples/vue-ep": "1.2.0", - "@examples/vue-ethers-solana": "1.2.0", - "@examples/vue-ethers5": "1.2.0", - "@examples/vue-solana": "1.2.0", - "@examples/vue-wagmi": "1.2.0", - "@examples/vue-wagmi-solana": "1.2.0", - "@reown/appkit-adapter-bitcoin": "1.7.1", - "@reown/appkit-adapter-ethers": "1.7.1", - "@reown/appkit-adapter-ethers5": "1.7.1", - "@reown/appkit-adapter-polkadot": "1.5.2", - "@reown/appkit-adapter-solana": "1.7.1", - "@reown/appkit-adapter-wagmi": "1.7.1", - "@reown/appkit": "1.7.1", - "@reown/appkit-utils": "1.7.1", - "@reown/appkit-cdn": "1.7.1", - "@reown/appkit-cli": "1.7.1", - "@reown/appkit-common": "1.7.1", - "@reown/appkit-controllers": "1.7.1", - "@reown/appkit-core": "1.7.1", - "@reown/appkit-experimental": "1.7.1", - "@reown/appkit-polyfills": "1.7.1", - "@reown/appkit-scaffold-ui": "1.7.1", - "@reown/appkit-siwe": "1.7.1", - "@reown/appkit-siwx": "1.7.1", - "@reown/appkit-ui": "1.7.1", - "@reown/appkit-ui-new": "1.4.1", - "@reown/appkit-wallet": "1.7.1", - "@reown/appkit-wallet-button": "1.7.1" - }, - "changesets": [ - "fancy-falcons-knock", - "modern-eyes-smash", - "tame-views-fall" - ] -} From 822e328328d95d4db78a33a6d8724f5a77abdbc7 Mon Sep 17 00:00:00 2001 From: Sven Date: Tue, 8 Apr 2025 14:33:41 +0200 Subject: [PATCH 5/5] add social test --- .../wallet/tests/W3mFrameProvider.test.ts | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/packages/wallet/tests/W3mFrameProvider.test.ts b/packages/wallet/tests/W3mFrameProvider.test.ts index 79e0d3d1b6..fcdee1d19c 100644 --- a/packages/wallet/tests/W3mFrameProvider.test.ts +++ b/packages/wallet/tests/W3mFrameProvider.test.ts @@ -83,6 +83,37 @@ describe('W3mFrameProvider', () => { expect(postAppEventSpy).toHaveBeenCalled() }) + it('should connect social', async () => { + const payload = { chainId: 1, socialUri: '?auth=12345678' } + const responsePayload = { + address: '0xd34db33f', + chainId: 1, + email: 'test@walletconnect.com', + preferredAccountType: 'eoa', + accounts: [ + { + type: 'eoa', + address: '0xd34db33f' + } + ] + } + + const postAppEventSpy = vi + .spyOn(provider['w3mFrame'].events, 'postAppEvent') + .mockImplementation(({ id }) => { + SecureSiteMock.approveRequest({ + id: id as string, + type: 'CONNECT_SOCIAL', + response: responsePayload + }) + }) + + const response = await provider.connect(payload) + + expect(response).toEqual(responsePayload) + expect(postAppEventSpy).toHaveBeenCalled() + }) + it('should switch network', async () => { const chainId = 42 const responsePayload = { chainId: 42 }