From d1460f0f62047f81e2c6141e0e8b1c6033dd9e19 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Wed, 11 Mar 2026 16:58:41 +0100 Subject: [PATCH 01/11] fix: update export structure and improve module resolution --- scripts/formatPackageJson.js | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/scripts/formatPackageJson.js b/scripts/formatPackageJson.js index e76c014c6..668d88c25 100644 --- a/scripts/formatPackageJson.js +++ b/scripts/formatPackageJson.js @@ -37,16 +37,38 @@ export async function formatPackageFile() { .replace(/\.tsx?$/, '.d.ts') subpathExports[key] = { types: typesPath, - default: distPath, + import: distPath, } } } } + const skeletonExport = + packageDataOther.name === '@lifi/widget' + ? { + './skeleton': { + types: './dist/esm/components/Skeleton/WidgetSkeleton.d.ts', + import: './dist/esm/components/Skeleton/WidgetSkeleton.js', + }, + } + : {} + + const allSubpathExports = { ...skeletonExport, ...subpathExports } + + const typesVersions = {} + for (const [key, value] of Object.entries(allSubpathExports)) { + const subpath = key.replace('./', '') + typesVersions[subpath] = [value.types] + } + const newPackageData = { ...packageDataOther, main: './dist/esm/index.js', + module: './dist/esm/index.js', types: './dist/esm/index.d.ts', + ...(Object.keys(typesVersions).length > 0 + ? { typesVersions: { '*': typesVersions } } + : {}), files: [ 'dist/**', '!dist/**/*.tsbuildinfo', @@ -65,17 +87,9 @@ export async function formatPackageFile() { exports: { '.': { types: './dist/esm/index.d.ts', - default: './dist/esm/index.js', + import: './dist/esm/index.js', }, - ...(packageDataOther.name === '@lifi/widget' - ? { - './skeleton': { - types: './dist/esm/components/Skeleton/WidgetSkeleton.d.ts', - default: './dist/esm/components/Skeleton/WidgetSkeleton.js', - }, - } - : {}), - ...subpathExports, + ...allSubpathExports, './package.json': './package.json', }, } From a85ff54a27d540c8f52bef214cb194ad6238aef8 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Wed, 11 Mar 2026 18:04:39 +0100 Subject: [PATCH 02/11] chore(release): 4.0.0-alpha.3 --- package.json | 2 +- packages/wallet-management/package.json | 2 +- packages/widget-light/package.json | 2 +- packages/widget-light/src/config/version.ts | 2 +- packages/widget-provider-bitcoin/package.json | 2 +- packages/widget-provider-ethereum/package.json | 2 +- packages/widget-provider-solana/package.json | 2 +- packages/widget-provider-sui/package.json | 2 +- packages/widget-provider/package.json | 2 +- packages/widget/package.json | 2 +- packages/widget/src/config/version.ts | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index ae311babf..efacee716 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "private": true, "sideEffects": false, "type": "module", diff --git a/packages/wallet-management/package.json b/packages/wallet-management/package.json index 9cbbaf389..89d690f04 100644 --- a/packages/wallet-management/package.json +++ b/packages/wallet-management/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/wallet-management", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Wallet Management solution.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-light/package.json b/packages/widget-light/package.json index 908571256..fe5c4a307 100644 --- a/packages/widget-light/package.json +++ b/packages/widget-light/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-light", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Light - a lightweight version of the LI.FI Widget for cross-chain bridging and swapping.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-light/src/config/version.ts b/packages/widget-light/src/config/version.ts index 5bd626aa1..1a8a6629a 100644 --- a/packages/widget-light/src/config/version.ts +++ b/packages/widget-light/src/config/version.ts @@ -1,2 +1,2 @@ export const name = '@lifi/widget-light' -export const version = '4.0.0-alpha.2' +export const version = '4.0.0-alpha.3' diff --git a/packages/widget-provider-bitcoin/package.json b/packages/widget-provider-bitcoin/package.json index 4c7d976a4..8c4055068 100644 --- a/packages/widget-provider-bitcoin/package.json +++ b/packages/widget-provider-bitcoin/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-provider-bitcoin", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Provider for Bitcoin blockchain integration.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-provider-ethereum/package.json b/packages/widget-provider-ethereum/package.json index 284a49a64..be5819c24 100644 --- a/packages/widget-provider-ethereum/package.json +++ b/packages/widget-provider-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-provider-ethereum", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Provider for Ethereum blockchain integration.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-provider-solana/package.json b/packages/widget-provider-solana/package.json index c5169ba28..1a36ddd23 100644 --- a/packages/widget-provider-solana/package.json +++ b/packages/widget-provider-solana/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-provider-solana", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Provider for Solana blockchain integration.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-provider-sui/package.json b/packages/widget-provider-sui/package.json index 659609115..f3774dd0b 100644 --- a/packages/widget-provider-sui/package.json +++ b/packages/widget-provider-sui/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-provider-sui", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Provider for Sui blockchain integration.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget-provider/package.json b/packages/widget-provider/package.json index 8778de94f..f5b0a97c1 100644 --- a/packages/widget-provider/package.json +++ b/packages/widget-provider/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget-provider", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget Provider - base provider package for blockchain integrations.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget/package.json b/packages/widget/package.json index 32eeb6504..6104abe35 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -1,6 +1,6 @@ { "name": "@lifi/widget", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "description": "LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.", "type": "module", "main": "./src/index.ts", diff --git a/packages/widget/src/config/version.ts b/packages/widget/src/config/version.ts index 611221155..e5a9c1b57 100644 --- a/packages/widget/src/config/version.ts +++ b/packages/widget/src/config/version.ts @@ -1,2 +1,2 @@ export const name = '@lifi/widget' -export const version = '4.0.0-alpha.2' +export const version = '4.0.0-alpha.3' From c19e65094509c37bd0c51bc0fa1a7952c3195547 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Thu, 12 Mar 2026 18:45:54 +0100 Subject: [PATCH 03/11] refactor: update deps and refactor widget-light integration for improved compatibility --- CLAUDE.md | 105 + examples/connectkit/package.json | 10 +- examples/deposit-flow/package.json | 12 +- examples/deposit-flow/vite.config.ts | 2 +- examples/dynamic/package.json | 32 +- examples/dynamic/vite.config.ts | 2 +- examples/nextjs/package.json | 6 +- examples/nextjs14-page-router/package.json | 4 +- examples/nextjs14/package.json | 6 +- examples/nextjs15/package.json | 6 +- examples/nft-checkout/package.json | 11 +- examples/nft-checkout/vite.config.ts | 18 +- examples/nuxt/package.json | 4 +- examples/privy-ethers/package.json | 14 +- examples/privy/package.json | 14 +- examples/rainbowkit/package.json | 10 +- examples/rainbowkit/vite.config.ts | 2 +- examples/react-router-7/package.json | 8 +- examples/remix/package.json | 10 +- examples/reown/package.json | 20 +- examples/svelte/package.json | 10 +- examples/svelte/vite.config.ts | 2 +- examples/tanstack-router/package.json | 8 +- examples/tanstack-router/vite.config.ts | 2 +- examples/vite-iframe-wagmi/package.json | 6 +- examples/vite-iframe-wagmi/vite.config.ts | 2 +- examples/vite-iframe/package.json | 14 +- examples/vite-iframe/src/App.tsx | 45 +- .../src/components/WidgetEventsLogger.tsx | 37 + examples/vite-iframe/vite.config.ts | 2 +- examples/vite/package.json | 14 +- examples/vite/vite.config.ts | 2 +- examples/vue/package.json | 12 +- examples/vue/vite.config.ts | 2 +- examples/zustand-widget-config/package.json | 6 +- knip.json | 2 +- package.json | 14 +- packages/wallet-management/package.json | 6 +- packages/widget-embedded/package.json | 14 +- packages/widget-embedded/src/App.tsx | 14 +- .../src/providers/WidgetConfigProvider.tsx | 54 +- .../src/providers/WidgetEventsBridge.tsx | 93 + .../src/providers/iframe/IframeSuiSigner.ts | 57 + .../iframe/SuiIframeProviderValues.tsx | 19 +- packages/widget-embedded/vite.config.ts | 4 +- packages/widget-light/package.json | 6 +- .../widget-light/src/guest/GuestBridge.ts | 72 + .../src/handlers/sui/useSuiIframeHandler.ts | 58 +- .../widget-light/src/host/WidgetLight.tsx | 9 + .../src/host/WidgetLightEventBus.ts | 96 + .../src/host/useWidgetLightEvents.ts | 40 + .../src/host/useWidgetLightHost.ts | 78 +- packages/widget-light/src/index.ts | 62 + packages/widget-light/src/shared/protocol.ts | 79 +- .../widget-light/src/shared/widgetConfig.ts | 397 ++ .../src/shared/widgetLightEvents.ts | 141 + packages/widget-playground-next/package.json | 2 +- packages/widget-playground-vite/package.json | 7 +- .../widget-playground-vite/vite.config.ts | 18 +- packages/widget-playground/package.json | 18 +- packages/widget-provider-bitcoin/package.json | 6 +- .../widget-provider-ethereum/package.json | 4 +- packages/widget-provider-solana/package.json | 2 +- packages/widget-provider-sui/package.json | 2 +- packages/widget-provider/package.json | 2 +- packages/widget/package.json | 10 +- pnpm-lock.yaml | 5566 +++++++++-------- 67 files changed, 4613 insertions(+), 2799 deletions(-) create mode 100644 CLAUDE.md create mode 100644 examples/vite-iframe/src/components/WidgetEventsLogger.tsx create mode 100644 packages/widget-embedded/src/providers/WidgetEventsBridge.tsx create mode 100644 packages/widget-embedded/src/providers/iframe/IframeSuiSigner.ts create mode 100644 packages/widget-light/src/host/WidgetLightEventBus.ts create mode 100644 packages/widget-light/src/host/useWidgetLightEvents.ts create mode 100644 packages/widget-light/src/shared/widgetConfig.ts create mode 100644 packages/widget-light/src/shared/widgetLightEvents.ts diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..92ede0a6e --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,105 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Repository Overview + +LI.FI Widget monorepo — a cross-chain DeFi swap/bridge widget supporting Ethereum, Solana, Bitcoin, and Sui ecosystems. Managed with pnpm workspaces, Lerna (independent versioning), and TypeScript composite builds. + +## Commands + +```bash +# Development +pnpm dev # Start widget-playground-vite on port 3000 +pnpm dev:next # Start Next.js playground + +# Building +pnpm build # Build all packages (libs first, then playgrounds/embedded) + +# Code Quality +pnpm check # Biome lint + format check +pnpm check:write # Auto-fix Biome issues +pnpm check:types # TypeScript check all packages in parallel +pnpm check:circular-deps # Detect circular deps via madge + +# Single-package type check +pnpm --filter @lifi/widget check:types + +# Testing (vitest) +pnpm --filter @lifi/widget test # Run widget tests +pnpm --filter @lifi/widget-light test # Run widget-light tests + +# Unused code detection +pnpm knip:check +``` + +## Architecture + +### Package Dependency Graph + +``` +@lifi/widget-provider ← base contexts (Ethereum/Solana/Bitcoin/Sui) + ↑ +@lifi/widget-provider-{ethereum,solana,bitcoin,sui} ← chain-specific implementations + ↑ +@lifi/wallet-management ← wallet UI + connection logic + ↑ +@lifi/widget ← full widget (MUI, Zustand, TanStack Router, i18next) + +@lifi/widget-light ← lightweight iframe host/guest bridge (zero dependencies) +@lifi/widget-embedded ← Vite app that runs inside the iframe (private) +``` + +### widget-light iframe bridge + +`widget-light` provides an iframe-based integration where the widget runs inside an iframe (`widget-embedded`) and communicates with the host page via `postMessage`. + +**Message flow** (defined in `packages/widget-light/src/shared/protocol.ts`): +- Guest sends `READY` → Host responds with `INIT` (config + ecosystem states) +- Host sends `CONFIG_UPDATE` when config changes after init +- Guest forwards `RPC_REQUEST` → Host routes to ecosystem handler → sends `RPC_RESPONSE` +- Host pushes wallet `EVENT`s to guest when wallet state changes +- Guest sends `WIDGET_EVENT` for subscribed events → Host dispatches to `WidgetLightEventBus` +- Host sends `WIDGET_EVENT_SUBSCRIBE`/`UNSUBSCRIBE` to control which events the guest forwards + +**Key modules**: +- `src/host/useWidgetLightHost.ts` — React hook managing the host side (handshake, RPC routing, config updates) +- `src/host/WidgetLightEventBus.ts` — Module-level singleton with ref-counted subscriptions +- `src/host/useWidgetLightEvents.ts` — Public hook returning `{ on, off }` emitter +- `src/guest/GuestBridge.ts` — Singleton managing guest-side communication +- `src/shared/widgetConfig.ts` — Zero-dependency serializable config types (no React nodes, no callbacks, no MUI types) +- `src/shared/widgetLightEvents.ts` — Serializable event types mirroring widget events + +### widget internals + +- **State**: Zustand stores in `packages/widget/src/stores/` (form, routes, chains, settings) +- **Routing**: TanStack Router with page components in `src/pages/` +- **Theming**: MUI v7 + Emotion; custom themes in `src/themes/` +- **Events**: mitt event bus (`widgetEvents` singleton in `src/hooks/useWidgetEvents.ts`) +- **i18n**: i18next with 20 language translations in `src/i18n/` + +### Provider layering (widget) + +QueryClient → Settings → WidgetConfig → I18n → Theme → SDK → Wallet → Store + +## Conventions + +- **ESM only** — all packages output to `dist/esm/`. No CJS. +- **Biome** for linting and formatting (not ESLint/Prettier). Single quotes, no semicolons, 2-space indent, trailing commas (ES5). +- **Conventional commits** enforced by commitlint (`feat:`, `fix:`, `chore:`, etc.). +- **`console.log` is an error** — only `console.warn` and `console.error` are allowed (except in `examples/`). +- **`useExhaustiveDependencies`** and **`useHookAtTopLevel`** are errors. +- **No unused variables or imports** — enforced as errors. +- **widget-light must have zero `dependencies`** — all types are self-contained duplicates. Chain-specific integrations are optional peer deps exposed via subpath exports (`@lifi/widget-light/ethereum`, etc.). +- Package entry points use TypeScript source (`src/index.ts`). The `scripts/formatPackageJson.js` rewrites paths to `dist/esm/` at publish time. +- TypeScript target is ES2020, module resolution is Bundler. + +## Release + +Independent versioning via Lerna. Release flow: +1. `pnpm release:version` — bump versions +2. `pnpm release:build` — build all packages +3. `standard-version` — generate changelog +4. Git tag triggers GitHub Actions publish (`alpha`, `beta`, or `latest` npm tags) + +`scripts/version.js` generates `src/config/version.ts` per-package during build. diff --git a/examples/connectkit/package.json b/examples/connectkit/package.json index 1994ae628..d7e71e028 100644 --- a/examples/connectkit/package.json +++ b/examples/connectkit/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@solana/wallet-adapter-base": "^0.9.27", @@ -22,15 +22,15 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "globals": "^17.3.0", "typescript": "~5.9.3", - "vite": "^7.3.0" + "vite": "^8.0.0" } } diff --git a/examples/deposit-flow/package.json b/examples/deposit-flow/package.json index 5da63a227..6b03fbb8c 100644 --- a/examples/deposit-flow/package.json +++ b/examples/deposit-flow/package.json @@ -10,24 +10,24 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/sdk": "^3.15.5", - "@lifi/widget": "^3.40.6", + "@lifi/sdk": "^3.16.1", + "@lifi/widget": "^3.40.12", "@mui/material": "^7.3.6", "@tanstack/react-query": "^5.90.20", "events": "^3.3.0", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@types/events": "^3.0.3", - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/deposit-flow/vite.config.ts b/examples/deposit-flow/vite.config.ts index 0ebd88173..7c53eeb94 100644 --- a/examples/deposit-flow/vite.config.ts +++ b/examples/deposit-flow/vite.config.ts @@ -5,7 +5,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), nodePolyfills()], - esbuild: { + oxc: { target: 'esnext', }, diff --git a/examples/dynamic/package.json b/examples/dynamic/package.json index 6c566441a..48cffbd9b 100644 --- a/examples/dynamic/package.json +++ b/examples/dynamic/package.json @@ -9,19 +9,19 @@ "preview": "vite preview" }, "dependencies": { - "@bigmi/client": "^0.7.0", - "@bigmi/core": "^0.7.0", - "@bigmi/react": "^0.7.0", - "@dynamic-labs/bitcoin": "^4.60.0", - "@dynamic-labs/ethereum": "^4.60.0", - "@dynamic-labs/ethereum-aa": "^4.60.0", - "@dynamic-labs/sdk-react-core": "^4.60.0", - "@dynamic-labs/solana": "^4.60.0", - "@dynamic-labs/solana-core": "^4.60.0", - "@dynamic-labs/wagmi-connector": "^4.60.0", - "@lifi/sdk": "^3.15.5", - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@bigmi/client": "^0.7.1", + "@bigmi/core": "^0.7.1", + "@bigmi/react": "^0.7.1", + "@dynamic-labs/bitcoin": "^4.67.1", + "@dynamic-labs/ethereum": "^4.67.1", + "@dynamic-labs/ethereum-aa": "^4.67.1", + "@dynamic-labs/sdk-react-core": "^4.67.1", + "@dynamic-labs/solana": "^4.67.1", + "@dynamic-labs/solana-core": "^4.67.1", + "@dynamic-labs/wagmi-connector": "^4.67.1", + "@lifi/sdk": "^3.16.1", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/material": "^7.3.6", "@solana/wallet-adapter-base": "^0.9.27", "@solana/wallet-adapter-react": "^0.15.39", @@ -35,16 +35,16 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "vite-plugin-env-compatible": "^2.0.1", "wagmi": "^2.19.4" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react-swc": "^4.2.3", + "@vitejs/plugin-react": "^4.5.2", "globals": "^17.3.0", "typescript": "^5.9.3", - "vite": "^7.3.0" + "vite": "^8.0.0" } } diff --git a/examples/dynamic/vite.config.ts b/examples/dynamic/vite.config.ts index bafb011a1..8aad5587f 100644 --- a/examples/dynamic/vite.config.ts +++ b/examples/dynamic/vite.config.ts @@ -1,4 +1,4 @@ -import react from '@vitejs/plugin-react-swc' +import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' import EnvCompatible from 'vite-plugin-env-compatible' diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index be89693cb..abc7660f1 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -11,15 +11,15 @@ "node": ">=21.0.0" }, "dependencies": { - "@lifi/sdk": "^3.15.5", - "@lifi/widget": "^3.40.6", + "@lifi/sdk": "^3.16.1", + "@lifi/widget": "^3.40.12", "@mui/material-nextjs": "^7.3.6", "next": "^16", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "typescript": "^5.9.3" diff --git a/examples/nextjs14-page-router/package.json b/examples/nextjs14-page-router/package.json index c33755ac4..7a948b4ea 100644 --- a/examples/nextjs14-page-router/package.json +++ b/examples/nextjs14-page-router/package.json @@ -9,13 +9,13 @@ "lint": "next lint" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "next": "^14", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "eslint": "^8", diff --git a/examples/nextjs14/package.json b/examples/nextjs14/package.json index 79572b907..c32f0952e 100644 --- a/examples/nextjs14/package.json +++ b/examples/nextjs14/package.json @@ -9,15 +9,15 @@ "lint": "next lint" }, "dependencies": { - "@lifi/sdk": "^3.15.5", - "@lifi/widget": "^3.40.6", + "@lifi/sdk": "^3.16.1", + "@lifi/widget": "^3.40.12", "@mui/material-nextjs": "^7.3.6", "next": "^14", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "eslint": "^8", diff --git a/examples/nextjs15/package.json b/examples/nextjs15/package.json index 2e5ef0e5a..153044d90 100644 --- a/examples/nextjs15/package.json +++ b/examples/nextjs15/package.json @@ -11,15 +11,15 @@ "node": ">=21.0.0" }, "dependencies": { - "@lifi/sdk": "^3.15.5", - "@lifi/widget": "^3.40.6", + "@lifi/sdk": "^3.16.1", + "@lifi/widget": "^3.40.12", "@mui/material-nextjs": "^7.3.6", "next": "^15", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "typescript": "^5.9.3" diff --git a/examples/nft-checkout/package.json b/examples/nft-checkout/package.json index d2d223caf..d28a2d4a2 100644 --- a/examples/nft-checkout/package.json +++ b/examples/nft-checkout/package.json @@ -13,7 +13,7 @@ }, "author": "Eugene Chybisov ", "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.13", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/wallet-management": "workspace:*", "@lifi/widget": "workspace:*", "@lifi/widget-provider-bitcoin": "workspace:*", @@ -23,7 +23,7 @@ "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", - "@opensea/seaport-js": "4.0.6", + "@opensea/seaport-js": "4.0.7", "@tanstack/react-query": "^5.90.20", "bignumber.js": "^9.3.0", "ethers": "^6.16.0", @@ -31,15 +31,14 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "react-router-dom": "^7.13.0", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^3.1.0" }, "devDependencies": { - "@esbuild-plugins/node-globals-polyfill": "^0.2.3", - "@vitejs/plugin-react-swc": "^4.2.3", + "@vitejs/plugin-react": "^4.5.2", "source-map-explorer": "^2.5.3", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "0.25.0", "web-vitals": "^5.1.0" }, diff --git a/examples/nft-checkout/vite.config.ts b/examples/nft-checkout/vite.config.ts index 1dfef3f6a..c4f3c705a 100644 --- a/examples/nft-checkout/vite.config.ts +++ b/examples/nft-checkout/vite.config.ts @@ -1,30 +1,16 @@ -import { NodeGlobalsPolyfillPlugin } from '@esbuild-plugins/node-globals-polyfill' -import react from '@vitejs/plugin-react-swc' +import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' import { nodePolyfills } from 'vite-plugin-node-polyfills' // https://vitejs.dev/config/ export default defineConfig({ plugins: [nodePolyfills(), react()], - esbuild: { + oxc: { target: 'esnext', }, build: { sourcemap: true, }, - optimizeDeps: { - esbuildOptions: { - define: { - global: 'globalThis', - }, - plugins: [ - NodeGlobalsPolyfillPlugin({ - process: true, - buffer: true, - }), - ], - }, - }, server: { port: 3000, open: true, diff --git a/examples/nuxt/package.json b/examples/nuxt/package.json index 9001ec9b6..d1b1df20e 100644 --- a/examples/nuxt/package.json +++ b/examples/nuxt/package.json @@ -10,11 +10,11 @@ "postinstall": "nuxt prepare" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "nuxt": "3.17.7", "veaury": "^2.6.3", "vite-plugin-node-polyfills": "^0.25.0", - "vue": "^3.5.27", + "vue": "^3.5.30", "vue-router": "^4.6.4" } } diff --git a/examples/privy-ethers/package.json b/examples/privy-ethers/package.json index ccc68ebb2..0b1d80db1 100644 --- a/examples/privy-ethers/package.json +++ b/examples/privy-ethers/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@privy-io/react-auth": "^2.25.0", @@ -24,21 +24,21 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@eslint/js": "^9.39.2", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "eslint": "^9.34.0", "eslint-plugin-react-hooks": "^7.0.1", - "eslint-plugin-react-refresh": "^0.4.26", + "eslint-plugin-react-refresh": "^0.5.2", "globals": "^17.3.0", "typescript": "~5.9.3", - "typescript-eslint": "^8.54.0", - "vite": "^7.3.0", + "typescript-eslint": "^8.57.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/privy/package.json b/examples/privy/package.json index f4c6e1c02..fcba344b6 100644 --- a/examples/privy/package.json +++ b/examples/privy/package.json @@ -10,13 +10,13 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@privy-io/react-auth": "^2.25.0", "@privy-io/wagmi": "^1.0.6", - "@solana/kit": "^5.5.0", + "@solana/kit": "^6.3.0", "@solana/wallet-adapter-base": "^0.9.27", "@solana/wallet-adapter-react": "^0.15.39", "@solana/web3.js": "^1.98.4", @@ -25,17 +25,17 @@ "permissionless": "^0.2.57", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "globals": "^17.3.0", "typescript": "~5.9.3", - "typescript-eslint": "^8.54.0", - "vite": "^7.3.0", + "typescript-eslint": "^8.57.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/rainbowkit/package.json b/examples/rainbowkit/package.json index f27bcea6d..1fac0055e 100644 --- a/examples/rainbowkit/package.json +++ b/examples/rainbowkit/package.json @@ -9,21 +9,21 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@rainbow-me/rainbowkit": "^2.2.10", "@tanstack/react-query": "^5.90.20", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react-swc": "^4.2.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/rainbowkit/vite.config.ts b/examples/rainbowkit/vite.config.ts index 8bac88d3b..6b5562be1 100644 --- a/examples/rainbowkit/vite.config.ts +++ b/examples/rainbowkit/vite.config.ts @@ -1,4 +1,4 @@ -import react from '@vitejs/plugin-react-swc' +import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' import { nodePolyfills } from 'vite-plugin-node-polyfills' diff --git a/examples/react-router-7/package.json b/examples/react-router-7/package.json index 54479b5f5..8b0d08b23 100644 --- a/examples/react-router-7/package.json +++ b/examples/react-router-7/package.json @@ -10,10 +10,10 @@ "typecheck": "react-router typegen && tsc" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "@react-router/node": "^7.13.0", "@react-router/serve": "^7.13.0", - "isbot": "^5.1.34", + "isbot": "^5.1.36", "react": "^19.2.4", "react-dom": "^19.2.4", "react-router": "^7.13.0", @@ -26,8 +26,8 @@ "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "typescript": "^5.9.3", - "vite": "^7.3.0", - "vite-tsconfig-paths": "^5.1.4" + "vite": "^8.0.0", + "vite-tsconfig-paths": "^6.1.1" }, "engines": { "node": ">=18.0.0" diff --git a/examples/remix/package.json b/examples/remix/package.json index e4d745720..5bb201534 100644 --- a/examples/remix/package.json +++ b/examples/remix/package.json @@ -10,23 +10,23 @@ "typecheck": "tsc" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "@remix-run/css-bundle": "^2.17.2", "@remix-run/node": "^2.17.2", "@remix-run/react": "^2.17.2", "@remix-run/serve": "^2.17.2", - "isbot": "^5.1.34", + "isbot": "^5.1.36", "react": "^19.2.4", "react-dom": "^19.2.4", - "remix-utils": "^9.0.1" + "remix-utils": "^9.3.1" }, "devDependencies": { "@remix-run/dev": "^2.17.2", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "typescript": "^5.9.3", - "vite": "^7.3.0", - "vite-tsconfig-paths": "^5.1.4" + "vite": "^8.0.0", + "vite-tsconfig-paths": "^6.1.1" }, "engines": { "node": ">=18.0.0" diff --git a/examples/reown/package.json b/examples/reown/package.json index b152e5ce7..9c700ac9f 100644 --- a/examples/reown/package.json +++ b/examples/reown/package.json @@ -10,10 +10,13 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@bigmi/client": "^0.7.1", + "@bigmi/core": "^0.7.1", + "@bigmi/react": "^0.7.1", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/material": "^7.3.6", - "@reown/appkit": ">=1.8.17", + "@reown/appkit": ">=1.8.18", "@reown/appkit-adapter-bitcoin": "^1.8.17", "@reown/appkit-adapter-solana": "^1.8.17", "@reown/appkit-adapter-wagmi": "^1.8.17", @@ -25,19 +28,16 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", - "wagmi": "^3.3.2", - "@bigmi/client": "^0.7.0", - "@bigmi/core": "^0.7.0", - "@bigmi/react": "^0.7.0" + "viem": "^2.47.2", + "wagmi": "^3.3.2" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "globals": "^17.3.0", "typescript": "~5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-env-compatible": "^2.0.1" } } diff --git a/examples/svelte/package.json b/examples/svelte/package.json index 7e61307e1..8a3382719 100644 --- a/examples/svelte/package.json +++ b/examples/svelte/package.json @@ -13,19 +13,19 @@ "@sveltejs/vite-plugin-svelte": "^6.2.1", "@tsconfig/svelte": "^5.0.7", "@types/events": "^3.0.3", - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "svelte": "^5.49.2", - "svelte-check": "^4.3.6", + "svelte": "^5.53.11", + "svelte-check": "^4.4.5", "svelte-preprocess": "^6.0.3", "tslib": "^2.8.1", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "react": "^19.2.4", "react-dom": "^19.2.4" } diff --git a/examples/svelte/vite.config.ts b/examples/svelte/vite.config.ts index 6fd31bd74..23cbb4d38 100644 --- a/examples/svelte/vite.config.ts +++ b/examples/svelte/vite.config.ts @@ -5,7 +5,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills' // https://vitejs.dev/config/ export default defineConfig({ plugins: [svelte(), nodePolyfills()], - esbuild: { + oxc: { target: 'esnext', }, server: { diff --git a/examples/tanstack-router/package.json b/examples/tanstack-router/package.json index 90c47510c..79c7ca37b 100644 --- a/examples/tanstack-router/package.json +++ b/examples/tanstack-router/package.json @@ -11,16 +11,16 @@ "dependencies": { "@lifi/widget": "workspace:*", "@tanstack/react-query": "^5.90.20", - "@tanstack/react-router": "^1.158.1", + "@tanstack/react-router": "^1.166.7", "react": "^19.2.4", "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0" + "vite": "^8.0.0" } } diff --git a/examples/tanstack-router/vite.config.ts b/examples/tanstack-router/vite.config.ts index 12f801bdd..cc08567b8 100644 --- a/examples/tanstack-router/vite.config.ts +++ b/examples/tanstack-router/vite.config.ts @@ -4,7 +4,7 @@ import { defineConfig } from 'vite' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], - esbuild: { + oxc: { target: 'esnext', }, server: { diff --git a/examples/vite-iframe-wagmi/package.json b/examples/vite-iframe-wagmi/package.json index 1b9fc55ac..a47b4d0ce 100644 --- a/examples/vite-iframe-wagmi/package.json +++ b/examples/vite-iframe-wagmi/package.json @@ -13,14 +13,14 @@ "@tanstack/react-query": "^5.90.20", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^3.4.2" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0" + "vite": "^8.0.0" } } diff --git a/examples/vite-iframe-wagmi/vite.config.ts b/examples/vite-iframe-wagmi/vite.config.ts index 99fab386e..f1c91b731 100644 --- a/examples/vite-iframe-wagmi/vite.config.ts +++ b/examples/vite-iframe-wagmi/vite.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from 'vite' export default defineConfig({ plugins: [react()], - esbuild: { + oxc: { target: 'esnext', }, server: { diff --git a/examples/vite-iframe/package.json b/examples/vite-iframe/package.json index 94b1f3fa8..f424b615f 100644 --- a/examples/vite-iframe/package.json +++ b/examples/vite-iframe/package.json @@ -11,10 +11,10 @@ "preview": "vite preview" }, "dependencies": { - "@bigmi/react": "0.7.0", + "@bigmi/react": "0.7.1", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@lifi/sdk": "^4.0.0-alpha.13", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/wallet-management": "workspace:*", "@lifi/widget-light": "workspace:*", "@lifi/widget-provider": "workspace:*", @@ -23,22 +23,22 @@ "@lifi/widget-provider-solana": "workspace:*", "@lifi/widget-provider-sui": "workspace:*", "@mui/material": "^7.3.6", - "@mysten/dapp-kit": "^0.19.11", + "@mysten/dapp-kit-react": "^2.0.0", "@tanstack/react-query": "^5.90.20", "@wagmi/connectors": "^7.1.6", "bs58": ">=4.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^3.4.2" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/vite-iframe/src/App.tsx b/examples/vite-iframe/src/App.tsx index be6582ce3..dae07089b 100644 --- a/examples/vite-iframe/src/App.tsx +++ b/examples/vite-iframe/src/App.tsx @@ -1,4 +1,5 @@ -import { useAccount } from '@lifi/wallet-management' +import { useAccount, useWalletMenu } from '@lifi/wallet-management' +import type { ConnectWalletArgs } from '@lifi/widget-light' import { LiFiWidgetLight } from '@lifi/widget-light' import { useBitcoinIframeHandler } from '@lifi/widget-light/bitcoin' import { useEthereumIframeHandler } from '@lifi/widget-light/ethereum' @@ -8,17 +9,44 @@ import { useSolanaWalletStandard, useWalletAccount, } from '@lifi/widget-provider-solana' -import { Box, Typography } from '@mui/material' -import { useMemo } from 'react' +import { Box, Button, Typography } from '@mui/material' +import { useCallback, useMemo, useState } from 'react' import { WalletHeader } from './components/WalletHeader' -import { widgetConfig } from './widgetConfig' +import { WidgetEventsLogger } from './components/WidgetEventsLogger' +import { widgetConfig as baseWidgetConfig } from './widgetConfig' const WIDGET_URL = import.meta.env.VITE_WIDGET_URL || 'https://widget.li.fi' const WIDGET_ORIGIN = new URL(WIDGET_URL).origin export function HostApp() { const { account } = useAccount() + const { openWalletMenu } = useWalletMenu() + // -- Config reactivity demo: toggle variant between 'wide' and 'compact' -- + const [variant, setVariant] = useState<'wide' | 'compact'>('wide') + const toggleVariant = useCallback( + () => setVariant((v) => (v === 'wide' ? 'compact' : 'wide')), + [] + ) + + // -- External wallet connect: open host wallet modal on iframe request -- + const handleConnect = useCallback( + (args?: ConnectWalletArgs) => { + console.log('[HostApp] onConnect request from widget', args) + openWalletMenu() + }, + [openWalletMenu] + ) + + const widgetConfig = useMemo( + () => ({ + ...baseWidgetConfig, + variant, + }), + [variant] + ) + + // -- Ecosystem handlers -- const ethHandler = useEthereumIframeHandler() const { selectedWallet, connected } = useSolanaWalletStandard() @@ -56,16 +84,25 @@ export function HostApp() { )} + + + + + + ) } diff --git a/examples/vite-iframe/src/components/WidgetEventsLogger.tsx b/examples/vite-iframe/src/components/WidgetEventsLogger.tsx new file mode 100644 index 000000000..f0a900e61 --- /dev/null +++ b/examples/vite-iframe/src/components/WidgetEventsLogger.tsx @@ -0,0 +1,37 @@ +import { + useWidgetLightEvents, + WidgetLightEvent, + type WidgetLightEvents, +} from '@lifi/widget-light' +import { useEffect } from 'react' + +/** + * Subscribes to all widget-light events and logs them to the console. + * Demonstrates that `useWidgetLightEvents` can be used in any component, + * independent of where `` is mounted. + */ +export function WidgetEventsLogger() { + const events = useWidgetLightEvents() + + useEffect(() => { + const eventNames = Object.values(WidgetLightEvent) as Array< + keyof WidgetLightEvents + > + + const handlers = eventNames.map((eventName) => { + const handler = (data: WidgetLightEvents[typeof eventName]) => { + console.log(`[WidgetLightEvent] ${eventName}`, data) + } + events.on(eventName, handler) + return { eventName, handler } + }) + + return () => { + for (const { eventName, handler } of handlers) { + events.off(eventName, handler) + } + } + }, [events]) + + return null +} diff --git a/examples/vite-iframe/vite.config.ts b/examples/vite-iframe/vite.config.ts index 28ce9a2df..98fae4e14 100644 --- a/examples/vite-iframe/vite.config.ts +++ b/examples/vite-iframe/vite.config.ts @@ -6,7 +6,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills' // The guest (iframe) page is served from VITE_WIDGET_URL (default: https://widget.li.fi). export default defineConfig({ plugins: [nodePolyfills(), react()], - esbuild: { + oxc: { target: 'esnext', }, server: { diff --git a/examples/vite/package.json b/examples/vite/package.json index 60417c9ab..c316bbc00 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -10,26 +10,26 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/sdk": "^3.15.5", - "@lifi/wallet-management": "^3.22.5", - "@lifi/widget": "^3.40.6", + "@lifi/sdk": "^3.16.1", + "@lifi/wallet-management": "^3.22.8", + "@lifi/widget": "^3.40.12", "@mui/material": "^7.3.6", "@tanstack/react-query": "^5.90.20", "@wagmi/connectors": "^7.1.6", "events": "^3.3.0", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^2.19.4" }, "devDependencies": { "@types/events": "^3.0.3", - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/examples/vite/vite.config.ts b/examples/vite/vite.config.ts index 0ebd88173..7c53eeb94 100644 --- a/examples/vite/vite.config.ts +++ b/examples/vite/vite.config.ts @@ -5,7 +5,7 @@ import { nodePolyfills } from 'vite-plugin-node-polyfills' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), nodePolyfills()], - esbuild: { + oxc: { target: 'esnext', }, diff --git a/examples/vue/package.json b/examples/vue/package.json index 78d5255a4..e2f88cd0c 100644 --- a/examples/vue/package.json +++ b/examples/vue/package.json @@ -9,16 +9,16 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "veaury": "^2.6.3", - "vue": "^3.5.27" + "vue": "^3.5.30" }, "devDependencies": { - "@vitejs/plugin-react": "^5.1.3", - "@vitejs/plugin-vue": "^6.0.4", - "@vitejs/plugin-vue-jsx": "^5.1.4", + "@vitejs/plugin-react": "^6.0.0", + "@vitejs/plugin-vue": "^6.0.5", + "@vitejs/plugin-vue-jsx": "^5.1.5", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0", "vue-tsc": "^3.2.4" } diff --git a/examples/vue/vite.config.ts b/examples/vue/vite.config.ts index e76ebe183..c4f210e24 100644 --- a/examples/vue/vite.config.ts +++ b/examples/vue/vite.config.ts @@ -22,7 +22,7 @@ export default defineConfig({ }), nodePolyfills(), ], - esbuild: { + oxc: { target: 'esnext', }, server: { diff --git a/examples/zustand-widget-config/package.json b/examples/zustand-widget-config/package.json index 42cca7bdc..c9a66fc99 100644 --- a/examples/zustand-widget-config/package.json +++ b/examples/zustand-widget-config/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@lifi/widget": "^3.40.6", + "@lifi/widget": "^3.40.12", "@mui/material": "^7.3.6", "@tanstack/react-query": "^5.90.20", "react": "^19.2.4", @@ -20,10 +20,10 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^5.1.3", + "@vitejs/plugin-react": "^4.5.2", "globals": "^17.3.0", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" } } diff --git a/knip.json b/knip.json index d51617671..f5c0d9431 100644 --- a/knip.json +++ b/knip.json @@ -9,7 +9,7 @@ "viem", "@bigmi/client", "@bigmi/react", - "@mysten/dapp-kit", + "@mysten/dapp-kit-react", "@wallet-standard/base" ] }, diff --git a/package.json b/package.json index efacee716..5b52ef932 100644 --- a/package.json +++ b/package.json @@ -55,16 +55,16 @@ }, "devDependencies": { "@biomejs/biome": "^2.3.14", - "@commitlint/cli": "^20.4.1", - "@commitlint/config-conventional": "^20.4.1", - "@types/node": "^25.2.1", + "@commitlint/cli": "^20.4.4", + "@commitlint/config-conventional": "^20.4.4", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "fs-extra": "^11.3.3", "husky": "^9.1.7", - "knip": "^5.83.0", - "lerna": "^9.0.3", - "lint-staged": "^16.2.7", + "knip": "^5.86.0", + "lerna": "^9.0.6", + "lint-staged": "^16.3.3", "standard-version": "^9.5.0", "typescript": "^5.9.3" }, @@ -91,5 +91,5 @@ "zod": ">=4.1.11" } }, - "packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017" + "packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be" } diff --git a/packages/wallet-management/package.json b/packages/wallet-management/package.json index 89d690f04..07183b74e 100644 --- a/packages/wallet-management/package.json +++ b/packages/wallet-management/package.json @@ -46,14 +46,14 @@ "dependencies": { "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/widget-provider": "workspace:*", "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", - "i18next": "^25.8.4", + "i18next": "^25.8.18", "mitt": "^3.0.1", - "react-i18next": "^16.5.4", + "react-i18next": "^16.5.8", "zustand": "^5.0.11" }, "devDependencies": { diff --git a/packages/widget-embedded/package.json b/packages/widget-embedded/package.json index 4ac1795c1..c96917636 100644 --- a/packages/widget-embedded/package.json +++ b/packages/widget-embedded/package.json @@ -12,29 +12,31 @@ }, "author": "Eugene Chybisov ", "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-solana": "^4.0.0-alpha.20", + "@lifi/sdk-provider-sui": "^4.0.0-beta.0", + "@mysten/sui": "^2.6.0", "@lifi/wallet-management": "workspace:*", - "@lifi/widget-provider": "workspace:*", "@lifi/widget": "workspace:*", "@lifi/widget-light": "workspace:*", + "@lifi/widget-provider": "workspace:*", "@lifi/widget-provider-bitcoin": "workspace:*", "@lifi/widget-provider-ethereum": "workspace:*", "@lifi/widget-provider-solana": "workspace:*", "@lifi/widget-provider-sui": "workspace:*", "@tanstack/react-query": "^5.90.20", + "@wagmi/core": "^3.3.2", "react": "^19.2.4", "react-dom": "^19.2.4", - "@wagmi/core": "^3.3.2", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^3.4.2" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react-swc": "^4.2.3", + "@vitejs/plugin-react": "^4.5.2", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0", "web-vitals": "^5.1.0" }, diff --git a/packages/widget-embedded/src/App.tsx b/packages/widget-embedded/src/App.tsx index f92dd3a92..6eada1e4d 100644 --- a/packages/widget-embedded/src/App.tsx +++ b/packages/widget-embedded/src/App.tsx @@ -5,6 +5,7 @@ import { BitcoinIframeProviderValues } from './providers/iframe/BitcoinIframePro import { SolanaIframeProviderValues } from './providers/iframe/SolanaIframeProviderValues.js' import { SuiIframeProviderValues } from './providers/iframe/SuiIframeProviderValues.js' import { useEmbeddedWidgetConfig } from './providers/WidgetConfigProvider.js' +import { WidgetEventsBridge } from './providers/WidgetEventsBridge.js' const IFRAME_PROVIDERS = [ EthereumProvider(), @@ -41,10 +42,13 @@ export function App() { } return ( - + <> + + + ) } diff --git a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx index b90a98724..9bf04f6c5 100644 --- a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx +++ b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx @@ -1,4 +1,5 @@ import type { WidgetConfig } from '@lifi/widget' +import type { WidgetLightConfig } from '@lifi/widget-light' import { GuestBridge } from '@lifi/widget-light' import { createContext, @@ -6,6 +7,7 @@ import { type PropsWithChildren, useContext, useEffect, + useMemo, useState, } from 'react' @@ -19,31 +21,59 @@ const WidgetConfigContext = createContext | null>(null) export const useEmbeddedWidgetConfig = () => useContext(WidgetConfigContext) +/** + * Converts the serializable WidgetLightConfig into a Partial, + * injecting `walletConfig.onConnect` when the host signals external wallet + * management via `useExternalWalletManagement`. + */ +function toWidgetConfig(cfg: WidgetLightConfig): Partial { + const base = cfg as unknown as Partial + if (!cfg.walletConfig?.useExternalWalletManagement) { + return base + } + const bridge = GuestBridge.getInstance() + return { + ...base, + walletConfig: { + ...base.walletConfig, + onConnect(args) { + bridge.sendConnectWalletRequest( + args + ? { chainId: args.chain?.id, chainType: args.chainType } + : undefined + ) + }, + }, + } +} + export const WidgetConfigProvider: FC = ({ children }) => { - const [config, setConfig] = useState | null>(() => { - if (isInsideIframe) { - const bridge = GuestBridge.getInstance() - const existing = bridge.config - if (existing) { - return existing as unknown as Partial + const [lightConfig, setLightConfig] = useState( + () => { + if (isInsideIframe) { + return GuestBridge.getInstance().config } return null } - return DEFAULT_CONFIG - }) + ) useEffect(() => { if (!isInsideIframe) { return } const bridge = GuestBridge.getInstance() - return bridge.onConfig((cfg) => { - setConfig(cfg as unknown as Partial) - }) + return bridge.onConfig(setLightConfig) }, []) + const config = useMemo( + () => (lightConfig ? toWidgetConfig(lightConfig) : null), + [lightConfig] + ) + + const value = isInsideIframe ? config : DEFAULT_CONFIG + return ( - + {children} ) diff --git a/packages/widget-embedded/src/providers/WidgetEventsBridge.tsx b/packages/widget-embedded/src/providers/WidgetEventsBridge.tsx new file mode 100644 index 000000000..6d4c4b9c3 --- /dev/null +++ b/packages/widget-embedded/src/providers/WidgetEventsBridge.tsx @@ -0,0 +1,93 @@ +import { widgetEvents as walletMgmtEvents } from '@lifi/wallet-management' +import { widgetEvents } from '@lifi/widget' +import { GuestBridge } from '@lifi/widget-light' +import { useEffect } from 'react' + +/** + * Guest-side (iframe) bridge that forwards widget events to the host. + * + * Listens for WIDGET_EVENT_SUBSCRIBE/UNSUBSCRIBE messages from the host + * and only forwards events that the host has subscribed to. + * + * Renders nothing — mount once, high in the tree. + */ +export function WidgetEventsBridge() { + useEffect(() => { + const bridge = GuestBridge.getInstance() + const noopHandler = () => {} + let listenersAttached = false + + // Events that gate on widgetEvents.all.has() need a specific no-op + // listener so the gate check passes (mitt wildcard doesn't register + // under specific event keys). + const isGatedEvent = (event: string) => event === 'contactSupport' + + const wildcardHandler = (type: string, data: unknown) => { + if (bridge.getSubscribedEvents().has(type)) { + bridge.sendWidgetEvent(type, data) + } + } + + const walletConnectedHandler = (data: unknown) => { + if (bridge.getSubscribedEvents().has('walletConnected')) { + bridge.sendWidgetEvent('walletConnected', data) + } + } + + const walletDisconnectedHandler = (data: unknown) => { + if (bridge.getSubscribedEvents().has('walletDisconnected')) { + bridge.sendWidgetEvent('walletDisconnected', data) + } + } + + const attach = () => { + if (listenersAttached) { + return + } + listenersAttached = true + widgetEvents.on('*', wildcardHandler) + walletMgmtEvents.on('walletConnected', walletConnectedHandler) + walletMgmtEvents.on('walletDisconnected', walletDisconnectedHandler) + } + + const detach = () => { + if (!listenersAttached) { + return + } + listenersAttached = false + widgetEvents.off('*', wildcardHandler) + walletMgmtEvents.off('walletConnected', walletConnectedHandler) + walletMgmtEvents.off('walletDisconnected', walletDisconnectedHandler) + widgetEvents.off('contactSupport', noopHandler) + } + + if (bridge.getSubscribedEvents().size > 0) { + attach() + } + + const unsubBridge = bridge.onWidgetEventSubscriptionChange( + (event, isSubscribed) => { + if (isSubscribed) { + attach() + if (isGatedEvent(event)) { + widgetEvents.on('contactSupport', noopHandler) + } + } else { + if (isGatedEvent(event)) { + widgetEvents.off('contactSupport', noopHandler) + } + if (bridge.getSubscribedEvents().size === 0) { + detach() + } + } + } + ) + + return () => { + unsubBridge() + detach() + } + }, []) + + return null +} diff --git a/packages/widget-embedded/src/providers/iframe/IframeSuiSigner.ts b/packages/widget-embedded/src/providers/iframe/IframeSuiSigner.ts new file mode 100644 index 000000000..005f2ba4e --- /dev/null +++ b/packages/widget-embedded/src/providers/iframe/IframeSuiSigner.ts @@ -0,0 +1,57 @@ +import type { PublicKey, SignatureScheme } from '@mysten/sui/cryptography' +import { Signer } from '@mysten/sui/cryptography' +import type { SuiIframeProvider } from './SuiIframeProvider.js' + +/** + * Guest-side Signer that delegates all signing operations to the host + * via the iframe bridge (SuiIframeProvider → GuestBridge → postMessage). + * + * The host receives RPC_REQUEST messages and uses the real wallet + * (via dapp-kit-react's CurrentAccountSigner) to sign. + */ +export class IframeSuiSigner extends Signer { + #address: string + #provider: SuiIframeProvider + + constructor(address: string, provider: SuiIframeProvider) { + super() + this.#address = address + this.#provider = provider + } + + override toSuiAddress(): string { + return this.#address + } + + getKeyScheme(): SignatureScheme { + throw new Error('getKeyScheme is not available in iframe context') + } + + getPublicKey(): PublicKey { + throw new Error('getPublicKey is not available in iframe context') as never + } + + async sign(_bytes: Uint8Array): Promise> { + throw new Error('Raw sign is not available in iframe context') + } + + override async signTransaction( + bytes: Uint8Array + ): Promise<{ bytes: string; signature: string }> { + const base64 = btoa(String.fromCharCode(...bytes)) + const result = await this.#provider.request('signTransaction', { + transaction: base64, + }) + return result as { bytes: string; signature: string } + } + + override async signPersonalMessage( + bytes: Uint8Array + ): Promise<{ bytes: string; signature: string }> { + const base64 = btoa(String.fromCharCode(...bytes)) + const result = await this.#provider.request('signPersonalMessage', { + message: base64, + }) + return result as { bytes: string; signature: string } + } +} diff --git a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx index 124603ef8..89c62237a 100644 --- a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx @@ -1,12 +1,16 @@ import { ChainId, ChainType } from '@lifi/sdk' +import { SuiProvider as SuiSDKProvider } from '@lifi/sdk-provider-sui' import { SuiContext } from '@lifi/widget-provider' +import { SuiJsonRpcClient } from '@mysten/sui/jsonRpc' import { type FC, type PropsWithChildren, useEffect, + useMemo, useRef, useState, } from 'react' +import { IframeSuiSigner } from './IframeSuiSigner.js' import { SuiIframeProvider } from './SuiIframeProvider.js' interface IframeWalletState { @@ -87,12 +91,25 @@ export const SuiIframeProviderValues: FC = ({ status: 'disconnected' as const, } + const sdkProvider = useMemo( + () => + SuiSDKProvider({ + getClient: async () => + new SuiJsonRpcClient({ + url: 'https://fullnode.mainnet.sui.io:443', + network: 'mainnet', + }), + getSigner: async () => new IframeSuiSigner(address!, provider), + }), + [address, provider] + ) + return ( =18", @@ -86,7 +86,7 @@ "@bigmi/react": { "optional": true }, - "@mysten/dapp-kit": { + "@mysten/dapp-kit-react": { "optional": true }, "@wallet-standard/base": { diff --git a/packages/widget-light/src/guest/GuestBridge.ts b/packages/widget-light/src/guest/GuestBridge.ts index b079dae11..20b4f9653 100644 --- a/packages/widget-light/src/guest/GuestBridge.ts +++ b/packages/widget-light/src/guest/GuestBridge.ts @@ -1,4 +1,5 @@ import type { + ConnectWalletArgs, EcosystemInitState, HostMessage, WidgetLightChainType, @@ -15,6 +16,7 @@ interface PendingRequest { type InitCallback = (state: unknown) => void type EventCallback = (event: string, data: unknown) => void type ConfigCallback = (config: WidgetLightConfig) => void +type SubscriptionChangeCallback = (event: string, subscribed: boolean) => void const RPC_TIMEOUT_MS = 60_000 @@ -52,6 +54,8 @@ export class GuestBridge { Set >() private readonly configCallbacks = new Set() + private readonly subscribedEvents = new Set() + private readonly subscriptionCallbacks = new Set() private readonly initPromise: Promise private initResolve!: () => void @@ -186,6 +190,50 @@ export class GuestBridge { } } + /** + * Register a callback invoked when the host subscribes or unsubscribes + * from a widget event. Returns an unsubscribe function. + */ + onWidgetEventSubscriptionChange( + callback: SubscriptionChangeCallback + ): () => void { + this.subscriptionCallbacks.add(callback) + return () => { + this.subscriptionCallbacks.delete(callback) + } + } + + /** Returns the set of event names the host is currently subscribed to. */ + getSubscribedEvents(): ReadonlySet { + return this.subscribedEvents + } + + /** Forward a widget event to the host via postMessage. */ + sendWidgetEvent(event: string, data: unknown): void { + if (typeof window === 'undefined' || window.parent === window) { + return + } + window.parent.postMessage( + { source: WIDGET_LIGHT_SOURCE, type: 'WIDGET_EVENT', event, data }, + this.trustedOrigin + ) + } + + /** Request the host to open its external wallet connect modal. */ + sendConnectWalletRequest(args?: ConnectWalletArgs): void { + if (typeof window === 'undefined' || window.parent === window) { + return + } + window.parent.postMessage( + { + source: WIDGET_LIGHT_SOURCE, + type: 'CONNECT_WALLET_REQUEST', + args, + }, + this.trustedOrigin + ) + } + // --------------------------------------------------------------------------- // Private // --------------------------------------------------------------------------- @@ -228,12 +276,36 @@ export class GuestBridge { case 'INIT': this.handleInit(msg, event.origin) break + case 'CONFIG_UPDATE': + this.handleConfigUpdate(msg) + break case 'RPC_RESPONSE': this.handleRpcResponse(msg) break case 'EVENT': this.handleEvent(msg) break + case 'WIDGET_EVENT_SUBSCRIBE': + this.subscribedEvents.add(msg.event) + for (const cb of this.subscriptionCallbacks) { + cb(msg.event, true) + } + break + case 'WIDGET_EVENT_UNSUBSCRIBE': + this.subscribedEvents.delete(msg.event) + for (const cb of this.subscriptionCallbacks) { + cb(msg.event, false) + } + break + } + } + + private handleConfigUpdate( + msg: Extract + ): void { + this._config = msg.config + for (const configCb of this.configCallbacks) { + configCb(this._config) } } diff --git a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts index fed276594..649b5faaf 100644 --- a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts +++ b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts @@ -1,11 +1,16 @@ -import { useCurrentWallet, useWallets } from '@mysten/dapp-kit' +import { + CurrentAccountSigner, + useCurrentWallet, + useDAppKit, + useWalletConnection, +} from '@mysten/dapp-kit-react' import { useCallback, useEffect, useRef } from 'react' import type { IframeEcosystemHandler } from '../../shared/protocol.js' /** * Host-side hook that creates an `IframeEcosystemHandler` for Sui (MVM). * - * Uses dapp-kit hooks internally to access the connected Sui wallet + * Uses dapp-kit-react hooks internally to access the connected Sui wallet * and forwards method calls from the guest iframe. * * Supported methods: @@ -15,14 +20,15 @@ import type { IframeEcosystemHandler } from '../../shared/protocol.js' * - `signAndExecuteTransaction` → sign and execute a transaction block */ export function useSuiIframeHandler(): IframeEcosystemHandler { - const wallets = useWallets() - const { currentWallet, connectionStatus } = useCurrentWallet() + const dAppKit = useDAppKit() + const currentWallet = useCurrentWallet() + const { status: connectionStatus } = useWalletConnection() const address = currentWallet?.accounts?.[0]?.address const isConnected = connectionStatus === 'connected' - const stateRef = useRef({ address, isConnected, currentWallet, wallets }) - stateRef.current = { address, isConnected, currentWallet, wallets } + const stateRef = useRef({ address, isConnected, dAppKit }) + stateRef.current = { address, isConnected, dAppKit } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -51,12 +57,12 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { const handleRequest = useCallback( async (_id: string, method: string, params?: unknown) => { - const { currentWallet, address } = stateRef.current - if (!currentWallet || !address) { + const { address, dAppKit } = stateRef.current + if (!address) { throw new Error('Sui wallet not connected') } - const features = currentWallet.features as Record + const signer = new CurrentAccountSigner(dAppKit) switch (method) { case 'getAccount': @@ -64,18 +70,10 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { case 'signTransaction': { const { transaction } = params as { transaction: string } - const signFeature = features['sui:signTransaction'] - if (!signFeature) { - throw new Error('Wallet does not support signTransaction') - } - const account = currentWallet.accounts[0] const txBytes = Uint8Array.from(atob(transaction), (c) => c.charCodeAt(0) ) - const result = await signFeature.signTransaction({ - account, - transaction: txBytes, - }) + const result = await signer.signTransaction(txBytes) return { signature: result.signature, bytes: result.bytes, @@ -84,18 +82,10 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { case 'signPersonalMessage': { const { message } = params as { message: string } - const signFeature = features['sui:signPersonalMessage'] - if (!signFeature) { - throw new Error('Wallet does not support signPersonalMessage') - } - const account = currentWallet.accounts[0] const msgBytes = Uint8Array.from(atob(message), (c) => c.charCodeAt(0) ) - const result = await signFeature.signPersonalMessage({ - account, - message: msgBytes, - }) + const result = await signer.signPersonalMessage(msgBytes) return { signature: result.signature, bytes: result.bytes, @@ -105,19 +95,9 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { case 'signAndExecuteTransaction': { const { transaction } = params as { transaction: string - options?: Record } - const execFeature = features['sui:signAndExecuteTransaction'] - if (!execFeature) { - throw new Error('Wallet does not support signAndExecuteTransaction') - } - const account = currentWallet.accounts[0] - const txBytes = Uint8Array.from(atob(transaction), (c) => - c.charCodeAt(0) - ) - const result = await execFeature.signAndExecuteTransaction({ - account, - transaction: txBytes, + const result = await dAppKit.signAndExecuteTransaction({ + transaction, }) return result } diff --git a/packages/widget-light/src/host/WidgetLight.tsx b/packages/widget-light/src/host/WidgetLight.tsx index 34f301c91..2a95a67b8 100644 --- a/packages/widget-light/src/host/WidgetLight.tsx +++ b/packages/widget-light/src/host/WidgetLight.tsx @@ -1,5 +1,6 @@ import type { CSSProperties } from 'react' import type { + ConnectWalletArgs, IframeEcosystemHandler, WidgetLightConfig, } from '../shared/protocol.js' @@ -29,6 +30,12 @@ export interface WidgetLightProps { * iframe should fill its parent and scroll internally. */ autoResize?: boolean + /** + * Called when the widget requests an external wallet connection. + * When provided, the widget will send a CONNECT_WALLET_REQUEST to the + * host instead of opening its internal wallet menu. + */ + onConnect?(args?: ConnectWalletArgs): void style?: CSSProperties className?: string title?: string @@ -53,6 +60,7 @@ export function WidgetLight({ handlers, iframeOrigin, autoResize, + onConnect, style, className, title = 'LI.FI Widget', @@ -62,6 +70,7 @@ export function WidgetLight({ handlers, iframeOrigin, autoResize, + onConnect, }) return ( diff --git a/packages/widget-light/src/host/WidgetLightEventBus.ts b/packages/widget-light/src/host/WidgetLightEventBus.ts new file mode 100644 index 000000000..033ecbc59 --- /dev/null +++ b/packages/widget-light/src/host/WidgetLightEventBus.ts @@ -0,0 +1,96 @@ +import type { HostMessage } from '../shared/protocol.js' +import { WIDGET_LIGHT_SOURCE } from '../shared/protocol.js' +import type { WidgetLightEvents } from '../shared/widgetLightEvents.js' + +type SendFn = (msg: HostMessage) => void +type Handler = (data: unknown) => void + +const listeners = new Map>() +const refCounts = new Map() +let _sendFn: SendFn | null = null + +function sendSubscribe(event: string): void { + _sendFn?.({ + source: WIDGET_LIGHT_SOURCE, + type: 'WIDGET_EVENT_SUBSCRIBE', + event, + }) +} + +function sendUnsubscribe(event: string): void { + _sendFn?.({ + source: WIDGET_LIGHT_SOURCE, + type: 'WIDGET_EVENT_UNSUBSCRIBE', + event, + }) +} + +function _register(send: SendFn): void { + _sendFn = send + // Replay existing subscriptions to the newly registered iframe + for (const [event, count] of refCounts) { + if (count > 0) { + send({ + source: WIDGET_LIGHT_SOURCE, + type: 'WIDGET_EVENT_SUBSCRIBE', + event, + }) + } + } +} + +function _unregister(): void { + _sendFn = null +} + +function _receiveEvent(event: string, data: unknown): void { + const handlers = listeners.get(event) + if (!handlers) { + return + } + for (const h of handlers) { + h(data) + } +} + +function on( + event: E, + handler: (data: WidgetLightEvents[E]) => void +): void { + const key = event as string + let set = listeners.get(key) + if (!set) { + set = new Set() + listeners.set(key, set) + } + set.add(handler as Handler) + + const prev = refCounts.get(key) ?? 0 + refCounts.set(key, prev + 1) + if (prev === 0) { + sendSubscribe(key) + } +} + +function off( + event: E, + handler: (data: WidgetLightEvents[E]) => void +): void { + const key = event as string + listeners.get(key)?.delete(handler as Handler) + + const prev = refCounts.get(key) ?? 0 + const next = Math.max(0, prev - 1) + refCounts.set(key, next) + if (prev > 0 && next === 0) { + sendUnsubscribe(key) + } +} + +export const WidgetLightEventBus = { + on, + off, + _register, + _unregister, + _receiveEvent, +} diff --git a/packages/widget-light/src/host/useWidgetLightEvents.ts b/packages/widget-light/src/host/useWidgetLightEvents.ts new file mode 100644 index 000000000..5cf01094f --- /dev/null +++ b/packages/widget-light/src/host/useWidgetLightEvents.ts @@ -0,0 +1,40 @@ +import { useMemo } from 'react' +import type { WidgetLightEvents } from '../shared/widgetLightEvents.js' +import { WidgetLightEventBus } from './WidgetLightEventBus.js' + +export interface WidgetLightEventEmitter { + on( + event: E, + handler: (data: WidgetLightEvents[E]) => void + ): void + off( + event: E, + handler: (data: WidgetLightEvents[E]) => void + ): void +} + +/** + * React hook that returns a typed event emitter for widget events. + * + * Can be used in any component — does not need to be co-located with + * `` or `useWidgetLightHost`. + * + * @example + * function MyComponent() { + * const events = useWidgetLightEvents() + * useEffect(() => { + * const handler = (route) => console.log('Route completed', route) + * events.on('routeExecutionCompleted', handler) + * return () => events.off('routeExecutionCompleted', handler) + * }, [events]) + * } + */ +export function useWidgetLightEvents(): WidgetLightEventEmitter { + return useMemo( + () => ({ + on: WidgetLightEventBus.on, + off: WidgetLightEventBus.off, + }), + [] + ) +} diff --git a/packages/widget-light/src/host/useWidgetLightHost.ts b/packages/widget-light/src/host/useWidgetLightHost.ts index 6b811770b..15c4d193f 100644 --- a/packages/widget-light/src/host/useWidgetLightHost.ts +++ b/packages/widget-light/src/host/useWidgetLightHost.ts @@ -1,10 +1,12 @@ import { useCallback, useEffect, useRef } from 'react' import type { + ConnectWalletArgs, HostMessage, IframeEcosystemHandler, WidgetLightConfig, } from '../shared/protocol.js' import { WIDGET_LIGHT_SOURCE } from '../shared/protocol.js' +import { WidgetLightEventBus } from './WidgetLightEventBus.js' export interface UseWidgetLightHostOptions { /** @@ -30,6 +32,13 @@ export interface UseWidgetLightHostOptions { * trigger a re-render of the host tree. */ autoResize?: boolean + /** + * Called when the widget requests an external wallet connection. + * If provided, the widget inside the iframe will call this instead of + * opening its internal wallet menu. Use this to open your own wallet + * connect modal on the host page. + */ + onConnect?(args?: ConnectWalletArgs): void } /** @@ -58,11 +67,15 @@ export function useWidgetLightHost({ handlers = [], iframeOrigin, autoResize = true, + onConnect, }: UseWidgetLightHostOptions) { const iframeRef = useRef(null) - const stateRef = useRef({ config, handlers }) - stateRef.current = { config, handlers } + const stateRef = useRef({ config, handlers, onConnect }) + stateRef.current = { config, handlers, onConnect } + + // Tracks whether the READY→INIT handshake has completed at least once. + const readyRef = useRef(false) // --------------------------------------------------------------------------- // Memoised helper — stable reference so it can be a proper effect dependency @@ -96,17 +109,18 @@ export function useWidgetLightHost({ // ── READY ────────────────────────────────────────────────────────────── if (msg.type === 'READY') { - const { config, handlers } = stateRef.current + const { config, handlers, onConnect } = stateRef.current const ecosystems = handlers .map((h) => h.getInitState()) .filter(Boolean) as NonNullable< ReturnType >[] + readyRef.current = true sendToIframe({ source: WIDGET_LIGHT_SOURCE, type: 'INIT', - config, + config: enrichConfig(config, onConnect), ecosystems, }) return @@ -120,6 +134,18 @@ export function useWidgetLightHost({ return } + // ── WIDGET_EVENT ─────────────────────────────────────────────────────── + if (msg.type === 'WIDGET_EVENT') { + WidgetLightEventBus._receiveEvent(msg.event, msg.data) + return + } + + // ── CONNECT_WALLET_REQUEST ──────────────────────────────────────── + if (msg.type === 'CONNECT_WALLET_REQUEST') { + stateRef.current.onConnect?.(msg.args) + return + } + // ── RPC_REQUEST ──────────────────────────────────────────────────────── if (msg.type === 'RPC_REQUEST') { const { handlers } = stateRef.current @@ -172,6 +198,19 @@ export function useWidgetLightHost({ return () => window.removeEventListener('message', handleMessage) }, [autoResize, iframeOrigin, sendToIframe]) + // --------------------------------------------------------------------------- + // Push config updates to the iframe when config changes (after INIT) + // --------------------------------------------------------------------------- + useEffect(() => { + if (readyRef.current) { + sendToIframe({ + source: WIDGET_LIGHT_SOURCE, + type: 'CONFIG_UPDATE', + config: enrichConfig(config, onConnect), + }) + } + }, [config, onConnect, sendToIframe]) + // --------------------------------------------------------------------------- // Subscribe to each handler's events and forward them to the iframe // --------------------------------------------------------------------------- @@ -194,5 +233,36 @@ export function useWidgetLightHost({ } }, [handlers, sendToIframe]) + // --------------------------------------------------------------------------- + // Register/unregister the event bus send function + // --------------------------------------------------------------------------- + useEffect(() => { + WidgetLightEventBus._register(sendToIframe) + return () => { + WidgetLightEventBus._unregister() + } + }, [sendToIframe]) + return { iframeRef } } + +/** + * Injects `useExternalWalletManagement` into the config when the host + * provides an `onConnect` callback, so the guest knows to send + * CONNECT_WALLET_REQUEST instead of opening its internal wallet menu. + */ +function enrichConfig( + config: WidgetLightConfig, + onConnect?: (args?: ConnectWalletArgs) => void +): WidgetLightConfig { + if (!onConnect) { + return config + } + return { + ...config, + walletConfig: { + ...config.walletConfig, + useExternalWalletManagement: true, + }, + } +} diff --git a/packages/widget-light/src/index.ts b/packages/widget-light/src/index.ts index 5f4ce775a..2aeaeb769 100644 --- a/packages/widget-light/src/index.ts +++ b/packages/widget-light/src/index.ts @@ -1,18 +1,26 @@ export { GuestBridge } from './guest/GuestBridge.js' +export type { WidgetLightEventEmitter } from './host/useWidgetLightEvents.js' +export { useWidgetLightEvents } from './host/useWidgetLightEvents.js' export type { UseWidgetLightHostOptions } from './host/useWidgetLightHost.js' export { useWidgetLightHost } from './host/useWidgetLightHost.js' export type { WidgetLightProps as WidgetLightIframeProps } from './host/WidgetLight.js' export { WidgetLight as LiFiWidgetLight } from './host/WidgetLight.js' export type { + ConnectWalletArgs, EcosystemInitState, + GuestConnectWalletRequest, GuestMessage, GuestReadyMessage, GuestResizeMessage, GuestRpcRequest, + GuestWidgetEvent, + HostConfigUpdateMessage, HostEventMessage, HostInitMessage, HostMessage, HostRpcResponse, + HostWidgetEventSubscribe, + HostWidgetEventUnsubscribe, IframeEcosystemHandler, RpcError, WidgetLightChainType, @@ -23,3 +31,57 @@ export { isWidgetLightMessage, WIDGET_LIGHT_SOURCE, } from './shared/protocol.js' +export type { + WidgetAllowDeny, + WidgetAppearance, + WidgetBaseToken, + WidgetChains, + WidgetChainType, + WidgetContractCall, + WidgetContractTool, + WidgetCSSProperties, + WidgetCustomSubvariant, + WidgetDefaultUI, + WidgetDisabledUI, + WidgetExplorerUrl, + WidgetFeeConfig, + WidgetHiddenUI, + WidgetLanguageKey, + WidgetLanguageResources, + WidgetLanguages, + WidgetNavigationProps, + WidgetPoweredBy, + WidgetRequiredUI, + WidgetRouteLabel, + WidgetRouteLabelRule, + WidgetRouteOptions, + WidgetRoutePriority, + WidgetSDKConfig, + WidgetSplitSubvariant, + WidgetSplitSubvariantOptions, + WidgetStaticToken, + WidgetSubvariant, + WidgetSubvariantOptions, + WidgetTheme, + WidgetToAddress, + WidgetToken, + WidgetTokens, + WidgetVariant, + WidgetWalletConfig, +} from './shared/widgetConfig.js' +export type { + WidgetLightChainPinned, + WidgetLightChainTokenSelected, + WidgetLightContactSupport, + WidgetLightEvents, + WidgetLightFormFieldChanged, + WidgetLightLowAddressActivityConfirmed, + WidgetLightRouteExecutionUpdate, + WidgetLightRouteHighValueLoss, + WidgetLightRouteSelected, + WidgetLightSettingUpdated, + WidgetLightTokenSearch, + WidgetLightWalletConnected, + WidgetLightWalletDisconnected, +} from './shared/widgetLightEvents.js' +export { WidgetLightEvent } from './shared/widgetLightEvents.js' diff --git a/packages/widget-light/src/shared/protocol.ts b/packages/widget-light/src/shared/protocol.ts index d832a4657..b6ee244f1 100644 --- a/packages/widget-light/src/shared/protocol.ts +++ b/packages/widget-light/src/shared/protocol.ts @@ -7,12 +7,21 @@ * Message flow: * Guest (iframe) ──READY──────────────────────────────► Host (parent) * Guest (iframe) ◄─────────────────────────────INIT── Host (parent) + * Guest (iframe) ◄──────────────────CONFIG_UPDATE── Host (parent) * Guest (iframe) ──RPC_REQUEST──────────────────────► Host (parent) * Guest (iframe) ◄──────────────────────RPC_RESPONSE── Host (parent) * Guest (iframe) ◄──────────────────────────── EVENT── Host (parent) * Guest (iframe) ──RESIZE─────────────────────────────► Host (parent) + * Guest (iframe) ──WIDGET_EVENT─────────────────────► Host (parent) + * Guest (iframe) ◄────────── WIDGET_EVENT_SUBSCRIBE── Host (parent) + * Guest (iframe) ◄──────── WIDGET_EVENT_UNSUBSCRIBE── Host (parent) + * Guest (iframe) ──CONNECT_WALLET_REQUEST────────────► Host (parent) */ +import type { WidgetChainType, WidgetLightConfig } from './widgetConfig.js' + +export type { WidgetLightConfig } from './widgetConfig.js' + export const WIDGET_LIGHT_SOURCE = 'widget-light' as const // --------------------------------------------------------------------------- @@ -21,18 +30,6 @@ export const WIDGET_LIGHT_SOURCE = 'widget-light' as const export type WidgetLightChainType = 'EVM' | 'SVM' | 'UTXO' | 'MVM' -// --------------------------------------------------------------------------- -// WidgetLightConfig -// --------------------------------------------------------------------------- - -/** - * A serializable subset of WidgetConfig (no React nodes or functions). - * Cast your WidgetConfig to this type before passing to useWidgetLightHost. - */ -export type WidgetLightConfig = Record & { - integrator: string -} - // --------------------------------------------------------------------------- // RPC Error (mirrors EIP-1193 ProviderRpcError) // --------------------------------------------------------------------------- @@ -102,10 +99,39 @@ export interface GuestResizeMessage { height: number } +/** + * Widget event forwarded from the guest to the host. + * Only sent for events that the host has subscribed to. + */ +export interface GuestWidgetEvent { + source: typeof WIDGET_LIGHT_SOURCE + type: 'WIDGET_EVENT' + event: string + data: unknown +} + +/** Serializable args for the external wallet connect request. */ +export interface ConnectWalletArgs { + chainId?: number + chainType?: WidgetChainType +} + +/** + * Sent by the guest when `walletConfig.onConnect` is triggered inside the + * widget. The host should open its own wallet connection modal. + */ +export interface GuestConnectWalletRequest { + source: typeof WIDGET_LIGHT_SOURCE + type: 'CONNECT_WALLET_REQUEST' + args?: ConnectWalletArgs +} + export type GuestMessage = | GuestReadyMessage | GuestRpcRequest | GuestResizeMessage + | GuestWidgetEvent + | GuestConnectWalletRequest // --------------------------------------------------------------------------- // Host → Guest messages @@ -144,7 +170,34 @@ export interface HostEventMessage { data: unknown } -export type HostMessage = HostInitMessage | HostRpcResponse | HostEventMessage +/** Sent by the host when the widget config changes after INIT. */ +export interface HostConfigUpdateMessage { + source: typeof WIDGET_LIGHT_SOURCE + type: 'CONFIG_UPDATE' + config: WidgetLightConfig +} + +/** Subscribe to a specific widget event forwarded from the guest. */ +export interface HostWidgetEventSubscribe { + source: typeof WIDGET_LIGHT_SOURCE + type: 'WIDGET_EVENT_SUBSCRIBE' + event: string +} + +/** Unsubscribe from a specific widget event. */ +export interface HostWidgetEventUnsubscribe { + source: typeof WIDGET_LIGHT_SOURCE + type: 'WIDGET_EVENT_UNSUBSCRIBE' + event: string +} + +export type HostMessage = + | HostInitMessage + | HostConfigUpdateMessage + | HostRpcResponse + | HostEventMessage + | HostWidgetEventSubscribe + | HostWidgetEventUnsubscribe // --------------------------------------------------------------------------- // Type guards diff --git a/packages/widget-light/src/shared/widgetConfig.ts b/packages/widget-light/src/shared/widgetConfig.ts new file mode 100644 index 000000000..17e5fdd1d --- /dev/null +++ b/packages/widget-light/src/shared/widgetConfig.ts @@ -0,0 +1,397 @@ +// ============================================================================ +// Serializable subset of WidgetConfig for the postMessage boundary. +// Zero external dependencies — all types are self-contained. +// ============================================================================ + +// --------------------------------------------------------------------------- +// Chain type (mirrors ChainType from @lifi/types) +// --------------------------------------------------------------------------- + +export type WidgetChainType = 'EVM' | 'SVM' | 'MVM' | 'UTXO' | 'TVM' + +// --------------------------------------------------------------------------- +// Token primitives (mirrors BaseToken, StaticToken, Token from @lifi/types) +// --------------------------------------------------------------------------- + +export interface WidgetBaseToken { + chainId: number + address: string +} + +export interface WidgetStaticToken extends WidgetBaseToken { + symbol: string + decimals: number + name: string + coinKey?: string + logoURI?: string + tags?: string[] +} + +export interface WidgetToken extends WidgetStaticToken { + priceUSD: string +} + +// --------------------------------------------------------------------------- +// AllowDeny (mirrors AllowDeny from widget) +// --------------------------------------------------------------------------- + +export interface WidgetAllowDeny { + allow?: T[] + deny?: T[] +} + +// --------------------------------------------------------------------------- +// ContractCall (mirrors ContractCall from @lifi/types) +// --------------------------------------------------------------------------- + +export interface WidgetContractCall { + fromAmount: string + fromTokenAddress: string + toContractAddress: string + toContractCallData: string + toContractGasLimit: string + toApprovalAddress?: string + toTokenAddress?: string +} + +// --------------------------------------------------------------------------- +// ToAddress (mirrors ToAddress from widget) +// --------------------------------------------------------------------------- + +export interface WidgetToAddress { + name?: string + address: string + chainType: WidgetChainType + logoURI?: string +} + +// --------------------------------------------------------------------------- +// Widget variant / subvariant +// --------------------------------------------------------------------------- + +export type WidgetVariant = 'compact' | 'wide' | 'drawer' +export type WidgetSubvariant = 'default' | 'split' | 'custom' | 'refuel' +export type WidgetSplitSubvariant = 'bridge' | 'swap' +export type WidgetCustomSubvariant = 'checkout' | 'deposit' + +export interface WidgetSplitSubvariantOptions { + defaultTab: WidgetSplitSubvariant +} + +export interface WidgetSubvariantOptions { + split?: WidgetSplitSubvariant | WidgetSplitSubvariantOptions + custom?: WidgetCustomSubvariant + wide?: { + disableChainSidebar?: boolean + } +} + +// --------------------------------------------------------------------------- +// Appearance +// --------------------------------------------------------------------------- + +export type WidgetAppearance = 'light' | 'dark' | 'system' + +// --------------------------------------------------------------------------- +// Theme — serializable subset only. +// Excluded: palette, colorSchemes, shape, typography, components (all MUI) +// --------------------------------------------------------------------------- + +export type WidgetCSSProperties = Record + +export interface WidgetNavigationProps { + /** @default true */ + edge?: boolean +} + +export interface WidgetTheme { + container?: WidgetCSSProperties + routesContainer?: WidgetCSSProperties + chainSidebarContainer?: WidgetCSSProperties + header?: WidgetCSSProperties + navigation?: WidgetNavigationProps +} + +// --------------------------------------------------------------------------- +// UI controls (mirrors DisabledUI, HiddenUI, RequiredUI string enums) +// --------------------------------------------------------------------------- + +export type WidgetDisabledUI = + | 'fromAmount' + | 'fromToken' + | 'toAddress' + | 'toToken' + +export type WidgetHiddenUI = + | 'appearance' + | 'drawerCloseButton' + | 'history' + | 'language' + | 'poweredBy' + | 'toAddress' + | 'fromToken' + | 'toToken' + | 'walletMenu' + | 'integratorStepDetails' + | 'reverseTokensButton' + | 'routeTokenDescription' + | 'routeCardPriceImpact' + | 'chainSelect' + | 'bridgesSettings' + | 'addressBookConnectedWallets' + | 'lowAddressActivityConfirmation' + | 'gasRefuelMessage' + | 'searchTokenInput' + | 'insufficientGasMessage' + | 'contactSupport' + | 'hideSmallBalances' + | 'allNetworks' + +export type WidgetRequiredUI = 'toAddress' | 'accountDeployedMessage' + +export interface WidgetDefaultUI { + transactionDetailsExpanded?: boolean + navigationHeaderTitleNoWrap?: boolean +} + +// --------------------------------------------------------------------------- +// Route priority (mirrors Order from @lifi/types) +// --------------------------------------------------------------------------- + +export type WidgetRoutePriority = + | 'RECOMMENDED' + | 'FASTEST' + | 'CHEAPEST' + | 'SAFEST' + +// --------------------------------------------------------------------------- +// Languages +// --------------------------------------------------------------------------- + +export type WidgetLanguageKey = + | 'en' + | 'es' + | 'fr' + | 'de' + | 'it' + | 'pt' + | 'ja' + | 'ko' + | 'zh' + | 'hi' + | 'bn' + | 'th' + | 'vi' + | 'tr' + | 'uk' + | 'id' + | 'pl' + +export interface WidgetLanguages { + default?: WidgetLanguageKey + allow?: WidgetLanguageKey[] + deny?: WidgetLanguageKey[] +} + +export type WidgetLanguageResources = Record> + +// --------------------------------------------------------------------------- +// Chain filtering (mirrors WidgetChains) +// --------------------------------------------------------------------------- + +export type WidgetChains = { + types?: WidgetAllowDeny + from?: WidgetAllowDeny + to?: WidgetAllowDeny +} & WidgetAllowDeny + +// --------------------------------------------------------------------------- +// Token filtering (mirrors WidgetTokens) +// --------------------------------------------------------------------------- + +export type WidgetTokens = { + featured?: WidgetStaticToken[] + include?: WidgetToken[] + popular?: WidgetStaticToken[] + from?: WidgetAllowDeny + to?: WidgetAllowDeny +} & WidgetAllowDeny + +// --------------------------------------------------------------------------- +// Fee configuration — serializable subset. +// Excluded: feeTooltipComponent (ReactNode), calculateFee (fn), _vcComponent +// --------------------------------------------------------------------------- + +export interface WidgetFeeConfig { + name?: string + logoURI?: string + fee?: number + /** @default false */ + showFeePercentage?: boolean + /** @default false */ + showFeeTooltip?: boolean +} + +// --------------------------------------------------------------------------- +// Wallet configuration — serializable subset. +// Excluded: onConnect (callback) +// --------------------------------------------------------------------------- + +export interface WidgetWalletConfig { + walletEcosystemsOrder?: Record + /** @default false */ + usePartialWalletManagement?: boolean + /** @default false */ + forceInternalWalletManagement?: boolean + /** + * When true, the widget inside the iframe will send a CONNECT_WALLET_REQUEST + * message to the host instead of opening its internal wallet menu. + * Set automatically by the host when `onConnect` is provided. + * @internal + */ + useExternalWalletManagement?: boolean +} + +// --------------------------------------------------------------------------- +// SDK configuration — serializable subset. +// Excluded: executionOptions hooks, requestInterceptor, storage +// --------------------------------------------------------------------------- + +export interface WidgetRouteOptions { + fee?: number + maxPriceImpact?: number + order?: WidgetRoutePriority + slippage?: number + allowSwitchChain?: boolean + allowDestinationCall?: boolean + bridges?: { allow?: string[]; deny?: string[]; prefer?: string[] } + exchanges?: { allow?: string[]; deny?: string[]; prefer?: string[] } + jitoBundle?: boolean +} + +export interface WidgetSDKConfig { + apiUrl?: string + userId?: string + rpcUrls?: Record + routeOptions?: WidgetRouteOptions + preloadChains?: boolean + chainsRefetchInterval?: number +} + +// --------------------------------------------------------------------------- +// ExplorerUrl (mirrors ExplorerUrl) +// --------------------------------------------------------------------------- + +export type WidgetExplorerUrl = + | string + | { + url: string + txPath?: string + addressPath?: string + } + +// --------------------------------------------------------------------------- +// Route labels — serializable subset. +// Excluded: RouteLabel.sx (SxProps) +// --------------------------------------------------------------------------- + +export interface WidgetRouteLabel { + text: string +} + +export interface WidgetRouteLabelRule { + label: WidgetRouteLabel + bridges?: WidgetAllowDeny + exchanges?: WidgetAllowDeny + fromChainId?: number[] + toChainId?: number[] + fromTokenAddress?: string[] + toTokenAddress?: string[] +} + +// --------------------------------------------------------------------------- +// Contract tool +// --------------------------------------------------------------------------- + +export interface WidgetContractTool { + name: string + logoURI: string +} + +export type WidgetPoweredBy = 'default' | 'jumper' + +// ============================================================================ +// WidgetLightConfig — the primary export +// ============================================================================ + +export interface WidgetLightConfig { + // -- Required -- + integrator: string + + // -- Chain / token selection -- + fromChain?: number + toChain?: number + fromToken?: string + toToken?: string + toAddress?: WidgetToAddress + toAddresses?: WidgetToAddress[] + fromAmount?: number | string + toAmount?: number | string + minFromAmountUSD?: number + formUpdateKey?: string + + // -- Contract calls -- + contractCalls?: WidgetContractCall[] + contractTool?: WidgetContractTool + + // -- API / fees -- + apiKey?: string + fee?: number + feeConfig?: WidgetFeeConfig + referrer?: string + + // -- Routing -- + routePriority?: WidgetRoutePriority + slippage?: number + + // -- Layout -- + variant?: WidgetVariant + subvariant?: WidgetSubvariant + subvariantOptions?: WidgetSubvariantOptions + + // -- Appearance -- + appearance?: WidgetAppearance + theme?: WidgetTheme + + // -- UI controls -- + disabledUI?: WidgetDisabledUI[] + hiddenUI?: WidgetHiddenUI[] + requiredUI?: WidgetRequiredUI[] + defaultUI?: WidgetDefaultUI + useRecommendedRoute?: boolean + useRelayerRoutes?: boolean + + // -- Wallet / SDK -- + walletConfig?: WidgetWalletConfig + sdkConfig?: WidgetSDKConfig + + // -- URL / storage -- + buildUrl?: boolean + keyPrefix?: string + + // -- Allow/deny lists -- + bridges?: WidgetAllowDeny + exchanges?: WidgetAllowDeny + chains?: WidgetChains + tokens?: WidgetTokens + + // -- i18n -- + languages?: WidgetLanguages + languageResources?: WidgetLanguageResources + + // -- Misc -- + explorerUrls?: Record & + Partial> + poweredBy?: WidgetPoweredBy + routeLabels?: WidgetRouteLabelRule[] +} diff --git a/packages/widget-light/src/shared/widgetLightEvents.ts b/packages/widget-light/src/shared/widgetLightEvents.ts new file mode 100644 index 000000000..5c6ca562a --- /dev/null +++ b/packages/widget-light/src/shared/widgetLightEvents.ts @@ -0,0 +1,141 @@ +// ============================================================================ +// Serializable event types for the widget-light iframe bridge. +// Zero external dependencies — all types are self-contained. +// +// Mirrors WidgetEvent from @lifi/widget + WalletManagement events. +// Route-carrying payloads use `unknown` — host consumers cast to their +// local @lifi/sdk types. +// ============================================================================ + +// --------------------------------------------------------------------------- +// Event name enum +// --------------------------------------------------------------------------- + +export enum WidgetLightEvent { + AvailableRoutes = 'availableRoutes', + ChainPinned = 'chainPinned', + ContactSupport = 'contactSupport', + DestinationChainTokenSelected = 'destinationChainTokenSelected', + FormFieldChanged = 'formFieldChanged', + LowAddressActivityConfirmed = 'lowAddressActivityConfirmed', + PageEntered = 'pageEntered', + ReviewTransactionPageEntered = 'reviewTransactionPageEntered', + RouteExecutionCompleted = 'routeExecutionCompleted', + RouteExecutionFailed = 'routeExecutionFailed', + RouteExecutionStarted = 'routeExecutionStarted', + RouteExecutionUpdated = 'routeExecutionUpdated', + RouteHighValueLoss = 'routeHighValueLoss', + RouteSelected = 'routeSelected', + SendToWalletToggled = 'sendToWalletToggled', + SettingUpdated = 'settingUpdated', + SourceChainTokenSelected = 'sourceChainTokenSelected', + TokenSearch = 'tokenSearch', + WidgetExpanded = 'widgetExpanded', + // From @lifi/wallet-management + WalletConnected = 'walletConnected', + WalletDisconnected = 'walletDisconnected', +} + +// --------------------------------------------------------------------------- +// Payload types +// --------------------------------------------------------------------------- + +export interface WidgetLightContactSupport { + supportId?: string +} + +export interface WidgetLightChainTokenSelected { + chainId: number + tokenAddress: string +} + +export interface WidgetLightChainPinned { + chainId: number + pinned: boolean +} + +export interface WidgetLightLowAddressActivityConfirmed { + address: string + chainId: number +} + +export interface WidgetLightRouteHighValueLoss { + fromAmountUSD: number + toAmountUSD: number + gasCostUSD?: number + feeCostUSD?: number + valueLoss: number +} + +export interface WidgetLightRouteExecutionUpdate { + route: unknown + action: unknown +} + +export interface WidgetLightRouteSelected { + route: unknown + routes: unknown[] +} + +export interface WidgetLightTokenSearch { + value: string + tokens: unknown[] +} + +export interface WidgetLightFormFieldChanged { + fieldName: string + newValue: unknown + oldValue: unknown +} + +export interface WidgetLightSettingUpdated { + setting: string + newValue: unknown + oldValue: unknown + newSettings: Record + oldSettings: Record +} + +export interface WidgetLightWalletConnected { + address: string + chainId: number + chainType: string + connectorId: string + connectorName: string +} + +export interface WidgetLightWalletDisconnected { + address?: string + chainId?: number + chainType: string + connectorId?: string + connectorName?: string +} + +// --------------------------------------------------------------------------- +// Event map +// --------------------------------------------------------------------------- + +export interface WidgetLightEvents { + availableRoutes: unknown[] + chainPinned: WidgetLightChainPinned + contactSupport: WidgetLightContactSupport + destinationChainTokenSelected: WidgetLightChainTokenSelected + formFieldChanged: WidgetLightFormFieldChanged + lowAddressActivityConfirmed: WidgetLightLowAddressActivityConfirmed + pageEntered: string + reviewTransactionPageEntered: unknown + routeExecutionCompleted: unknown + routeExecutionFailed: WidgetLightRouteExecutionUpdate + routeExecutionStarted: unknown + routeExecutionUpdated: WidgetLightRouteExecutionUpdate + routeHighValueLoss: WidgetLightRouteHighValueLoss + routeSelected: WidgetLightRouteSelected + sendToWalletToggled: boolean + settingUpdated: WidgetLightSettingUpdated + sourceChainTokenSelected: WidgetLightChainTokenSelected + tokenSearch: WidgetLightTokenSearch + widgetExpanded: boolean + walletConnected: WidgetLightWalletConnected + walletDisconnected: WidgetLightWalletDisconnected +} diff --git a/packages/widget-playground-next/package.json b/packages/widget-playground-next/package.json index 2aeac2f21..d95d1def1 100644 --- a/packages/widget-playground-next/package.json +++ b/packages/widget-playground-next/package.json @@ -22,7 +22,7 @@ "react-dom": "^19.2.4" }, "devDependencies": { - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "typescript": "^5.9.3" diff --git a/packages/widget-playground-vite/package.json b/packages/widget-playground-vite/package.json index 5a2d88af3..a35f1f623 100644 --- a/packages/widget-playground-vite/package.json +++ b/packages/widget-playground-vite/package.json @@ -22,12 +22,11 @@ "vite-plugin-mkcert": "^1.17.9" }, "devDependencies": { - "@esbuild-plugins/node-globals-polyfill": "^0.2.3", - "@vitejs/plugin-react-swc": "^4.2.3", - "react-scan": "^0.4.3", + "@vitejs/plugin-react": "^4.5.2", + "react-scan": "^0.5.3", "source-map-explorer": "^2.5.3", "typescript": "^5.9.3", - "vite": "^7.3.0", + "vite": "^8.0.0", "vite-plugin-node-polyfills": "0.25.0", "web-vitals": "^5.1.0" }, diff --git a/packages/widget-playground-vite/vite.config.ts b/packages/widget-playground-vite/vite.config.ts index ac087a3c7..38e7fb068 100644 --- a/packages/widget-playground-vite/vite.config.ts +++ b/packages/widget-playground-vite/vite.config.ts @@ -1,5 +1,4 @@ -import { NodeGlobalsPolyfillPlugin } from '@esbuild-plugins/node-globals-polyfill' -import react from '@vitejs/plugin-react-swc' +import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' // biome-ignore lint/correctness/noUnusedImports: used when testing wallet providers that require https import mkcert from 'vite-plugin-mkcert' @@ -12,25 +11,12 @@ export default defineConfig({ nodePolyfills(), react(), ], - esbuild: { + oxc: { target: 'esnext', }, build: { sourcemap: true, }, - optimizeDeps: { - esbuildOptions: { - define: { - global: 'globalThis', - }, - plugins: [ - NodeGlobalsPolyfillPlugin({ - process: true, - buffer: true, - }), - ], - }, - }, server: { port: 3000, open: true, diff --git a/packages/widget-playground/package.json b/packages/widget-playground/package.json index d01262ee1..3b09ded92 100644 --- a/packages/widget-playground/package.json +++ b/packages/widget-playground/package.json @@ -24,9 +24,9 @@ }, "dependencies": { "@base-org/account": "~2.5.2", - "@bigmi/core": "^0.7.0", - "@bigmi/client": "^0.7.0", - "@bigmi/react": "^0.7.0", + "@bigmi/client": "^0.7.1", + "@bigmi/core": "^0.7.1", + "@bigmi/react": "^0.7.1", "@coinbase/wallet-sdk": "~4.3.6", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", @@ -41,31 +41,31 @@ "@mui/lab": "^7.0.1-beta.20", "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", - "@reown/appkit": ">=1.8.16", - "@reown/appkit-adapter-solana": "^1.8.17", + "@reown/appkit": ">=1.8.18", "@reown/appkit-adapter-bitcoin": "^1.8.17", + "@reown/appkit-adapter-solana": "^1.8.17", "@reown/appkit-adapter-wagmi": "^1.8.17", "@reown/appkit-common": "^1.8.17", - "@walletconnect/ethereum-provider": "~2.23.4", + "@walletconnect/ethereum-provider": "~2.23.8", "csstype": "^3.2.3", "lodash.isequal": "^4.5.0", "microdiff": "^1.5.0", "porto": "^0.2.37", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.45.1", + "viem": "^2.47.2", "wagmi": "^3.3.2", "zustand": "^5.0.11" }, "devDependencies": { "@types/lodash.isequal": "^4.5.8", - "@types/node": "^25.2.1", + "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "cpy-cli": "^7.0.0", "madge": "^8.0.0", "typescript": "^5.9.3", - "vitest": "^4.0.18" + "vitest": "^4.1.0" }, "peerDependencies": { "@tanstack/react-query": ">=5.90.0" diff --git a/packages/widget-provider-bitcoin/package.json b/packages/widget-provider-bitcoin/package.json index 8c4055068..4f5ccc507 100644 --- a/packages/widget-provider-bitcoin/package.json +++ b/packages/widget-provider-bitcoin/package.json @@ -41,9 +41,9 @@ "lifi" ], "dependencies": { - "@bigmi/client": "^0.7.0", - "@bigmi/core": "^0.7.0", - "@lifi/sdk": "^4.0.0-alpha.20", + "@bigmi/client": "^0.7.1", + "@bigmi/core": "^0.7.1", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-bitcoin": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*" }, diff --git a/packages/widget-provider-ethereum/package.json b/packages/widget-provider-ethereum/package.json index be5819c24..1877b8b8f 100644 --- a/packages/widget-provider-ethereum/package.json +++ b/packages/widget-provider-ethereum/package.json @@ -41,10 +41,10 @@ "lifi" ], "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-ethereum": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", - "viem": "^2.45.1" + "viem": "^2.47.2" }, "peerDependencies": { "@wagmi/core": "^3.x", diff --git a/packages/widget-provider-solana/package.json b/packages/widget-provider-solana/package.json index 1a36ddd23..8cf397f4d 100644 --- a/packages/widget-provider-solana/package.json +++ b/packages/widget-provider-solana/package.json @@ -40,7 +40,7 @@ "lifi" ], "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-solana": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", "@wallet-standard/app": "^1.1.0", diff --git a/packages/widget-provider-sui/package.json b/packages/widget-provider-sui/package.json index f3774dd0b..78d185c96 100644 --- a/packages/widget-provider-sui/package.json +++ b/packages/widget-provider-sui/package.json @@ -40,7 +40,7 @@ "lifi" ], "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-sui": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", "@mysten/sui": "^2.6.0" diff --git a/packages/widget-provider/package.json b/packages/widget-provider/package.json index f5b0a97c1..92a2a32be 100644 --- a/packages/widget-provider/package.json +++ b/packages/widget-provider/package.json @@ -40,7 +40,7 @@ "lifi" ], "dependencies": { - "@lifi/sdk": "^4.0.0-alpha.20" + "@lifi/sdk": "4.0.0-beta.0" }, "devDependencies": { "cpy-cli": "^7.0.0", diff --git a/packages/widget/package.json b/packages/widget/package.json index 6104abe35..560c513fb 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -49,18 +49,18 @@ "dependencies": { "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@lifi/sdk": "^4.0.0-alpha.20", + "@lifi/sdk": "4.0.0-beta.0", "@lifi/wallet-management": "workspace:*", "@lifi/widget-provider": "workspace:*", "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", - "@tanstack/react-router": "^1.158.1", + "@tanstack/react-router": "^1.166.7", "@tanstack/react-virtual": "^3.13.16", - "i18next": "^25.8.4", + "i18next": "^25.8.18", "microdiff": "^1.5.0", "mitt": "^3.0.1", - "react-i18next": "^16.5.4", + "react-i18next": "^16.5.8", "react-intersection-observer": "^9.16.0", "react-transition-group": "^4.4.5", "zustand": "^5.0.11" @@ -72,7 +72,7 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "typescript": "^5.9.3", - "vitest": "^4.0.18" + "vitest": "^4.1.0" }, "peerDependencies": { "@tanstack/react-query": ">=5.90.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 595f0d055..530def25f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,14 +24,14 @@ importers: specifier: ^2.3.14 version: 2.4.6 '@commitlint/cli': - specifier: ^20.4.1 - version: 20.4.3(@types/node@25.3.5)(typescript@5.9.3) + specifier: ^20.4.4 + version: 20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3) '@commitlint/config-conventional': - specifier: ^20.4.1 - version: 20.4.3 + specifier: ^20.4.4 + version: 20.4.4 '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -45,14 +45,14 @@ importers: specifier: ^9.1.7 version: 9.1.7 knip: - specifier: ^5.83.0 - version: 5.85.0(@types/node@25.3.5)(typescript@5.9.3) + specifier: ^5.86.0 + version: 5.86.0(@types/node@25.5.0)(typescript@5.9.3) lerna: - specifier: ^9.0.3 - version: 9.0.5(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.3.5)(babel-plugin-macros@3.1.0) + specifier: ^9.0.6 + version: 9.0.6(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.5.0)(babel-plugin-macros@3.1.0) lint-staged: - specifier: ^16.2.7 - version: 16.3.2 + specifier: ^16.3.3 + version: 16.3.3 standard-version: specifier: ^9.5.0 version: 9.5.0 @@ -62,7 +62,7 @@ importers: optionalDependencies: '@gemini-wallet/core': specifier: '>=0.3.0' - version: 0.3.2(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@react-native-async-storage/async-storage': specifier: '>=2.2.0' version: 3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) @@ -85,11 +85,11 @@ importers: examples/connectkit: dependencies: '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -110,7 +110,7 @@ importers: version: 5.90.21(react@19.2.4) connectkit: specifier: ^1.9.1 - version: 1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + version: 1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) mitt: specifier: ^3.0.1 version: 3.0.1 @@ -121,11 +121,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -134,8 +134,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -143,17 +143,17 @@ importers: specifier: ~5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) examples/deposit-flow: dependencies: '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -170,18 +170,18 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/events': specifier: ^3.0.3 version: 3.0.3 '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -189,59 +189,59 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/dynamic: dependencies: '@bigmi/client': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': - specifier: ^0.7.0 - version: 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@dynamic-labs/bitcoin': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/ethereum': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/ethereum-aa': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-react-core': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(utf-8-validate@6.0.6) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/solana': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/solana-core': - specifier: ^4.60.0 - version: 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + specifier: ^4.67.1 + version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/wagmi-connector': - specifier: ^4.60.0 - version: 4.66.0(c3c76eac9ab866e76d7e23446915fefc) + specifier: ^4.67.1 + version: 4.67.1(45c4ff2b2c1f08547fb77a9e74e7164b) '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -262,7 +262,7 @@ importers: version: 5.90.21(react@19.2.4) '@wagmi/core': specifier: ^2.22.1 - version: 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': specifier: ^1.1.0 version: 1.1.0 @@ -282,14 +282,14 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) vite-plugin-env-compatible: specifier: ^2.0.1 version: 2.0.1 wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -297,9 +297,9 @@ importers: '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) - '@vitejs/plugin-react-swc': - specifier: ^4.2.3 - version: 4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@vitejs/plugin-react': + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -307,17 +307,17 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) examples/nextjs: dependencies: '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -332,8 +332,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -347,11 +347,11 @@ importers: examples/nextjs14: dependencies: '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -366,8 +366,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -387,8 +387,8 @@ importers: examples/nextjs14-page-router: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) next: specifier: ^14 version: 14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -400,8 +400,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -421,11 +421,11 @@ importers: examples/nextjs15: dependencies: '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@15.5.12(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -440,8 +440,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -455,8 +455,8 @@ importers: examples/nft-checkout: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.13 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/wallet-management': specifier: workspace:* version: link:../../packages/wallet-management @@ -485,8 +485,8 @@ importers: specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@opensea/seaport-js': - specifier: 4.0.6 - version: 4.0.6(bufferutil@4.1.0)(utf-8-validate@6.0.6) + specifier: 4.0.7 + version: 4.0.7(bufferutil@4.1.0)(utf-8-validate@6.0.6) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -509,18 +509,15 @@ importers: specifier: ^7.13.0 version: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.1.0 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: - '@esbuild-plugins/node-globals-polyfill': - specifier: ^0.2.3 - version: 0.2.3(esbuild@0.27.3) - '@vitejs/plugin-react-swc': - specifier: ^4.2.3 - version: 4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@vitejs/plugin-react': + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) source-map-explorer: specifier: ^2.5.3 version: 2.5.3 @@ -528,11 +525,11 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: 0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -540,32 +537,32 @@ importers: examples/nuxt: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) nuxt: specifier: 3.17.7 - version: 3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.29)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.3(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) + version: 3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) veaury: specifier: ^2.6.3 version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) vue: - specifier: ^3.5.27 - version: 3.5.29(typescript@5.9.3) + specifier: ^3.5.30 + version: 3.5.30(typescript@5.9.3) vue-router: specifier: ^4.6.4 - version: 4.6.4(vue@3.5.29(typescript@5.9.3)) + version: 4.6.4(vue@3.5.30(typescript@5.9.3)) examples/privy: dependencies: '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -574,13 +571,13 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(f9baa64dc626fdaf447d2459a38205cf) + version: 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) '@privy-io/wagmi': specifier: ^1.0.6 - version: 1.0.6(fe4118b6da6b2ba2595cd60042f6170f) + version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) '@solana/kit': - specifier: ^5.5.0 - version: 5.5.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + specifier: ^6.3.0 + version: 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/wallet-adapter-base': specifier: ^0.9.27 version: 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -598,7 +595,7 @@ importers: version: 3.0.1 permissionless: specifier: ^0.2.57 - version: 0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: specifier: ^19.2.4 version: 19.2.4 @@ -606,11 +603,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -619,8 +616,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -628,23 +625,23 @@ importers: specifier: ~5.9.3 version: 5.9.3 typescript-eslint: - specifier: ^8.54.0 - version: 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) + specifier: ^8.57.0 + version: 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/privy-ethers: dependencies: '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -653,10 +650,10 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(f9baa64dc626fdaf447d2459a38205cf) + version: 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) '@privy-io/wagmi': specifier: ^1.0.6 - version: 1.0.6(fe4118b6da6b2ba2595cd60042f6170f) + version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) '@solana/wallet-adapter-base': specifier: ^0.9.27 version: 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -682,15 +679,15 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@eslint/js': specifier: ^9.39.2 - version: 9.39.3 + version: 9.39.4 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -698,17 +695,17 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) eslint: specifier: ^9.34.0 - version: 9.39.3(jiti@2.6.1) + version: 9.39.4(jiti@2.6.1) eslint-plugin-react-hooks: specifier: ^7.0.1 - version: 7.0.1(eslint@9.39.3(jiti@2.6.1)) + version: 7.0.1(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-react-refresh: - specifier: ^0.4.26 - version: 0.4.26(eslint@9.39.3(jiti@2.6.1)) + specifier: ^0.5.2 + version: 0.5.2(eslint@9.39.4(jiti@2.6.1)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -716,26 +713,26 @@ importers: specifier: ~5.9.3 version: 5.9.3 typescript-eslint: - specifier: ^8.54.0 - version: 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) + specifier: ^8.57.0 + version: 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/rainbowkit: dependencies: '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@rainbow-me/rainbowkit': specifier: ^2.2.10 - version: 2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + version: 2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -746,11 +743,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -758,24 +755,24 @@ importers: '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) - '@vitejs/plugin-react-swc': - specifier: ^4.2.3 - version: 4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@vitejs/plugin-react': + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/react-router-7: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@react-router/node': specifier: ^7.13.0 version: 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) @@ -783,8 +780,8 @@ importers: specifier: ^7.13.0 version: 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) isbot: - specifier: ^5.1.34 - version: 5.1.35 + specifier: ^5.1.36 + version: 5.1.36 react: specifier: ^19.2.4 version: 19.2.4 @@ -800,13 +797,13 @@ importers: devDependencies: '@react-router/dev': specifier: ^7.13.0 - version: 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) + version: 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) '@react-router/fs-routes': specifier: ^7.13.0 - version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) + version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) '@react-router/remix-routes-option-adapter': specifier: ^7.13.0 - version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) + version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -817,17 +814,17 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-tsconfig-paths: - specifier: ^5.1.4 - version: 5.1.4(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^6.1.1 + version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/remix: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@remix-run/css-bundle': specifier: ^2.17.2 version: 2.17.4 @@ -841,8 +838,8 @@ importers: specifier: ^2.17.2 version: 2.17.4(typescript@5.9.3) isbot: - specifier: ^5.1.34 - version: 5.1.35 + specifier: ^5.1.36 + version: 5.1.36 react: specifier: ^19.2.4 version: 19.2.4 @@ -850,12 +847,12 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) remix-utils: - specifier: ^9.0.1 - version: 9.2.0(@standard-schema/spec@1.1.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) + specifier: ^9.3.1 + version: 9.3.1(@standard-schema/spec@1.1.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) devDependencies: '@remix-run/dev': specifier: ^2.17.2 - version: 2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) + version: 2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -866,29 +863,29 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-tsconfig-paths: - specifier: ^5.1.4 - version: 5.1.4(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^6.1.1 + version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/reown: dependencies: '@bigmi/client': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': - specifier: ^0.7.0 - version: 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(31c59d9f3fbfd42fafa0fe77eae7e68f) + specifier: ^3.22.8 + version: 3.22.8(4fe09d18b121daf54023163592473233) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -903,7 +900,7 @@ importers: version: 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-adapter-wagmi': specifier: ^1.8.17 - version: 1.8.19(40e07c707f3a0532eb5e6bda99d729cd) + version: 1.8.19(cbba8c8e56bd71466029bf033b724b4b) '@reown/appkit-common': specifier: ^1.8.17 version: 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -929,11 +926,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.3.2 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -942,8 +939,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -951,8 +948,8 @@ importers: specifier: ~5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-env-compatible: specifier: ^2.0.1 version: 2.0.1 @@ -960,8 +957,8 @@ importers: examples/svelte: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) react: specifier: ^19.2.4 version: 19.2.4 @@ -971,7 +968,7 @@ importers: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^6.2.1 - version: 6.2.4(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) '@tsconfig/svelte': specifier: ^5.0.7 version: 5.0.8 @@ -979,8 +976,8 @@ importers: specifier: ^3.0.3 version: 3.0.3 '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -988,14 +985,14 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) svelte: - specifier: ^5.49.2 - version: 5.53.7 + specifier: ^5.53.11 + version: 5.53.11 svelte-check: - specifier: ^4.3.6 - version: 4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3) + specifier: ^4.4.5 + version: 4.4.5(picomatch@4.0.3)(svelte@5.53.11)(typescript@5.9.3) svelte-preprocess: specifier: ^6.0.3 - version: 6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.7)(typescript@5.9.3) + version: 6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.11)(typescript@5.9.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -1003,11 +1000,11 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/tanstack-router: dependencies: @@ -1018,8 +1015,8 @@ importers: specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@tanstack/react-router': - specifier: ^1.158.1 - version: 1.166.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^1.166.7 + version: 1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react: specifier: ^19.2.4 version: 19.2.4 @@ -1028,8 +1025,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -1037,26 +1034,26 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) examples/vite: dependencies: '@lifi/sdk': - specifier: ^3.15.5 - version: 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^3.16.1 + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': - specifier: ^3.22.5 - version: 3.22.7(b159cffdb7ba3293c16049419e8e00da) + specifier: ^3.22.8 + version: 3.22.8(34b91203ca713c308f96c734a33217fc) '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1065,7 +1062,7 @@ importers: version: 5.90.21(react@19.2.4) '@wagmi/connectors': specifier: ^7.1.6 - version: 7.2.1(b30c426a9eaffde5a0e263e670d9515e) + version: 7.2.1(b2c4187e18adabafd3d4e9ecc6ff0b24) events: specifier: ^3.3.0 version: 3.3.0 @@ -1076,18 +1073,18 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/events': specifier: ^3.0.3 version: 3.0.3 '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -1095,23 +1092,23 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/vite-iframe: dependencies: '@bigmi/react': - specifier: 0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: 0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': specifier: ^11.14.0 version: 11.14.0(@types/react@19.2.14)(react@19.2.4) @@ -1119,8 +1116,8 @@ importers: specifier: ^11.14.1 version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@lifi/sdk': - specifier: ^4.0.0-alpha.13 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/wallet-management': specifier: workspace:* version: link:../../packages/wallet-management @@ -1145,15 +1142,15 @@ importers: '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@mysten/dapp-kit': - specifier: ^0.19.11 - version: 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@mysten/dapp-kit-react': + specifier: ^2.0.0 + version: 2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@wagmi/connectors': specifier: ^7.1.6 - version: 7.2.1(d529671fb59ad4e7ebd38e53a18b0a7a) + version: 7.2.1(7e0d03651353772277bb3afae8ed51ab) bs58: specifier: '>=4.0.1' version: 6.0.0 @@ -1164,15 +1161,15 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.4.2 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -1180,23 +1177,23 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) examples/vite-iframe-wagmi: dependencies: '@lifi/widget-light': specifier: ^4.0.0-alpha.2 - version: 4.0.0-alpha.2(4b27d737bc10a9111015f3475fd674e9) + version: 4.0.0-alpha.3(9e0844ef006464c0a121fb61d3af23df) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -1207,11 +1204,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.4.2 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -1220,45 +1217,45 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) examples/vue: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c) + specifier: ^3.40.12 + version: 3.40.12(2fb7761314c756a9706d026ed291c31b) veaury: specifier: ^2.6.3 version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) vue: - specifier: ^3.5.27 - version: 3.5.29(typescript@5.9.3) + specifier: ^3.5.30 + version: 3.5.30(typescript@5.9.3) devDependencies: '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^6.0.0 + version: 6.0.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) '@vitejs/plugin-vue': - specifier: ^6.0.4 - version: 6.0.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + specifier: ^6.0.5 + version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) '@vitejs/plugin-vue-jsx': - specifier: ^5.1.4 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + specifier: ^5.1.5 + version: 5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) vue-tsc: specifier: ^3.2.4 version: 3.2.5(typescript@5.9.3) @@ -1266,8 +1263,8 @@ importers: examples/zustand-widget-config: dependencies: '@lifi/widget': - specifier: ^3.40.6 - version: 3.40.11(bd4ee19128e786a3623abad2e2f500a0) + specifier: ^3.40.12 + version: 3.40.12(6050907b036eca095d838803c2f05279) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1282,7 +1279,7 @@ importers: version: 19.2.4(react@19.2.4) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) zustand: specifier: ^5.0.11 version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -1294,8 +1291,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^5.1.3 - version: 5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -1303,11 +1300,11 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) packages/wallet-management: dependencies: @@ -1318,8 +1315,8 @@ importers: specifier: ^11.14.1 version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/widget-provider': specifier: workspace:* version: link:../widget-provider @@ -1336,14 +1333,14 @@ importers: specifier: '>=5.90.0' version: 5.90.21(react@19.2.4) i18next: - specifier: ^25.8.4 - version: 25.8.14(typescript@5.9.3) + specifier: ^25.8.18 + version: 25.8.18(typescript@5.9.3) mitt: specifier: ^3.0.1 version: 3.0.1 react-i18next: - specifier: ^16.5.4 - version: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + specifier: ^16.5.8 + version: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) zustand: specifier: ^5.0.11 version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -1373,8 +1370,8 @@ importers: specifier: ^11.14.1 version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/wallet-management': specifier: workspace:* version: link:../wallet-management @@ -1394,14 +1391,14 @@ importers: specifier: '>=5.90.0' version: 5.90.21(react@19.2.4) '@tanstack/react-router': - specifier: ^1.158.1 - version: 1.166.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^1.166.7 + version: 1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@tanstack/react-virtual': specifier: ^3.13.16 version: 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: - specifier: ^25.8.4 - version: 25.8.14(typescript@5.9.3) + specifier: ^25.8.18 + version: 25.8.18(typescript@5.9.3) microdiff: specifier: ^1.5.0 version: 1.5.0 @@ -1409,8 +1406,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 react-i18next: - specifier: ^16.5.4 - version: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + specifier: ^16.5.8 + version: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) react-intersection-observer: specifier: ^9.16.0 version: 9.16.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1440,17 +1437,20 @@ importers: specifier: ^5.9.3 version: 5.9.3 vitest: - specifier: ^4.0.18 - version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^4.1.0 + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) packages/widget-embedded: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-solana': specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 4.0.0-beta.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/sdk-provider-sui': + specifier: ^4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/wallet-management': specifier: workspace:* version: link:../wallet-management @@ -1475,12 +1475,15 @@ importers: '@lifi/widget-provider-sui': specifier: workspace:* version: link:../widget-provider-sui + '@mysten/sui': + specifier: ^2.6.0 + version: 2.6.0(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@wagmi/core': specifier: ^3.3.2 - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: specifier: ^19.2.4 version: 19.2.4 @@ -1488,11 +1491,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.4.2 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -1500,18 +1503,18 @@ importers: '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) - '@vitejs/plugin-react-swc': - specifier: ^4.2.3 - version: 4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@vitejs/plugin-react': + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -1520,16 +1523,16 @@ importers: dependencies: '@bigmi/client': specifier: ^0.7.x - version: 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + version: 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': specifier: ^0.7.x - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@mysten/dapp-kit': - specifier: ^0.19.x - version: 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit-react': + specifier: ^2.0.0 + version: 2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@wagmi/core': specifier: ^3.x - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': specifier: ^1.1.0 version: 1.1.0 @@ -1538,10 +1541,10 @@ importers: version: 19.2.4 viem: specifier: ^2.x - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.x - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1553,8 +1556,8 @@ importers: specifier: ^5.9.3 version: 5.9.3 vitest: - specifier: ^4.0.18 - version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^4.1.0 + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) packages/widget-playground: dependencies: @@ -1562,14 +1565,14 @@ importers: specifier: ~2.5.2 version: 2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@bigmi/client': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': - specifier: ^0.7.0 - version: 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@coinbase/wallet-sdk': specifier: ~4.3.6 version: 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -1623,7 +1626,7 @@ importers: version: 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-adapter-wagmi': specifier: ^1.8.17 - version: 1.8.19(40e07c707f3a0532eb5e6bda99d729cd) + version: 1.8.19(cbba8c8e56bd71466029bf033b724b4b) '@reown/appkit-common': specifier: ^1.8.17 version: 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -1631,8 +1634,8 @@ importers: specifier: '>=5.90.0' version: 5.90.21(react@19.2.4) '@walletconnect/ethereum-provider': - specifier: ~2.23.4 - version: 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ~2.23.8 + version: 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) csstype: specifier: ^3.2.3 version: 3.2.3 @@ -1644,7 +1647,7 @@ importers: version: 1.5.0 porto: specifier: ^0.2.37 - version: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) + version: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) react: specifier: ^19.2.4 version: 19.2.4 @@ -1652,11 +1655,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.3.2 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) zustand: specifier: ^5.0.11 version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -1665,8 +1668,8 @@ importers: specifier: ^4.5.8 version: 4.5.8 '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -1683,8 +1686,8 @@ importers: specifier: ^5.9.3 version: 5.9.3 vitest: - specifier: ^4.0.18 - version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^4.1.0 + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) packages/widget-playground-next: dependencies: @@ -1726,8 +1729,8 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: '@types/node': - specifier: ^25.2.1 - version: 25.3.5 + specifier: ^25.5.0 + version: 25.5.0 '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -1754,17 +1757,14 @@ importers: version: 19.2.4(react@19.2.4) vite-plugin-mkcert: specifier: ^1.17.9 - version: 1.17.10(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) devDependencies: - '@esbuild-plugins/node-globals-polyfill': - specifier: ^0.2.3 - version: 0.2.3(esbuild@0.27.3) - '@vitejs/plugin-react-swc': - specifier: ^4.2.3 - version: 4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@vitejs/plugin-react': + specifier: ^4.5.2 + version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) react-scan: - specifier: ^0.4.3 - version: 0.4.3(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@types/react@19.2.14)(next@16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(rollup@4.59.0) + specifier: ^0.5.3 + version: 0.5.3(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rollup@4.59.0) source-map-explorer: specifier: ^2.5.3 version: 2.5.3 @@ -1772,11 +1772,11 @@ importers: specifier: ^5.9.3 version: 5.9.3 vite: - specifier: ^7.3.0 - version: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + specifier: ^8.0.0 + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: 0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -1784,8 +1784,8 @@ importers: packages/widget-provider: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1803,20 +1803,20 @@ importers: packages/widget-provider-bitcoin: dependencies: '@bigmi/client': - specifier: ^0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': - specifier: ^0.7.0 - version: 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': specifier: 0.7.0 version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-bitcoin': specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(@types/react@19.2.14)(bs58@6.0.0)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) + version: 4.0.0-beta.0(@types/react@19.2.14)(bs58@6.0.0)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/widget-provider': specifier: workspace:* version: link:../widget-provider @@ -1837,23 +1837,23 @@ importers: packages/widget-provider-ethereum: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-ethereum': specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/widget-provider': specifier: workspace:* version: link:../widget-provider '@wagmi/core': specifier: ^3.x - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) viem: - specifier: ^2.45.1 - version: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.2 + version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.1.0 - version: 3.5.0(a168feae2a0de4c1971a620e477734e8) + version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1871,11 +1871,11 @@ importers: packages/widget-provider-solana: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-solana': specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 4.0.0-beta.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/widget-provider': specifier: workspace:* version: link:../widget-provider @@ -1911,11 +1911,11 @@ importers: packages/widget-provider-sui: dependencies: '@lifi/sdk': - specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: 4.0.0-beta.0 + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-sui': specifier: ^4.0.0-alpha.20 - version: 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/widget-provider': specifier: workspace:* version: link:../widget-provider @@ -2200,13 +2200,13 @@ packages: '@base-org/account@2.5.2': resolution: {integrity: sha512-B3e0XiZWHXgCPLRXk0dDGA2WN8eFk/MDprqRX1Xl4PPx1LAdzynGcGUg6rnidMrIQ/GSL+oelWDHdGbWtCOOoA==} - '@bigmi/client@0.7.0': - resolution: {integrity: sha512-g/rcAccXE632eh3kXNgitQp2etrZDq41/Y4ZEfu3+9KbV4AcU3V4ZSiwlWlGMsAsxzfS7VXTHvcKOl9tt/gMjA==} + '@bigmi/client@0.7.1': + resolution: {integrity: sha512-48lwkyrfAfBwcuQEOX9ydmSSskkuKP4NAimmTacH8gjnRi7N8D6HGuXsk5Xyqh8thBZZhr76JZZBDorYwEtqfA==} peerDependencies: '@tanstack/query-core': '>=5.68.0' - '@bigmi/core@0.7.0': - resolution: {integrity: sha512-77br/G4rr4LFgLwYPQs/TZUlB/XVljgSrsseb0J6xCSs3DxomfnKQuKqTksN7IcwuDDEL22xBpyt9JZpoO+lQg==} + '@bigmi/core@0.7.1': + resolution: {integrity: sha512-qG7457V8QlsTmoxuAjmc1h7e259cSfzd6Ifnxg/JJOTo4KNzd1Eb01oHQFK0KUwzqEHm6bQ2mPLQwropNUiFjA==} peerDependencies: bs58: '>=4.0.1' @@ -2217,6 +2217,13 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 + '@bigmi/react@0.7.1': + resolution: {integrity: sha512-TuF7GgBNNv4qTeSEZttEqztxzdf5UdENPHygJm8f8pTG09o6g/52DWZ2DP6win+Wra431dNm98kRFTzEUMC27Q==} + peerDependencies: + '@tanstack/react-query': '>=5.68.0' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + '@biomejs/biome@2.4.6': resolution: {integrity: sha512-QnHe81PMslpy3mnpL8DnO2M4S4ZnYPkjlGCLWBZT/3R9M6b5daArWMMtEfP52/n174RKnwRIf3oT8+wc9ihSfQ==} engines: {node: '>=14.21.3'} @@ -2280,12 +2287,12 @@ packages: '@bitcoinerlab/secp256k1@1.2.0': resolution: {integrity: sha512-jeujZSzb3JOZfmJYI0ph1PVpCRV5oaexCgy+RvCXV8XlY+XFB/2n3WOcvBsKLsOw78KYgnQrQWb2HrKE4be88Q==} - '@bomb.sh/tab@0.0.12': - resolution: {integrity: sha512-dYRwg4MqfHR5/BcTy285XOGRhjQFmNpaJBZ0tl2oU+RY595MQ5ApTF6j3OvauPAooHL6cfoOZMySQrOQztT8RQ==} + '@bomb.sh/tab@0.0.14': + resolution: {integrity: sha512-cHMk2LI430MVoX1unTt9oK1iZzQS4CYDz97MSxKLNErW69T43Z2QLFTpdS/3jVOIKrIADWfuxQ+nQNJkNV7E4w==} hasBin: true peerDependencies: cac: ^6.7.14 - citty: ^0.1.6 + citty: ^0.1.6 || ^0.2.0 commander: ^13.1.0 peerDependenciesMeta: cac: @@ -2298,15 +2305,9 @@ packages: '@btckit/types@0.0.19': resolution: {integrity: sha512-APoOfYSg9SRR4CMXL606IDtpgh+ZD3kS/+iY0BkUALD6HvXo2pVw20L5YYIc+HrgMcF6WN0TH7TXdVs+Vu+kww==} - '@clack/core@0.3.5': - resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==} - '@clack/core@1.1.0': resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==} - '@clack/prompts@0.8.2': - resolution: {integrity: sha512-6b9Ab2UiZwJYA9iMyboYyW9yJvAO9V753ZhS+DHKEjZRKAxPPOb7MXXu84lsPFG+vZt6FRFniZ8rXi+zCIw4yQ==} - '@clack/prompts@1.1.0': resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==} @@ -2314,8 +2315,8 @@ packages: resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==} engines: {node: '>=18.0.0'} - '@coinbase/cdp-sdk@1.44.1': - resolution: {integrity: sha512-O7sikX7gTZdF4xy9b0xAMPOKWk8z6E7an4EGVBukPdfChooBL15Zt6B8Wn5th/LC1V1nIf3J/tlTTQCJLkKZ6A==} + '@coinbase/cdp-sdk@1.45.0': + resolution: {integrity: sha512-4fgGOhyN9g/pTDE9NtsKUapwFsubrk9wafz8ltmBqSwWqLZWfWxXkVmzMYYFAf+qeGf/X9JqJtmvDVaHFlXWlw==} '@coinbase/wallet-sdk@3.9.3': resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} @@ -2329,61 +2330,61 @@ packages: '@coinbase/wallet-sdk@4.3.7': resolution: {integrity: sha512-z6e5XDw6EF06RqkeyEa+qD0dZ2ZbLci99vx3zwDY//XO8X7166tqKJrR2XlQnzVmtcUuJtCd5fCvr9Cu6zzX7w==} - '@commitlint/cli@20.4.3': - resolution: {integrity: sha512-Z37EMoDT7+Upg500vlr/vZrgRsb6Xc5JAA3Tv7BYbobnN/ZpqUeZnSLggBg2+1O+NptRDtyujr2DD1CPV2qwhA==} + '@commitlint/cli@20.4.4': + resolution: {integrity: sha512-GLMNQHYGcn0ohL2HMlAnXcD1PS2vqBBGbYKlhrRPOYsWiRoLWtrewsR3uKRb9v/IdS+qOS0vqJQ64n1g8VPKFw==} engines: {node: '>=v18'} hasBin: true - '@commitlint/config-conventional@20.4.3': - resolution: {integrity: sha512-9RtLySbYQAs8yEqWEqhSZo9nYhbm57jx7qHXtgRmv/nmeQIjjMcwf6Dl+y5UZcGWgWx435TAYBURONaJIuCjWg==} + '@commitlint/config-conventional@20.4.4': + resolution: {integrity: sha512-Usg+XXbPNG2GtFWTgRURNWCge1iH1y6jQIvvklOdAbyn2t8ajfVwZCnf5t5X4gUsy17BOiY+myszGsSMIvhOVA==} engines: {node: '>=v18'} - '@commitlint/config-validator@20.4.3': - resolution: {integrity: sha512-jCZpZFkcSL3ZEdL5zgUzFRdytv3xPo8iukTe9VA+QGus/BGhpp1xXSVu2B006GLLb2gYUAEGEqv64kTlpZNgmA==} + '@commitlint/config-validator@20.4.4': + resolution: {integrity: sha512-K8hMS9PTLl7EYe5vWtSFQ/sgsV2PHUOtEnosg8k3ZQxCyfKD34I4C7FxWEfRTR54rFKeUYmM3pmRQqBNQeLdlw==} engines: {node: '>=v18'} - '@commitlint/ensure@20.4.3': - resolution: {integrity: sha512-WcXGKBNn0wBKpX8VlXgxqedyrLxedIlLBCMvdamLnJFEbUGJ9JZmBVx4vhLV3ZyA8uONGOb+CzW0Y9HDbQ+ONQ==} + '@commitlint/ensure@20.4.4': + resolution: {integrity: sha512-QivV0M1MGL867XCaF+jJkbVXEPKBALhUUXdjae66hes95aY1p3vBJdrcl3x8jDv2pdKWvIYIz+7DFRV/v0dRkA==} engines: {node: '>=v18'} '@commitlint/execute-rule@20.0.0': resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==} engines: {node: '>=v18'} - '@commitlint/format@20.4.3': - resolution: {integrity: sha512-UDJVErjLbNghop6j111rsHJYGw6MjCKAi95K0GT2yf4eeiDHy3JDRLWYWEjIaFgO+r+dQSkuqgJ1CdMTtrvHsA==} + '@commitlint/format@20.4.4': + resolution: {integrity: sha512-jLi/JBA4GEQxc5135VYCnkShcm1/rarbXMn2Tlt3Si7DHiiNKHm4TaiJCLnGbZ1r8UfwDRk+qrzZ80kwh08Aow==} engines: {node: '>=v18'} - '@commitlint/is-ignored@20.4.3': - resolution: {integrity: sha512-W5VQKZ7fdJ1X3Tko+h87YZaqRMGN1KvQKXyCM8xFdxzMIf1KCZgN4uLz3osLB1zsFcVS4ZswHY64LI26/9ACag==} + '@commitlint/is-ignored@20.4.4': + resolution: {integrity: sha512-y76rT8yq02x+pMDBI2vY4y/ByAwmJTkta/pASbgo8tldBiKLduX8/2NCRTSCjb3SumE5FBeopERKx3oMIm8RTQ==} engines: {node: '>=v18'} - '@commitlint/lint@20.4.3': - resolution: {integrity: sha512-CYOXL23e+nRKij81+d0+dymtIi7Owl9QzvblJYbEfInON/4MaETNSLFDI74LDu+YJ0ML5HZyw9Vhp9QpckwQ0A==} + '@commitlint/lint@20.4.4': + resolution: {integrity: sha512-svOEW+RptcNpXKE7UllcAsV0HDIdOck9reC2TP1QA6K5Fo0xxQV+QPjV8Zqx9g6X/hQBkF2S9ZQZ78Xrv1Eiog==} engines: {node: '>=v18'} - '@commitlint/load@20.4.3': - resolution: {integrity: sha512-3cdJOUVP+VcgHa7bhJoWS+Z8mBNXB5aLWMBu7Q7uX8PSeWDzdbrBlR33J1MGGf7r1PZDp+mPPiFktk031PgdRw==} + '@commitlint/load@20.4.4': + resolution: {integrity: sha512-kvFrzvoIACa/fMjXEP0LNEJB1joaH3q3oeMJsLajXE5IXjYrNGVcW1ZFojXUruVJ7odTZbC3LdE/6+ONW4f2Dg==} engines: {node: '>=v18'} '@commitlint/message@20.4.3': resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==} engines: {node: '>=v18'} - '@commitlint/parse@20.4.3': - resolution: {integrity: sha512-hzC3JCo3zs3VkQ833KnGVuWjWIzR72BWZWjQM7tY/7dfKreKAm7fEsy71tIFCRtxf2RtMP2d3RLF1U9yhFSccA==} + '@commitlint/parse@20.4.4': + resolution: {integrity: sha512-AjfgOgrjEozeQNzhFu1KL5N0nDx4JZmswVJKNfOTLTUGp6xODhZHCHqb//QUHKOzx36If5DQ7tci2o7szYxu1A==} engines: {node: '>=v18'} - '@commitlint/read@20.4.3': - resolution: {integrity: sha512-j42OWv3L31WfnP8WquVjHZRt03w50Y/gEE8FAyih7GQTrIv2+pZ6VZ6pWLD/ml/3PO+RV2SPtRtTp/MvlTb8rQ==} + '@commitlint/read@20.4.4': + resolution: {integrity: sha512-jvgdAQDdEY6L8kCxOo21IWoiAyNFzvrZb121wU2eBxI1DzWAUZgAq+a8LlJRbT0Qsj9INhIPVWgdaBbEzlF0dQ==} engines: {node: '>=v18'} - '@commitlint/resolve-extends@20.4.3': - resolution: {integrity: sha512-QucxcOy+00FhS9s4Uy0OyS5HeUV+hbC6OLqkTSIm6fwMdKva+OEavaCDuLtgd9akZZlsUo//XzSmPP3sLKBPog==} + '@commitlint/resolve-extends@20.4.4': + resolution: {integrity: sha512-pyOf+yX3c3m/IWAn2Jop+7s0YGKPQ8YvQaxt9IQxnLIM3yZAlBdkKiQCT14TnrmZTkVGTXiLtckcnFTXYwlY0A==} engines: {node: '>=v18'} - '@commitlint/rules@20.4.3': - resolution: {integrity: sha512-Yuosd7Grn5qiT7FovngXLyRXTMUbj9PYiSkvUgWK1B5a7+ZvrbWDS7epeUapYNYatCy/KTpPFPbgLUdE+MUrBg==} + '@commitlint/rules@20.4.4': + resolution: {integrity: sha512-PmUp8QPLICn9w05dAx5r1rdOYoTk7SkfusJJh5tP3TqHwo2mlQ9jsOm8F0HSXU9kuLfgTEGNrunAx/dlK/RyPQ==} engines: {node: '>=v18'} '@commitlint/to-lines@20.0.0': @@ -2394,10 +2395,22 @@ packages: resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==} engines: {node: '>=v18'} - '@commitlint/types@20.4.3': - resolution: {integrity: sha512-51OWa1Gi6ODOasPmfJPq6js4pZoomima4XLZZCrkldaH2V5Nb3bVhNXPeT6XV0gubbainSpTw4zi68NqAeCNCg==} + '@commitlint/types@20.4.4': + resolution: {integrity: sha512-dwTGzyAblFXHJNBOgrTuO5Ee48ioXpS5XPRLLatxhQu149DFAHUcB3f0Q5eea3RM4USSsP1+WVT2dBtLVod4fg==} engines: {node: '>=v18'} + '@conventional-changelog/git-client@2.6.0': + resolution: {integrity: sha512-T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==} + engines: {node: '>=18'} + peerDependencies: + conventional-commits-filter: ^5.0.0 + conventional-commits-parser: ^6.3.0 + peerDependenciesMeta: + conventional-commits-filter: + optional: true + conventional-commits-parser: + optional: true + '@dependents/detective-less@5.0.1': resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==} engines: {node: '>=18'} @@ -2409,14 +2422,14 @@ packages: '@dynamic-labs/wallet-connector-core': ^4.11.1 viem: ^2.21.55 - '@dynamic-labs-sdk/assert-package-version@0.12.1': - resolution: {integrity: sha512-DtDKn9rusMw5CvM2lt5u+bZ0W08R2YaaJcM9w4Zt3XI9pdAlshOBKhd1tIRXDne2Y8a04GFTpyvRhPkxXcJVHw==} + '@dynamic-labs-sdk/assert-package-version@0.14.0': + resolution: {integrity: sha512-t9rfVlBjCZu2ZlluS80U7/N/Fckv11pBSRZPoFa1gM1vTbCVcob7ThLeNvzlGnTnfqEHaU+Lhz6RLGDvrr0HxA==} - '@dynamic-labs-sdk/client@0.12.1': - resolution: {integrity: sha512-izUZgefwRGGB3eeIDgZesfiy144GnFsC6BX0+nGAKyF7AuTDIE2joJK3KhNdIbH5jJozHa34IbFqJ1ly/aZPhA==} + '@dynamic-labs-sdk/client@0.14.0': + resolution: {integrity: sha512-9HcJ9GMRWXEGZRxmexEkTTaAJBXbSohKBuIer5ETP3Lr/NrhrnCgQPZ3CSclMUMdQ4GlZWo66676+heTWglXKA==} - '@dynamic-labs-wallet/browser-wallet-client@0.0.261': - resolution: {integrity: sha512-brVdQrzlG7n6rFxZVnzyOoE6Y8gJ6Z+FmdHNhc6hOuN4zsj+V4WMXWYKQwaKRMwC1j4tv8jSR1EcBVznV9qLzQ==} + '@dynamic-labs-wallet/browser-wallet-client@0.0.286': + resolution: {integrity: sha512-jmDW0lOSNYrPg/krdqaigt5F2Ib/y/7eAc2ZV/ELY5Wd982gl2JoG1RZhy6ut0ovZL9J+qeCfQhDLCgHDhz3Ww==} '@dynamic-labs-wallet/browser-wallet-client@0.0.289': resolution: {integrity: sha512-3h0XtxS82qeIv+AObMS+KC7wdEyUmgwngGgBcc5wSiYFFm4XgLY5AMBwxHdSiqBzf8ZYFBPq9h4BuVJH1X0l/A==} @@ -2439,8 +2452,8 @@ packages: '@dynamic-labs-wallet/core@0.0.259': resolution: {integrity: sha512-q9QhQ30CU1IwJgSQ4jvoX3ltWBnvoomsPIjn8K3+vhW/Js6zIeTB0mQ0M0m/NQSbms3E16XstzSnAkiXcSTvow==} - '@dynamic-labs-wallet/core@0.0.261': - resolution: {integrity: sha512-JDdnymoR2fcMZEXf35NACGZMtDjCY5RSuZc9X915csnRXBCOR79hbcekrtI5ltQWWTlqu7zP3jMmqnHU369vLw==} + '@dynamic-labs-wallet/core@0.0.286': + resolution: {integrity: sha512-DgMDLWvPmYlJoRfqTVgcQIRJtwv9T7wPa88wMJAg11fd/Wmb7MKJedPQ9BMlHOUdnvFkG9qAxw52SKh3MzGp6w==} '@dynamic-labs-wallet/core@0.0.289': resolution: {integrity: sha512-wkSeF2Wxj1NfSwMEfMThY+YA7m2HKOr2+dDnt6fEGti0c4fvTGzuE+88sUpChdEFwtGDAQMsJ4Q74MrLCXjBEw==} @@ -2453,6 +2466,9 @@ packages: '@dynamic-labs-wallet/forward-mpc-client@0.2.0': resolution: {integrity: sha512-zkn5eYPPkjOFRi8POHXM+rl2lW+0AKjqiKPdNYmJieegI8PuXqq9Q0UzVWISwzpqmMX4/nQmK+9cqbPDW9Lu6A==} + '@dynamic-labs-wallet/forward-mpc-client@0.3.0': + resolution: {integrity: sha512-bpuaN4iuKKIi/SPF7xs+InYbfVO/DTLZw9gJeU8cCRh0h91j+GNJZOX8n+1T9sRj3IIvHv3Seq6Zsx/uEWAtVA==} + '@dynamic-labs-wallet/forward-mpc-client@0.4.0': resolution: {integrity: sha512-Ev+ObL3Pb1xv9hfEjnEg+iGQh7uaV4LfkIu7Ri5AvtL0MgIHJAjBmz4N+h58s8bN3l3Nr/NvUPiPwXwV407e+Q==} @@ -2462,66 +2478,69 @@ packages: '@dynamic-labs-wallet/forward-mpc-shared@0.2.0': resolution: {integrity: sha512-2I8NoCBVT9/09o4+M78S2wyY9jVXAb6RKt5Bnh1fhvikuB11NBeswtfZLns3wAFQxayApe31Jhamd4D2GR+mtw==} + '@dynamic-labs-wallet/forward-mpc-shared@0.3.0': + resolution: {integrity: sha512-S0oO+vbDZZdUFH+LOAIolvgKWgthyvJj6R4wam+v4Hb5FXFxvdBkzCAMq63UNH+wLP4oyctZK6BOjJ3oTzwQLA==} + '@dynamic-labs-wallet/forward-mpc-shared@0.4.0': resolution: {integrity: sha512-bBpjnybxwCWGiMAAuRFwkas8gonkUf3NAf+LKpGzDjyn6qQ5bY8VrWmVjIgOJSCKlxlGZeBpRuFW1qRtL9Z9Yg==} - '@dynamic-labs/assert-package-version@4.66.0': - resolution: {integrity: sha512-2XnwB0lDfQ+TRf634KWNrxnWCquYzD1lSG+/PACwWvnuPNBsT5FoOuOgrkUsmhUkZpZfNCLNBlq3WvWPXSFIPw==} + '@dynamic-labs/assert-package-version@4.67.1': + resolution: {integrity: sha512-nvte7O8oBYqMXiV+7WbfoaCEInVenpU8l627zWjwjCMxAIiqYWO6fGs5D4/6ShYevUa5eTNTIijI7d9Uh3JMUQ==} - '@dynamic-labs/bitcoin@4.66.0': - resolution: {integrity: sha512-WWLF/233384ojBF+frGzgzgy7w4czOQYbEubDk0jqsQOCRPxNR5BDM30b5HW7P0LhIJgWbogUQRUObJVAyn4nA==} + '@dynamic-labs/bitcoin@4.67.1': + resolution: {integrity: sha512-KUQ/2gjEk6DjRwLinf2W/V3u7v9nycouSbfscnvricuNIkceK8jDyOSZNp8CR6EDMkeJwyArzy6Z58nev4pBJQ==} - '@dynamic-labs/embedded-wallet-evm@4.66.0': - resolution: {integrity: sha512-V//G9gqwjonl4YjpELM9iEETjF6TNh1EAQ919Q3khWCyyyVAsa109PpnXNck5EL8f3nPZmwgp4QcFH+HHRPrDg==} + '@dynamic-labs/embedded-wallet-evm@4.67.1': + resolution: {integrity: sha512-5H5RRwH2zaRSsW3V7aLoO64woZEWVdzIkWkxoKcjJmWlceskuLpU3TqgNsRzZmeXnQKHc+o/z79Xy/dsLmaxEQ==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/embedded-wallet-solana@4.66.0': - resolution: {integrity: sha512-HUeNilncQM8rQfYFlyYa+TJSunjSrgTX5/k4qtcQXv3mL/ajqO4K4iF1H9j9Mf/CMwFb4LOYxKPllqxbcsbCyQ==} + '@dynamic-labs/embedded-wallet-solana@4.67.1': + resolution: {integrity: sha512-WgsCw3qhcvGfdXdo8/aH8Aqi7NDYTI2Kb2tuTs9vo44Ygoxclg/lGKImD3qY9RaLcJXsnMfTSV+8pSn5PU197Q==} - '@dynamic-labs/embedded-wallet@4.66.0': - resolution: {integrity: sha512-1MoYAi4Jss53Km8f1LZB+et0j/aafoEIfId6RnirwpHFXiAkn3uIIb0lBTCpDViyhKEjHOjPcwKJw7blbdaaVA==} + '@dynamic-labs/embedded-wallet@4.67.1': + resolution: {integrity: sha512-LsXq6WxqjYku6C1pVyhQS4tjWZNOZW35XnYNKHHyAjmOozSFWN2IN8LIIVwJpAmnYXydFIF2QKolTEuAywvfnA==} - '@dynamic-labs/ethereum-aa-core@4.66.0': - resolution: {integrity: sha512-LXHDikXUnHjy8EJyLpFuPn/e9dLWRoICrj0hb5vVO0JkOfMUtng7HZEfdtv4IaDCsPoWgFInAWUdV2cPIZHKcQ==} + '@dynamic-labs/ethereum-aa-core@4.67.1': + resolution: {integrity: sha512-S6tcJ68mbSaxTSscyKJW4zoTl2vPD2TAI19oIkWiIaV73pt2v7DIbuKEy+yHX1y835VWqWHNGJC9y7nwBD8Brg==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum-aa@4.66.0': - resolution: {integrity: sha512-f81g3th85A1csiK8zdgK6Ou2auIr6MN+n8TaIjuJJT3SYBMsbOeMw3C15HS+9bFcMDxjyLH5kyZuuRHNklw8Ow==} + '@dynamic-labs/ethereum-aa@4.67.1': + resolution: {integrity: sha512-hicrssyUQURxQVM35NsxAJiTJcKkBsGGdyj/5/cmW76fSMhJtmdl+syWn9inmYk2rVbQxDsDCHREbZ/dYcwqxQ==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum-core@4.66.0': - resolution: {integrity: sha512-79NGliYC/9Dmqdr7J/0/FnIdRIkjgdXl4lpwgwte0pWFt1tfEJjE41vxdKhu0LnRpC2lgaOntGIPiLCdYwWhwA==} + '@dynamic-labs/ethereum-core@4.67.1': + resolution: {integrity: sha512-nKkwvGa8k3DshehXLpcywusMFIoMJ0B3gVrTauKBKRl7xK1BtZQLU+1+1p5hxAOh3rnT3O9EkYk71LHBtv8IoQ==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum@4.66.0': - resolution: {integrity: sha512-nEbuRsyfkpBkRgvrd7g3dITMF1KtSBMALlp98PmtWct0rMYfhdkrQXgVFhNhOK6NqlA89XMk2gMw3acPCJAA7w==} + '@dynamic-labs/ethereum@4.67.1': + resolution: {integrity: sha512-xao+oQIVu1+um4+No9nLrfTN03+E0CmRncJSHf0KFFcsjHNMUXRLkjUTl4igmriGQXK2wWKnilWpde58CJlmnw==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/iconic@4.66.0': - resolution: {integrity: sha512-/53IScdRiN6v8o/QWArHTyEet3dRNbdoEH72vytZo7MuvQdhfR76//rfO32IwYs4oR6XQ2XMobOYihqriig/7g==} + '@dynamic-labs/iconic@4.67.1': + resolution: {integrity: sha512-CrphxvT0bMMLgavU/U8WK3I2vpcEP6qntKXlTHbD+StKYbuKhyMXpGxSTEXIEXRA2Y8zM6NIZWrkzaCiceSU/g==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/locale@4.66.0': - resolution: {integrity: sha512-++9vHtw5LkfQs/h2GCzWCJaVE5Ld8s8SvDy+sWgMOXXskAqTwocTcwr9uN9zmAVv3yCwHFirwtnwUgWXyKo3OQ==} + '@dynamic-labs/locale@4.67.1': + resolution: {integrity: sha512-A5c9196OFH5P1zseUn7AyWvAbnuao6ZCb4XL2fhfMwdD6o1A//wdLvV3Lf7AFeoSLL1gsbUo6bRlJmDuaHQyfQ==} - '@dynamic-labs/logger@4.66.0': - resolution: {integrity: sha512-zigPcMR5Rya6/0Gw0Ib7ag0FFipHBBxbPD+DVgIPUr1sPgNCuHKOm5d1UUPXL8dNGioctqX/2HbKg8KSw1F3Jw==} + '@dynamic-labs/logger@4.67.1': + resolution: {integrity: sha512-dgfWyUymtwhL4B+K1kqtItokWUe5V6CjbhJxMIpTXhLQpNWlW4paK8parS2D3+969gzg+uElftj+91q4b7VCxQ==} - '@dynamic-labs/message-transport@4.66.0': - resolution: {integrity: sha512-dGSmrUoJExqRTM3bjxFskz83+PV7MkB2ULt36N4dxVF4gQ6oyZx9fJ2i/ftbjC8hZaepzDYbmhR829ooVgIFWw==} + '@dynamic-labs/message-transport@4.67.1': + resolution: {integrity: sha512-6CZYlraRpxBKD6Es9SYlKPlwOdHDofqPTPRH9cY42zDRcYFjihsg0891INiXHCdwD6ujXQoh5hV/Fs+gXluQSA==} - '@dynamic-labs/multi-wallet@4.66.0': - resolution: {integrity: sha512-1z2EyM0ODCh5wDhxZrYpWtLkl+dnACzrfQpiGixTb3RRlP1CIxXDHry5/UoBCylwzByTudCUP3ENcdcSBhLEDg==} + '@dynamic-labs/multi-wallet@4.67.1': + resolution: {integrity: sha512-ld4VmxRtjTChMKERUrXEUzinvB3fzpC2yhCh0eqIuccGV3lXU7qxx8iLPO90O091cIQADOCnVJZTTVtGFqqsaw==} - '@dynamic-labs/rpc-providers@4.66.0': - resolution: {integrity: sha512-OClI+8NVH6z4iyLm1Fou1UMaoBVnchHynKTK0vF09TGVKVarQvNZyIpZh2DbAXuHbkG4EDHp3TTw8I4Og66V9Q==} + '@dynamic-labs/rpc-providers@4.67.1': + resolution: {integrity: sha512-zf5hhE4I0qLPoZxQOtOMVN/8pzJXuxzB2pToUT4VU+7K2lgFAXxweZaxLo0b693Iqri7f0HqE5Sg/6/V32ytOQ==} '@dynamic-labs/sdk-api-core@0.0.764': resolution: {integrity: sha512-79JptJTTClLc9qhioThtwMuzTHJ+mrj8sTEglb7Mcx3lJub9YbXqNdzS9mLRxZsr2et3aqqpzymXdUBzSEaMng==} @@ -2535,69 +2554,72 @@ packages: '@dynamic-labs/sdk-api-core@0.0.875': resolution: {integrity: sha512-lLMJ5RwFn48UKTZnqT5g4VXVD68uSy87UpEf3Up21YDH4/2uaeEIrJZDUM9gvvCsU/8f2Q9K72i9+JoyZWWzzw==} - '@dynamic-labs/sdk-react-core@4.66.0': - resolution: {integrity: sha512-h6tuM7ax1MbjcwgDgLCm2GBChIezadDonyn89IXdyr4odl3zS9O30ymIfblHE7haTC1Dvm7/VOSpbqLShFGrHg==} + '@dynamic-labs/sdk-api-core@0.0.881': + resolution: {integrity: sha512-Prc/gJZOTHGlGAw4VCoR8qTxrSRu2Ivl5+dYUsTjWDWTrJYJIzPhNOdXiReDitkXwr5Zu5wrsvRnrDf9/Rn0AQ==} + + '@dynamic-labs/sdk-react-core@4.67.1': + resolution: {integrity: sha512-Hc39N3299CZ0GyCg/nqZ9fQZD7EhykPs2ExlKBKLMrqx79u5WtMvwO9peux41M11Yj7RDOufPHe6+c1jg3XlZw==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/solana-core@4.66.0': - resolution: {integrity: sha512-DmxLTqSMG5DbeSJ+6+IlnLasRhQZvQPseevbd4844+r24t6vyuuzGZxnYO4bQsJpvAvqtlRz+aPBa0YDlRxCww==} + '@dynamic-labs/solana-core@4.67.1': + resolution: {integrity: sha512-GQc7HBkKO+VtJk6Zh65K+TnyT6QO/AbkjybEp6q3smAppluOvxZhyhHrl/A4kjnejY5JupkH2BC+HRP5ZNmgDQ==} - '@dynamic-labs/solana@4.66.0': - resolution: {integrity: sha512-DWFP0Hq96HRE6GeCfyy2/u17FeO5YHzpylnznQijtCTz1t6IQ764n7YLqBHJvFNIJgeH3RTG4H+rPnM+7Fyz0A==} + '@dynamic-labs/solana@4.67.1': + resolution: {integrity: sha512-XyKrwfGilYZ6kXdq7AprhCt81UzilLgg62f4jsCKqf9wiA1GiAIDK/o4rikQ9QHrZY9rJJetXFMs9fEbDU3QiQ==} - '@dynamic-labs/store@4.66.0': - resolution: {integrity: sha512-nI0Uv2pWT2qdsaswjEoODiuEnoIE34ZjuNFZPDVDMvwSOx81tGLZf8hV4+Vu//LtpWkrc8m491kQhuTgqhqYyA==} + '@dynamic-labs/store@4.67.1': + resolution: {integrity: sha512-KJSeJTTspTvjafBxQnJgUHoh+sSMAzpcA/plCiy3z2Ls1I9326TDKhZl2XGI0eu+OPjlyvf/x1ch2aPwKYDbMA==} - '@dynamic-labs/sui-core@4.66.0': - resolution: {integrity: sha512-t37QOSePI1qNGuwsTwrr6gdNqe5YbIgNh7jMJjuEewNJvh0KyARGC9C4dkQgbViX8CBB7bi4n9laq8hYB/+ZnA==} + '@dynamic-labs/sui-core@4.67.1': + resolution: {integrity: sha512-WupQkAdBjvU+YcXb0nwGSi4cL8MevyMjZ+Df18OSbIQOXb1SIUneqFJ1em7N+IsO6rq8T5YkGv6o7Wy1v4XIOg==} - '@dynamic-labs/types@4.66.0': - resolution: {integrity: sha512-6V0x8ATJ65FSPJ0RvJKR3PaQcMn4Q9sNsFqeVgNa7RHeUNFIsYF6C/Td32avC8AFuI0bOY8FSud8QTl2ap2YDw==} + '@dynamic-labs/types@4.67.1': + resolution: {integrity: sha512-tRtG6a/nDtuGsYr5q79BFNG/qclI8KHw5Gl1HHNdivKU8BBsv5XkkPt+nhlRemTieZiqqA4kUpg87hQtiPw3EQ==} - '@dynamic-labs/utils@4.66.0': - resolution: {integrity: sha512-GNd4zD6NTEuBXz/Z2/5m8gft3lFrT95eECjUyc+BCOVsRBPiitZljUuRIidGMVE2KC4MXFw7ehpBj1NSvunP0Q==} + '@dynamic-labs/utils@4.67.1': + resolution: {integrity: sha512-pUzX8d7rnL0iC3XidwCgfrQhRE6oV0CerwmrvNUdmK48vkXsNRNlHmZCm454vSDLoBz3DHhDIJR061qavkhFzg==} - '@dynamic-labs/waas-evm@4.66.0': - resolution: {integrity: sha512-jacJMGisJ0v/XAv50lMNHXac1OsFddRhTpiQE/OGgLBmPC+Ud8rYhgnY+79RRFgnsCTCvM2GfCMKDlNvm6gulg==} + '@dynamic-labs/waas-evm@4.67.1': + resolution: {integrity: sha512-mktYihRFTdVjY4ajNZN7T482mELnJp7MMHKZbMXo48EeahFs4DzHImNn94HgzH3mYdDr7DftueBWXheJSdjzgQ==} - '@dynamic-labs/waas-svm@4.66.0': - resolution: {integrity: sha512-XfYkm0KZ5czB8TH3eQ+t8ohwHA0IMlReHGjKeqvsIH6NOAY4b1Ko8QtDc8Fq5nsON0rPwN/vJLwsw4h1oEIFlw==} + '@dynamic-labs/waas-svm@4.67.1': + resolution: {integrity: sha512-PAKUlu1S+07twa/8aKKegQnjilsHkXsYOfc0/o3B/u7kLyhyf7hz5q01PcEdiUwlh4T/8wfeC9OrWlQoa2mH6A==} - '@dynamic-labs/waas@4.66.0': - resolution: {integrity: sha512-X6XhpVa66RF5SDPXXgBcclYsi0kWcl1zREz0cQW0spC1WQUJpNPDmWt9U+u+aDCNtD7lP1Nr4Z4CpZuZnIW3wA==} + '@dynamic-labs/waas@4.67.1': + resolution: {integrity: sha512-1IRslEPtqCLYKpAXXJ9+PZ/EZ2MOAsPy1qr6vc9salRGzRo2lPox8a9uzIjhrSS92OD57NzUMk7aHiKN7+doww==} - '@dynamic-labs/wagmi-connector@4.66.0': - resolution: {integrity: sha512-dSU4K7UCoR2szyORJpQPBNzH5X26gYAjETaQzTYhlEhTTsB+HxhU5OKZ6LfM5Yhvzz3f0Y+YScl/NB1RKhhtQQ==} + '@dynamic-labs/wagmi-connector@4.67.1': + resolution: {integrity: sha512-hnc07WdDTkDs8jcYi+0LneGo1Mo4g7aH0/Y9hIqWlrA93OEJ6hBmfsm19S5JopCRcGAqN257wKEsq9k5h00CNg==} peerDependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-core': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-react-core': 4.66.0 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/wallet-connector-core': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-core': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-react-core': 4.67.1 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/wallet-connector-core': 4.67.1 '@wagmi/core': ^2.6.4 eventemitter3: 5.0.1 react: '>=18.0.0 <20.0.0' viem: ^2.28.4 wagmi: ^2.14.11 - '@dynamic-labs/wallet-book@4.66.0': - resolution: {integrity: sha512-0PhW+pw2dzRSrPjSVCaKErXksCL8pW26X/uireDUs6dwPHidefovy7j95xM+RoqUdHy4zdWv1/5JG4H7wpg8LQ==} + '@dynamic-labs/wallet-book@4.67.1': + resolution: {integrity: sha512-EJJTnObl6S9R9k2aZpqy/hUSQ54RuaKVcsym8YOWLFkKPujxqZcHJa4F48OdliAtUdQhIbl6ApeKbEdbe6RBcw==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/wallet-connect@4.66.0': - resolution: {integrity: sha512-+2GSq0dDyR/doUTt4RTAN9rphtB8NG6/q9+vO7nAlE1HrbYGhUZNvXPPy1FGTy4LfMTaUrlw9e0sCgxTGyg5PQ==} + '@dynamic-labs/wallet-connect@4.67.1': + resolution: {integrity: sha512-HE9NV21KyeAqYwq7V6kXknj+7aW5rPlU/4zyl8RHSGqUtXyUrl2mRydpvGWFH+qSMgxIcZpiXpw0yJZ5GaH+0g==} - '@dynamic-labs/wallet-connector-core@4.66.0': - resolution: {integrity: sha512-KWk1CqhOOq64s8bDD+0ZIzwbxt8yWl/inoJU9ti7KGwCYl6cMIlyuQAOSTy+kyQFSv36oCCp1Ixg4ASYfAfbzQ==} + '@dynamic-labs/wallet-connector-core@4.67.1': + resolution: {integrity: sha512-sz41t6NfOh16BJPbPdvchgiQFCUxNbUxw+R0EJG3PJhBpY7WxUi/1/bsRYdpRfjJ3vevsUm2ZubhRp4mLwMoCg==} - '@dynamic-labs/webauthn@4.66.0': - resolution: {integrity: sha512-gPDrJSFZo6TiIVEVXxnZYlhQGFxSw7EEDkI9keXjK+z6YkJqa/w8R44a1QmM0OC4kr5ah4dQwZNq5j9c2DpNsg==} + '@dynamic-labs/webauthn@4.67.1': + resolution: {integrity: sha512-JnNKsPONZUTPaH4trLGf07DO5fnzVMg1yuqh0Igmk3O7odYG+98J5N32cwdbbex/s4GTUEABQ4ydT1Nvhmm57g==} '@ecies/ciphers@0.2.5': resolution: {integrity: sha512-GalEZH4JgOMHYYcYmVqnFirFsjZHeoGMDt9IxEnM9F7GRUUyUksJ7Ou53L83WHJq3RWKD3AcBpo0iQh0oMpf8A==} @@ -2605,14 +2627,14 @@ packages: peerDependencies: '@noble/ciphers': ^1.0.0 - '@emnapi/core@1.8.1': - resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==} + '@emnapi/core@1.9.0': + resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==} - '@emnapi/runtime@1.8.1': - resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==} + '@emnapi/runtime@1.9.0': + resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==} - '@emnapi/wasi-threads@1.1.0': - resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + '@emnapi/wasi-threads@1.2.0': + resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==} '@emotion/babel-plugin@11.13.5': resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} @@ -2680,11 +2702,6 @@ packages: '@emotion/weak-memoize@0.4.0': resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} - '@esbuild-plugins/node-globals-polyfill@0.2.3': - resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==} - peerDependencies: - esbuild: '*' - '@esbuild/aix-ppc64@0.21.5': resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} engines: {node: '>=12'} @@ -2697,8 +2714,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.27.3': - resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==} + '@esbuild/aix-ppc64@0.27.4': + resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -2721,8 +2738,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.27.3': - resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==} + '@esbuild/android-arm64@0.27.4': + resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -2745,8 +2762,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.27.3': - resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==} + '@esbuild/android-arm@0.27.4': + resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -2769,8 +2786,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.27.3': - resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==} + '@esbuild/android-x64@0.27.4': + resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -2793,8 +2810,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.27.3': - resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==} + '@esbuild/darwin-arm64@0.27.4': + resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -2817,8 +2834,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.27.3': - resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==} + '@esbuild/darwin-x64@0.27.4': + resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -2841,8 +2858,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.27.3': - resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==} + '@esbuild/freebsd-arm64@0.27.4': + resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -2865,8 +2882,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.27.3': - resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==} + '@esbuild/freebsd-x64@0.27.4': + resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -2889,8 +2906,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.27.3': - resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==} + '@esbuild/linux-arm64@0.27.4': + resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -2913,8 +2930,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.27.3': - resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==} + '@esbuild/linux-arm@0.27.4': + resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -2937,8 +2954,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.27.3': - resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==} + '@esbuild/linux-ia32@0.27.4': + resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -2961,8 +2978,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.27.3': - resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==} + '@esbuild/linux-loong64@0.27.4': + resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -2985,8 +3002,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.27.3': - resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==} + '@esbuild/linux-mips64el@0.27.4': + resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -3009,8 +3026,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.27.3': - resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==} + '@esbuild/linux-ppc64@0.27.4': + resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -3033,8 +3050,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.27.3': - resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==} + '@esbuild/linux-riscv64@0.27.4': + resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -3057,8 +3074,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.27.3': - resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==} + '@esbuild/linux-s390x@0.27.4': + resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -3081,8 +3098,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.27.3': - resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==} + '@esbuild/linux-x64@0.27.4': + resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==} engines: {node: '>=18'} cpu: [x64] os: [linux] @@ -3093,8 +3110,8 @@ packages: cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-arm64@0.27.3': - resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==} + '@esbuild/netbsd-arm64@0.27.4': + resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] @@ -3117,8 +3134,8 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.27.3': - resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==} + '@esbuild/netbsd-x64@0.27.4': + resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] @@ -3129,8 +3146,8 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-arm64@0.27.3': - resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==} + '@esbuild/openbsd-arm64@0.27.4': + resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -3153,8 +3170,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.27.3': - resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==} + '@esbuild/openbsd-x64@0.27.4': + resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -3165,8 +3182,8 @@ packages: cpu: [arm64] os: [openharmony] - '@esbuild/openharmony-arm64@0.27.3': - resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} + '@esbuild/openharmony-arm64@0.27.4': + resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] @@ -3189,8 +3206,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.27.3': - resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==} + '@esbuild/sunos-x64@0.27.4': + resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -3213,8 +3230,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.27.3': - resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==} + '@esbuild/win32-arm64@0.27.4': + resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -3237,8 +3254,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.27.3': - resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==} + '@esbuild/win32-ia32@0.27.4': + resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -3261,8 +3278,8 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.27.3': - resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==} + '@esbuild/win32-x64@0.27.4': + resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -3277,8 +3294,8 @@ packages: resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/config-array@0.21.1': - resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} + '@eslint/config-array@0.21.2': + resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/config-helpers@0.4.2': @@ -3293,16 +3310,16 @@ packages: resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@eslint/eslintrc@3.3.4': - resolution: {integrity: sha512-4h4MVF8pmBsncB60r0wSJiIeUKTSD4m7FmTFThG8RHlsg9ajqckLm9OraguFGZE4vVdpiI1Q4+hFnisopmG6gQ==} + '@eslint/eslintrc@3.3.5': + resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/js@8.57.1': resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@eslint/js@9.39.3': - resolution: {integrity: sha512-1B1VkCq6FuUNlQvlBYb+1jDu/gV297TIs/OeiaSR9l1H27SVW55ONE1e1Vp16NqP683+xEGzxYtv4XCiDPaQiw==} + '@eslint/js@9.39.4': + resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.7': @@ -3493,24 +3510,24 @@ packages: peerDependencies: react: '>= 16 || ^19.0.0-rc' - '@hpke/chacha20poly1305@1.7.1': - resolution: {integrity: sha512-Zp8IwRIkdCucu877wCNqDp3B8yOhAnAah/YDDkO94pPr/KKV7IGnBbpwIjDB3BsAySWBMrhhdE0JKYw3N4FCag==} + '@hpke/chacha20poly1305@1.8.0': + resolution: {integrity: sha512-FcBfAQ+Y99vMNJP2yrZ9wpL8V0GOwp1+zMyzvc6alasrBygfFjFm1yeUtyADJCu/27C3Lm5mJzx6u7pwg+cX5w==} engines: {node: '>=16.0.0'} - '@hpke/common@1.9.0': - resolution: {integrity: sha512-Sdxj4KqtmBt8FiwRkNLxXF+peqLR3FwVxtnsemiiEzClgslckRpFv3yK8mchoCwvyRwLOMS3Y2Z9ND2bq3sRVg==} + '@hpke/common@1.10.1': + resolution: {integrity: sha512-moJwhmtLtuxiUzzNp1jpfBfx8yefKoO9D/RCR9dmwrnc7qjJqId1rEtQz+lSlU5cabX8daToMSx/7HayXOiaFw==} engines: {node: '>=16.0.0'} - '@hpke/core@1.8.0': - resolution: {integrity: sha512-yHuo+2q4HSPUFuxcg87Kiy7QZRk4IeR+cwBB0qW8fHnr71bnRCArM39Cq1bWHBt75gTyeERGD/v1H14yPB2wyw==} + '@hpke/core@1.9.0': + resolution: {integrity: sha512-pFxWl1nNJeQCSUFs7+GAblHvXBCjn9EPN65vdKlYQil2aURaRxfGMO6vBKGqm1YHTKwiAxJQNEI70PbSowMP9Q==} engines: {node: '>=16.0.0'} - '@hpke/dhkem-x25519@1.7.0': - resolution: {integrity: sha512-mgqkCUj82jBoKSa55VG/QAih4d5npalRd3uu/U/t3PvvrSbrYjDnok6PDxFwRPh+9aUNRX0tBtxupqtAiT+P1A==} + '@hpke/dhkem-x25519@1.8.0': + resolution: {integrity: sha512-S1MWWkAfu+TFxySgv5+2P3O4Mx/jk7BsoplzQaA1s3sfUJVJ2UsZsSzSsMc+FXJumLXncoJFlO6mK6mDGspfmA==} engines: {node: '>=16.0.0'} - '@hpke/dhkem-x448@1.7.0': - resolution: {integrity: sha512-12Qik0A5srTp5D2RbwYorF4OyJePN2Ccej8pM45VbZampZdM6qFmZ2I3vWjUaOcN4L+CgP8U2uzq1g1dpc5MBw==} + '@hpke/dhkem-x448@1.8.0': + resolution: {integrity: sha512-mFfnZfgp4OKkUIS/FKikfUgdnDKRy25ytCKBQiV+N+HbYy3I4v4ZCPBQ69QL+TYmKmCZJeUEnYeS5K+OBRP+Eg==} engines: {node: '>=16.0.0'} '@humanfs/core@0.19.1': @@ -3980,8 +3997,8 @@ packages: resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - '@jest/diff-sequences@30.0.1': - resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} + '@jest/diff-sequences@30.3.0': + resolution: {integrity: sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/environment@29.7.0': @@ -4040,37 +4057,33 @@ packages: '@kwsites/promise-deferred@1.1.1': resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} - '@lerna/create@9.0.5': - resolution: {integrity: sha512-Gwd6ooSqXMdkdhiCGvHAfLRstj7W3ttr72WQB3Jf9HPP1A6mWtw0O80D0X+T/2hakqfe7lNLuKrEid4f7C0qbg==} - engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} - - '@lifi/sdk-provider-bitcoin@4.0.0-alpha.20': - resolution: {integrity: sha512-unzcyHSZYToLlK7gzn9kyk3L14wXdA0wyHZ0rYBMWich5LiZ4yD/0AoyB7T/tf/Q3iArvjonDg4KBlH3jNzcvA==} + '@lifi/sdk-provider-bitcoin@4.0.0-beta.0': + resolution: {integrity: sha512-2w+E+kkGqzrSLW1F7fZz3UZLq7nd2BI3bfYJkt22Z2kFVxXMBe+gZN630E+8P1z69w+bRJILMAWvhgxBYCAbow==} - '@lifi/sdk-provider-ethereum@4.0.0-alpha.20': - resolution: {integrity: sha512-BhMNIt8vb7g8HNVHbMmMge6I/0I/CwFle/SdPuhLrpoKejrTF3g6qkgsGDi9HAZCU42irKCyTSvfLPoi//CGZw==} + '@lifi/sdk-provider-ethereum@4.0.0-beta.0': + resolution: {integrity: sha512-lelkCbC3CMwuoT8YtH4gDCX0opEYYAg0c/RBETXDZDP33IfvPao1pPy1kZjNcjDCW8++lIh29Vl1YmP12W9cTQ==} - '@lifi/sdk-provider-solana@4.0.0-alpha.20': - resolution: {integrity: sha512-dOmZBODgd/8X9BbtkBgcMi+gs1yS61+pX3elieTGjbnMnyIIQpuAYJwejbN7oHgKz0eSkYIsnQnQZC3Y8jOHCQ==} + '@lifi/sdk-provider-solana@4.0.0-beta.0': + resolution: {integrity: sha512-XuNEiMgtSPz1ldw31evhLsJU71kFsJvfJpreqj+cR9yNAfO71/K2B2eVYUt4Jx2L+xfMmtTZiRqfODNZELOGcw==} - '@lifi/sdk-provider-sui@4.0.0-alpha.20': - resolution: {integrity: sha512-BS0WeiY7+xXDSzzd4gaZbRs+sP5nOATV6ZIKDWLAkXV3ac6OdAJxcu/r7njYnMqXeENPwYrmr4a7/5C/vEV7Uw==} + '@lifi/sdk-provider-sui@4.0.0-beta.0': + resolution: {integrity: sha512-9UhaH3rSA4Tmr1rwfSKzNkfiAfRBXCrLX/AQJX3c8/oPB9SybsP6aUXp1oT23bJzit8yD9iZXoDX5upOCFtbOg==} - '@lifi/sdk@3.15.7': - resolution: {integrity: sha512-Rhptfhv10TnsluFgmE7XCsZ7uM2A9mwvq5iCNkwhQmBLAksiehbr8jz0CEyArKxijXQrdvCTGLxNrGIUMfvMjw==} + '@lifi/sdk@3.16.1': + resolution: {integrity: sha512-M609xqKCRlIV103nAefqtJOzySccGDsfBIgf8/7utEa9jeJrxHhUwRmHJbhs8zVxn8GTBBV81sgefF6xvB2Hsw==} peerDependencies: '@solana/wallet-adapter-base': ^0.9.0 '@solana/web3.js': ^1.98.0 viem: ^2.21.0 - '@lifi/sdk@4.0.0-alpha.20': - resolution: {integrity: sha512-5GgUJCYyAM/+IatzKNoA87t5ywoZB7mi+TbJ+T78hjDRgXO0lI2TUWJGByLPVMOSvMWMZ5q4MkMot2xyF1yCfQ==} + '@lifi/sdk@4.0.0-beta.0': + resolution: {integrity: sha512-FdmctWqAuCPpejJFEscDgrs3Ohgu8ibNiA3r5MggJZ6y44srOfbkhHZsPkWVWUQuX6QkETQ/n8qvf435JAWnKg==} '@lifi/types@17.65.0': resolution: {integrity: sha512-2COF1WimbFiPv51x4T1lvXSs8sRB6CP0SzOTCt7xCwaaeMBLczuuJmF0r10pY9JPxdzbJtVMM83Za3uCslqlWA==} - '@lifi/wallet-management@3.22.7': - resolution: {integrity: sha512-gabh/TEu10gjcsrbQ9NJklhJEdX1vAaDtCbM9xp+IwWYVGcZCNdN/ms7Xrk5EzSEq+NaYjd9H8KRehzXcqK65Q==} + '@lifi/wallet-management@3.22.8': + resolution: {integrity: sha512-9BKfq6GQk27vrL/OXGBahAg5hQCysYNnyQAQ2++sfyJEd6c90SIqZvfMU+MZYq3Mw87JC4+rmqUwiVr+MEQbaw==} peerDependencies: '@bigmi/react': '>=0.6.0' '@mysten/dapp-kit': '>=0.19.0' @@ -4080,8 +4093,8 @@ packages: react-dom: '>=18' wagmi: ^2.19.0 - '@lifi/widget-light@4.0.0-alpha.2': - resolution: {integrity: sha512-k/EG/E27pWTzaa8jyO/YgUXJ+7WvpcRtR7VophjsFKLTkk/t1ODT8TwI9WYhn2WppbooOfc4+vnCoJyqkv1t8A==} + '@lifi/widget-light@4.0.0-alpha.3': + resolution: {integrity: sha512-Z5sBLb4PSm4Hj/k6FlKF/bekIHU2ZzaL+Vfvr1HyvEPWBj6PVZCFlRwNDhIfuY2hpwUdxJc5bBDT5N+w9mlixw==} peerDependencies: '@bigmi/client': ^0.7.x '@bigmi/react': ^0.7.x @@ -4107,8 +4120,8 @@ packages: wagmi: optional: true - '@lifi/widget@3.40.11': - resolution: {integrity: sha512-Q7/1QTQ6QRzouL80lh5wnvcOEoRW4tSYs7cbhVhNbi348KGqXg4Zv0/UkP6JCw+S9jKLFrp0poUS6xArTcfdCQ==} + '@lifi/widget@3.40.12': + resolution: {integrity: sha512-HFkRKxXN8yqwKtd0jcgkDMymL20Zt4mq9RgZggaCtMFgthxdkmJ4CnIEMGon1YOcPl9eZCcGxbVQiJhKHlv5qw==} peerDependencies: '@bigmi/react': '>=0.6.0' '@mysten/dapp-kit': '>=0.19.0' @@ -4433,6 +4446,13 @@ packages: '@tanstack/react-query': ^5.0.0 react: '*' + '@mysten/dapp-kit@1.0.3': + resolution: {integrity: sha512-grlRTgrfRTrl7old0wZ9Q2hV1LOAhCErX0OCxnZ9cjl3g16rCMYamm8LOQeGKtr7hWiE6lVNUtFFzahuaoMH+Q==} + peerDependencies: + '@mysten/sui': ^2.3.2 + '@tanstack/react-query': ^5.0.0 + react: '*' + '@mysten/slush-wallet@0.2.12': resolution: {integrity: sha512-OVIQbADqUVZCTps3MGvVI90nczTbwepAb75x+jZuH2W2p8lXoYIuvuuP4KlwwalR9QgpqOqptdpYFVAKi8ncLQ==} @@ -4868,12 +4888,12 @@ packages: resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==} engines: {node: ^20.17.0 || >=22.9.0} - '@nuxt/cli@3.33.1': - resolution: {integrity: sha512-/sCrcI0WemING9zASaXPgPDY7PrQTPlRyCXlSgGx8VwRAkWbxGaPhIc3kZQikgLwVAwy+muWVV4Wks8OTtW5Tw==} - engines: {node: ^16.10.0 || >=18.0.0} + '@nuxt/cli@3.34.0': + resolution: {integrity: sha512-KVI4xSo96UtUUbmxr9ouWTytbj1LzTw5alsM4vC/gSY/l8kPMRAlq0XpNSAVTDJyALzLY70WhaIMX24LJLpdFw==} + engines: {node: ^16.14.0 || >=18.0.0} hasBin: true peerDependencies: - '@nuxt/schema': ^4.3.0 + '@nuxt/schema': ^4.3.1 peerDependenciesMeta: '@nuxt/schema': optional: true @@ -4900,8 +4920,8 @@ packages: resolution: {integrity: sha512-JLno3ur7Pix2o/StxIMlEHRkMawA6h7uzjZBDgxdeKXRWTYY8ID9YekSkN4PBlEFGXBfCBOcPd5+YqcyBUAMkw==} engines: {node: '>=18.12.0'} - '@nuxt/kit@3.21.1': - resolution: {integrity: sha512-QORZRjcuTKgo++XP1Pc2c2gqwRydkaExrIRfRI9vFsPA3AzuHVn5Gfmbv1ic8y34e78mr5DMBvJlelUaeOuajg==} + '@nuxt/kit@3.21.2': + resolution: {integrity: sha512-Bd6m6mrDrqpBEbX+g0rc66/ALd1sxlgdx5nfK9MAYO0yKLTOSK7McSYz1KcOYn3LQFCXOWfvXwaqih/b+REI1g==} engines: {node: '>=18.12.0'} '@nuxt/schema@3.17.7': @@ -5035,8 +5055,8 @@ packages: '@octokit/types@13.10.0': resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} - '@opensea/seaport-js@4.0.6': - resolution: {integrity: sha512-qApKZZ6lDHvHnBe9QvOEPySVsiUb/D87I4d+SL9u8Q5/c2E+aQ1LG7C3J+rAjlpiVVIaCKGasRRzW1GVqXa/2g==} + '@opensea/seaport-js@4.0.7': + resolution: {integrity: sha512-0RHcTyCQLgHxzvNirCaJI0Uy7G90DDx9fKk1Xed6I+rzcvz+rzJrHQSRMtw25PLllQxudcIatTpd9GK4YBvjJQ==} engines: {node: '>=20.0.0'} '@openzeppelin/contracts@4.9.6': @@ -5137,6 +5157,13 @@ packages: cpu: [x64] os: [win32] + '@oxc-project/runtime@0.115.0': + resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==} + engines: {node: ^20.19.0 || >=22.12.0} + + '@oxc-project/types@0.115.0': + resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==} + '@oxc-project/types@0.76.0': resolution: {integrity: sha512-CH3THIrSViKal8yV/Wh3FK0pFhp40nzW1MUDCik9fNuid2D/7JJXKJnfFOAvMxInGXDlvmgT6ACAzrl47TqzkQ==} @@ -5349,12 +5376,6 @@ packages: '@phosphor-icons/webcomponents@2.1.5': resolution: {integrity: sha512-JcvQkZxvcX2jK+QCclm8+e8HXqtdFW9xV4/kk2aL9Y3dJA2oQVt+pzbv1orkumz3rfx4K9mn9fDoMr1He1yr7Q==} - '@pivanov/utils@0.0.2': - resolution: {integrity: sha512-q9CN0bFWxWgMY5hVVYyBgez1jGiLBa6I+LkG37ycylPhFvEGOOeaADGtUSu46CaZasPnlY8fCdVJZmrgKb1EPA==} - peerDependencies: - react: '>=18' - react-dom: '>=18' - '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} @@ -5374,8 +5395,8 @@ packages: '@poppinss/exception@1.2.3': resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==} - '@preact/signals-core@1.13.0': - resolution: {integrity: sha512-slT6XeTCAbdql61GVLlGU4x7XHI7kCZV5Um5uhE4zLX4ApgiiXc0UYFvVOKq06xcovzp7p+61l68oPi563ARKg==} + '@preact/signals-core@1.14.0': + resolution: {integrity: sha512-AowtCcCU/33lFlh1zRFf/u+12rfrhtNakj7UpaGEsmMwUKpKWMVvcktOGcwBBNiB4lWrZWc01LhiyyzVklJyaQ==} '@preact/signals@1.3.4': resolution: {integrity: sha512-TPMkStdT0QpSc8FpB63aOwXoSiZyIrPsP9Uj347KopdS6olZdAYeeird/5FZv/M1Yc1ge5qstub2o8VDbvkT4g==} @@ -6054,15 +6075,113 @@ packages: '@reown/appkit@1.8.19': resolution: {integrity: sha512-wB+xatkRbOy0AY1cZxxtcKzzPk3l3CTFulDbaISLVmZI6ZnQrOFuLnYc285zGsC6DB4d6bmwYUh89zcMLa4PvQ==} + '@rolldown/binding-android-arm64@1.0.0-rc.9': + resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-rc.9': + resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-rc.9': + resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-rc.9': + resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9': + resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9': + resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9': + resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9': + resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9': + resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9': + resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-musl@1.0.0-rc.9': + resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.9': + resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.9': + resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9': + resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': + resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.27': + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} + '@rolldown/pluginutils@1.0.0-rc.2': resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==} - '@rolldown/pluginutils@1.0.0-rc.3': - resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==} - '@rolldown/pluginutils@1.0.0-rc.7': resolution: {integrity: sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==} + '@rolldown/pluginutils@1.0.0-rc.9': + resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==} + '@rollup/plugin-alias@6.0.0': resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==} engines: {node: '>=20.19.0'} @@ -6072,8 +6191,8 @@ packages: rollup: optional: true - '@rollup/plugin-commonjs@29.0.1': - resolution: {integrity: sha512-VUEHINN2rQEWPfNUR3mzidRObM1XZKXMQsaG6qBlDqd6M1qyw91nDZvcSozgyjt3x/QKrgKBc5MdxfdxAy6tdg==} + '@rollup/plugin-commonjs@29.0.2': + resolution: {integrity: sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==} engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 @@ -6366,6 +6485,10 @@ packages: resolution: {integrity: sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==} engines: {node: ^20.17.0 || >=22.9.0} + '@simple-libs/child-process-utils@1.0.2': + resolution: {integrity: sha512-/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw==} + engines: {node: '>=18'} + '@simple-libs/stream-utils@1.2.0': resolution: {integrity: sha512-KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA==} engines: {node: '>=18'} @@ -6451,8 +6574,8 @@ packages: typescript: optional: true - '@solana/accounts@6.1.0': - resolution: {integrity: sha512-0jhmhSSS71ClLtBQIDrLlhkiNER4M9RIXTl1eJ1yJoFlE608JaKHTjNWsdVKdke7uBD6exdjNZkIVmouQPHMcA==} + '@solana/accounts@6.3.0': + resolution: {integrity: sha512-Ojd1Wz/xBveE8in4GiNEE4vd5/QbIXyCHKSAPh+ggA/iGNFv+cqFHF1EwKCXkI4FkCU7eS9JzGeh2ZuJo3bNYg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6469,8 +6592,8 @@ packages: typescript: optional: true - '@solana/addresses@6.1.0': - resolution: {integrity: sha512-QT04Vie4iICaalQQRJFMGj/P56IxXiwFtVuZHu1qjZUNmuGTOvX6G98b27RaGtLzpJ3NIku/6OtKxLUBqAKAyQ==} + '@solana/addresses@6.3.0': + resolution: {integrity: sha512-if/HpMyoRf4+6SPBjn7UB9LKLb3fDuJn1I502FAjpXHLY13NT7JGqPPiRZuXR3U4NkZTXw6zYksO3RPIFDaWVQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6487,8 +6610,8 @@ packages: typescript: optional: true - '@solana/assertions@6.1.0': - resolution: {integrity: sha512-pLgxB2xxTk2QfTaWpnRpSMYgaPkKYDQgptRvbwmuDQnOW1Zopg+42MT2UrDGd3UFMML1uOFPxIwKM6m51H0uXw==} + '@solana/assertions@6.3.0': + resolution: {integrity: sha512-3eRFQofn7VLuCHmFy2XmuzqaG5SVVtSbgSSrs5BycP55hwAf2baU0hKCjj/WgumIY3UuNkfeZgfZ4FcjSERiRw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6530,8 +6653,8 @@ packages: typescript: optional: true - '@solana/codecs-core@6.1.0': - resolution: {integrity: sha512-5rNnDOOm2GRFMJbd9imYCPNvGOrQ+TZ53NCkFFWbbB7f+L9KkLeuuAsDMFN1lCziJFlymvN785YtDnMeWj2W+g==} + '@solana/codecs-core@6.3.0': + resolution: {integrity: sha512-lBrGfCa9971IInFWoh1y4a3Z824f/Rl1J/A6jKxXAu8rWLWtQFzuijE/fPlpBcxiwRh7xJOLfQc3+1YAlhd43w==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6553,8 +6676,8 @@ packages: typescript: optional: true - '@solana/codecs-data-structures@6.1.0': - resolution: {integrity: sha512-1cb9g5hrrucTuGkGxqVVq7dCwSMnn4YqwTe365iKkK8HBpLBmUl8XATf1MUs5UtDun1g9eNWOL72Psr8mIUqTQ==} + '@solana/codecs-data-structures@6.3.0': + resolution: {integrity: sha512-D89S6Fi8g5lN4fvKYQri3A1x64XmOMqsda3rn4ycCvNjgJIh3Vmhixt1GwdJ61r/nhURRAaQhlvywo7OtztZCQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6588,8 +6711,8 @@ packages: typescript: optional: true - '@solana/codecs-numbers@6.1.0': - resolution: {integrity: sha512-YPQwwl6LE3igH23ah+d8kgpyE5xFcPbuwhxCDsLWqY/ESrvO/0YQSbsgIXahbhZxN59ZC4uq1LnHhBNbpCSVQg==} + '@solana/codecs-numbers@6.3.0': + resolution: {integrity: sha512-FPDaNA9loTsEfhMm8RwLWe4xMZkrnzD8xv9MDLj5u7q6hZT5R8wCDq5l1SYOl115S3RvuUaIaccxYCnhdcUkwA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6622,8 +6745,8 @@ packages: typescript: optional: true - '@solana/codecs-strings@6.1.0': - resolution: {integrity: sha512-pRH5uAn4VCFUs2rYiDITyWsRnpvs3Uh/nhSc6OSP/kusghcCcCJcUzHBIjT4x08MVacXmGUlSLe/9qPQO+QK3Q==} + '@solana/codecs-strings@6.3.0': + resolution: {integrity: sha512-Y2zu90M+iLLGNfuGS1B+G69exd9z8Xka6iyAXm4r2BebVl+wd0vjAtfcua/KGcwKT89bxrtjS3Oerc5rtxBeWg==} engines: {node: '>=20.18.0'} peerDependencies: fastestsmallesttextencoderdecoder: ^1.0.22 @@ -6648,8 +6771,8 @@ packages: typescript: optional: true - '@solana/codecs@6.1.0': - resolution: {integrity: sha512-VHBS3t8fyVjE0Nqo6b4TUnzdwdRaVo+B5ufHhPLbbjkEXzz8HB4E/OBjgasn+zWGlfScfQAiBFOsfZjbVWu4XA==} + '@solana/codecs@6.3.0': + resolution: {integrity: sha512-tPcvU7Iv2B0kD1NVBFsqgTn92bPtWqbv8YEqR++mJieRmbd6vq7aBx+7AXh3vHfBhtrxPx982OXOzBr8DXaOMw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6687,8 +6810,8 @@ packages: typescript: optional: true - '@solana/errors@6.1.0': - resolution: {integrity: sha512-cqSwcw3Rmn85UR7PyF5nKPdlQsRYBkx7YGRvFaJ6Sal1PM+bfolhL5iT7STQoXxdhXGYwHMPg7kZYxmMdjwnJA==} + '@solana/errors@6.3.0': + resolution: {integrity: sha512-NGd0NQ7BoB7s5JDv87/CvlKrKuLBoPgT5eVXogmaRorFqXPU7wGwBgykfoyAh0eRDUT1dUvD+8xdZMSj6huKCw==} engines: {node: '>=20.18.0'} hasBin: true peerDependencies: @@ -6706,8 +6829,8 @@ packages: typescript: optional: true - '@solana/fast-stable-stringify@6.1.0': - resolution: {integrity: sha512-QXUfDFaJCFeARsxJgScWmJ153Tit7Cimk9y0UWWreNBr2Aphi67Nlcj/tr7UABTO0Qaw/0gwrK76zz3m1t3nIw==} + '@solana/fast-stable-stringify@6.3.0': + resolution: {integrity: sha512-Ah4TVY/JfRjd/HoyLmJud2C47eu7QICfVjSZm/LcTinT/8iDGOjQGEY6NeZ4HkmMl/PMg4GMR9PkrD+0PO25+w==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6724,8 +6847,8 @@ packages: typescript: optional: true - '@solana/functional@6.1.0': - resolution: {integrity: sha512-+Sm8ldVxSTHIKaZDvcBu81FPjknXx6OMPlakkKmXjKxPgVLl86ruqMo2yEwoDUHV7DysLrLLcRNn13rfulomRw==} + '@solana/functional@6.3.0': + resolution: {integrity: sha512-rAUOPsoOAvPQMGWaVJZVPEWTPKx9/sHYKjg5PkS8mPNeelfyTlnDS+NxxbfSLUYieFKGGhyT0OfBhOKNnLPGMQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6742,8 +6865,8 @@ packages: typescript: optional: true - '@solana/instruction-plans@6.1.0': - resolution: {integrity: sha512-zcsHg544t1zn7LLOVUxOWYlsKn9gvT7R+pL3cTiP2wFNoUN0h9En87H6nVqkZ8LWw23asgW0uM5uJGwfBx2h1Q==} + '@solana/instruction-plans@6.3.0': + resolution: {integrity: sha512-qKkTLBNjDmisGSajcpRYSbvIF0p5mZLHeYhxX9Py1XdX/gDiIzmPhDt+DvuD9Z0H8y5jCfhksGzmRIzy7UEu7g==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6760,8 +6883,8 @@ packages: typescript: optional: true - '@solana/instructions@6.1.0': - resolution: {integrity: sha512-w1LdbJ3yanESckNTYC5KPckgN/25FyGCm07WWrs+dCnnpRNeLiVHIytXCPmArOVAXVkOYidXzhWmqCzqKUjYaA==} + '@solana/instructions@6.3.0': + resolution: {integrity: sha512-7nQGafBhZF17bOKA1Jjq9HEImvSi5zqQqCxnuWfCV2XyOsXsQ+IdYfVJEk7EFIN8KMFSzzI8Z2hG6VtVRn9T6g==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6778,8 +6901,8 @@ packages: typescript: optional: true - '@solana/keys@6.1.0': - resolution: {integrity: sha512-C/SGCl3VOgBQZ0mLrMxCcJYnMsGpgE8wbx29jqRY+R91m5YhS1f/GfXJPR1lN/h7QGrJ6YDm8eI0Y3AZ7goKHg==} + '@solana/keys@6.3.0': + resolution: {integrity: sha512-vCvtVv2iIVfvVmg5dgVpHLO6y1zTM+GYogdF/xWGJxiHGWqUx1Mlj2GBAcVxTMJUkrKv6ktNxxAVuhG+sKMhbw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6796,8 +6919,8 @@ packages: typescript: optional: true - '@solana/kit@6.1.0': - resolution: {integrity: sha512-24exn11BPonquufyCkGgypVtmN4JOsdGMsbF3EZ4kFyk7ZNryCn/N8eELr1FCVrHWRXoc0xy/HFaESBULTMf6g==} + '@solana/kit@6.3.0': + resolution: {integrity: sha512-+p0S2ezNdHgVItqiRPyR3kRJSMLpriCWMAhM8dtf1j0iFg7UiryPUdp2eg1Nn+kqesRIx0rzAlcnFzpHjg3OIg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6814,8 +6937,8 @@ packages: typescript: optional: true - '@solana/nominal-types@6.1.0': - resolution: {integrity: sha512-+skHjN0arNNB9TLsGqA94VCx7euyGURI+qG6wck6E4D7hH6i6DxGiVrtKRghx+smJkkLtTm9BvdVKGoeNQYr7Q==} + '@solana/nominal-types@6.3.0': + resolution: {integrity: sha512-WJq6yD4quXtysPIuH/TRVHgQTjpgFpkQeXYr6xTBTHIsUsICeZA9H8J7Ajd97dU1mgCZBvs4yuul3lIOL1HdUA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6832,8 +6955,8 @@ packages: typescript: optional: true - '@solana/offchain-messages@6.1.0': - resolution: {integrity: sha512-jrUb7HGUnRA+k44upcqKeevtEdqMxYRSlFdE0JTctZunGlP3GCcTl12tFOpbnFHvBLt8RwS62+nyeES8zzNwXA==} + '@solana/offchain-messages@6.3.0': + resolution: {integrity: sha512-7b2a2BEqX/bixcg5JhkUV7ntqFuhyJCvT+m8xecVhiEagCNkrZCfvKYbMslJaCQ/5ojFBGKlBHLHp25PcPYavQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6855,8 +6978,8 @@ packages: typescript: optional: true - '@solana/options@6.1.0': - resolution: {integrity: sha512-/4FtVfR6nkHkMCumyh7/lJ6jMqyES6tKUbOJRa6gJxcIUWeRDu+XrHTHLf3gRNUqDAbFvW8FMIrQm7PdreZgRA==} + '@solana/options@6.3.0': + resolution: {integrity: sha512-nwUfBHB4WVhSAiZjlvjAGT+2swC+8T01BievMDTESeAnqB+j/cl7Ke/ncF3keCNhw9rTSUKCgSFLGdNPXBIPjg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6873,8 +6996,8 @@ packages: typescript: optional: true - '@solana/plugin-core@6.1.0': - resolution: {integrity: sha512-2nmNCPa6B1QArqpAZHWUkK6K7UXLTrekfcfJm2V//ATEtLpKEBlv0c3mrhOYwNAKP2TpNuvEV33InXWKst9oXQ==} + '@solana/plugin-core@6.3.0': + resolution: {integrity: sha512-td/twT1TwPng2vZ26PU/zIpFC8Hv43tNXQft09Bo+9AY7VIcd+zyO9fdcZJ80pJzq2vNGcrNKBR741c9x2OSVg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6882,8 +7005,8 @@ packages: typescript: optional: true - '@solana/plugin-interfaces@6.1.0': - resolution: {integrity: sha512-eWSzfOuwtHUp8vljf5V24Tkz3WxqxiV0vD/BJZBNRZMdYRw3Cw3oeWcvEqHHxGUOie6AjIK8GrKggi8F73ZXbg==} + '@solana/plugin-interfaces@6.3.0': + resolution: {integrity: sha512-D+74BQCtSDbluPzVp7Ll/05LHQChjsBs0W6dDj62Rt1hiGnNIfeNfomSOBCEBhiauL9+qMP5KkwHwebb9/ySeQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6891,8 +7014,8 @@ packages: typescript: optional: true - '@solana/program-client-core@6.1.0': - resolution: {integrity: sha512-5Apka+ulWNfLNLYNR63pLnr5XvkXTQWeaftWED93iTWTZrZv9SyFWcmIsaes6eqGXMQ3RhlebnrWODtKuAA62g==} + '@solana/program-client-core@6.3.0': + resolution: {integrity: sha512-gFv6TqlMwbNdrxZ3PECB700uXqpSAyG67LxsjYFfPT0S8F7y5TgbDbjCtNv1cCc2WC4d6uOIdEqXm7PL4DBI1Q==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6909,8 +7032,8 @@ packages: typescript: optional: true - '@solana/programs@6.1.0': - resolution: {integrity: sha512-i4L4gSlIHDsdYRt3/YKVKMIN3UuYSKHRqK9B+AejcIc0y6Y/AXnHqzmpBRXEhvTXz18nt59MLXpVU4wu7ASjJA==} + '@solana/programs@6.3.0': + resolution: {integrity: sha512-Hkh7o63ddK2cQYJAoNHYn2WhuZDAM8Vx5sOs82Qt7khVWFN0UCLvhzf6ChNRdP9SiGofJOF/1yA96Tsfzer9aw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6927,8 +7050,8 @@ packages: typescript: optional: true - '@solana/promises@6.1.0': - resolution: {integrity: sha512-/mUW6peXQiEOaylLpGv4vtkvPzQvSbfhX9j5PNIK/ry4S3SHRQ3j3W/oGy4y3LR5alwo7NcVbubrkh4e4xwcww==} + '@solana/promises@6.3.0': + resolution: {integrity: sha512-RaKlDg6m1x8dK1z5Vlqg/OgEFrQx7qW6Sp8cVOScw10UskhKpUNCyjEeQ/LUmSXHEemXlI7lC+eDPOyzIeiZEA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6945,8 +7068,8 @@ packages: typescript: optional: true - '@solana/rpc-api@6.1.0': - resolution: {integrity: sha512-+hO5+kZjJHuUNATUQxlJ1+ztXFkgn1j46zRwt3X7kF+VHkW3wsQ7up0JTS+Xsacmkrj1WKfymQweq8JTrsAG8A==} + '@solana/rpc-api@6.3.0': + resolution: {integrity: sha512-RyuiudvrRIEhn+l2k9Zc7pScrMvNdZNH0LHpNAQBYxYykwHvVfrWQn44NgxKSFpGfHcc+Sag1hO0fnkaP76MAg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6963,8 +7086,8 @@ packages: typescript: optional: true - '@solana/rpc-parsed-types@6.1.0': - resolution: {integrity: sha512-YKccynVgWt/gbs0tBYstNw6BSVuOeWdeAldTB2OgH95o2Q04DpO4v97X1MZDysA4SvSZM30Ek5Ni5ss3kskgdw==} + '@solana/rpc-parsed-types@6.3.0': + resolution: {integrity: sha512-hhmBxVj9gVkv+Sc1h10qDYYFnXv8DKqklkC/SdbpR9lc7+w/f6rHGqzSUI6cZa4nrfZU5Ekjo38Dg60k8aX2lQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6981,8 +7104,8 @@ packages: typescript: optional: true - '@solana/rpc-spec-types@6.1.0': - resolution: {integrity: sha512-tldMv1b6VGcvcRrY5MDWKlsyEKH6K96zE7gAIpKDX2G4T47ZOV+OMA3nh6xQpRgtyCUBsej0t80qmvTBDX/5IQ==} + '@solana/rpc-spec-types@6.3.0': + resolution: {integrity: sha512-FqSc9nLh+7FOC23STdZMylOP8o1fYdQ8AmkLgRyf+5tOhPGi313bChl/jreoKGtuqcGDzFWU49CFTJJvgIawnw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6999,8 +7122,8 @@ packages: typescript: optional: true - '@solana/rpc-spec@6.1.0': - resolution: {integrity: sha512-RxpkIGizCYhXGUcap7npV2S/rAXZ7P/liozY/ExjMmCxYTDwGIW33kp/uH/JRxuzrL8+f8FqY76VsqqIe+2VZw==} + '@solana/rpc-spec@6.3.0': + resolution: {integrity: sha512-tKJve38H96baAhLb2fMQv282gwe63C9gC3u0wi+RHLq9sB7ZkB8VJctUloqqo4ZGoYTjC7sHOqhGOQH7nyKgPQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7017,8 +7140,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-api@6.1.0': - resolution: {integrity: sha512-I6J+3VU0dda6EySKbDyd+1urC7RGIRPRp0DcWRVcy68NOLbq0I5C40Dn9O2Zf8iCdK4PbQ7JKdCvZ/bDd45hdg==} + '@solana/rpc-subscriptions-api@6.3.0': + resolution: {integrity: sha512-sU/tDbJLiWNVb2kSTiJrpDbTj3oM+7Guqxg5Vr3SSGTIQhfogAjwBOTTuAkrrdX6k+7kNM8I6WLGfiTOKj9AmA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7035,8 +7158,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-channel-websocket@6.1.0': - resolution: {integrity: sha512-vsx9b+uyCr9L3giao/BTiBFA8DxV5+gDNFq0t5uL21uQ17JXzBektwzHuHoth9IjkvXV/h+IhwXfuLE9Qm4GQg==} + '@solana/rpc-subscriptions-channel-websocket@6.3.0': + resolution: {integrity: sha512-Q1rxzmE9v+vq5tk4qcJLqeNIhgrEZUOQW8KcXSgcBNs0merTFyw7jFbcGRnSIhUFELOUADbDoUF2Aq4iu58E5Q==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7053,8 +7176,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-spec@6.1.0': - resolution: {integrity: sha512-P06jhqzHpZGaLeJmIQkpDeMDD1xUp53ARpmXMsduMC+U5ZKQt29CLo+JrR18boNtls6WfttjVMEbzF25/4UPVA==} + '@solana/rpc-subscriptions-spec@6.3.0': + resolution: {integrity: sha512-2JVxx3IH9m04E5XONailQySXcwjCGvc98ItDVMQfaTp9/84kOmsD77IAopU2KxqpD79YpX+DBh2HNQ1h6O9hDQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7071,8 +7194,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions@6.1.0': - resolution: {integrity: sha512-sqwj+cQinWcZ7M/9+cudKxMPTkTQyGP73980vPCWM7vCpPkp2qzgrEie4DdgDGo+NMwIjeFgu2kdUuLHI3GD/g==} + '@solana/rpc-subscriptions@6.3.0': + resolution: {integrity: sha512-qOmujPoimhDLSYcEwMULRPQ7lR1+Frydl56nNBv87b53skvLoS2525poec/ewnlklmymsAV6SoNbgZHbag2ZBQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7089,8 +7212,8 @@ packages: typescript: optional: true - '@solana/rpc-transformers@6.1.0': - resolution: {integrity: sha512-OsSuuRPmsmS02eR9Zz+4iTsr+21hvEMEex5vwbwN6LAGPFlQ4ohqGkxgZCwmYd+Q5HWpnn9Uuf1MDTLLrKQkig==} + '@solana/rpc-transformers@6.3.0': + resolution: {integrity: sha512-UMoZnO2BqYld8WW5vBaR+DDK/mkGLtDR23sra2zc/1XZl+jaTibpMmph9+Eh5hSsioM41TUgoElx8HwDxpofvA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7107,8 +7230,8 @@ packages: typescript: optional: true - '@solana/rpc-transport-http@6.1.0': - resolution: {integrity: sha512-3ebaTYuglLJagaXtjwDPVI7SQeeeFN2fpetpGKsuMAiti4fzYqEkNN8FIo+nXBzqqG/cVc2421xKjXl6sO1k/g==} + '@solana/rpc-transport-http@6.3.0': + resolution: {integrity: sha512-wcxvn4AFAve/9DGQOgaPyYPP8pFBFUbtW4mnRsio4d29bf/b6T7Jv6ViBfTrTu3XJ986EbOB7EWioezRc7hQEg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7125,8 +7248,8 @@ packages: typescript: optional: true - '@solana/rpc-types@6.1.0': - resolution: {integrity: sha512-lR+Cb3v5Rpl49HsXWASy++TSE1AD86eRKabY+iuWnbBMYVGI4MamAvYwgBiygsCNc30nyO2TFNj9STMeSD/gAg==} + '@solana/rpc-types@6.3.0': + resolution: {integrity: sha512-iUQuFi+k4CvO/xQfayhfG0Xoa6a+NOxSK4jIXusKHa5Ol3rmbJckf5QXKubTrQoe8+j9bPoai2pDT/qpYdzwlw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7143,8 +7266,8 @@ packages: typescript: optional: true - '@solana/rpc@6.1.0': - resolution: {integrity: sha512-R3y5PklW9mPy5Y34hsXj40R28zN2N7AGLnHqYJVkXkllwVub/QCNpSdDxAnbbS5EGOYGoUOW8s5LFoXwMSr1LQ==} + '@solana/rpc@6.3.0': + resolution: {integrity: sha512-F8ROr7yJjwi8ISJv+rZmVScKXtD8up6MiixBrsmbfS0Em1UJkyalJkM27rGVJj6N8Nzm7Y0FwCgm4HjDFbfLvw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7161,8 +7284,8 @@ packages: typescript: optional: true - '@solana/signers@6.1.0': - resolution: {integrity: sha512-WDPGZJr6jIe2dEChv/2KQBnaga8dqOjd6ceBj/HcDHxnCudo66t7GlyZ9+9jMO40AgOOb7EDE5FDqPMrHMg5Yw==} + '@solana/signers@6.3.0': + resolution: {integrity: sha512-zeoASFELXFlWkbiza9ZIDPmyRn8i2Ze4j83u9XIBGRm6Fne89qFxaBkcMGebfhXwRVr9jjfb0fWvm3LlSF7PTA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7197,8 +7320,8 @@ packages: typescript: optional: true - '@solana/subscribable@6.1.0': - resolution: {integrity: sha512-HiUfkxN7638uxPmY4t0gI4+yqnFLZYJKFaT9EpWIuGrOB1d9n+uOHNs3NU7cVMwWXgfZUbztTCKyCVTbcwesNg==} + '@solana/subscribable@6.3.0': + resolution: {integrity: sha512-x4dTuvimHrgeYfsr3UDgWhT99a70ODOHrT4X8gpiq/AFKC2DBsqIevUBMaSf9xVR5JBa8XnVkBC5NiId7dHgXA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7215,8 +7338,8 @@ packages: typescript: optional: true - '@solana/sysvars@6.1.0': - resolution: {integrity: sha512-KwJyBBrAOx0BgkiZqOKAaySDb/0JrUFSBQL9/O1kSKGy9TCRX55Ytr1HxNTcTPppWNpbM6JZVK+yW3Ruey0HRw==} + '@solana/sysvars@6.3.0': + resolution: {integrity: sha512-kUYY766Ct9HSmLiXWZqKkkZsiH5BDLm7FtejY7eCG5OBOrT/v0cCRsxFQhQvozwJK//exQWhsWhX9Vdcc1ZbxQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7233,8 +7356,8 @@ packages: typescript: optional: true - '@solana/transaction-confirmation@6.1.0': - resolution: {integrity: sha512-akSjcqAMOGPFvKctFDSzhjcRc/45WbEVdVQ9mjgH6OYo7B11WZZZaeGPlzAw5KyuG34Px941xmICkBmNqEH47Q==} + '@solana/transaction-confirmation@6.3.0': + resolution: {integrity: sha512-HNlS1BVWPSawHfQkoNkS1dFrZHypPlSoh65CEqfbwnnKKU6AuhSmGSMjz3qdm8rK9nxCuHNNUJuXxGYeI4vNCQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7251,8 +7374,8 @@ packages: typescript: optional: true - '@solana/transaction-messages@6.1.0': - resolution: {integrity: sha512-Dpv54LRVcfFbFEa/uB53LaY/TRfKuPGMKR7Z4F290zBgkj9xkpZkI+WLiJBiSloI7Qo2KZqXj3514BIeZvJLcg==} + '@solana/transaction-messages@6.3.0': + resolution: {integrity: sha512-zcohnwHiZxogc7GpWeDdc4/Q7tZvuYSIabq9dKduQz5y/LCcMMpbvOB7bpWR+P+0S5RamgTxUnAPKMnA/hXmwA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7269,8 +7392,8 @@ packages: typescript: optional: true - '@solana/transactions@6.1.0': - resolution: {integrity: sha512-1dkiNJcTtlHm4Fvs5VohNVpv7RbvbUYYKV7lYXMPIskoLF1eZp0tVlEqD/cRl91RNz7HEysfHqBAwlcJcRmrRg==} + '@solana/transactions@6.3.0': + resolution: {integrity: sha512-jxUIEbzxqdEvAdg/FpX3gu8lcNaKqeq/GKdXkBFapzpqaHftnMro3e4F0k/heNglO0M8umOZ4+LN6rNHxpHI8g==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7473,15 +7596,15 @@ packages: peerDependencies: react: ^18 || ^19 - '@tanstack/react-router@1.166.2': - resolution: {integrity: sha512-pKhUtrvVLlhjWhsHkJSuIzh1J4LcP+8ErbIqRLORX9Js8dUFMKoT0+8oFpi+P8QRpuhm/7rzjYiWfcyTsqQZtA==} + '@tanstack/react-router@1.166.7': + resolution: {integrity: sha512-LLcXu2nrCn2WL+w0YAbg3CRZIIO2cYVSC3y+ZYlFBxBs4hh8eoNP1EWFvRLZGCFYpqON7x6qUf1u0W7tH0cJJw==} engines: {node: '>=20.19'} peerDependencies: react: '>=18.0.0 || >=19.0.0' react-dom: '>=18.0.0 || >=19.0.0' - '@tanstack/react-store@0.9.1': - resolution: {integrity: sha512-YzJLnRvy5lIEFTLWBAZmcOjK3+2AepnBv/sr6NZmiqJvq7zTQggyK99Gw8fqYdMdHPQWXjz0epFKJXC+9V2xDA==} + '@tanstack/react-store@0.9.2': + resolution: {integrity: sha512-Vt5usJE5sHG/cMechQfmwvwne6ktGCELe89Lmvoxe3LKRoFrhPa8OCKWs0NliG8HTJElEIj7PLtaBQIcux5pAQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -7492,12 +7615,12 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/router-core@1.166.2': - resolution: {integrity: sha512-zn3NhENOAX9ToQiX077UV2OH3aJKOvV2ZMNZZxZ3gDG3i3WqL8NfWfEgetEAfMN37/Mnt90PpotYgf7IyuoKqQ==} + '@tanstack/router-core@1.166.7': + resolution: {integrity: sha512-MCc8wYIIcxmbeidM8PL2QeaAjUIHyhEDIZPW6NGfn/uwvyi+K2ucn3AGCxxcXl4JGGm0Mx9+7buYl1v3HdcFrg==} engines: {node: '>=20.19'} - '@tanstack/store@0.9.1': - resolution: {integrity: sha512-+qcNkOy0N1qSGsP7omVCW0SDrXtaDcycPqBDE726yryiA5eTDFpjBReaYjghVJwNf1pcPMyzIwTGlYjCSQR0Fg==} + '@tanstack/store@0.9.2': + resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==} '@tanstack/virtual-core@3.13.21': resolution: {integrity: sha512-ww+fmLHyCbPSf7JNbWZP3g7wl6SdNo3ah5Aiw+0e9FDErkVHLKprYUrwTm7dF646FtEkN/KkAKPYezxpmvOjxw==} @@ -7681,8 +7804,8 @@ packages: '@types/node@22.7.5': resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} - '@types/node@25.3.5': - resolution: {integrity: sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==} + '@types/node@25.5.0': + resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -7741,70 +7864,70 @@ packages: '@types/yargs@17.0.35': resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} - '@typescript-eslint/eslint-plugin@8.56.1': - resolution: {integrity: sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==} + '@typescript-eslint/eslint-plugin@8.57.0': + resolution: {integrity: sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.56.1 + '@typescript-eslint/parser': ^8.57.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.56.1': - resolution: {integrity: sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==} + '@typescript-eslint/parser@8.57.0': + resolution: {integrity: sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.56.1': - resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==} + '@typescript-eslint/project-service@8.57.0': + resolution: {integrity: sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.56.1': - resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==} + '@typescript-eslint/scope-manager@8.57.0': + resolution: {integrity: sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.56.1': - resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==} + '@typescript-eslint/tsconfig-utils@8.57.0': + resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.56.1': - resolution: {integrity: sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==} + '@typescript-eslint/type-utils@8.57.0': + resolution: {integrity: sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.56.1': - resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==} + '@typescript-eslint/types@8.57.0': + resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.56.1': - resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==} + '@typescript-eslint/typescript-estree@8.57.0': + resolution: {integrity: sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.56.1': - resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==} + '@typescript-eslint/utils@8.57.0': + resolution: {integrity: sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.56.1': - resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==} + '@typescript-eslint/visitor-keys@8.57.0': + resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} - '@unhead/vue@2.1.10': - resolution: {integrity: sha512-VP78Onh2HNezLPfhYjfHqn4dxlcQsE6PJgTTs61NksO/thvilNswtgBq0N0MWCLtn43N5akEPGW2y2zxM3PWgQ==} + '@unhead/vue@2.1.12': + resolution: {integrity: sha512-zEWqg0nZM8acpuTZE40wkeUl8AhIe0tU0OkilVi1D4fmVjACrwoh5HP6aNqJ8kUnKsoy6D+R3Vi/O+fmdNGO7g==} peerDependencies: vue: '>=3.5.18' @@ -7947,17 +8070,24 @@ packages: engines: {node: '>=20'} hasBin: true - '@vitejs/plugin-react-swc@4.2.3': - resolution: {integrity: sha512-QIluDil2prhY1gdA3GGwxZzTAmLdi8cQ2CcuMW4PB/Wu4e/1pzqrwhYWVd09LInCRlDUidQjd0B70QWbjWtLxA==} - engines: {node: ^20.19.0 || >=22.12.0} + '@vitejs/plugin-react@4.7.0': + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^4 || ^5 || ^6 || ^7 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - '@vitejs/plugin-react@5.1.4': - resolution: {integrity: sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==} + '@vitejs/plugin-react@6.0.0': + resolution: {integrity: sha512-Bu5/eP6td3WI654+tRq+ryW1PbgA90y5pqMKpb3U7UpNk6VjI53P/ncPUd192U9dSrepLy7DHnq1XEMDz5H++w==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + '@rolldown/plugin-babel': ^0.1.7 + babel-plugin-react-compiler: ^1.0.0 + vite: ^8.0.0 + peerDependenciesMeta: + '@rolldown/plugin-babel': + optional: true + babel-plugin-react-compiler: + optional: true '@vitejs/plugin-vue-jsx@4.2.0': resolution: {integrity: sha512-DSTrmrdLp+0LDNF77fqrKfx7X0ErRbOcUAgJL/HbSesqQwoUvUQ4uYQqaex+rovqgGcoPqVk+AwUh3v9CuiYIw==} @@ -7966,11 +8096,11 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.0.0 - '@vitejs/plugin-vue-jsx@5.1.4': - resolution: {integrity: sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==} + '@vitejs/plugin-vue-jsx@5.1.5': + resolution: {integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vue: ^3.0.0 '@vitejs/plugin-vue@5.2.4': @@ -7980,41 +8110,41 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitejs/plugin-vue@6.0.4': - resolution: {integrity: sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==} + '@vitejs/plugin-vue@6.0.5': + resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vue: ^3.2.25 - '@vitest/expect@4.0.18': - resolution: {integrity: sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==} + '@vitest/expect@4.1.0': + resolution: {integrity: sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==} - '@vitest/mocker@4.0.18': - resolution: {integrity: sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==} + '@vitest/mocker@4.1.0': + resolution: {integrity: sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==} peerDependencies: msw: ^2.4.9 - vite: ^6.0.0 || ^7.0.0-0 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - '@vitest/pretty-format@4.0.18': - resolution: {integrity: sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==} + '@vitest/pretty-format@4.1.0': + resolution: {integrity: sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==} - '@vitest/runner@4.0.18': - resolution: {integrity: sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==} + '@vitest/runner@4.1.0': + resolution: {integrity: sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==} - '@vitest/snapshot@4.0.18': - resolution: {integrity: sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==} + '@vitest/snapshot@4.1.0': + resolution: {integrity: sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==} - '@vitest/spy@4.0.18': - resolution: {integrity: sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==} + '@vitest/spy@4.1.0': + resolution: {integrity: sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==} - '@vitest/utils@4.0.18': - resolution: {integrity: sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==} + '@vitest/utils@4.1.0': + resolution: {integrity: sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==} '@volar/language-core@2.4.28': resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==} @@ -8066,17 +8196,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.5.29': - resolution: {integrity: sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==} + '@vue/compiler-core@3.5.30': + resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==} - '@vue/compiler-dom@3.5.29': - resolution: {integrity: sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==} + '@vue/compiler-dom@3.5.30': + resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==} - '@vue/compiler-sfc@3.5.29': - resolution: {integrity: sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==} + '@vue/compiler-sfc@3.5.30': + resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==} - '@vue/compiler-ssr@3.5.29': - resolution: {integrity: sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==} + '@vue/compiler-ssr@3.5.30': + resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==} '@vue/devtools-api@6.6.4': resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} @@ -8095,22 +8225,22 @@ packages: '@vue/language-core@3.2.5': resolution: {integrity: sha512-d3OIxN/+KRedeM5wQ6H6NIpwS3P5gC9nmyaHgBk+rO6dIsjY+tOh4UlPpiZbAh3YtLdCGEX4M16RmsBqPmJV+g==} - '@vue/reactivity@3.5.29': - resolution: {integrity: sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==} + '@vue/reactivity@3.5.30': + resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==} - '@vue/runtime-core@3.5.29': - resolution: {integrity: sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==} + '@vue/runtime-core@3.5.30': + resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==} - '@vue/runtime-dom@3.5.29': - resolution: {integrity: sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==} + '@vue/runtime-dom@3.5.30': + resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==} - '@vue/server-renderer@3.5.29': - resolution: {integrity: sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==} + '@vue/server-renderer@3.5.30': + resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==} peerDependencies: - vue: 3.5.29 + vue: 3.5.30 - '@vue/shared@3.5.29': - resolution: {integrity: sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==} + '@vue/shared@3.5.30': + resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==} '@wagmi/connectors@6.2.0': resolution: {integrity: sha512-2NfkbqhNWdjfibb4abRMrn7u6rPjEGolMfApXss6HCDVt9AW2oVC6k8Q5FouzpJezElxLJSagWz9FW1zaRlanA==} @@ -8257,6 +8387,10 @@ packages: resolution: {integrity: sha512-yTyymn9mFaDZkUfLfZ3E9VyaSDPeHAXlrPxQRmNx2zFsEt/25GmTU2A848aomimLxZnAG2jNLhxbJ8I0gyNV+w==} engines: {node: '>=18.20.8'} + '@walletconnect/core@2.23.8': + resolution: {integrity: sha512-559+fA6Hh9CkEIOtrWKdDWoa3HL47glDF7D75LbqQzv4v325KXq24KEsjzDPBYr7pI49gQo7P2HpPnY1ax+8Aw==} + engines: {node: '>=18.20.8'} + '@walletconnect/environment@1.0.1': resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} @@ -8272,8 +8406,8 @@ packages: resolution: {integrity: sha512-T+cBFCw095tDpR35WqwsTFod2ZsizmLfieSbTqpQDpNjhQyFwYf9d+tn2kcBFmxzENXAsWA8BIZK1tjRrXKtog==} deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases' - '@walletconnect/ethereum-provider@2.23.7': - resolution: {integrity: sha512-ygowO9YUZR4Fhk9tBhQ730nf5/2tCuDIz93CCkSKbTGDSCCdWTpSsv8JNNq15tkX/v17FEo4lAtZD+x1wG9KJQ==} + '@walletconnect/ethereum-provider@2.23.8': + resolution: {integrity: sha512-nRUWmx8ihUmqVGwQD2PHlJ7+TFT4AZPSR5ssghosVHBt8kpjgtUbE7ej/bYAmmnerDKLyYGrqWtHwjaNBPJHqA==} '@walletconnect/events@1.0.1': resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} @@ -8334,6 +8468,9 @@ packages: '@walletconnect/sign-client@2.23.7': resolution: {integrity: sha512-SX61lzb1bTl/LijlcHQttnoHPBzzoY5mW9ArR6qhFtDNDTS7yr2rcH7rCngxHlYeb4rAYcWLHgbiGSrdKxl/mg==} + '@walletconnect/sign-client@2.23.8': + resolution: {integrity: sha512-7DtFDQZwOK4E9q+TKWL819d01dpNHA3jMcntSsQqSLNU34orbkDB/BJzW4nyWZ6H9DuGHRvibJA9wvfXjOCWBw==} + '@walletconnect/time@1.0.2': resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} @@ -8349,6 +8486,9 @@ packages: '@walletconnect/types@2.23.7': resolution: {integrity: sha512-6PAKK+iR2IntmlkCFLMAHjYeIaerCJJYRDmdRimhon0u+aNmQT+HyGM6zxDAth0rdpBD7qEvKP5IXZTE7KFUhw==} + '@walletconnect/types@2.23.8': + resolution: {integrity: sha512-OI/0Z7/8r11EDU9bBPy5nixYgsk6SrTcOvWe9r7Nf2WvkMcPLgV7aS8rb6+nInRmDPfXuyTgzdAox0rtmfJMzg==} + '@walletconnect/universal-provider@2.21.1': resolution: {integrity: sha512-Wjx9G8gUHVMnYfxtasC9poGm8QMiPCpXpbbLFT+iPoQskDDly8BwueWnqKs4Mx2SdIAWAwuXeZ5ojk5qQOxJJg==} deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases' @@ -8364,6 +8504,9 @@ packages: '@walletconnect/universal-provider@2.23.7': resolution: {integrity: sha512-6UicU/Mhr/1bh7MNoajypz7BhigORbHpP1LFTf8FYLQGDqzmqHMqmMH2GDAImtaY2sFTi2jBvc22tLl8VMze/A==} + '@walletconnect/universal-provider@2.23.8': + resolution: {integrity: sha512-TFn2TNhp5vlbV2HqPU/LfkEIYZEop4WDCTTZKw/RU4DbM1e1+etmvTr5JA+8dkZU7ee48mVUDodY0zQedP+KZA==} + '@walletconnect/utils@2.21.1': resolution: {integrity: sha512-VPZvTcrNQCkbGOjFRbC24mm/pzbRMUq2DSQoiHlhh0X1U7ZhuIrzVtAoKsrzu6rqjz0EEtGxCr3K1TGRqDG4NA==} @@ -8376,6 +8519,9 @@ packages: '@walletconnect/utils@2.23.7': resolution: {integrity: sha512-3p38gNrkVcIiQixVrlsWSa66Gjs5PqHOug2TxDgYUVBW5NcKjwQA08GkC6CKBQUfr5iaCtbfy6uZJW1LKSIvWQ==} + '@walletconnect/utils@2.23.8': + resolution: {integrity: sha512-vJrRrZFZANWmnEEnWnfVSnpQ+jdjqBb5fqSgp0VGeRX3pNr2KAHJ0TwNnEN+fbhR76JxuFrpcY7HJUT7DHDJ7w==} + '@walletconnect/window-getters@1.0.1': resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} @@ -8838,8 +8984,8 @@ packages: bare-path@3.0.0: resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} - bare-stream@2.8.0: - resolution: {integrity: sha512-reUN0M2sHRqCdG4lUK3Fw8w98eeUIZHL5c3H7Mbhk2yVBL+oofgaIp0ieLfD5QXwPCypBpmEEKU2WZKzbAk8GA==} + bare-stream@2.8.1: + resolution: {integrity: sha512-bSeR8RfvbRwDpD7HWZvn8M3uYNDrk7m9DQjYOFkENZlXW8Ju/MPaqUPQq5LqJ3kyjEm07siTaAQ7wBKCU59oHg==} peerDependencies: bare-buffer: '*' bare-events: '*' @@ -8866,8 +9012,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.10.0: - resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==} + baseline-browser-mapping@2.10.7: + resolution: {integrity: sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==} engines: {node: '>=6.0.0'} hasBin: true @@ -8913,8 +9059,8 @@ packages: resolution: {integrity: sha512-N3vz3rqikLEu0d6yQL8GTrSkpYb35NQKWMR7Hlza0lOj6ZOlvQ3Xr7N9Y+JPebaCVoEUHdBeBSuLxcHr71r+Lw==} engines: {node: '>=18.0.0'} - bippy@0.3.34: - resolution: {integrity: sha512-vmptmU/20UdIWHHhq7qCSHhHzK7Ro3YJ1utU0fBG7ujUc58LEfTtilKxcF0IOgSjT5XLcm7CBzDjbv4lcKApGQ==} + bippy@0.5.32: + resolution: {integrity: sha512-yt1mC8eReTxjfg41YBZdN4PvsDwHFWxltoiQX0Q+Htlbf41aSniopb7ECZits01HwNAvXEh69RGk/ImlswDTEw==} peerDependencies: react: '>=17.0.1' @@ -9135,8 +9281,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001777: - resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==} + caniuse-lite@1.0.30001778: + resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==} canonicalize@2.1.0: resolution: {integrity: sha512-F705O3xrsUtgt98j7leetNhTWPe+5S72rlL5O4jA1pKqBVQ/dT1O1D6PFxmSXvc0SUOinWS57DKx0I3CHrXJHQ==} @@ -9221,8 +9367,8 @@ packages: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} - ci-info@4.4.0: - resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + ci-info@4.3.1: + resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} engines: {node: '>=8'} cipher-base@1.0.7: @@ -9597,9 +9743,6 @@ packages: resolution: {integrity: sha512-X8XDzyvYaA6msMyAM575CUoygY5b44QzLcGRKsK3MFmXcOvQa518dNPLsKYwkYsn72g3EiW+LE0ytd/FlqWmyw==} engines: {node: '>=18'} - copy-paste@2.2.0: - resolution: {integrity: sha512-jqSL4r9DSeiIvJZStLzY/sMLt9ToTM7RsK237lYOTG+KcbQJHGala3R1TUpa8h1p9adswVgIdV4qGbseVhL4lg==} - core-js@3.48.0: resolution: {integrity: sha512-zpEHTy1fjTMZCKLHUZoVeylt9XrzaIN2rbPXEt0k+q7JE5CkCZdo6bNq55bn24a69CH7ErAVLKijxJja4fw+UQ==} @@ -9729,8 +9872,8 @@ packages: engines: {node: '>=4'} hasBin: true - cssnano-preset-default@7.0.10: - resolution: {integrity: sha512-6ZBjW0Lf1K1Z+0OKUAUpEN62tSXmYChXWi2NAA0afxEVsj9a+MbcB1l5qel6BHJHmULai2fCGRthCeKSFbScpA==} + cssnano-preset-default@7.0.11: + resolution: {integrity: sha512-waWlAMuCakP7//UCY+JPrQS1z0OSLeOXk2sKWJximKWGupVxre50bzPlvpbUwZIDylhf/ptf0Pk+Yf7C+hoa3g==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9741,8 +9884,8 @@ packages: peerDependencies: postcss: ^8.4.32 - cssnano@7.1.2: - resolution: {integrity: sha512-HYOPBsNvoiFeR1eghKD5C3ASm64v9YVyJB4Ivnl2gqKoQYvjjN/G0rztvKQq8OxocUtC6sjqY8jwYngIB4AByA==} + cssnano@7.1.3: + resolution: {integrity: sha512-mLFHQAzyapMVFLiJIn7Ef4C2UCEvtlTlbyILR6B5ZsUAV3D/Pa761R5uC1YPhyBkRd3eqaDm2ncaNrD7R4mTRg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -9771,10 +9914,6 @@ packages: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} - dargs@8.1.0: - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} - engines: {node: '>=12'} - data-uri-to-buffer@3.0.1: resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} engines: {node: '>= 6'} @@ -10043,8 +10182,8 @@ packages: peerDependencies: typescript: ^5.4.4 - devalue@5.6.3: - resolution: {integrity: sha512-nc7XjUU/2Lb+SvEFVGcWLiKkzfw8+qHI7zn8WYXKkLMgfGSHbgCEaR6bJpev8Cm6Rmrb19Gfd/tZvGqx9is3wg==} + devalue@5.6.4: + resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==} diff@5.2.2: resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==} @@ -10142,8 +10281,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - eciesjs@0.4.17: - resolution: {integrity: sha512-TOOURki4G7sD1wDCjj7NfLaXZZ49dFOeEb5y39IXpb8p0hRzVvfvzZHOi5JcT+PpyAbi/Y+lxPb8eTag2WYH8w==} + eciesjs@0.4.18: + resolution: {integrity: sha512-wG99Zcfcys9fZux7Cft8BAX/YrOJLJSZ3jyYPfhZHqN2E+Ffx+QXBDsv3gubEgPtV6dTzJMSQUwk1H98/t/0wQ==} engines: {bun: '>=1', deno: '>=2', node: '>=16'} ecpair@2.1.0: @@ -10158,8 +10297,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.307: - resolution: {integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==} + electron-to-chromium@1.5.313: + resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==} elliptic@6.6.1: resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} @@ -10253,8 +10392,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-iterator-helpers@1.2.2: - resolution: {integrity: sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==} + es-iterator-helpers@1.3.0: + resolution: {integrity: sha512-04cg8iJFDOxWcYlu0GFFWgs7vtaEPCmr5w1nrj9V3z3axu/48HCMwK6VMp45Zh3ZB+xLP1ifbJfrq86+1ypKKQ==} engines: {node: '>= 0.4'} es-module-lexer@1.7.0: @@ -10315,8 +10454,8 @@ packages: engines: {node: '>=18'} hasBin: true - esbuild@0.27.3: - resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==} + esbuild@0.27.4: + resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==} engines: {node: '>=18'} hasBin: true @@ -10422,10 +10561,10 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 - eslint-plugin-react-refresh@0.4.26: - resolution: {integrity: sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==} + eslint-plugin-react-refresh@0.5.2: + resolution: {integrity: sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==} peerDependencies: - eslint: '>=8.40' + eslint: ^9 || ^10 eslint-plugin-react@7.37.5: resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} @@ -10459,8 +10598,8 @@ packages: deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true - eslint@9.39.3: - resolution: {integrity: sha512-VmQ+sifHUbI/IcSopBCF/HO3YiHQx/AVd3UVyYL6weuwW+HvON9VYn5l6Zl1WZzPWXPNZrSQpxwkkZ/VuvJZzg==} + eslint@9.39.4: + resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -10799,8 +10938,8 @@ packages: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true - flatted@3.3.4: - resolution: {integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==} + flatted@3.4.1: + resolution: {integrity: sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==} flow-enums-runtime@0.0.6: resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} @@ -10896,11 +11035,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -11016,10 +11150,9 @@ packages: deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. hasBin: true - git-raw-commits@4.0.0: - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} - engines: {node: '>=16'} - deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. + git-raw-commits@5.0.1: + resolution: {integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ==} + engines: {node: '>=18'} hasBin: true git-remote-origin-url@2.0.0: @@ -11144,8 +11277,8 @@ packages: resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - h3@1.15.5: - resolution: {integrity: sha512-xEyq3rSl+dhGX2Lm0+eFQIAzlDN6Fs0EcC4f7BNUmzaRX/PTzeuM+Tr2lHB8FoXggsQIeXLj8EDVgs5ywxyxmg==} + h3@1.15.6: + resolution: {integrity: sha512-oi15ESLW5LRthZ+qPCi5GNasY/gvynSKUQxgiovrY63bPAtG59wtM+LSrlcwvOHAXzGrXVLnI97brbkdPF9WoQ==} handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} @@ -11240,8 +11373,8 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hono@4.12.5: - resolution: {integrity: sha512-3qq+FUBtlTHhtYxbxheZgY8NIFnkkC/MR8u5TTsr7YZ3wixryQ3cCwn3iZbg8p8B88iDBBAYSfZDS75t8MN7Vg==} + hono@4.12.7: + resolution: {integrity: sha512-jq9l1DM0zVIvsm3lv9Nw9nlJnMNPOcAtsbsgiUhWcFzPE99Gvo6yRTlszSLLYacMeQ6quHD6hMfId8crVHvexw==} engines: {node: '>=16.9.0'} hookable@5.5.3: @@ -11269,8 +11402,8 @@ packages: resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==} engines: {node: ^20.17.0 || >=22.9.0} - hpke-js@1.7.0: - resolution: {integrity: sha512-Ix6O3U7XmCs6Jc+8NkvyxTvk2DXliwYZ8+fDNjOtXC769ypslNIDwMHucaoCDALSyqqr3/pnpDwDx7Icac/iCg==} + hpke-js@1.8.0: + resolution: {integrity: sha512-N0PFQlUQsIPS9++nUNn2ZsxTPSv8pONyyrXIGZl0iiherRfS0XW1SvTd+RmepD0TN1S9zzTJkEutMIWWYt0/4w==} engines: {node: '>=16.0.0'} html-parse-stringify@3.0.1: @@ -11324,8 +11457,8 @@ packages: i18next@23.4.6: resolution: {integrity: sha512-jBE8bui969Ygv7TVYp0pwDZB7+he0qsU+nz7EcfdqSh+QvKjEfl9YPRQd/KrGiMhTYFGkeuPaeITenKK/bSFDg==} - i18next@25.8.14: - resolution: {integrity: sha512-paMUYkfWJMsWPeE/Hejcw+XLhHrQPehem+4wMo+uELnvIwvCG019L9sAIljwjCmEMtFQQO3YeitJY8Kctei3iA==} + i18next@25.8.18: + resolution: {integrity: sha512-lzY5X83BiL5AP77+9DydbrqkQHFN9hUzWGjqjLpPcp5ZOzuu1aSoKaU3xbBLSjWx9dAzW431y+d+aogxOZaKRA==} peerDependencies: typescript: ^5 peerDependenciesMeta: @@ -11394,8 +11527,8 @@ packages: import-meta-resolve@4.2.0: resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} - impound@1.1.2: - resolution: {integrity: sha512-YzOZ1XXs1OHpjduEBVmTTms3t6trwzWBSCWo8VvugIODD87ZAZv1g3kWTMPLjudBsc+jAhSEY4cGJs6BURMfMg==} + impound@1.1.5: + resolution: {integrity: sha512-5AUn+QE0UofqNHu5f2Skf6Svukdg4ehOIq8O0EtqIx4jta0CDZYBPqpIHt0zrlUTiFVYlLpeH39DoikXBjPKpA==} imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} @@ -11753,8 +11886,8 @@ packages: isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - isbot@5.1.35: - resolution: {integrity: sha512-waFfC72ZNfwLLuJ2iLaoVaqcNo+CAaLR7xCpAn0Y5WfGzkNHv7ZN39Vbi1y+kb+Zs46XHOX3tZNExroFUPX+Kg==} + isbot@5.1.36: + resolution: {integrity: sha512-C/ZtXyJqDPZ7G7JPr06ApWyYoHjYexQbS6hPYD4WYCzpv2Qes6Z+CCEfTX4Owzf+1EJ933PoI2p+B9v7wpGZBQ==} engines: {node: '>=18'} isexe@2.0.0: @@ -11823,8 +11956,8 @@ packages: engines: {node: '>=8'} hasBin: true - jest-diff@30.2.0: - resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==} + jest-diff@30.3.0: + resolution: {integrity: sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-environment-node@29.7.0: @@ -11870,8 +12003,8 @@ packages: jose@4.15.9: resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==} - jose@6.2.0: - resolution: {integrity: sha512-xsfE1TcSCbUdo6U07tR0mvhg0flGxU8tPLbF03mirl2ukGQENhUg4ubGYQnhVH0b5stLlPM+WOqDkEl1R1y5sQ==} + jose@6.2.1: + resolution: {integrity: sha512-jUaKr1yrbfaImV7R2TN/b3IcZzsw38/chqMpo2XJ7i2F8AfM/lA4G1goC3JVEwg0H7UldTmSt3P68nt31W7/mw==} joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} @@ -12014,8 +12147,8 @@ packages: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} - knip@5.85.0: - resolution: {integrity: sha512-V2kyON+DZiYdNNdY6GALseiNCwX7dYdpz9Pv85AUn69Gk0UKCts+glOKWfe5KmaMByRjM9q17Mzj/KinTVOyxg==} + knip@5.86.0: + resolution: {integrity: sha512-tGpRCbP+L+VysXnAp1bHTLQ0k/SdC3M3oX18+Cpiqax1qdS25iuCPzpK8LVmAKARZv0Ijri81Wq09Rzk0JTl+Q==} engines: {node: '>=18.18.0'} hasBin: true peerDependencies: @@ -12039,8 +12172,8 @@ packages: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} - lerna@9.0.5: - resolution: {integrity: sha512-LtwZu2wINHlKpjRCxrEdK3QopyeUpFuUS4v6uzLYdg/uxnAKqDHrGY/mDPxdxDR3YAXJzpWXBdz49AHNIKZaSg==} + lerna@9.0.6: + resolution: {integrity: sha512-ylCTTq8QOa2oRBDhQhy8UIFob6wJZTdREjXTtMJzoB9eWk8qbI0qyIAYmFClu0NVN3mTZ2UKN1HFgTpg4hCdmQ==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true @@ -12060,12 +12193,86 @@ packages: resolution: {integrity: sha512-tNcU3cLH7toloAzhOOrBDhjzgbxpyuYvkf+BPPnnJCdc5EIcdJ8JcT+SglvCQKKyZ6m9dVXtCVlJcA6csxKdEA==} engines: {node: ^20.17.0 || >=22.9.0} - libphonenumber-js@1.12.38: - resolution: {integrity: sha512-vwzxmasAy9hZigxtqTbFEwp8ZdZ975TiqVDwj5bKx5sR+zi5ucUQy9mbVTkKM9GzqdLdxux/hTw2nmN5J7POMA==} + libphonenumber-js@1.12.39: + resolution: {integrity: sha512-MW79m7HuOqBk8mwytiXYTMELJiBbV3Zl9Y39dCCn1yC8K+WGNSq1QGvzywbylp5vGShEztMScCWHX/XFOS0rXg==} lighthouse-logger@1.4.2: resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} + lilconfig@3.1.3: resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} engines: {node: '>=14'} @@ -12077,8 +12284,8 @@ packages: resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lint-staged@16.3.2: - resolution: {integrity: sha512-xKqhC2AeXLwiAHXguxBjuChoTTWFC6Pees0SHPwOpwlvI3BH7ZADFPddAdN3pgo3aiKgPUx/bxE78JfUnxQnlg==} + lint-staged@16.3.3: + resolution: {integrity: sha512-RLq2koZ5fGWrx7tcqx2tSTMQj4lRkfNJaebO/li/uunhCJbtZqwTuwPHpgIimAHHi/2nZIiGrkCHDCOeR1onxA==} engines: {node: '>=20.17'} hasBin: true @@ -12351,10 +12558,6 @@ packages: memoize-one@5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - meow@12.1.1: - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} - engines: {node: '>=16.10'} - meow@13.2.0: resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} engines: {node: '>=18'} @@ -13358,8 +13561,8 @@ packages: engines: {node: ^20.17.0 || >=22.9.0} hasBin: true - pacote@21.4.0: - resolution: {integrity: sha512-DR7mn7HUOomAX1BORnpYy678qVIidbvOojkBscqy27dRKN+s/hLeQT1MeYYrx1Cxh62jyKjiWiDV7RTTqB+ZEQ==} + pacote@21.5.0: + resolution: {integrity: sha512-VtZ0SB8mb5Tzw3dXDfVAIjhyVKUHZkS/ZH9/5mpKenwC9sFOXNI0JI7kEF7IMkwOnsWMFrvAZHzx1T5fmrp9FQ==} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true @@ -13559,16 +13762,6 @@ packages: pkg-types@2.3.0: resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} - playwright-core@1.58.2: - resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==} - engines: {node: '>=18'} - hasBin: true - - playwright@1.58.2: - resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==} - engines: {node: '>=18'} - hasBin: true - pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} @@ -13661,20 +13854,20 @@ packages: peerDependencies: postcss: ^8.4.38 - postcss-colormin@7.0.5: - resolution: {integrity: sha512-ekIBP/nwzRWhEMmIxHHbXHcMdzd1HIUzBECaj5KEdLz9DVP2HzT065sEhvOx1dkLjYW7jyD0CngThx6bpFi2fA==} + postcss-colormin@7.0.6: + resolution: {integrity: sha512-oXM2mdx6IBTRm39797QguYzVEWzbdlFiMNfq88fCCN1Wepw3CYmJ/1/Ifa/KjWo+j5ZURDl2NTldLJIw51IeNQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-convert-values@7.0.8: - resolution: {integrity: sha512-+XNKuPfkHTCEo499VzLMYn94TiL3r9YqRE3Ty+jP7UX4qjewUONey1t7CG21lrlTLN07GtGM8MqFVp86D4uKJg==} + postcss-convert-values@7.0.9: + resolution: {integrity: sha512-l6uATQATZaCa0bckHV+r6dLXfWtUBKXxO3jK+AtxxJJtgMPD+VhhPCCx51I4/5w8U5uHV67g3w7PXj+V3wlMlg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-discard-comments@7.0.5: - resolution: {integrity: sha512-IR2Eja8WfYgN5n32vEGSctVQ1+JARfu4UH8M7bgGh1bC+xI/obsPJXaBpQF7MAByvgwZinhpHpdrmXtvVVlKcQ==} + postcss-discard-comments@7.0.6: + resolution: {integrity: sha512-Sq+Fzj1Eg5/CPf1ERb0wS1Im5cvE2gDXCE+si4HCn1sf+jpQZxDI4DXEp8t77B/ImzDceWE2ebJQFXdqZ6GRJw==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13721,8 +13914,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-merge-rules@7.0.7: - resolution: {integrity: sha512-njWJrd/Ms6XViwowaaCc+/vqhPG3SmXn725AGrnl+BgTuRPEacjiLEaGq16J6XirMJbtKkTwnt67SS+e2WGoew==} + postcss-merge-rules@7.0.8: + resolution: {integrity: sha512-BOR1iAM8jnr7zoQSlpeBmCsWV5Uudi/+5j7k05D0O/WP3+OFMPD86c1j/20xiuRtyt45bhxw/7hnhZNhW2mNFA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13739,14 +13932,14 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-minify-params@7.0.5: - resolution: {integrity: sha512-FGK9ky02h6Ighn3UihsyeAH5XmLEE2MSGH5Tc4tXMFtEDx7B+zTG6hD/+/cT+fbF7PbYojsmmWjyTwFwW1JKQQ==} + postcss-minify-params@7.0.6: + resolution: {integrity: sha512-YOn02gC68JijlaXVuKvFSCvQOhTpblkcfDre2hb/Aaa58r2BIaK4AtE/cyZf2wV7YKAG+UlP9DT+By0ry1E4VQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-minify-selectors@7.0.5: - resolution: {integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==} + postcss-minify-selectors@7.0.6: + resolution: {integrity: sha512-lIbC0jy3AAwDxEgciZlBullDiMBeBCT+fz5G8RcA9MWqh/hfUkpOI3vNDUNEZHgokaoiv0juB9Y8fGcON7rU/A==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13816,8 +14009,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-normalize-unicode@7.0.5: - resolution: {integrity: sha512-X6BBwiRxVaFHrb2WyBMddIeB5HBjJcAaUHyhLrM2FsxSq5TFqcHSsK7Zu1otag+o0ZphQGJewGH1tAyrD0zX1Q==} + postcss-normalize-unicode@7.0.6: + resolution: {integrity: sha512-z6bwTV84YW6ZvvNoaNLuzRW4/uWxDKYI1iIDrzk6D2YTL7hICApy+Q1LP6vBEsljX8FM7YSuV9qI79XESd4ddQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13840,8 +14033,8 @@ packages: peerDependencies: postcss: ^8.4.32 - postcss-reduce-initial@7.0.5: - resolution: {integrity: sha512-RHagHLidG8hTZcnr4FpyMB2jtgd/OcyAazjMhoy5qmWJOx1uxKh4ntk0Pb46ajKM0rkf32lRH4C8c9qQiPR6IA==} + postcss-reduce-initial@7.0.6: + resolution: {integrity: sha512-G6ZyK68AmrPdMB6wyeA37ejnnRG2S8xinJrZJnOv+IaRKf6koPAVbQsiC7MfkmXaGmF1UO+QCijb27wfpxuRNg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13856,14 +14049,14 @@ packages: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} engines: {node: '>=4'} - postcss-svgo@7.1.0: - resolution: {integrity: sha512-KnAlfmhtoLz6IuU3Sij2ycusNs4jPW+QoFE5kuuUOK8awR6tMxZQrs5Ey3BUz7nFCzT3eqyFgqkyrHiaU2xx3w==} + postcss-svgo@7.1.1: + resolution: {integrity: sha512-zU9H9oEDrUFKa0JB7w+IYL7Qs9ey1mZyjhbf0KLxwJDdDRtoPvCmaEfknzqfHj44QS9VD6c5sJnBAVYTLRg/Sg==} engines: {node: ^18.12.0 || ^20.9.0 || >= 18} peerDependencies: postcss: ^8.4.32 - postcss-unique-selectors@7.0.4: - resolution: {integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==} + postcss-unique-selectors@7.0.5: + resolution: {integrity: sha512-3QoYmEt4qg/rUWDn6Tc8+ZVPmbp4G1hXDtCNWDx0st8SjtCbRcxRXDDM1QrEiXGG3A45zscSJFb4QH90LViyxg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -13892,8 +14085,8 @@ packages: preact@10.24.2: resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==} - preact@10.28.4: - resolution: {integrity: sha512-uKFfOHWuSNpRFVTnljsCluEFq57OKT+0QdOiQo8XWnQ/pSvg7OpX5eNOejELXJMWy+BwM2nobz0FkvzmnpCNsQ==} + preact@10.29.0: + resolution: {integrity: sha512-wSAGyk2bYR1c7t3SZ3jHcM6xy0lcBcDel6lODcs9ME6Th++Dx2KU+6D3HD8wMMKGA8Wpw7OMd3/4RGzYRpzwRg==} precinct@12.2.0: resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==} @@ -13922,8 +14115,8 @@ packages: resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - pretty-format@30.2.0: - resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==} + pretty-format@30.3.0: + resolution: {integrity: sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} pretty-ms@7.0.1: @@ -14040,8 +14233,8 @@ packages: (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - qr@0.5.4: - resolution: {integrity: sha512-gjVMHOt7CX+BQd7JLQ9fnS4kJK4Lj4u+Conq52tcCbW7YH3mATTtBbTMA+7cQ1rKOkDo61olFHJReawe+XFxIA==} + qr@0.5.5: + resolution: {integrity: sha512-iQBvKj7MRKO+co+MY0IZpyLO+ezvttxsmV86WywrgPuAmgBkv0pytyi03wourniSoPgzffeBW6cBgIkpqcvjTg==} engines: {node: '>= 20.19.0'} qrcode@1.5.1: @@ -14170,8 +14363,8 @@ packages: react-native: optional: true - react-i18next@16.5.5: - resolution: {integrity: sha512-5Z35e2JMALNR16FK/LDNQoAatQTVuO/4m4uHrIzewOPXIyf75gAHzuNLSWwmj5lRDJxDvXRJDECThkxWSAReng==} + react-i18next@16.5.8: + resolution: {integrity: sha512-2ABeHHlakxVY+LSirD+OiERxFL6+zip0PaHo979bgwzeHg27Sqc82xxXWIrSFmfWX0ZkrvXMHwhsi/NGUf5VQg==} peerDependencies: i18next: '>= 25.6.2' react: '>= 16.8.0' @@ -14224,8 +14417,8 @@ packages: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} engines: {node: '>=0.10.0'} - react-refresh@0.18.0: - resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==} + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} engines: {node: '>=0.10.0'} react-remove-scroll-bar@2.3.8: @@ -14288,25 +14481,12 @@ packages: react-dom: optional: true - react-scan@0.4.3: - resolution: {integrity: sha512-jhAQuQ1nja6HUYrSpbmNFHqZPsRCXk8Yqu0lHoRIw9eb8N96uTfXCpVyQhTTnJ/nWqnwuvxbpKVG/oWZT8+iTQ==} + react-scan@0.5.3: + resolution: {integrity: sha512-qde9PupmUf0L3MU1H6bjmoukZNbCXdMyTEwP4Gh8RQ4rZPd2GGNBgEKWszwLm96E8k+sGtMpc0B9P0KyFDP6Bw==} hasBin: true peerDependencies: - '@remix-run/react': '>=1.0.0' - next: '>=13.0.0' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - react-router: ^5.0.0 || ^6.0.0 || ^7.0.0 - react-router-dom: ^5.0.0 || ^6.0.0 || ^7.0.0 - peerDependenciesMeta: - '@remix-run/react': - optional: true - next: - optional: true - react-router: - optional: true - react-router-dom: - optional: true react-style-singleton@2.2.3: resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} @@ -14444,8 +14624,8 @@ packages: remark-rehype@10.1.0: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} - remix-utils@9.2.0: - resolution: {integrity: sha512-QFrgQQz4lSoZ3KkwN314ctIVR9XEXJlu/AWUzvo/KqqZ0FS2vij6D9Folh3QlcLuCBSmPTDDhf0cDhY8D1FcUw==} + remix-utils@9.3.1: + resolution: {integrity: sha512-Z/CVE9mPKYOKxhSV5q2IeXd5W4zl/B4q9YLQfuR3EYNSOop8riQso6QXGJXd+71S96Ox8/haMl34GyV/WBnoVg==} engines: {node: '>=20.0.0'} peerDependencies: '@edgefirst-dev/batcher': ^1.0.0 @@ -14581,6 +14761,11 @@ packages: resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} engines: {node: '>= 0.8'} + rolldown@1.0.0-rc.9: + resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + rollup-plugin-visualizer@6.0.11: resolution: {integrity: sha512-TBwVHVY7buHjIKVLqr9scTVFwqZqMXINcCphPwIWKPDCOBIa+jCQfafvbjRJDZgXdq/A996Dy6yGJ/+/NtAXDQ==} engines: {node: '>=18'} @@ -14705,14 +14890,14 @@ packages: serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - seroval-plugins@1.5.0: - resolution: {integrity: sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==} + seroval-plugins@1.5.1: + resolution: {integrity: sha512-4FbuZ/TMl02sqv0RTFexu0SP6V+ywaIe5bAWCCEik0fk17BhALgwvUDVF7e3Uvf9pxmwCEJsRPmlkUE6HdzLAw==} engines: {node: '>=10'} peerDependencies: seroval: ^1.0 - seroval@1.5.0: - resolution: {integrity: sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==} + seroval@1.5.1: + resolution: {integrity: sha512-OwrZRZAfhHww0WEnKHDY8OM0U/Qs8OTfIDWhUD4BLpNJUfXK4cGmjiagGze086m+mhI+V2nD0gfbHEnJjb9STA==} engines: {node: '>=10'} serve-placeholder@2.0.2: @@ -14811,8 +14996,8 @@ packages: resolution: {integrity: sha512-/fUgUhYghuLzVT/gaJoeVehLCgZiUxPCPMcyVNY0lIf/cTCz58K/WTI7PefDarXxp9nUKpEwg1yyz3eSBMTtgA==} engines: {node: ^20.17.0 || >=22.9.0} - simple-git@3.32.3: - resolution: {integrity: sha512-56a5oxFdWlsGygOXHWrG+xjj5w9ZIt2uQbzqiIGdR/6i5iococ7WQ/bNPzWxCJdEUGUCmyMH0t9zMpRJTaKxmw==} + simple-git@3.33.0: + resolution: {integrity: sha512-D4V/tGC2sjsoNhoMybKyGoE+v8A60hRawKQ1iFRA1zwuDgGZCBJ4ByOzZ5J8joBbi4Oam0qiPH+GhzmSBwbJng==} simple-swizzle@0.2.4: resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} @@ -14944,8 +15129,8 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - srvx@0.11.8: - resolution: {integrity: sha512-2n9t0YnAXPJjinytvxccNgs7rOA5gmE7Wowt/8Dy2dx2fDC6sBhfBpbrCvjYKALlVukPS/Uq3QwkolKNa7P/2Q==} + srvx@0.11.9: + resolution: {integrity: sha512-97wWJS6F0KTKAhDlHVmBzMvlBOp5FiNp3XrLoodIgYJpXxgG5tE9rX4Pg7s46n2shI4wtEsMATTS1+rI3/ubzA==} engines: {node: '>=20.16.0'} hasBin: true @@ -15004,6 +15189,9 @@ packages: std-env@3.10.0: resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} + std-env@4.0.0: + resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==} + stop-iteration-iterator@1.1.0: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} @@ -15203,8 +15391,8 @@ packages: babel-plugin-macros: optional: true - stylehacks@7.0.7: - resolution: {integrity: sha512-bJkD0JkEtbRrMFtwgpJyBbFIwfDDONQ1Ov3sDLZQP8HuJ73kBOyx66H4bOcAbVWmnfLdvQ0AJwXxOMkpujcO6g==} + stylehacks@7.0.8: + resolution: {integrity: sha512-I3f053GBLIiS5Fg6OMFhq/c+yW+5Hc2+1fgq7gElDMMSqwlRb3tBf2ef6ucLStYRpId4q//bQO1FjcyNyy4yDQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 @@ -15252,8 +15440,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - svelte-check@4.4.4: - resolution: {integrity: sha512-F1pGqXc710Oi/wTI4d/x7d6lgPwwfx1U6w3Q35n4xsC2e8C/yN2sM1+mWxjlMcpAfWucjlq4vPi+P4FZ8a14sQ==} + svelte-check@4.4.5: + resolution: {integrity: sha512-1bSwIRCvvmSHrlK52fOlZmVtUZgil43jNL/2H18pRpa+eQjzGt6e3zayxhp1S7GajPFKNM/2PMCG+DZFHlG9fw==} engines: {node: '>= 18.0.0'} hasBin: true peerDependencies: @@ -15297,8 +15485,8 @@ packages: typescript: optional: true - svelte@5.53.7: - resolution: {integrity: sha512-uxck1KI7JWtlfP3H6HOWi/94soAl23jsGJkBzN2BAWcQng0+lTrRNhxActFqORgnO9BHVd1hKJhG+ljRuIUWfQ==} + svelte@5.53.11: + resolution: {integrity: sha512-GYmqRjRhJYLQBonfdfGAt28gkfWEShrtXKGXcFGneXi502aBE+I1dJcs/YQriByvP6xqXRz/OdBGC6tfvUQHyQ==} engines: {node: '>=18'} svgo@4.0.1: @@ -15336,12 +15524,8 @@ packages: engines: {node: '>=10'} deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me - tar@7.5.10: - resolution: {integrity: sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==} - engines: {node: '>=18'} - - tar@7.5.8: - resolution: {integrity: sha512-SYkBtK99u0yXa+IWL0JRzzcl7RxNpvX/U08Z+8DKnysfno7M+uExnTZH8K+VGgShf2qFPKtbNr9QBl8n7WBP6Q==} + tar@7.5.11: + resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==} engines: {node: '>=18'} teex@1.0.1: @@ -15412,6 +15596,10 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + tinyclip@0.1.12: + resolution: {integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==} + engines: {node: ^16.14.0 || >= 17.3.0} + tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} @@ -15431,8 +15619,8 @@ packages: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} - tinyrainbow@3.0.3: - resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} + tinyrainbow@3.1.0: + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} engines: {node: '>=14.0.0'} tldts-core@6.1.86: @@ -15541,11 +15729,6 @@ packages: tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - tsx@4.21.0: - resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} - engines: {node: '>=18.0.0'} - hasBin: true - tty-browserify@0.0.1: resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} @@ -15594,10 +15777,6 @@ packages: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - type-fest@4.41.0: - resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} - engines: {node: '>=16'} - type-fest@5.4.4: resolution: {integrity: sha512-JnTrzGu+zPV3aXIUhnyWJj4z/wigMsdYajGLIYakqyOW1nPllzXEJee0QQbHj+CTIQtXGlAjuK0UY+2xTyjVAw==} engines: {node: '>=20'} @@ -15628,8 +15807,8 @@ packages: typeforce@1.18.0: resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} - typescript-eslint@8.56.1: - resolution: {integrity: sha512-U4lM6pjmBX7J5wk4szltF7I1cGBHXZopnAXCMXb3+fZ3B/0Z3hq3wS/CCUB2NZBNAExK92mCU2tEohWuwVMsDQ==} + typescript-eslint@8.57.0: + resolution: {integrity: sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -15669,6 +15848,10 @@ packages: ultrahtml@1.6.0: resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} + unbash@2.2.0: + resolution: {integrity: sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==} + engines: {node: '>=14'} + unbox-primitive@1.1.0: resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} engines: {node: '>= 0.4'} @@ -15688,8 +15871,8 @@ packages: undici-types@7.18.2: resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - undici-types@7.22.0: - resolution: {integrity: sha512-RKZvifiL60xdsIuC80UY0dq8Z7DbJUV8/l2hOVbyZAxBzEeQU4Z58+4ZzJ6WN2Lidi9KzT5EbiGX+PI/UGYuRw==} + undici-types@7.23.0: + resolution: {integrity: sha512-yR/tKkdJ6lT6e/k/SwzGDUFQE/2hZPBkWBiUtQb8zdQDSLcTKvhBqk3iP7WJKhBrhS8f0rMGjGBexCuNwdJqdg==} undici@6.23.0: resolution: {integrity: sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==} @@ -15698,8 +15881,8 @@ packages: unenv@2.0.0-rc.24: resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==} - unhead@2.1.10: - resolution: {integrity: sha512-We8l9uNF8zz6U8lfQaVG70+R/QBfQx1oPIgXin4BtZnK2IQpz6yazQ0qjMNVBDw2ADgF2ea58BtvSK+XX5AS7g==} + unhead@2.1.12: + resolution: {integrity: sha512-iTHdWD9ztTunOErtfUFk6Wr11BxvzumcYJ0CzaSCBUOEtg+DUZ9+gnE99i8QkLFT2q1rZD48BYYGXpOZVDLYkA==} unicorn-magic@0.3.0: resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} @@ -16048,8 +16231,8 @@ packages: typescript: optional: true - viem@2.47.0: - resolution: {integrity: sha512-jU5e1E1s5E5M1y+YrELDnNar/34U8NXfVcRfxtVETigs2gS1vvW2ngnBoQUGBwLnNr0kNv+NUu4m10OqHByoFw==} + viem@2.47.2: + resolution: {integrity: sha512-etDIwDgmDiGaPg8rUbJtUFuC3/nAJCbhMYyfh5dOcqNNkzBWTNcS2VluPSM5JVo+9U3b2hle2RkBEq3+xyvlvg==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: @@ -16140,13 +16323,10 @@ packages: vite: ^6.0.0 || ^7.0.0 vue: ^3.5.0 - vite-tsconfig-paths@5.1.4: - resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} + vite-tsconfig-paths@6.1.1: + resolution: {integrity: sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg==} peerDependencies: vite: '*' - peerDependenciesMeta: - vite: - optional: true vite@5.4.21: resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==} @@ -16259,6 +16439,49 @@ packages: yaml: optional: true + vite@8.0.0: + resolution: {integrity: sha512-fPGaRNj9Zytaf8LEiBhY7Z6ijnFKdzU/+mL8EFBaKr7Vw1/FWcTBAMW0wLPJAGMPX38ZPVCVgLceWiEqeoqL2Q==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.0.0-alpha.31 + esbuild: ^0.27.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + '@vitejs/devtools': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitefu@1.1.2: resolution: {integrity: sha512-zpKATdUbzbsycPFBN71nS2uzBUQiVnFoOrr2rvqv34S1lcAgMKKkjWleLGeiJlZ8lwCXvtWaRn7R3ZC16SYRuw==} peerDependencies: @@ -16267,20 +16490,21 @@ packages: vite: optional: true - vitest@4.0.18: - resolution: {integrity: sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==} + vitest@4.1.0: + resolution: {integrity: sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@opentelemetry/api': ^1.9.0 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.18 - '@vitest/browser-preview': 4.0.18 - '@vitest/browser-webdriverio': 4.0.18 - '@vitest/ui': 4.0.18 + '@vitest/browser-playwright': 4.1.0 + '@vitest/browser-preview': 4.1.0 + '@vitest/browser-webdriverio': 4.1.0 + '@vitest/ui': 4.1.0 happy-dom: '*' jsdom: '*' + vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0 peerDependenciesMeta: '@edge-runtime/vm': optional: true @@ -16331,8 +16555,8 @@ packages: peerDependencies: typescript: '>=5.0.0' - vue@3.5.29: - resolution: {integrity: sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==} + vue@3.5.30: + resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -17057,7 +17281,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17071,14 +17295,14 @@ snapshots: '@base-org/account@2.4.0(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@coinbase/cdp-sdk': 1.44.1(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@coinbase/cdp-sdk': 1.45.0(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@noble/hashes': 1.4.0 clsx: 1.2.1 eventemitter3: 5.0.1 idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17095,14 +17319,14 @@ snapshots: '@base-org/account@2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@coinbase/cdp-sdk': 1.44.1(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@coinbase/cdp-sdk': 1.45.0(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) brotli-wasm: 3.0.1 clsx: 1.2.1 eventemitter3: 5.0.1 idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17117,9 +17341,9 @@ snapshots: - utf-8-validate - zod - '@bigmi/client@0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': + '@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@tanstack/query-core': 5.90.20 eventemitter3: 5.0.4 zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -17131,7 +17355,7 @@ snapshots: - typescript - use-sync-external-store - '@bigmi/core@0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': + '@bigmi/core@0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: '@noble/hashes': 1.8.0 bech32: 2.0.0 @@ -17148,8 +17372,23 @@ snapshots: '@bigmi/react@0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@tanstack/react-query': 5.90.21(react@19.2.4) + react: 19.2.4 + react-dom: 19.2.4(react@19.2.4) + transitivePeerDependencies: + - '@tanstack/query-core' + - '@types/react' + - bs58 + - immer + - typescript + - use-sync-external-store + + '@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': + dependencies: + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@tanstack/react-query': 5.90.21(react@19.2.4) react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -17205,7 +17444,7 @@ snapshots: dependencies: '@noble/curves': 1.9.7 - '@bomb.sh/tab@0.0.12(cac@6.7.14)(citty@0.2.1)(commander@13.1.0)': + '@bomb.sh/tab@0.0.14(cac@6.7.14)(citty@0.2.1)(commander@13.1.0)': optionalDependencies: cac: 6.7.14 citty: 0.2.1 @@ -17213,21 +17452,10 @@ snapshots: '@btckit/types@0.0.19': {} - '@clack/core@0.3.5': - dependencies: - picocolors: 1.1.1 - sisteransi: 1.0.5 - '@clack/core@1.1.0': dependencies: sisteransi: 1.0.5 - '@clack/prompts@0.8.2': - dependencies: - '@clack/core': 0.3.5 - picocolors: 1.1.1 - sisteransi: 1.0.5 - '@clack/prompts@1.1.0': dependencies: '@clack/core': 1.1.0 @@ -17235,7 +17463,7 @@ snapshots: '@cloudflare/kv-asset-handler@0.4.2': {} - '@coinbase/cdp-sdk@1.44.1(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@coinbase/cdp-sdk@1.45.0(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@solana-program/system': 0.10.0(@solana/kit@5.5.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana-program/token': 0.9.0(@solana/kit@5.5.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -17244,10 +17472,10 @@ snapshots: abitype: 1.0.6(typescript@5.9.3)(zod@4.3.6) axios: 1.13.6(debug@4.4.3) axios-retry: 4.5.0(axios@1.13.6) - jose: 6.2.0 + jose: 6.2.1 md5: 2.3.0 uncrypto: 0.1.3 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 transitivePeerDependencies: - bufferutil @@ -17266,7 +17494,7 @@ snapshots: eth-json-rpc-filters: 6.0.1 eventemitter3: 5.0.4 keccak: 3.0.4 - preact: 10.28.4 + preact: 10.29.0 sha.js: 2.4.12 transitivePeerDependencies: - supports-color @@ -17276,7 +17504,7 @@ snapshots: '@noble/hashes': 1.8.0 clsx: 1.2.1 eventemitter3: 5.0.4 - preact: 10.28.4 + preact: 10.29.0 '@coinbase/wallet-sdk@4.3.6(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: @@ -17286,7 +17514,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17303,40 +17531,42 @@ snapshots: '@noble/hashes': 1.8.0 clsx: 1.2.1 eventemitter3: 5.0.4 - preact: 10.28.4 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + preact: 10.29.0 + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@commitlint/cli@20.4.3(@types/node@25.3.5)(typescript@5.9.3)': + '@commitlint/cli@20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)': dependencies: - '@commitlint/format': 20.4.3 - '@commitlint/lint': 20.4.3 - '@commitlint/load': 20.4.3(@types/node@25.3.5)(typescript@5.9.3) - '@commitlint/read': 20.4.3 - '@commitlint/types': 20.4.3 + '@commitlint/format': 20.4.4 + '@commitlint/lint': 20.4.4 + '@commitlint/load': 20.4.4(@types/node@25.5.0)(typescript@5.9.3) + '@commitlint/read': 20.4.4(conventional-commits-parser@6.3.0) + '@commitlint/types': 20.4.4 tinyexec: 1.0.2 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' + - conventional-commits-filter + - conventional-commits-parser - typescript - '@commitlint/config-conventional@20.4.3': + '@commitlint/config-conventional@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 conventional-changelog-conventionalcommits: 9.3.0 - '@commitlint/config-validator@20.4.3': + '@commitlint/config-validator@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 ajv: 8.18.0 - '@commitlint/ensure@20.4.3': + '@commitlint/ensure@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -17345,31 +17575,31 @@ snapshots: '@commitlint/execute-rule@20.0.0': {} - '@commitlint/format@20.4.3': + '@commitlint/format@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 picocolors: 1.1.1 - '@commitlint/is-ignored@20.4.3': + '@commitlint/is-ignored@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 semver: 7.7.4 - '@commitlint/lint@20.4.3': + '@commitlint/lint@20.4.4': dependencies: - '@commitlint/is-ignored': 20.4.3 - '@commitlint/parse': 20.4.3 - '@commitlint/rules': 20.4.3 - '@commitlint/types': 20.4.3 + '@commitlint/is-ignored': 20.4.4 + '@commitlint/parse': 20.4.4 + '@commitlint/rules': 20.4.4 + '@commitlint/types': 20.4.4 - '@commitlint/load@20.4.3(@types/node@25.3.5)(typescript@5.9.3)': + '@commitlint/load@20.4.4(@types/node@25.5.0)(typescript@5.9.3)': dependencies: - '@commitlint/config-validator': 20.4.3 + '@commitlint/config-validator': 20.4.4 '@commitlint/execute-rule': 20.0.0 - '@commitlint/resolve-extends': 20.4.3 - '@commitlint/types': 20.4.3 + '@commitlint/resolve-extends': 20.4.4 + '@commitlint/types': 20.4.4 cosmiconfig: 9.0.1(typescript@5.9.3) - cosmiconfig-typescript-loader: 6.2.0(@types/node@25.3.5)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3) + cosmiconfig-typescript-loader: 6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3) is-plain-obj: 4.1.0 lodash.mergewith: 4.6.2 picocolors: 1.1.1 @@ -17379,35 +17609,38 @@ snapshots: '@commitlint/message@20.4.3': {} - '@commitlint/parse@20.4.3': + '@commitlint/parse@20.4.4': dependencies: - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 conventional-changelog-angular: 8.3.0 conventional-commits-parser: 6.3.0 - '@commitlint/read@20.4.3': + '@commitlint/read@20.4.4(conventional-commits-parser@6.3.0)': dependencies: '@commitlint/top-level': 20.4.3 - '@commitlint/types': 20.4.3 - git-raw-commits: 4.0.0 + '@commitlint/types': 20.4.4 + git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0) minimist: 1.2.8 tinyexec: 1.0.2 + transitivePeerDependencies: + - conventional-commits-filter + - conventional-commits-parser - '@commitlint/resolve-extends@20.4.3': + '@commitlint/resolve-extends@20.4.4': dependencies: - '@commitlint/config-validator': 20.4.3 - '@commitlint/types': 20.4.3 + '@commitlint/config-validator': 20.4.4 + '@commitlint/types': 20.4.4 global-directory: 4.0.1 import-meta-resolve: 4.2.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - '@commitlint/rules@20.4.3': + '@commitlint/rules@20.4.4': dependencies: - '@commitlint/ensure': 20.4.3 + '@commitlint/ensure': 20.4.4 '@commitlint/message': 20.4.3 '@commitlint/to-lines': 20.0.0 - '@commitlint/types': 20.4.3 + '@commitlint/types': 20.4.4 '@commitlint/to-lines@20.0.0': {} @@ -17415,22 +17648,30 @@ snapshots: dependencies: escalade: 3.2.0 - '@commitlint/types@20.4.3': + '@commitlint/types@20.4.4': dependencies: conventional-commits-parser: 6.3.0 picocolors: 1.1.1 + '@conventional-changelog/git-client@2.6.0(conventional-commits-parser@6.3.0)': + dependencies: + '@simple-libs/child-process-utils': 1.0.2 + '@simple-libs/stream-utils': 1.2.0 + semver: 7.7.4 + optionalDependencies: + conventional-commits-parser: 6.3.0 + '@dependents/detective-less@5.0.1': dependencies: gonzales-pe: 4.3.0 node-source-walk: 7.0.1 - '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@types/react' - bufferutil @@ -17441,13 +17682,13 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs-sdk/assert-package-version@0.12.1': {} + '@dynamic-labs-sdk/assert-package-version@0.14.0': {} - '@dynamic-labs-sdk/client@0.12.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)': + '@dynamic-labs-sdk/client@0.14.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs-sdk/assert-package-version': 0.12.1 - '@dynamic-labs-wallet/browser-wallet-client': 0.0.261(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/sdk-api-core': 0.0.875 + '@dynamic-labs-sdk/assert-package-version': 0.14.0 + '@dynamic-labs-wallet/browser-wallet-client': 0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/sdk-api-core': 0.0.881 '@simplewebauthn/browser': 13.1.0 buffer: 6.0.3 eventemitter3: 5.0.1 @@ -17455,24 +17696,26 @@ snapshots: transitivePeerDependencies: - bufferutil - debug + - typescript - utf-8-validate - '@dynamic-labs-wallet/browser-wallet-client@0.0.261(bufferutil@4.1.0)(utf-8-validate@6.0.6)': + '@dynamic-labs-wallet/browser-wallet-client@0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs-wallet/core': 0.0.261(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/message-transport': 4.66.0 + '@dynamic-labs-wallet/core': 0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/message-transport': 4.67.1 uuid: 11.1.0 transitivePeerDependencies: - bufferutil - debug + - typescript - utf-8-validate '@dynamic-labs-wallet/browser-wallet-client@0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))': dependencies: '@dynamic-labs-wallet/core': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/message-transport': 4.66.0 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/message-transport': 4.67.1 uuid: 11.1.0 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -17481,7 +17724,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.167': dependencies: '@dynamic-labs-wallet/core': 0.0.167 - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.764 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17495,7 +17738,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.818 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17511,7 +17754,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.259(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.864 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17538,7 +17781,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.1.3(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.818 axios: 1.13.2 http-errors: 2.0.0 @@ -17551,7 +17794,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.2.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.864 axios: 1.13.2 http-errors: 2.0.0 @@ -17561,23 +17804,23 @@ snapshots: - debug - utf-8-validate - '@dynamic-labs-wallet/core@0.0.261(bufferutil@4.1.0)(utf-8-validate@6.0.6)': + '@dynamic-labs-wallet/core@0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs-wallet/forward-mpc-client': 0.2.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.864 - axios: 1.13.2 - http-errors: 2.0.0 + '@dynamic-labs-wallet/forward-mpc-client': 0.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.875 + axios: 1.13.5 uuid: 11.1.0 transitivePeerDependencies: - bufferutil - debug + - typescript - utf-8-validate '@dynamic-labs-wallet/core@0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 '@dynamic-labs/sdk-api-core': 0.0.875 axios: 1.13.5 uuid: 11.1.0 @@ -17614,6 +17857,22 @@ snapshots: - debug - utf-8-validate + '@dynamic-labs-wallet/forward-mpc-client@0.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': + dependencies: + '@dynamic-labs-wallet/core': 0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6) + '@dynamic-labs-wallet/forward-mpc-shared': 0.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@evervault/wasm-attestation-bindings': 0.3.1 + '@noble/hashes': 2.0.1 + '@noble/post-quantum': 0.5.4 + eventemitter3: 5.0.4 + fp-ts: 2.16.11 + ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) + transitivePeerDependencies: + - bufferutil + - debug + - typescript + - utf-8-validate + '@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6) @@ -17657,6 +17916,21 @@ snapshots: - debug - utf-8-validate + '@dynamic-labs-wallet/forward-mpc-shared@0.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': + dependencies: + '@dynamic-labs-wallet/browser': 0.0.259(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs-wallet/core': 0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6) + '@noble/ciphers': 0.4.1 + '@noble/hashes': 2.0.1 + '@noble/post-quantum': 0.5.4 + fp-ts: 2.16.11 + io-ts: 2.2.22(fp-ts@2.16.11) + transitivePeerDependencies: + - bufferutil + - debug + - typescript + - utf-8-validate + '@dynamic-labs-wallet/forward-mpc-shared@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/browser': 0.0.259(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) @@ -17672,23 +17946,23 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/assert-package-version@4.66.0': + '@dynamic-labs/assert-package-version@4.67.1': dependencies: - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/bitcoin@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/bitcoin@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@bitcoinerlab/secp256k1': 1.1.1 '@btckit/types': 0.0.19 '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/waas': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 bitcoinjs-lib: 6.1.5 @@ -17710,22 +17984,22 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/embedded-wallet-evm@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': - dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/embedded-wallet': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.66.0 + '@dynamic-labs/embedded-wallet-evm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + dependencies: + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/embedded-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.1 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/iframe-stamper': 2.5.0 - '@turnkey/viem': 0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@turnkey/viem': 0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@turnkey/webauthn-stamper': 0.5.1 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - bufferutil @@ -17737,19 +18011,19 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet-solana@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': - dependencies: - '@dynamic-labs-sdk/client': 0.12.1(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/embedded-wallet': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/solana-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.66.0 + '@dynamic-labs/embedded-wallet-solana@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + dependencies: + '@dynamic-labs-sdk/client': 0.14.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/embedded-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.1 '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@turnkey/iframe-stamper': 2.5.0 '@turnkey/solana': 1.0.42(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -17767,15 +18041,15 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/embedded-wallet@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.1 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/http': 3.10.0(encoding@0.1.13) '@turnkey/iframe-stamper': 2.5.0 @@ -17787,37 +18061,37 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-aa-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-aa-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - debug - react - react-dom - '@dynamic-labs/ethereum-aa@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': - dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-aa-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@zerodev/ecdsa-validator': 5.4.9(@zerodev/sdk@5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/multi-chain-ecdsa-validator': 5.4.5(@zerodev/sdk@5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/sdk': 5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/ethereum-aa@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + dependencies: + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-aa-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@zerodev/ecdsa-validator': 5.4.9(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/multi-chain-ecdsa-validator': 5.4.5(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@zerodev/webauthn-key' @@ -17825,42 +18099,42 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - debug - react - react-dom - '@dynamic-labs/ethereum@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/ethereum@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/embedded-wallet-evm': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/waas-evm': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/embedded-wallet-evm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/waas-evm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@walletconnect/ethereum-provider': 2.21.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) buffer: 6.0.3 eventemitter3: 5.0.1 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -17898,18 +18172,18 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/iconic@4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/iconic@4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) sharp: 0.33.5 url: 0.11.0 - '@dynamic-labs/locale@4.66.0(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)': + '@dynamic-labs/locale@4.67.1(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 i18next: 23.4.6 react-i18next: 13.5.0(i18next@23.4.6)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) transitivePeerDependencies: @@ -17917,27 +18191,27 @@ snapshots: - react-dom - react-native - '@dynamic-labs/logger@4.66.0': + '@dynamic-labs/logger@4.67.1': dependencies: eventemitter3: 5.0.1 - '@dynamic-labs/message-transport@4.66.0': + '@dynamic-labs/message-transport@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@vue/reactivity': 3.5.29 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@vue/reactivity': 3.5.30 eventemitter3: 5.0.1 - '@dynamic-labs/multi-wallet@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/multi-wallet@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) tslib: 2.4.1 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -17945,10 +18219,10 @@ snapshots: - react - react-dom - '@dynamic-labs/rpc-providers@4.66.0': + '@dynamic-labs/rpc-providers@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/types': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/types': 4.67.1 '@dynamic-labs/sdk-api-core@0.0.764': {} @@ -17958,22 +18232,24 @@ snapshots: '@dynamic-labs/sdk-api-core@0.0.875': {} - '@dynamic-labs/sdk-react-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(utf-8-validate@6.0.6)': + '@dynamic-labs/sdk-api-core@0.0.881': {} + + '@dynamic-labs/sdk-react-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs-sdk/client': 0.12.1(bufferutil@4.1.0)(utf-8-validate@6.0.6) + '@dynamic-labs-sdk/client': 0.14.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/iconic': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/locale': 4.66.0(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/multi-wallet': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/store': 4.66.0 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/iconic': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/locale': 4.67.1(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/multi-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/store': 4.67.1 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@hcaptcha/react-hcaptcha': 1.4.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@thumbmarkjs/thumbmarkjs': 0.16.0 bs58: 6.0.0 @@ -17994,17 +18270,18 @@ snapshots: - bufferutil - debug - react-native + - typescript - utf-8-validate - '@dynamic-labs/solana-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@dynamic-labs/solana-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/spl-token': 0.4.14(@solana/web3.js@1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) eventemitter3: 5.0.1 @@ -18019,20 +18296,20 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/solana@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': - dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/embedded-wallet-solana': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/solana-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/waas-svm': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connect': 4.66.0(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/solana@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + dependencies: + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/embedded-wallet-solana': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/waas-svm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connect': 4.67.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 @@ -18078,21 +18355,21 @@ snapshots: - viem - zod - '@dynamic-labs/store@4.66.0': + '@dynamic-labs/store@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/sui-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': + '@dynamic-labs/sui-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mysten/sui': 1.45.2(typescript@5.9.3) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) text-encoding: 0.7.0 @@ -18105,32 +18382,32 @@ snapshots: - react-dom - typescript - '@dynamic-labs/types@4.66.0': + '@dynamic-labs/types@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/utils@4.66.0': + '@dynamic-labs/utils@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 buffer: 6.0.3 eventemitter3: 5.0.1 tldts: 6.0.16 - '@dynamic-labs/waas-evm@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@dynamic-labs/waas-evm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/waas': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@gql.tada/svelte-support' @@ -18145,18 +18422,18 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/waas-svm@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': - dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/embedded-wallet-solana': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/solana-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/waas': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/waas-svm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + dependencies: + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/embedded-wallet-solana': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) bs58: 6.0.0 eventemitter3: 5.0.1 @@ -18175,18 +18452,18 @@ snapshots: - viem - zod - '@dynamic-labs/waas@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/waas@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/solana-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/sui-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/sui-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@gql.tada/svelte-support' @@ -18201,37 +18478,37 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/wagmi-connector@4.66.0(c3c76eac9ab866e76d7e23446915fefc)': + '@dynamic-labs/wagmi-connector@4.67.1(45c4ff2b2c1f08547fb77a9e74e7164b)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/ethereum-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-react-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/wallet-connector-core': 4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-react-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) eventemitter3: 5.0.1 react: 19.2.4 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/wallet-book@4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/wallet-book@4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/iconic': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/utils': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/iconic': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/utils': 4.67.1 eventemitter3: 5.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) util: 0.12.5 zod: 4.3.6 - '@dynamic-labs/wallet-connect@4.66.0(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@dynamic-labs/wallet-connect@4.67.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 '@walletconnect/sign-client': 2.21.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' @@ -18258,16 +18535,16 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/wallet-connector-core@4.66.0(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 - '@dynamic-labs/rpc-providers': 4.66.0 - '@dynamic-labs/sdk-api-core': 0.0.875 - '@dynamic-labs/types': 4.66.0 - '@dynamic-labs/utils': 4.66.0 - '@dynamic-labs/wallet-book': 4.66.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/sdk-api-core': 0.0.881 + '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) eventemitter3: 5.0.1 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18275,10 +18552,10 @@ snapshots: - react - react-dom - '@dynamic-labs/webauthn@4.66.0': + '@dynamic-labs/webauthn@4.67.1': dependencies: - '@dynamic-labs/assert-package-version': 4.66.0 - '@dynamic-labs/logger': 4.66.0 + '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/logger': 4.67.1 '@simplewebauthn/browser': 13.1.0 '@simplewebauthn/types': 12.0.0 @@ -18286,16 +18563,16 @@ snapshots: dependencies: '@noble/ciphers': 1.3.0 - '@emnapi/core@1.8.1': + '@emnapi/core@1.9.0': dependencies: - '@emnapi/wasi-threads': 1.1.0 + '@emnapi/wasi-threads': 1.2.0 tslib: 2.8.1 - '@emnapi/runtime@1.8.1': + '@emnapi/runtime@1.9.0': dependencies: tslib: 2.8.1 - '@emnapi/wasi-threads@1.1.0': + '@emnapi/wasi-threads@1.2.0': dependencies: tslib: 2.8.1 @@ -18394,17 +18671,13 @@ snapshots: '@emotion/weak-memoize@0.4.0': {} - '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.27.3)': - dependencies: - esbuild: 0.27.3 - '@esbuild/aix-ppc64@0.21.5': optional: true '@esbuild/aix-ppc64@0.25.12': optional: true - '@esbuild/aix-ppc64@0.27.3': + '@esbuild/aix-ppc64@0.27.4': optional: true '@esbuild/android-arm64@0.17.6': @@ -18416,7 +18689,7 @@ snapshots: '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm64@0.27.3': + '@esbuild/android-arm64@0.27.4': optional: true '@esbuild/android-arm@0.17.6': @@ -18428,7 +18701,7 @@ snapshots: '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-arm@0.27.3': + '@esbuild/android-arm@0.27.4': optional: true '@esbuild/android-x64@0.17.6': @@ -18440,7 +18713,7 @@ snapshots: '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-x64@0.27.3': + '@esbuild/android-x64@0.27.4': optional: true '@esbuild/darwin-arm64@0.17.6': @@ -18452,7 +18725,7 @@ snapshots: '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.27.3': + '@esbuild/darwin-arm64@0.27.4': optional: true '@esbuild/darwin-x64@0.17.6': @@ -18464,7 +18737,7 @@ snapshots: '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.27.3': + '@esbuild/darwin-x64@0.27.4': optional: true '@esbuild/freebsd-arm64@0.17.6': @@ -18476,7 +18749,7 @@ snapshots: '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.27.3': + '@esbuild/freebsd-arm64@0.27.4': optional: true '@esbuild/freebsd-x64@0.17.6': @@ -18488,7 +18761,7 @@ snapshots: '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.27.3': + '@esbuild/freebsd-x64@0.27.4': optional: true '@esbuild/linux-arm64@0.17.6': @@ -18500,7 +18773,7 @@ snapshots: '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm64@0.27.3': + '@esbuild/linux-arm64@0.27.4': optional: true '@esbuild/linux-arm@0.17.6': @@ -18512,7 +18785,7 @@ snapshots: '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-arm@0.27.3': + '@esbuild/linux-arm@0.27.4': optional: true '@esbuild/linux-ia32@0.17.6': @@ -18524,7 +18797,7 @@ snapshots: '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-ia32@0.27.3': + '@esbuild/linux-ia32@0.27.4': optional: true '@esbuild/linux-loong64@0.17.6': @@ -18536,7 +18809,7 @@ snapshots: '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-loong64@0.27.3': + '@esbuild/linux-loong64@0.27.4': optional: true '@esbuild/linux-mips64el@0.17.6': @@ -18548,7 +18821,7 @@ snapshots: '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-mips64el@0.27.3': + '@esbuild/linux-mips64el@0.27.4': optional: true '@esbuild/linux-ppc64@0.17.6': @@ -18560,7 +18833,7 @@ snapshots: '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-ppc64@0.27.3': + '@esbuild/linux-ppc64@0.27.4': optional: true '@esbuild/linux-riscv64@0.17.6': @@ -18572,7 +18845,7 @@ snapshots: '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.27.3': + '@esbuild/linux-riscv64@0.27.4': optional: true '@esbuild/linux-s390x@0.17.6': @@ -18584,7 +18857,7 @@ snapshots: '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-s390x@0.27.3': + '@esbuild/linux-s390x@0.27.4': optional: true '@esbuild/linux-x64@0.17.6': @@ -18596,13 +18869,13 @@ snapshots: '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/linux-x64@0.27.3': + '@esbuild/linux-x64@0.27.4': optional: true '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.27.3': + '@esbuild/netbsd-arm64@0.27.4': optional: true '@esbuild/netbsd-x64@0.17.6': @@ -18614,13 +18887,13 @@ snapshots: '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.27.3': + '@esbuild/netbsd-x64@0.27.4': optional: true '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.27.3': + '@esbuild/openbsd-arm64@0.27.4': optional: true '@esbuild/openbsd-x64@0.17.6': @@ -18632,13 +18905,13 @@ snapshots: '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.27.3': + '@esbuild/openbsd-x64@0.27.4': optional: true '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/openharmony-arm64@0.27.3': + '@esbuild/openharmony-arm64@0.27.4': optional: true '@esbuild/sunos-x64@0.17.6': @@ -18650,7 +18923,7 @@ snapshots: '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/sunos-x64@0.27.3': + '@esbuild/sunos-x64@0.27.4': optional: true '@esbuild/win32-arm64@0.17.6': @@ -18662,7 +18935,7 @@ snapshots: '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-arm64@0.27.3': + '@esbuild/win32-arm64@0.27.4': optional: true '@esbuild/win32-ia32@0.17.6': @@ -18674,7 +18947,7 @@ snapshots: '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-ia32@0.27.3': + '@esbuild/win32-ia32@0.27.4': optional: true '@esbuild/win32-x64@0.17.6': @@ -18686,7 +18959,7 @@ snapshots: '@esbuild/win32-x64@0.25.12': optional: true - '@esbuild/win32-x64@0.27.3': + '@esbuild/win32-x64@0.27.4': optional: true '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)': @@ -18694,14 +18967,14 @@ snapshots: eslint: 8.57.1 eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.1(eslint@9.39.3(jiti@2.6.1))': + '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))': dependencies: - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} - '@eslint/config-array@0.21.1': + '@eslint/config-array@0.21.2': dependencies: '@eslint/object-schema': 2.1.7 debug: 4.4.3(supports-color@5.5.0) @@ -18731,7 +19004,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/eslintrc@3.3.4': + '@eslint/eslintrc@3.3.5': dependencies: ajv: 6.14.0 debug: 4.4.3(supports-color@5.5.0) @@ -18747,7 +19020,7 @@ snapshots: '@eslint/js@8.57.1': {} - '@eslint/js@9.39.3': {} + '@eslint/js@9.39.4': {} '@eslint/object-schema@2.1.7': {} @@ -19009,11 +19282,11 @@ snapshots: dependencies: retry: 0.13.1 - '@gemini-wallet/core@0.3.2(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@gemini-wallet/core@0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@metamask/rpc-errors': 7.0.2 eventemitter3: 5.0.1 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - supports-color @@ -19054,23 +19327,23 @@ snapshots: dependencies: react: 19.2.4 - '@hpke/chacha20poly1305@1.7.1': + '@hpke/chacha20poly1305@1.8.0': dependencies: - '@hpke/common': 1.9.0 + '@hpke/common': 1.10.1 - '@hpke/common@1.9.0': {} + '@hpke/common@1.10.1': {} - '@hpke/core@1.8.0': + '@hpke/core@1.9.0': dependencies: - '@hpke/common': 1.9.0 + '@hpke/common': 1.10.1 - '@hpke/dhkem-x25519@1.7.0': + '@hpke/dhkem-x25519@1.8.0': dependencies: - '@hpke/common': 1.9.0 + '@hpke/common': 1.10.1 - '@hpke/dhkem-x448@1.7.0': + '@hpke/dhkem-x448@1.8.0': dependencies: - '@hpke/common': 1.9.0 + '@hpke/common': 1.10.1 '@humanfs/core@0.19.1': {} @@ -19244,12 +19517,12 @@ snapshots: '@img/sharp-wasm32@0.33.5': dependencies: - '@emnapi/runtime': 1.8.1 + '@emnapi/runtime': 1.9.0 optional: true '@img/sharp-wasm32@0.34.5': dependencies: - '@emnapi/runtime': 1.8.1 + '@emnapi/runtime': 1.9.0 optional: true '@img/sharp-win32-arm64@0.34.5': @@ -19269,128 +19542,128 @@ snapshots: '@inquirer/ansi@1.0.2': {} - '@inquirer/checkbox@4.3.2(@types/node@25.3.5)': + '@inquirer/checkbox@4.3.2(@types/node@25.5.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/type': 3.0.10(@types/node@25.5.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/confirm@5.1.21(@types/node@25.3.5)': + '@inquirer/confirm@5.1.21(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/core@10.3.2(@types/node@25.3.5)': + '@inquirer/core@10.3.2(@types/node@25.5.0)': dependencies: '@inquirer/ansi': 1.0.2 '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/type': 3.0.10(@types/node@25.5.0) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/editor@4.2.23(@types/node@25.3.5)': + '@inquirer/editor@4.2.23(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/external-editor': 1.0.3(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/external-editor': 1.0.3(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/expand@4.0.23(@types/node@25.3.5)': + '@inquirer/expand@4.0.23(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/external-editor@1.0.3(@types/node@25.3.5)': + '@inquirer/external-editor@1.0.3(@types/node@25.5.0)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@inquirer/figures@1.0.15': {} - '@inquirer/input@4.3.1(@types/node@25.3.5)': + '@inquirer/input@4.3.1(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/number@3.0.23(@types/node@25.3.5)': + '@inquirer/number@3.0.23(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/password@4.0.23(@types/node@25.3.5)': + '@inquirer/password@4.0.23(@types/node@25.5.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/prompts@7.10.1(@types/node@25.3.5)': + '@inquirer/prompts@7.10.1(@types/node@25.5.0)': dependencies: - '@inquirer/checkbox': 4.3.2(@types/node@25.3.5) - '@inquirer/confirm': 5.1.21(@types/node@25.3.5) - '@inquirer/editor': 4.2.23(@types/node@25.3.5) - '@inquirer/expand': 4.0.23(@types/node@25.3.5) - '@inquirer/input': 4.3.1(@types/node@25.3.5) - '@inquirer/number': 3.0.23(@types/node@25.3.5) - '@inquirer/password': 4.0.23(@types/node@25.3.5) - '@inquirer/rawlist': 4.1.11(@types/node@25.3.5) - '@inquirer/search': 3.2.2(@types/node@25.3.5) - '@inquirer/select': 4.4.2(@types/node@25.3.5) + '@inquirer/checkbox': 4.3.2(@types/node@25.5.0) + '@inquirer/confirm': 5.1.21(@types/node@25.5.0) + '@inquirer/editor': 4.2.23(@types/node@25.5.0) + '@inquirer/expand': 4.0.23(@types/node@25.5.0) + '@inquirer/input': 4.3.1(@types/node@25.5.0) + '@inquirer/number': 3.0.23(@types/node@25.5.0) + '@inquirer/password': 4.0.23(@types/node@25.5.0) + '@inquirer/rawlist': 4.1.11(@types/node@25.5.0) + '@inquirer/search': 3.2.2(@types/node@25.5.0) + '@inquirer/select': 4.4.2(@types/node@25.5.0) optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/rawlist@4.1.11(@types/node@25.3.5)': + '@inquirer/rawlist@4.1.11(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/search@3.2.2(@types/node@25.3.5)': + '@inquirer/search@3.2.2(@types/node@25.5.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/type': 3.0.10(@types/node@25.5.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/select@4.4.2(@types/node@25.3.5)': + '@inquirer/select@4.4.2(@types/node@25.5.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/type': 3.0.10(@types/node@25.5.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 - '@inquirer/type@3.0.10(@types/node@25.3.5)': + '@inquirer/type@3.0.10(@types/node@25.5.0)': optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@ioredis/commands@1.5.1': {} @@ -19427,20 +19700,20 @@ snapshots: dependencies: '@jest/types': 29.6.3 - '@jest/diff-sequences@30.0.1': {} + '@jest/diff-sequences@30.3.0': {} '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 25.3.5 + '@types/node': 25.5.0 jest-mock: 29.7.0 '@jest/fake-timers@29.7.0': dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 25.3.5 + '@types/node': 25.5.0 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -19480,7 +19753,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@types/yargs': 17.0.35 chalk: 4.1.2 @@ -19518,89 +19791,11 @@ snapshots: '@kwsites/promise-deferred@1.1.1': {} - '@lerna/create@9.0.5(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(typescript@5.9.3)': + '@lifi/sdk-provider-bitcoin@4.0.0-beta.0(@types/react@19.2.14)(bs58@6.0.0)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@npmcli/arborist': 9.1.6 - '@npmcli/package-json': 7.0.2 - '@npmcli/run-script': 10.0.3 - '@nx/devkit': 22.5.4(nx@22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19))) - '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 20.1.2 - aproba: 2.0.0 - byte-size: 8.1.1 - chalk: 4.1.0 - cmd-shim: 6.0.3 - color-support: 1.1.3 - columnify: 1.6.0 - console-control-strings: 1.1.0 - conventional-changelog-core: 5.0.1 - conventional-recommended-bump: 7.0.1 - cosmiconfig: 9.0.0(typescript@5.9.3) - dedent: 1.5.3(babel-plugin-macros@3.1.0) - execa: 5.0.0 - fs-extra: 11.3.4 - get-stream: 6.0.0 - git-url-parse: 14.0.0 - glob-parent: 6.0.2 - has-unicode: 2.0.1 - ini: 1.3.8 - init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@25.3.5) - is-ci: 3.0.1 - is-stream: 2.0.0 - js-yaml: 4.1.1 - libnpmpublish: 11.1.2 - load-json-file: 6.2.0 - make-dir: 4.0.0 - make-fetch-happen: 15.0.2 - minimatch: 3.1.4 - multimatch: 5.0.0 - npm-package-arg: 13.0.1 - npm-packlist: 10.0.3 - npm-registry-fetch: 19.1.0 - nx: 22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)) - p-map: 4.0.0 - p-map-series: 2.1.0 - p-queue: 6.6.2 - p-reduce: 2.1.0 - pacote: 21.0.1 - pify: 5.0.0 - read-cmd-shim: 4.0.0 - resolve-from: 5.0.0 - rimraf: 6.1.3 - semver: 7.7.2 - set-blocking: 2.0.0 - signal-exit: 3.0.7 - slash: 3.0.0 - ssri: 12.0.0 - string-width: 4.2.3 - tar: 7.5.8 - temp-dir: 1.0.0 - through: 2.3.8 - tinyglobby: 0.2.12 - upath: 2.0.1 - uuid: 11.1.0 - validate-npm-package-license: 3.0.4 - validate-npm-package-name: 6.0.2 - wide-align: 1.1.5 - write-file-atomic: 5.0.1 - write-pkg: 4.0.0 - yargs: 17.7.2 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - babel-plugin-macros - - debug - - supports-color - - typescript - - '@lifi/sdk-provider-bitcoin@4.0.0-alpha.20(@types/react@19.2.14)(bs58@6.0.0)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': - dependencies: - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bitcoinerlab/secp256k1': 1.2.0 - '@lifi/sdk': 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) bech32: 2.0.0 bitcoinjs-lib: 7.0.1(typescript@5.9.3) transitivePeerDependencies: @@ -19614,20 +19809,20 @@ snapshots: - utf-8-validate - zod - '@lifi/sdk-provider-ethereum@4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@lifi/sdk-provider-ethereum@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@lifi/sdk': 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@lifi/sdk-provider-solana@4.0.0-alpha.20(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@lifi/sdk-provider-solana@4.0.0-beta.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@lifi/sdk': 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@solana/kit': 6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@solana/kit': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/wallet-standard-features': 1.3.0 '@wallet-standard/base': 1.1.0 transitivePeerDependencies: @@ -19637,9 +19832,9 @@ snapshots: - utf-8-validate - zod - '@lifi/sdk-provider-sui@4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@lifi/sdk-provider-sui@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@lifi/sdk': 4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@mysten/sui': 2.6.0(typescript@5.9.3) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19649,9 +19844,9 @@ snapshots: - utf-8-validate - zod - '@lifi/sdk@3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@lifi/sdk@3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bitcoinerlab/secp256k1': 1.2.0 '@lifi/types': 17.65.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@mysten/sui': 1.45.2(typescript@5.9.3) @@ -19662,7 +19857,7 @@ snapshots: bech32: 2.0.0 bitcoinjs-lib: 7.0.1(typescript@5.9.3) bs58: 6.0.0 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19675,7 +19870,7 @@ snapshots: - utf-8-validate - zod - '@lifi/sdk@4.0.0-alpha.20(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@lifi/sdk@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@lifi/types': 17.65.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: @@ -19686,38 +19881,38 @@ snapshots: '@lifi/types@17.65.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@lifi/wallet-management@3.22.7(31c59d9f3fbfd42fafa0fe77eae7e68f)': + '@lifi/wallet-management@3.22.8(34b91203ca713c308f96c734a33217fc)': dependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/react': 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - i18next: 25.8.14(typescript@5.9.3) + i18next: 25.8.18(typescript@5.9.3) mitt: 3.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - react-i18next: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(a168feae2a0de4c1971a620e477734e8) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19735,31 +19930,31 @@ snapshots: - utf-8-validate - zod - '@lifi/wallet-management@3.22.7(b159cffdb7ba3293c16049419e8e00da)': + '@lifi/wallet-management@3.22.8(4fe09d18b121daf54023163592473233)': dependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/react': 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - i18next: 25.8.14(typescript@5.9.3) + i18next: 25.8.18(typescript@5.9.3) mitt: 3.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - react-i18next: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19777,31 +19972,31 @@ snapshots: - utf-8-validate - zod - '@lifi/widget-light@4.0.0-alpha.2(4b27d737bc10a9111015f3475fd674e9)': + '@lifi/widget-light@4.0.0-alpha.3(9e0844ef006464c0a121fb61d3af23df)': dependencies: react: 19.2.4 optionalDependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/react': 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': 1.1.0 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(a168feae2a0de4c1971a620e477734e8) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) - '@lifi/widget@3.40.11(bd4ee19128e786a3623abad2e2f500a0)': + '@lifi/widget@3.40.12(2fb7761314c756a9706d026ed291c31b)': dependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/react': 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.7(b159cffdb7ba3293c16049419e8e00da) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/wallet-management': 3.22.8(4fe09d18b121daf54023163592473233) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -19809,17 +20004,17 @@ snapshots: '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - i18next: 25.8.14(typescript@5.9.3) + i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - react-i18next: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) react-intersection-observer: 9.16.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-router-dom: 6.30.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-transition-group: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19838,19 +20033,19 @@ snapshots: - utf-8-validate - zod - '@lifi/widget@3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c)': + '@lifi/widget@3.40.12(6050907b036eca095d838803c2f05279)': dependencies: - '@bigmi/client': 0.7.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.0(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/react': 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.15.7(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.7(31c59d9f3fbfd42fafa0fe77eae7e68f) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/wallet-management': 3.22.8(34b91203ca713c308f96c734a33217fc) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -19858,17 +20053,17 @@ snapshots: '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - i18next: 25.8.14(typescript@5.9.3) + i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - react-i18next: 16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) + react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) react-intersection-observer: 9.16.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-router-dom: 6.30.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-transition-group: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(a168feae2a0de4c1971a620e477734e8) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19914,7 +20109,7 @@ snapshots: node-fetch: 2.7.0(encoding@0.1.13) nopt: 8.1.0 semver: 7.7.4 - tar: 7.5.10 + tar: 7.5.11 transitivePeerDependencies: - encoding - supports-color @@ -20046,14 +20241,14 @@ snapshots: dependencies: openapi-fetch: 0.13.8 - '@metamask/sdk-communication-layer@0.33.1(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.17)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))': + '@metamask/sdk-communication-layer@0.33.1(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))': dependencies: '@metamask/sdk-analytics': 0.0.5 bufferutil: 4.1.0 cross-fetch: 4.1.0(encoding@0.1.13) date-fns: 2.30.0 debug: 4.3.4 - eciesjs: 0.4.17 + eciesjs: 0.4.18 eventemitter2: 6.4.9 readable-stream: 3.6.2 socket.io-client: 4.8.3(bufferutil@4.1.0)(utf-8-validate@6.0.6) @@ -20072,13 +20267,13 @@ snapshots: '@metamask/onboarding': 1.0.1 '@metamask/providers': 16.1.0 '@metamask/sdk-analytics': 0.0.5 - '@metamask/sdk-communication-layer': 0.33.1(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.17)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)) + '@metamask/sdk-communication-layer': 0.33.1(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)) '@metamask/sdk-install-modal-web': 0.32.1 '@paulmillr/qr': 0.2.1 bowser: 2.14.1 cross-fetch: 4.1.0(encoding@0.1.13) debug: 4.3.4 - eciesjs: 0.4.17 + eciesjs: 0.4.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 obj-multiplex: 1.0.0 @@ -20138,7 +20333,7 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.4.3(supports-color@5.5.0) pony-cause: 2.1.11 semver: 7.7.4 uuid: 9.0.1 @@ -20152,7 +20347,7 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.4.3(supports-color@5.5.0) pony-cause: 2.1.11 semver: 7.7.4 uuid: 9.0.1 @@ -20409,6 +20604,32 @@ snapshots: - immer - react-dom - typescript + optional: true + + '@mysten/dapp-kit@1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': + dependencies: + '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/utils': 0.3.1 + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.6.0(typescript@5.9.3)) + '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@radix-ui/react-slot': 1.2.4(@types/react@19.2.14)(react@19.2.4) + '@tanstack/react-query': 5.90.21(react@19.2.4) + '@vanilla-extract/css': 1.18.0(babel-plugin-macros@3.1.0) + '@vanilla-extract/dynamic': 2.1.5 + '@vanilla-extract/recipes': 0.5.7(@vanilla-extract/css@1.18.0(babel-plugin-macros@3.1.0)) + clsx: 2.1.1 + react: 19.2.4 + zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + transitivePeerDependencies: + - '@types/react' + - '@types/react-dom' + - babel-plugin-macros + - immer + - react-dom + - typescript + - use-sync-external-store '@mysten/slush-wallet@0.2.12(typescript@5.9.3)': dependencies: @@ -20422,6 +20643,7 @@ snapshots: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' - typescript + optional: true '@mysten/slush-wallet@1.0.2(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3)': dependencies: @@ -20502,15 +20724,16 @@ snapshots: '@mysten/window-wallet-core@0.1.1(typescript@5.9.3)': dependencies: '@mysten/utils': 0.2.0 - jose: 6.2.0 + jose: 6.2.1 valibot: 1.2.0(typescript@5.9.3) transitivePeerDependencies: - typescript + optional: true '@mysten/window-wallet-core@0.1.3(typescript@5.9.3)': dependencies: '@mysten/utils': 0.3.1 - jose: 6.2.0 + jose: 6.2.1 valibot: 1.2.0(typescript@5.9.3) transitivePeerDependencies: - typescript @@ -20527,21 +20750,21 @@ snapshots: '@napi-rs/wasm-runtime@0.2.12': dependencies: - '@emnapi/core': 1.8.1 - '@emnapi/runtime': 1.8.1 + '@emnapi/core': 1.9.0 + '@emnapi/runtime': 1.9.0 '@tybys/wasm-util': 0.10.1 optional: true '@napi-rs/wasm-runtime@0.2.4': dependencies: - '@emnapi/core': 1.8.1 - '@emnapi/runtime': 1.8.1 + '@emnapi/core': 1.9.0 + '@emnapi/runtime': 1.9.0 '@tybys/wasm-util': 0.9.0 '@napi-rs/wasm-runtime@1.1.1': dependencies: - '@emnapi/core': 1.8.1 - '@emnapi/runtime': 1.8.1 + '@emnapi/core': 1.9.0 + '@emnapi/runtime': 1.9.0 '@tybys/wasm-util': 0.10.1 optional: true @@ -20750,13 +20973,13 @@ snapshots: npm-package-arg: 13.0.1 npm-pick-manifest: 11.0.3 npm-registry-fetch: 19.1.0 - pacote: 21.4.0 + pacote: 21.5.0 parse-conflict-json: 4.0.0 proc-log: 5.0.0 proggy: 3.0.0 promise-all-reject-late: 1.0.1 promise-call-limit: 3.0.2 - semver: 7.7.2 + semver: 7.7.4 ssri: 12.0.0 treeverse: 3.0.0 walk-up-path: 4.0.0 @@ -20769,11 +20992,11 @@ snapshots: '@npmcli/fs@4.0.0': dependencies: - semver: 7.7.2 + semver: 7.7.4 '@npmcli/fs@5.0.0': dependencies: - semver: 7.7.2 + semver: 7.7.4 '@npmcli/git@4.1.0': dependencies: @@ -20796,7 +21019,7 @@ snapshots: npm-pick-manifest: 10.0.0 proc-log: 5.0.0 promise-retry: 2.0.1 - semver: 7.7.2 + semver: 7.7.4 which: 5.0.0 '@npmcli/git@7.0.2': @@ -20807,7 +21030,7 @@ snapshots: lru-cache: 11.2.6 npm-pick-manifest: 11.0.3 proc-log: 6.1.0 - semver: 7.7.2 + semver: 7.7.4 which: 6.0.1 '@npmcli/installed-package-contents@3.0.0': @@ -20831,9 +21054,9 @@ snapshots: dependencies: cacache: 20.0.3 json-parse-even-better-errors: 5.0.0 - pacote: 21.4.0 + pacote: 21.5.0 proc-log: 6.1.0 - semver: 7.7.2 + semver: 7.7.4 transitivePeerDependencies: - supports-color @@ -20864,7 +21087,7 @@ snapshots: hosted-git-info: 9.0.2 json-parse-even-better-errors: 5.0.0 proc-log: 6.1.0 - semver: 7.7.2 + semver: 7.7.4 validate-npm-package-license: 3.0.4 '@npmcli/promise-spawn@6.0.2': @@ -20896,15 +21119,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@nuxt/cli@3.33.1(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2)': + '@nuxt/cli@3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2)': dependencies: - '@bomb.sh/tab': 0.0.12(cac@6.7.14)(citty@0.2.1)(commander@13.1.0) + '@bomb.sh/tab': 0.0.14(cac@6.7.14)(citty@0.2.1)(commander@13.1.0) '@clack/prompts': 1.1.0 c12: 3.3.3(magicast@0.5.2) citty: 0.2.1 confbox: 0.2.4 consola: 3.4.2 - copy-paste: 2.2.0 debug: 4.4.3(supports-color@5.5.0) defu: 6.1.4 exsolve: 1.0.8 @@ -20921,8 +21143,9 @@ snapshots: pkg-types: 2.3.0 scule: 1.3.0 semver: 7.7.4 - srvx: 0.11.8 + srvx: 0.11.9 std-env: 3.10.0 + tinyclip: 0.1.12 tinyexec: 1.0.2 ufo: 1.6.3 youch: 4.1.0 @@ -20936,11 +21159,11 @@ snapshots: '@nuxt/devalue@2.0.2': {} - '@nuxt/devtools-kit@2.7.0(magicast@0.3.5)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': + '@nuxt/devtools-kit@2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: - '@nuxt/kit': 3.21.1(magicast@0.3.5) + '@nuxt/kit': 3.21.2(magicast@0.3.5) execa: 8.0.1 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - magicast @@ -20955,12 +21178,12 @@ snapshots: prompts: 2.4.2 semver: 7.7.4 - '@nuxt/devtools@2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@nuxt/devtools@2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: - '@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) '@nuxt/devtools-wizard': 2.7.0 - '@nuxt/kit': 3.21.1(magicast@0.3.5) - '@vue/devtools-core': 7.7.9(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + '@nuxt/kit': 3.21.2(magicast@0.3.5) + '@vue/devtools-core': 7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) '@vue/devtools-kit': 7.7.9 birpc: 2.9.0 consola: 3.4.2 @@ -20981,13 +21204,13 @@ snapshots: perfect-debounce: 1.0.0 pkg-types: 2.3.0 semver: 7.7.4 - simple-git: 3.32.3 + simple-git: 3.33.0 sirv: 3.0.2 structured-clone-es: 1.0.0 tinyglobby: 0.2.15 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.1(magicast@0.3.5))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) - vite-plugin-vue-tracer: 1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + vite-plugin-vue-tracer: 1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) which: 5.0.0 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -21023,7 +21246,7 @@ snapshots: transitivePeerDependencies: - magicast - '@nuxt/kit@3.21.1(magicast@0.3.5)': + '@nuxt/kit@3.21.2(magicast@0.3.5)': dependencies: c12: 3.3.3(magicast@0.3.5) consola: 3.4.2 @@ -21051,7 +21274,7 @@ snapshots: '@nuxt/schema@3.17.7': dependencies: - '@vue/shared': 3.5.29 + '@vue/shared': 3.5.30 consola: 3.4.2 defu: 6.1.4 pathe: 2.0.3 @@ -21066,22 +21289,22 @@ snapshots: rc9: 3.0.0 std-env: 3.10.0 - '@nuxt/vite-builder@3.17.7(@biomejs/biome@2.4.6)(@types/node@25.3.5)(eslint@9.39.3(jiti@2.6.1))(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.29(typescript@5.9.3))(yaml@2.8.2)': + '@nuxt/vite-builder@3.17.7(@biomejs/biome@2.4.6)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)': dependencies: '@nuxt/kit': 3.17.7(magicast@0.5.2) '@rollup/plugin-replace': 6.0.3(rollup@4.59.0) - '@vitejs/plugin-vue': 5.2.4(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) - '@vitejs/plugin-vue-jsx': 4.2.0(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + '@vitejs/plugin-vue': 5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + '@vitejs/plugin-vue-jsx': 4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) autoprefixer: 10.4.27(postcss@8.5.8) consola: 3.4.2 - cssnano: 7.1.2(postcss@8.5.8) + cssnano: 7.1.3(postcss@8.5.8) defu: 6.1.4 esbuild: 0.25.12 escape-string-regexp: 5.0.0 exsolve: 1.0.8 externality: 1.0.2 get-port-please: 3.2.0 - h3: 1.15.5 + h3: 1.15.6 jiti: 2.6.1 knitwork: 1.3.0 magic-string: 0.30.21 @@ -21092,14 +21315,14 @@ snapshots: perfect-debounce: 1.0.0 pkg-types: 2.3.0 postcss: 8.5.8 - rollup-plugin-visualizer: 6.0.11(rollup@4.59.0) + rollup-plugin-visualizer: 6.0.11(rolldown@1.0.0-rc.9)(rollup@4.59.0) std-env: 3.10.0 ufo: 1.6.3 unenv: 2.0.0-rc.24 - vite: 6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-node: 3.2.4(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-plugin-checker: 0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.3(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) - vue: 3.5.29(typescript@5.9.3) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite-plugin-checker: 0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) + vue: 3.5.30(typescript@5.9.3) vue-bundle-renderer: 2.2.0 transitivePeerDependencies: - '@biomejs/biome' @@ -21133,7 +21356,7 @@ snapshots: enquirer: 2.3.6 minimatch: 10.2.4 nx: 22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)) - semver: 7.7.2 + semver: 7.7.4 tslib: 2.8.1 yargs-parser: 21.1.1 @@ -21232,7 +21455,7 @@ snapshots: dependencies: '@octokit/openapi-types': 24.2.0 - '@opensea/seaport-js@4.0.6(bufferutil@4.1.0)(utf-8-validate@6.0.6)': + '@opensea/seaport-js@4.0.7(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: ethers: 6.16.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) merkletreejs: 0.6.0 @@ -21289,6 +21512,10 @@ snapshots: '@oxc-parser/binding-win32-x64-msvc@0.76.0': optional: true + '@oxc-project/runtime@0.115.0': {} + + '@oxc-project/types@0.115.0': {} + '@oxc-project/types@0.76.0': {} '@oxc-resolver/binding-android-arm-eabi@11.19.1': @@ -21424,11 +21651,6 @@ snapshots: dependencies: lit: 3.3.0 - '@pivanov/utils@0.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': - dependencies: - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - '@pkgjs/parseargs@0.11.0': optional: true @@ -21448,12 +21670,12 @@ snapshots: '@poppinss/exception@1.2.3': {} - '@preact/signals-core@1.13.0': {} + '@preact/signals-core@1.14.0': {} - '@preact/signals@1.3.4(preact@10.28.4)': + '@preact/signals@1.3.4(preact@10.29.0)': dependencies: - '@preact/signals-core': 1.13.0 - preact: 10.28.4 + '@preact/signals-core': 1.14.0 + preact: 10.29.0 '@privy-io/api-base@1.7.0': dependencies: @@ -21461,11 +21683,11 @@ snapshots: '@privy-io/chains@0.0.2': {} - '@privy-io/ethereum@0.0.2(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@privy-io/ethereum@0.0.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@privy-io/js-sdk-core@0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@privy-io/js-sdk-core@0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@ethersproject/abstract-signer': 5.8.0 '@ethersproject/bignumber': 5.8.0 @@ -21481,12 +21703,12 @@ snapshots: fetch-retry: 6.0.0 jose: 4.15.9 js-cookie: 3.0.5 - libphonenumber-js: 1.12.38 + libphonenumber-js: 1.12.39 set-cookie-parser: 2.7.2 uuid: 9.0.1 optionalDependencies: - permissionless: 0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + permissionless: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -21496,15 +21718,15 @@ snapshots: dependencies: '@privy-io/api-base': 1.7.0 bs58: 6.0.0 - libphonenumber-js: 1.12.38 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + libphonenumber-js: 1.12.39 + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - '@privy-io/react-auth@2.25.0(f9baa64dc626fdaf447d2459a38205cf)': + '@privy-io/react-auth@2.25.0(a0260db9fc0bcaf84aa33a8add1778a8)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.2 @@ -21515,8 +21737,8 @@ snapshots: '@metamask/eth-sig-util': 6.0.2 '@privy-io/api-base': 1.7.0 '@privy-io/chains': 0.0.2 - '@privy-io/ethereum': 0.0.2(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@privy-io/js-sdk-core': 0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@privy-io/ethereum': 0.0.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@privy-io/js-sdk-core': 0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@privy-io/public-api': 2.45.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@reown/appkit': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@scure/base': 1.2.6 @@ -21549,13 +21771,13 @@ snapshots: stylis: 4.3.6 tinycolor2: 1.6.0 uuid: 9.0.1 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: - '@solana/kit': 5.5.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/kit': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/spl-token': 0.4.14(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) - permissionless: 0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + permissionless: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21588,12 +21810,12 @@ snapshots: - utf-8-validate - zod - '@privy-io/wagmi@1.0.6(fe4118b6da6b2ba2595cd60042f6170f)': + '@privy-io/wagmi@1.0.6(ba75cdb350cf85a71f2933e831bd3291)': dependencies: - '@privy-io/react-auth': 2.25.0(f9baa64dc626fdaf447d2459a38205cf) + '@privy-io/react-auth': 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) react: 19.2.4 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@protobuf-ts/grpcweb-transport@2.11.1': dependencies: @@ -21875,7 +22097,7 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@rainbow-me/rainbowkit@2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6))': + '@rainbow-me/rainbowkit@2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6))': dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) '@vanilla-extract/css': 1.17.3(babel-plugin-macros@3.1.0) @@ -21887,8 +22109,8 @@ snapshots: react-dom: 19.2.4(react@19.2.4) react-remove-scroll: 2.6.2(@types/react@19.2.14)(react@19.2.4) ua-parser-js: 1.0.41 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - babel-plugin-macros @@ -22007,7 +22229,7 @@ snapshots: optionalDependencies: '@types/react': 19.2.14 - '@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': + '@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)': dependencies: '@babel/core': 7.29.0 '@babel/generator': 7.29.1 @@ -22024,7 +22246,7 @@ snapshots: dedent: 1.7.2(babel-plugin-macros@3.1.0) es-module-lexer: 1.7.0 exit-hook: 2.2.1 - isbot: 5.1.35 + isbot: 5.1.36 jsesc: 3.0.2 lodash: 4.17.23 p-map: 7.0.4 @@ -22037,8 +22259,8 @@ snapshots: semver: 7.7.4 tinyglobby: 0.2.15 valibot: 1.2.0(typescript@5.9.3) - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-node: 3.2.4(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) optionalDependencies: '@react-router/serve': 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) typescript: 5.9.3 @@ -22065,9 +22287,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@react-router/fs-routes@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': + '@react-router/fs-routes@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': dependencies: - '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) + '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) minimatch: 9.0.9 optionalDependencies: typescript: 5.9.3 @@ -22079,9 +22301,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@react-router/remix-routes-option-adapter@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': + '@react-router/remix-routes-option-adapter@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': dependencies: - '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2) + '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) optionalDependencies: typescript: 5.9.3 @@ -22115,7 +22337,7 @@ snapshots: '@remix-run/css-bundle@2.17.4': {} - '@remix-run/dev@2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(yaml@2.8.2)': + '@remix-run/dev@2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)': dependencies: '@babel/core': 7.29.0 '@babel/generator': 7.29.1 @@ -22132,7 +22354,7 @@ snapshots: '@remix-run/router': 1.23.2 '@remix-run/server-runtime': 2.17.4(typescript@5.9.3) '@types/mdx': 2.0.13 - '@vanilla-extract/integration': 6.5.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(terser@5.46.0) + '@vanilla-extract/integration': 6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.0) arg: 5.0.2 cacache: 17.1.4 chalk: 4.1.2 @@ -22172,12 +22394,12 @@ snapshots: tar-fs: 2.1.4 tsconfig-paths: 4.2.0 valibot: 1.2.0(typescript@5.9.3) - vite-node: 3.2.4(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) ws: 7.5.10(bufferutil@4.1.0)(utf-8-validate@6.0.6) optionalDependencies: '@remix-run/serve': 2.17.4(typescript@5.9.3) typescript: 5.9.3 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -22386,7 +22608,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-adapter-wagmi@1.8.19(40e07c707f3a0532eb5e6bda99d729cd)': + '@reown/appkit-adapter-wagmi@1.8.19(cbba8c8e56bd71466029bf033b724b4b)': dependencies: '@reown/appkit': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-common': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -22395,13 +22617,13 @@ snapshots: '@reown/appkit-scaffold-ui': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(valtio@2.1.7(@types/react@19.2.14)(react@19.2.4))(zod@4.3.6) '@reown/appkit-utils': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(valtio@2.1.7(@types/react@19.2.14)(react@19.2.4))(zod@4.3.6) '@reown/appkit-wallet': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(a168feae2a0de4c1971a620e477734e8) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) optionalDependencies: - '@wagmi/connectors': 7.2.1(d529671fb59ad4e7ebd38e53a18b0a7a) + '@wagmi/connectors': 7.2.1(7e0d03651353772277bb3afae8ed51ab) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -22445,7 +22667,7 @@ snapshots: dependencies: big.js: 6.2.2 dayjs: 1.11.13 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -22458,7 +22680,7 @@ snapshots: '@reown/appkit-wallet': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -22619,7 +22841,7 @@ snapshots: '@walletconnect/logger': 3.0.2 '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.4.0(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -22681,7 +22903,7 @@ snapshots: bs58: 6.0.0 semver: 7.7.2 valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@lit/react': 1.0.8(@types/react@19.2.14) transitivePeerDependencies: @@ -22716,17 +22938,66 @@ snapshots: - utf-8-validate - zod - '@rolldown/pluginutils@1.0.0-rc.2': {} + '@rolldown/binding-android-arm64@1.0.0-rc.9': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-rc.9': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-rc.9': + optional: true - '@rolldown/pluginutils@1.0.0-rc.3': {} + '@rolldown/binding-freebsd-x64@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-rc.9': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.9': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.9': + dependencies: + '@napi-rs/wasm-runtime': 1.1.1 + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.27': {} + + '@rolldown/pluginutils@1.0.0-rc.2': {} '@rolldown/pluginutils@1.0.0-rc.7': {} + '@rolldown/pluginutils@1.0.0-rc.9': {} + '@rollup/plugin-alias@6.0.0(rollup@4.59.0)': optionalDependencies: rollup: 4.59.0 - '@rollup/plugin-commonjs@29.0.1(rollup@4.59.0)': + '@rollup/plugin-commonjs@29.0.2(rollup@4.59.0)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.59.0) commondir: 1.0.1 @@ -22877,7 +23148,7 @@ snapshots: '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.23.1 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -22945,7 +23216,7 @@ snapshots: '@scure/bip32@1.7.0': dependencies: - '@noble/curves': 1.9.7 + '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 @@ -23007,6 +23278,10 @@ snapshots: '@sigstore/core': 3.1.0 '@sigstore/protobuf-specs': 0.5.0 + '@simple-libs/child-process-utils@1.0.2': + dependencies: + '@simple-libs/stream-utils': 1.2.0 + '@simple-libs/stream-utils@1.2.0': {} '@simplewebauthn/browser@13.1.0': {} @@ -23127,14 +23402,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/accounts@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/accounts@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23152,13 +23427,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/addresses@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/addresses@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/assertions': 6.1.0(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) + '@solana/assertions': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23170,9 +23445,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/assertions@6.1.0(typescript@5.9.3)': + '@solana/assertions@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23213,9 +23488,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-core@6.1.0(typescript@5.9.3)': + '@solana/codecs-core@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23234,11 +23509,11 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-data-structures@6.1.0(typescript@5.9.3)': + '@solana/codecs-data-structures@6.3.0(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23267,10 +23542,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-numbers@6.1.0(typescript@5.9.3)': + '@solana/codecs-numbers@6.3.0(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23299,11 +23574,11 @@ snapshots: fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 - '@solana/codecs-strings@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/codecs-strings@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 @@ -23331,13 +23606,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/codecs@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/codecs@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/options': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/options': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23368,7 +23643,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/errors@6.1.0(typescript@5.9.3)': + '@solana/errors@6.3.0(typescript@5.9.3)': dependencies: chalk: 5.6.2 commander: 14.0.3 @@ -23379,7 +23654,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/fast-stable-stringify@6.1.0(typescript@5.9.3)': + '@solana/fast-stable-stringify@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23387,7 +23662,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/functional@6.1.0(typescript@5.9.3)': + '@solana/functional@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23404,14 +23679,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/instruction-plans@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/instruction-plans@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/promises': 6.1.0(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/promises': 6.3.0(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23424,10 +23699,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/instructions@6.1.0(typescript@5.9.3)': + '@solana/instructions@6.3.0(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23443,13 +23718,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/keys@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/keys@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/assertions': 6.1.0(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) + '@solana/assertions': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23486,32 +23761,32 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/kit@6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': - dependencies: - '@solana/accounts': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/instruction-plans': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/offchain-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/plugin-core': 6.1.0(typescript@5.9.3) - '@solana/plugin-interfaces': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/program-client-core': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/programs': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-api': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-parsed-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-subscriptions': 6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/sysvars': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-confirmation': 6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/kit@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + dependencies: + '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/offchain-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/plugin-core': 6.3.0(typescript@5.9.3) + '@solana/plugin-interfaces': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/program-client-core': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/programs': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-parsed-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-subscriptions': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/sysvars': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-confirmation': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23523,7 +23798,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/nominal-types@6.1.0(typescript@5.9.3)': + '@solana/nominal-types@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23542,16 +23817,16 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/offchain-messages@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/offchain-messages@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23580,13 +23855,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/options@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/options@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23596,35 +23871,35 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/plugin-core@6.1.0(typescript@5.9.3)': + '@solana/plugin-core@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 - '@solana/plugin-interfaces@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/plugin-interfaces@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instruction-plans': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/program-client-core@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/program-client-core@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/accounts': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/instruction-plans': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/plugin-interfaces': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-api': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/plugin-interfaces': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23639,10 +23914,10 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/programs@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/programs@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23652,7 +23927,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/promises@6.1.0(typescript@5.9.3)': + '@solana/promises@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23674,19 +23949,19 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-api@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-api@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-parsed-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-parsed-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23696,7 +23971,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-parsed-types@6.1.0(typescript@5.9.3)': + '@solana/rpc-parsed-types@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23704,7 +23979,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-spec-types@6.1.0(typescript@5.9.3)': + '@solana/rpc-spec-types@6.3.0(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23715,10 +23990,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-spec@6.1.0(typescript@5.9.3)': + '@solana/rpc-spec@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23736,15 +24011,15 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-subscriptions-api@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-subscriptions-api@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23763,12 +24038,12 @@ snapshots: - bufferutil - utf-8-validate - '@solana/rpc-subscriptions-channel-websocket@6.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/rpc-subscriptions-channel-websocket@6.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.1.0(typescript@5.9.3) - '@solana/subscribable': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) + '@solana/subscribable': 6.3.0(typescript@5.9.3) ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) optionalDependencies: typescript: 5.9.3 @@ -23785,12 +24060,12 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-subscriptions-spec@6.1.0(typescript@5.9.3)': + '@solana/rpc-subscriptions-spec@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/promises': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - '@solana/subscribable': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/promises': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/subscribable': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23814,19 +24089,19 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/rpc-subscriptions@6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/rpc-subscriptions@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/fast-stable-stringify': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/promises': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-subscriptions-api': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions-channel-websocket': 6.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-subscriptions-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/subscribable': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/fast-stable-stringify': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/promises': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-subscriptions-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions-channel-websocket': 6.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/subscribable': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23846,13 +24121,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-transformers@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-transformers@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23863,16 +24138,16 @@ snapshots: '@solana/errors': 5.5.1(typescript@5.9.3) '@solana/rpc-spec': 5.5.1(typescript@5.9.3) '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3) - undici-types: 7.22.0 + undici-types: 7.23.0 optionalDependencies: typescript: 5.9.3 - '@solana/rpc-transport-http@6.1.0(typescript@5.9.3)': + '@solana/rpc-transport-http@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - undici-types: 7.22.0 + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + undici-types: 7.23.0 optionalDependencies: typescript: 5.9.3 @@ -23889,14 +24164,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-types@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-types@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23918,17 +24193,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/fast-stable-stringify': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/rpc-api': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-spec': 6.1.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-transport-http': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/fast-stable-stringify': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-spec': 6.3.0(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-transport-http': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23950,17 +24225,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/signers@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/signers@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) - '@solana/offchain-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/offchain-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24034,9 +24309,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/subscribable@6.1.0(typescript@5.9.3)': + '@solana/subscribable@6.3.0(typescript@5.9.3)': dependencies: - '@solana/errors': 6.1.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -24051,12 +24326,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/sysvars@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/sysvars@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/accounts': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24081,18 +24358,18 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/transaction-confirmation@6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/transaction-confirmation@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/promises': 6.1.0(typescript@5.9.3) - '@solana/rpc': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions': 6.1.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/promises': 6.3.0(typescript@5.9.3) + '@solana/rpc': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24116,17 +24393,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/transaction-messages@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/transaction-messages@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24151,20 +24428,20 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/transactions@6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': - dependencies: - '@solana/addresses': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.1.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.1.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.1.0(typescript@5.9.3) - '@solana/codecs-strings': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.1.0(typescript@5.9.3) - '@solana/functional': 6.1.0(typescript@5.9.3) - '@solana/instructions': 6.1.0(typescript@5.9.3) - '@solana/keys': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.1.0(typescript@5.9.3) - '@solana/rpc-types': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.1.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + dependencies: + '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.0(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) + '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/functional': 6.3.0(typescript@5.9.3) + '@solana/instructions': 6.3.0(typescript@5.9.3) + '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24334,22 +24611,22 @@ snapshots: dependencies: acorn: 8.16.0 - '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)))(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) obug: 2.1.1 - svelte: 5.53.7 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + svelte: 5.53.11 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.53.7)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)))(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) deepmerge: 4.3.1 magic-string: 0.30.21 obug: 2.1.1 - svelte: 5.53.7 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vitefu: 1.1.2(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + svelte: 5.53.11 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) '@swc/core-darwin-arm64@1.15.18': optional: true @@ -24397,6 +24674,7 @@ snapshots: '@swc/core-win32-ia32-msvc': 1.15.18 '@swc/core-win32-x64-msvc': 1.15.18 '@swc/helpers': 0.5.19 + optional: true '@swc/counter@0.1.3': {} @@ -24416,6 +24694,7 @@ snapshots: '@swc/types@0.1.25': dependencies: '@swc/counter': 0.1.3 + optional: true '@tanstack/history@1.161.4': {} @@ -24426,20 +24705,20 @@ snapshots: '@tanstack/query-core': 5.90.20 react: 19.2.4 - '@tanstack/react-router@1.166.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@tanstack/react-router@1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: '@tanstack/history': 1.161.4 - '@tanstack/react-store': 0.9.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@tanstack/router-core': 1.166.2 - isbot: 5.1.35 + '@tanstack/react-store': 0.9.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/router-core': 1.166.7 + isbot: 5.1.36 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - '@tanstack/react-store@0.9.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@tanstack/react-store@0.9.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@tanstack/store': 0.9.1 + '@tanstack/store': 0.9.2 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) use-sync-external-store: 1.4.0(react@19.2.4) @@ -24450,17 +24729,17 @@ snapshots: react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - '@tanstack/router-core@1.166.2': + '@tanstack/router-core@1.166.7': dependencies: '@tanstack/history': 1.161.4 - '@tanstack/store': 0.9.1 + '@tanstack/store': 0.9.2 cookie-es: 2.0.0 - seroval: 1.5.0 - seroval-plugins: 1.5.0(seroval@1.5.0) + seroval: 1.5.1 + seroval-plugins: 1.5.1(seroval@1.5.1) tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - '@tanstack/store@0.9.1': {} + '@tanstack/store@0.9.2': {} '@tanstack/virtual-core@3.13.21': {} @@ -24537,7 +24816,7 @@ snapshots: bs58check: 4.0.0 buffer: 6.0.3 cross-fetch: 3.2.0(encoding@0.1.13) - hpke-js: 1.7.0 + hpke-js: 1.8.0 transitivePeerDependencies: - bufferutil - encoding @@ -24574,7 +24853,7 @@ snapshots: - utf-8-validate - zod - '@turnkey/viem@0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@turnkey/viem@0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@noble/curves': 1.8.0 '@openzeppelin/contracts': 4.9.6 @@ -24583,7 +24862,7 @@ snapshots: '@turnkey/sdk-browser': 5.8.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@turnkey/sdk-server': 4.7.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) cross-fetch: 4.1.0(encoding@0.1.13) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - encoding @@ -24596,7 +24875,7 @@ snapshots: '@turnkey/crypto': 2.5.0 '@turnkey/encoding': 0.5.0 optionalDependencies: - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -24648,7 +24927,7 @@ snapshots: '@types/connect@3.4.38': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@types/cookie@0.6.0': {} @@ -24668,7 +24947,7 @@ snapshots: '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@types/hast@2.3.10': dependencies: @@ -24716,7 +24995,7 @@ snapshots: dependencies: undici-types: 6.19.8 - '@types/node@25.3.5': + '@types/node@25.5.0': dependencies: undici-types: 7.18.2 @@ -24756,11 +25035,11 @@ snapshots: '@types/ws@7.4.7': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@types/ws@8.18.1': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 '@types/yargs-parser@21.0.3': {} @@ -24768,14 +25047,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.56.1(eslint@8.57.1)(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/type-utils': 8.56.1(eslint@8.57.1)(typescript@5.9.3) - '@typescript-eslint/utils': 8.56.1(eslint@8.57.1)(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.56.1 + '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/type-utils': 8.57.0(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/utils': 8.57.0(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.57.0 eslint: 8.57.1 ignore: 7.0.5 natural-compare: 1.4.0 @@ -24784,15 +25063,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/type-utils': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.56.1 - eslint: 9.39.3(jiti@2.6.1) + '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/type-utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.57.0 + eslint: 9.39.4(jiti@2.6.1) ignore: 7.0.5 natural-compare: 1.4.0 ts-api-utils: 2.4.0(typescript@5.9.3) @@ -24800,53 +25079,53 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3)': + '@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.56.1 + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.57.0 debug: 4.4.3(supports-color@5.5.0) eslint: 8.57.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.56.1 + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.57.0 debug: 4.4.3(supports-color@5.5.0) - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.56.1(typescript@5.9.3)': + '@typescript-eslint/project-service@8.57.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3) - '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3) + '@typescript-eslint/types': 8.57.0 debug: 4.4.3(supports-color@5.5.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.56.1': + '@typescript-eslint/scope-manager@8.57.0': dependencies: - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/visitor-keys': 8.56.1 + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/visitor-keys': 8.57.0 - '@typescript-eslint/tsconfig-utils@8.56.1(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.56.1(eslint@8.57.1)(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.57.0(eslint@8.57.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.56.1(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.57.0(eslint@8.57.1)(typescript@5.9.3) debug: 4.4.3(supports-color@5.5.0) eslint: 8.57.1 ts-api-utils: 2.4.0(typescript@5.9.3) @@ -24854,26 +25133,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) debug: 4.4.3(supports-color@5.5.0) - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) ts-api-utils: 2.4.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.56.1': {} + '@typescript-eslint/types@8.57.0': {} - '@typescript-eslint/typescript-estree@8.56.1(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.56.1(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3) - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/visitor-keys': 8.56.1 + '@typescript-eslint/project-service': 8.57.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3) + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/visitor-keys': 8.57.0 debug: 4.4.3(supports-color@5.5.0) minimatch: 10.2.4 semver: 7.7.4 @@ -24883,40 +25162,40 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.56.1(eslint@8.57.1)(typescript@5.9.3)': + '@typescript-eslint/utils@8.57.0(eslint@8.57.1)(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) eslint: 8.57.1 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3(jiti@2.6.1)) - '@typescript-eslint/scope-manager': 8.56.1 - '@typescript-eslint/types': 8.56.1 - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - eslint: 9.39.3(jiti@2.6.1) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.57.0 + '@typescript-eslint/types': 8.57.0 + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + eslint: 9.39.4(jiti@2.6.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.56.1': + '@typescript-eslint/visitor-keys@8.57.0': dependencies: - '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/types': 8.57.0 eslint-visitor-keys: 5.0.1 '@ungap/structured-clone@1.3.0': {} - '@unhead/vue@2.1.10(vue@3.5.29(typescript@5.9.3))': + '@unhead/vue@2.1.12(vue@3.5.30(typescript@5.9.3))': dependencies: hookable: 6.0.1 - unhead: 2.1.10 - vue: 3.5.29(typescript@5.9.3) + unhead: 2.1.12 + vue: 3.5.30(typescript@5.9.3) '@unrs/resolver-binding-android-arm-eabi@1.11.1': optional: true @@ -25025,7 +25304,7 @@ snapshots: dependencies: '@vanilla-extract/private': 1.0.9 - '@vanilla-extract/integration@6.5.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(terser@5.46.0)': + '@vanilla-extract/integration@6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.0)': dependencies: '@babel/core': 7.29.0 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) @@ -25038,8 +25317,8 @@ snapshots: lodash: 4.17.23 mlly: 1.8.1 outdent: 0.8.0 - vite: 5.4.21(@types/node@25.3.5)(terser@5.46.0) - vite-node: 1.6.1(@types/node@25.3.5)(terser@5.46.0) + vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) + vite-node: 1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -25081,98 +25360,97 @@ snapshots: - rollup - supports-color - '@vitejs/plugin-react-swc@4.2.3(@swc/helpers@0.5.19)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': - dependencies: - '@rolldown/pluginutils': 1.0.0-rc.2 - '@swc/core': 1.15.18(@swc/helpers@0.5.19) - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - transitivePeerDependencies: - - '@swc/helpers' - - '@vitejs/plugin-react@5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': + '@vitejs/plugin-react@4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) - '@rolldown/pluginutils': 1.0.0-rc.3 + '@rolldown/pluginutils': 1.0.0-beta.27 '@types/babel__core': 7.20.5 - react-refresh: 0.18.0 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + react-refresh: 0.17.0 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@4.2.0(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@vitejs/plugin-react@6.0.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + dependencies: + '@rolldown/pluginutils': 1.0.0-rc.7 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + + '@vitejs/plugin-vue-jsx@4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) - '@rolldown/pluginutils': 1.0.0-rc.7 + '@rolldown/pluginutils': 1.0.0-rc.9 '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0) - vite: 6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vue: 3.5.29(typescript@5.9.3) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) - '@rolldown/pluginutils': 1.0.0-rc.7 + '@rolldown/pluginutils': 1.0.0-rc.9 '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vue: 3.5.29(typescript@5.9.3) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.4(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@vitejs/plugin-vue@5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: - vite: 6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vue: 3.5.29(typescript@5.9.3) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vue: 3.5.30(typescript@5.9.3) - '@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@vitejs/plugin-vue@6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.2 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vue: 3.5.29(typescript@5.9.3) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vue: 3.5.30(typescript@5.9.3) - '@vitest/expect@4.0.18': + '@vitest/expect@4.1.0': dependencies: '@standard-schema/spec': 1.1.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.18 - '@vitest/utils': 4.0.18 + '@vitest/spy': 4.1.0 + '@vitest/utils': 4.1.0 chai: 6.2.2 - tinyrainbow: 3.0.3 + tinyrainbow: 3.1.0 - '@vitest/mocker@4.0.18(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': + '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: - '@vitest/spy': 4.0.18 + '@vitest/spy': 4.1.0 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - '@vitest/pretty-format@4.0.18': + '@vitest/pretty-format@4.1.0': dependencies: - tinyrainbow: 3.0.3 + tinyrainbow: 3.1.0 - '@vitest/runner@4.0.18': + '@vitest/runner@4.1.0': dependencies: - '@vitest/utils': 4.0.18 + '@vitest/utils': 4.1.0 pathe: 2.0.3 - '@vitest/snapshot@4.0.18': + '@vitest/snapshot@4.1.0': dependencies: - '@vitest/pretty-format': 4.0.18 + '@vitest/pretty-format': 4.1.0 + '@vitest/utils': 4.1.0 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.18': {} + '@vitest/spy@4.1.0': {} - '@vitest/utils@4.0.18': + '@vitest/utils@4.1.0': dependencies: - '@vitest/pretty-format': 4.0.18 - tinyrainbow: 3.0.3 + '@vitest/pretty-format': 4.1.0 + convert-source-map: 2.0.0 + tinyrainbow: 3.1.0 '@volar/language-core@2.4.28': dependencies: @@ -25186,15 +25464,15 @@ snapshots: path-browserify: 1.0.1 vscode-uri: 3.1.0 - '@vue-macros/common@3.0.0-beta.15(vue@3.5.29(typescript@5.9.3))': + '@vue-macros/common@3.0.0-beta.15(vue@3.5.30(typescript@5.9.3))': dependencies: - '@vue/compiler-sfc': 3.5.29 + '@vue/compiler-sfc': 3.5.30 ast-kit: 2.2.0 local-pkg: 1.1.2 magic-string-ast: 1.0.3 unplugin-utils: 0.2.5 optionalDependencies: - vue: 3.5.29(typescript@5.9.3) + vue: 3.5.30(typescript@5.9.3) '@vue/babel-helper-vue-transform-on@1.5.0': {} @@ -25210,7 +25488,7 @@ snapshots: '@babel/types': 7.29.0 '@vue/babel-helper-vue-transform-on': 1.5.0 '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.29.0) - '@vue/shared': 3.5.29 + '@vue/shared': 3.5.30 optionalDependencies: '@babel/core': 7.29.0 transitivePeerDependencies: @@ -25226,7 +25504,7 @@ snapshots: '@babel/types': 7.29.0 '@vue/babel-helper-vue-transform-on': 2.0.1 '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0) - '@vue/shared': 3.5.29 + '@vue/shared': 3.5.30 optionalDependencies: '@babel/core': 7.29.0 transitivePeerDependencies: @@ -25239,7 +25517,7 @@ snapshots: '@babel/helper-module-imports': 7.28.6(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.28.6 '@babel/parser': 7.29.0 - '@vue/compiler-sfc': 3.5.29 + '@vue/compiler-sfc': 3.5.30 transitivePeerDependencies: - supports-color @@ -25250,51 +25528,51 @@ snapshots: '@babel/helper-module-imports': 7.28.6(supports-color@5.5.0) '@babel/helper-plugin-utils': 7.28.6 '@babel/parser': 7.29.0 - '@vue/compiler-sfc': 3.5.29 + '@vue/compiler-sfc': 3.5.30 transitivePeerDependencies: - supports-color - '@vue/compiler-core@3.5.29': + '@vue/compiler-core@3.5.30': dependencies: '@babel/parser': 7.29.0 - '@vue/shared': 3.5.29 + '@vue/shared': 3.5.30 entities: 7.0.1 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.29': + '@vue/compiler-dom@3.5.30': dependencies: - '@vue/compiler-core': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/compiler-core': 3.5.30 + '@vue/shared': 3.5.30 - '@vue/compiler-sfc@3.5.29': + '@vue/compiler-sfc@3.5.30': dependencies: '@babel/parser': 7.29.0 - '@vue/compiler-core': 3.5.29 - '@vue/compiler-dom': 3.5.29 - '@vue/compiler-ssr': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/compiler-core': 3.5.30 + '@vue/compiler-dom': 3.5.30 + '@vue/compiler-ssr': 3.5.30 + '@vue/shared': 3.5.30 estree-walker: 2.0.2 magic-string: 0.30.21 postcss: 8.5.8 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.29': + '@vue/compiler-ssr@3.5.30': dependencies: - '@vue/compiler-dom': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/compiler-dom': 3.5.30 + '@vue/shared': 3.5.30 '@vue/devtools-api@6.6.4': {} - '@vue/devtools-core@7.7.9(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3))': + '@vue/devtools-core@7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@vue/devtools-kit': 7.7.9 '@vue/devtools-shared': 7.7.9 mitt: 3.0.1 nanoid: 5.1.6 pathe: 2.0.3 - vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) - vue: 3.5.29(typescript@5.9.3) + vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - vite @@ -25315,50 +25593,50 @@ snapshots: '@vue/language-core@3.2.5': dependencies: '@volar/language-core': 2.4.28 - '@vue/compiler-dom': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/compiler-dom': 3.5.30 + '@vue/shared': 3.5.30 alien-signals: 3.1.2 muggle-string: 0.4.1 path-browserify: 1.0.1 picomatch: 4.0.3 - '@vue/reactivity@3.5.29': + '@vue/reactivity@3.5.30': dependencies: - '@vue/shared': 3.5.29 + '@vue/shared': 3.5.30 - '@vue/runtime-core@3.5.29': + '@vue/runtime-core@3.5.30': dependencies: - '@vue/reactivity': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/reactivity': 3.5.30 + '@vue/shared': 3.5.30 - '@vue/runtime-dom@3.5.29': + '@vue/runtime-dom@3.5.30': dependencies: - '@vue/reactivity': 3.5.29 - '@vue/runtime-core': 3.5.29 - '@vue/shared': 3.5.29 + '@vue/reactivity': 3.5.30 + '@vue/runtime-core': 3.5.30 + '@vue/shared': 3.5.30 csstype: 3.2.3 - '@vue/server-renderer@3.5.29(vue@3.5.29(typescript@5.9.3))': + '@vue/server-renderer@3.5.30(vue@3.5.30(typescript@5.9.3))': dependencies: - '@vue/compiler-ssr': 3.5.29 - '@vue/shared': 3.5.29 - vue: 3.5.29(typescript@5.9.3) + '@vue/compiler-ssr': 3.5.30 + '@vue/shared': 3.5.30 + vue: 3.5.30(typescript@5.9.3) - '@vue/shared@3.5.29': {} + '@vue/shared@3.5.30': {} - '@wagmi/connectors@6.2.0(003ad763f1c7b59f1b2f924f86aa3843)': + '@wagmi/connectors@6.2.0(9efce2373b19f58f3fe45ad1830a1d0e)': dependencies: '@base-org/account': 2.4.0(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.6(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - '@gemini-wallet/core': 0.3.2(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@gemini-wallet/core': 0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@walletconnect/ethereum-provider': 2.21.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' - porto: 0.2.35(24f5adc8154a927e71c0f75cb97a0236) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + porto: 0.2.35(b56bdc6606f1758b7b087ff1c0afc5fd) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -25399,39 +25677,39 @@ snapshots: - wagmi - zod - '@wagmi/connectors@7.2.1(b30c426a9eaffde5a0e263e670d9515e)': + '@wagmi/connectors@7.2.1(7e0d03651353772277bb3afae8ed51ab)': dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@walletconnect/ethereum-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - porto: 0.2.37(64c1d34846c4ed68f9fe2020443c4f38) + '@walletconnect/ethereum-provider': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) + porto: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) typescript: 5.9.3 - '@wagmi/connectors@7.2.1(d529671fb59ad4e7ebd38e53a18b0a7a)': + '@wagmi/connectors@7.2.1(b2c4187e18adabafd3d4e9ecc6ff0b24)': dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@walletconnect/ethereum-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - porto: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) + '@walletconnect/ethereum-provider': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) + porto: 0.2.37(4dd7932f2eb85b1ba405d8aeacd4ca3f) typescript: 5.9.3 - '@wagmi/core@2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@wagmi/core@2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: eventemitter3: 5.0.1 mipd: 0.0.7(typescript@5.9.3) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/query-core': 5.90.20 @@ -25442,11 +25720,11 @@ snapshots: - react - use-sync-external-store - '@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: eventemitter3: 5.0.1 mipd: 0.0.7(typescript@5.9.3) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/query-core': 5.90.20 @@ -25704,6 +25982,50 @@ snapshots: - utf-8-validate - zod + '@walletconnect/core@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + 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.1.0)(utf-8-validate@6.0.6) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/logger': 3.0.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.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/utils': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.44.0 + events: 3.3.0 + uint8arrays: 3.1.1 + 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/functions' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + '@walletconnect/environment@1.0.1': dependencies: tslib: 1.14.1 @@ -25843,7 +26165,7 @@ snapshots: - utf-8-validate - zod - '@walletconnect/ethereum-provider@2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': + '@walletconnect/ethereum-provider@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@reown/appkit': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) @@ -25852,10 +26174,10 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) '@walletconnect/logger': 3.0.2 - '@walletconnect/sign-client': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@walletconnect/types': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) - '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@walletconnect/utils': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6) + '@walletconnect/sign-client': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@walletconnect/types': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/universal-provider': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@walletconnect/utils': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26133,6 +26455,42 @@ snapshots: - utf-8-validate - zod + '@walletconnect/sign-client@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + dependencies: + '@walletconnect/core': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 3.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/utils': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6) + 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/functions' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + '@walletconnect/time@1.0.2': dependencies: tslib: 1.14.1 @@ -26253,6 +26611,35 @@ snapshots: - ioredis - uploadthing + '@walletconnect/types@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/logger': 3.0.2 + 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/functions' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing + '@walletconnect/universal-provider@2.21.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@walletconnect/events': 1.0.1 @@ -26413,6 +26800,46 @@ snapshots: - utf-8-validate - zod + '@walletconnect/universal-provider@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/logger': 3.0.2 + '@walletconnect/sign-client': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@walletconnect/types': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/utils': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6) + es-toolkit: 1.44.0 + 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/functions' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + '@walletconnect/utils@2.21.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@noble/ciphers': 1.2.1 @@ -26595,6 +27022,50 @@ snapshots: - uploadthing - zod + '@walletconnect/utils@2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(zod@4.3.6)': + dependencies: + '@msgpack/msgpack': 3.1.3 + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.9.7 + '@noble/hashes': 1.8.0 + '@scure/base': 1.2.6 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/logger': 3.0.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.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(db0@0.3.4)(ioredis@5.10.0) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + blakejs: 1.2.1 + detect-browser: 5.3.0 + ox: 0.9.3(typescript@5.9.3)(zod@4.3.6) + uint8arrays: 3.1.1 + 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/functions' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - typescript + - uploadthing + - zod + '@walletconnect/window-getters@1.0.1': dependencies: tslib: 1.14.1 @@ -26615,31 +27086,31 @@ snapshots: js-yaml: 3.14.2 tslib: 2.8.1 - '@zerodev/ecdsa-validator@5.4.9(@zerodev/sdk@5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/ecdsa-validator@5.4.9(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@zerodev/sdk': 5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/multi-chain-ecdsa-validator@5.4.5(@zerodev/sdk@5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/multi-chain-ecdsa-validator@5.4.5(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@simplewebauthn/browser': 9.0.1 '@simplewebauthn/typescript-types': 8.3.4 - '@zerodev/sdk': 5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/webauthn-key': 5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/webauthn-key': 5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) merkletreejs: 0.3.11 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/sdk@5.5.7(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: semver: 7.7.4 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/webauthn-key@5.5.0(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@noble/curves': 1.9.7 '@simplewebauthn/browser': 8.3.7 '@simplewebauthn/types': 12.0.0 - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@zkochan/js-yaml@0.0.7': dependencies: @@ -26936,7 +27407,7 @@ snapshots: autoprefixer@10.4.27(postcss@8.5.8): dependencies: browserslist: 4.28.1 - caniuse-lite: 1.0.30001777 + caniuse-lite: 1.0.30001778 fraction.js: 5.3.4 picocolors: 1.1.1 postcss: 8.5.8 @@ -27103,7 +27574,7 @@ snapshots: dependencies: bare-events: 2.8.2 bare-path: 3.0.0 - bare-stream: 2.8.0(bare-events@2.8.2) + bare-stream: 2.8.1(bare-events@2.8.2) bare-url: 2.3.2 fast-fifo: 1.3.2 transitivePeerDependencies: @@ -27116,7 +27587,7 @@ snapshots: dependencies: bare-os: 3.7.1 - bare-stream@2.8.0(bare-events@2.8.2): + bare-stream@2.8.1(bare-events@2.8.2): dependencies: streamx: 2.23.0 teex: 1.0.1 @@ -27138,7 +27609,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.10.0: {} + baseline-browser-mapping@2.10.7: {} basic-auth@2.0.1: dependencies: @@ -27179,7 +27650,7 @@ snapshots: uint8array-tools: 0.0.9 varuint-bitcoin: 2.0.0 - bippy@0.3.34(@types/react@19.2.14)(react@19.2.4): + bippy@0.5.32(@types/react@19.2.14)(react@19.2.4): dependencies: '@types/react-reconciler': 0.28.9(@types/react@19.2.14) react: 19.2.4 @@ -27346,9 +27817,9 @@ snapshots: browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.10.0 - caniuse-lite: 1.0.30001777 - electron-to-chromium: 1.5.307 + baseline-browser-mapping: 2.10.7 + caniuse-lite: 1.0.30001778 + electron-to-chromium: 1.5.313 node-releases: 2.0.36 update-browserslist-db: 1.2.3(browserslist@4.28.1) @@ -27513,11 +27984,11 @@ snapshots: caniuse-api@3.0.0: dependencies: browserslist: 4.28.1 - caniuse-lite: 1.0.30001777 + caniuse-lite: 1.0.30001778 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001777: {} + caniuse-lite@1.0.30001778: {} canonicalize@2.1.0: {} @@ -27583,7 +28054,7 @@ snapshots: chrome-launcher@0.15.2: dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -27592,7 +28063,7 @@ snapshots: chromium-edge-launcher@0.2.0: dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -27605,7 +28076,7 @@ snapshots: ci-info@3.9.0: {} - ci-info@4.4.0: {} + ci-info@4.3.1: {} cipher-base@1.0.7: dependencies: @@ -27790,12 +28261,12 @@ snapshots: transitivePeerDependencies: - supports-color - connectkit@1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): + connectkit@1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) buffer: 6.0.3 detect-browser: 5.3.0 - family: 0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + family: 0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) framer-motion: 6.5.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) qrcode: 1.5.4 react: 19.2.4 @@ -27804,8 +28275,8 @@ snapshots: react-use-measure: 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) resize-observer-polyfill: 1.5.1 styled-components: 5.3.11(@babel/core@7.29.0)(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@babel/core' - react-is @@ -27932,7 +28403,7 @@ snapshots: handlebars: 4.7.8 json-stringify-safe: 5.0.1 meow: 8.1.2 - semver: 7.7.2 + semver: 7.7.4 split: 1.0.1 conventional-changelog@3.1.25: @@ -28026,17 +28497,13 @@ snapshots: graceful-fs: 4.2.11 p-event: 6.0.1 - copy-paste@2.2.0: - dependencies: - iconv-lite: 0.4.24 - core-js@3.48.0: {} core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@6.2.0(@types/node@25.3.5)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3): + cosmiconfig-typescript-loader@6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3): dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 cosmiconfig: 9.0.1(typescript@5.9.3) jiti: 2.6.1 typescript: 5.9.3 @@ -28192,47 +28659,47 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.10(postcss@8.5.8): + cssnano-preset-default@7.0.11(postcss@8.5.8): dependencies: browserslist: 4.28.1 css-declaration-sorter: 7.3.1(postcss@8.5.8) cssnano-utils: 5.0.1(postcss@8.5.8) postcss: 8.5.8 postcss-calc: 10.1.1(postcss@8.5.8) - postcss-colormin: 7.0.5(postcss@8.5.8) - postcss-convert-values: 7.0.8(postcss@8.5.8) - postcss-discard-comments: 7.0.5(postcss@8.5.8) + postcss-colormin: 7.0.6(postcss@8.5.8) + postcss-convert-values: 7.0.9(postcss@8.5.8) + postcss-discard-comments: 7.0.6(postcss@8.5.8) postcss-discard-duplicates: 7.0.2(postcss@8.5.8) postcss-discard-empty: 7.0.1(postcss@8.5.8) postcss-discard-overridden: 7.0.1(postcss@8.5.8) postcss-merge-longhand: 7.0.5(postcss@8.5.8) - postcss-merge-rules: 7.0.7(postcss@8.5.8) + postcss-merge-rules: 7.0.8(postcss@8.5.8) postcss-minify-font-values: 7.0.1(postcss@8.5.8) postcss-minify-gradients: 7.0.1(postcss@8.5.8) - postcss-minify-params: 7.0.5(postcss@8.5.8) - postcss-minify-selectors: 7.0.5(postcss@8.5.8) + postcss-minify-params: 7.0.6(postcss@8.5.8) + postcss-minify-selectors: 7.0.6(postcss@8.5.8) postcss-normalize-charset: 7.0.1(postcss@8.5.8) postcss-normalize-display-values: 7.0.1(postcss@8.5.8) postcss-normalize-positions: 7.0.1(postcss@8.5.8) postcss-normalize-repeat-style: 7.0.1(postcss@8.5.8) postcss-normalize-string: 7.0.1(postcss@8.5.8) postcss-normalize-timing-functions: 7.0.1(postcss@8.5.8) - postcss-normalize-unicode: 7.0.5(postcss@8.5.8) + postcss-normalize-unicode: 7.0.6(postcss@8.5.8) postcss-normalize-url: 7.0.1(postcss@8.5.8) postcss-normalize-whitespace: 7.0.1(postcss@8.5.8) postcss-ordered-values: 7.0.2(postcss@8.5.8) - postcss-reduce-initial: 7.0.5(postcss@8.5.8) + postcss-reduce-initial: 7.0.6(postcss@8.5.8) postcss-reduce-transforms: 7.0.1(postcss@8.5.8) - postcss-svgo: 7.1.0(postcss@8.5.8) - postcss-unique-selectors: 7.0.4(postcss@8.5.8) + postcss-svgo: 7.1.1(postcss@8.5.8) + postcss-unique-selectors: 7.0.5(postcss@8.5.8) cssnano-utils@5.0.1(postcss@8.5.8): dependencies: postcss: 8.5.8 - cssnano@7.1.2(postcss@8.5.8): + cssnano@7.1.3(postcss@8.5.8): dependencies: - cssnano-preset-default: 7.0.10(postcss@8.5.8) + cssnano-preset-default: 7.0.11(postcss@8.5.8) lilconfig: 3.1.3 postcss: 8.5.8 @@ -28244,7 +28711,7 @@ snapshots: cuer@0.0.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3): dependencies: - qr: 0.5.4 + qr: 0.5.5 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) optionalDependencies: @@ -28254,8 +28721,6 @@ snapshots: dargs@7.0.0: {} - dargs@8.1.0: {} - data-uri-to-buffer@3.0.1: {} data-view-buffer@1.0.2: @@ -28444,7 +28909,7 @@ snapshots: detective-typescript@14.0.0(typescript@5.9.3): dependencies: - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) ast-module-types: 6.0.1 node-source-walk: 7.0.1 typescript: 5.9.3 @@ -28454,7 +28919,7 @@ snapshots: detective-vue2@2.2.0(typescript@5.9.3): dependencies: '@dependents/detective-less': 5.0.1 - '@vue/compiler-sfc': 3.5.29 + '@vue/compiler-sfc': 3.5.30 detective-es6: 5.0.1 detective-sass: 6.0.1 detective-scss: 5.0.1 @@ -28464,7 +28929,7 @@ snapshots: transitivePeerDependencies: - supports-color - devalue@5.6.3: {} + devalue@5.6.4: {} diff@5.2.2: {} @@ -28566,7 +29031,7 @@ snapshots: eastasianwidth@0.2.0: {} - eciesjs@0.4.17: + eciesjs@0.4.18: dependencies: '@ecies/ciphers': 0.2.5(@noble/ciphers@1.3.0) '@noble/ciphers': 1.3.0 @@ -28585,7 +29050,7 @@ snapshots: dependencies: jake: 10.9.4 - electron-to-chromium@1.5.307: {} + electron-to-chromium@1.5.313: {} elliptic@6.6.1: dependencies: @@ -28725,7 +29190,7 @@ snapshots: es-errors@1.3.0: {} - es-iterator-helpers@1.2.2: + es-iterator-helpers@1.3.0: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 @@ -28742,6 +29207,7 @@ snapshots: has-symbols: 1.1.0 internal-slot: 1.1.0 iterator.prototype: 1.1.5 + math-intrinsics: 1.1.0 safe-array-concat: 1.1.3 es-module-lexer@1.7.0: {} @@ -28868,34 +29334,34 @@ snapshots: '@esbuild/win32-ia32': 0.25.12 '@esbuild/win32-x64': 0.25.12 - esbuild@0.27.3: - optionalDependencies: - '@esbuild/aix-ppc64': 0.27.3 - '@esbuild/android-arm': 0.27.3 - '@esbuild/android-arm64': 0.27.3 - '@esbuild/android-x64': 0.27.3 - '@esbuild/darwin-arm64': 0.27.3 - '@esbuild/darwin-x64': 0.27.3 - '@esbuild/freebsd-arm64': 0.27.3 - '@esbuild/freebsd-x64': 0.27.3 - '@esbuild/linux-arm': 0.27.3 - '@esbuild/linux-arm64': 0.27.3 - '@esbuild/linux-ia32': 0.27.3 - '@esbuild/linux-loong64': 0.27.3 - '@esbuild/linux-mips64el': 0.27.3 - '@esbuild/linux-ppc64': 0.27.3 - '@esbuild/linux-riscv64': 0.27.3 - '@esbuild/linux-s390x': 0.27.3 - '@esbuild/linux-x64': 0.27.3 - '@esbuild/netbsd-arm64': 0.27.3 - '@esbuild/netbsd-x64': 0.27.3 - '@esbuild/openbsd-arm64': 0.27.3 - '@esbuild/openbsd-x64': 0.27.3 - '@esbuild/openharmony-arm64': 0.27.3 - '@esbuild/sunos-x64': 0.27.3 - '@esbuild/win32-arm64': 0.27.3 - '@esbuild/win32-ia32': 0.27.3 - '@esbuild/win32-x64': 0.27.3 + esbuild@0.27.4: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.4 + '@esbuild/android-arm': 0.27.4 + '@esbuild/android-arm64': 0.27.4 + '@esbuild/android-x64': 0.27.4 + '@esbuild/darwin-arm64': 0.27.4 + '@esbuild/darwin-x64': 0.27.4 + '@esbuild/freebsd-arm64': 0.27.4 + '@esbuild/freebsd-x64': 0.27.4 + '@esbuild/linux-arm': 0.27.4 + '@esbuild/linux-arm64': 0.27.4 + '@esbuild/linux-ia32': 0.27.4 + '@esbuild/linux-loong64': 0.27.4 + '@esbuild/linux-mips64el': 0.27.4 + '@esbuild/linux-ppc64': 0.27.4 + '@esbuild/linux-riscv64': 0.27.4 + '@esbuild/linux-s390x': 0.27.4 + '@esbuild/linux-x64': 0.27.4 + '@esbuild/netbsd-arm64': 0.27.4 + '@esbuild/netbsd-x64': 0.27.4 + '@esbuild/openbsd-arm64': 0.27.4 + '@esbuild/openbsd-x64': 0.27.4 + '@esbuild/openharmony-arm64': 0.27.4 + '@esbuild/sunos-x64': 0.27.4 + '@esbuild/win32-arm64': 0.27.4 + '@esbuild/win32-ia32': 0.27.4 + '@esbuild/win32-x64': 0.27.4 escalade@3.2.0: {} @@ -28921,12 +29387,12 @@ snapshots: dependencies: '@next/eslint-plugin-next': 14.2.32 '@rushstack/eslint-patch': 1.16.1 - '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3) - '@typescript-eslint/parser': 8.56.1(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1) eslint-plugin-react: 7.37.5(eslint@8.57.1) eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1) @@ -28945,7 +29411,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@5.5.0) @@ -28956,22 +29422,22 @@ snapshots: tinyglobby: 0.2.15 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.56.1(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28982,7 +29448,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -28994,7 +29460,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.56.1(eslint@8.57.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -29023,20 +29489,20 @@ snapshots: dependencies: eslint: 8.57.1 - eslint-plugin-react-hooks@7.0.1(eslint@9.39.3(jiti@2.6.1)): + eslint-plugin-react-hooks@7.0.1(eslint@9.39.4(jiti@2.6.1)): dependencies: '@babel/core': 7.29.0 '@babel/parser': 7.29.0 - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) hermes-parser: 0.25.1 zod: 4.3.6 zod-validation-error: 4.0.2(zod@4.3.6) transitivePeerDependencies: - supports-color - eslint-plugin-react-refresh@0.4.26(eslint@9.39.3(jiti@2.6.1)): + eslint-plugin-react-refresh@0.5.2(eslint@9.39.4(jiti@2.6.1)): dependencies: - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) eslint-plugin-react@7.37.5(eslint@8.57.1): dependencies: @@ -29045,7 +29511,7 @@ snapshots: array.prototype.flatmap: 1.3.3 array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 - es-iterator-helpers: 1.2.2 + es-iterator-helpers: 1.3.0 eslint: 8.57.1 estraverse: 5.3.0 hasown: 2.0.2 @@ -29119,15 +29585,15 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@9.39.3(jiti@2.6.1): + eslint@9.39.4(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.3(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.2 - '@eslint/config-array': 0.21.1 + '@eslint/config-array': 0.21.2 '@eslint/config-helpers': 0.4.2 '@eslint/core': 0.17.0 - '@eslint/eslintrc': 3.3.4 - '@eslint/js': 9.39.3 + '@eslint/eslintrc': 3.3.5 + '@eslint/js': 9.39.4 '@eslint/plugin-kit': 0.4.1 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 @@ -29292,7 +29758,7 @@ snapshots: eval@0.1.8: dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 require-like: 0.1.2 event-target-shim@5.0.1: {} @@ -29414,12 +29880,12 @@ snapshots: eyes@0.1.8: {} - family@0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): + family@0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): optionalDependencies: react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) fast-copy@3.0.2: {} @@ -29561,18 +30027,18 @@ snapshots: flat-cache@3.2.0: dependencies: - flatted: 3.3.4 + flatted: 3.4.1 keyv: 4.5.4 rimraf: 3.0.2 flat-cache@4.0.1: dependencies: - flatted: 3.3.4 + flatted: 3.4.1 keyv: 4.5.4 flat@5.0.2: {} - flatted@3.3.4: {} + flatted@3.4.1: {} flow-enums-runtime@0.0.6: {} @@ -29673,9 +30139,6 @@ snapshots: fs.realpath@1.0.0: {} - fsevents@2.3.2: - optional: true - fsevents@2.3.3: optional: true @@ -29789,11 +30252,13 @@ snapshots: meow: 8.1.2 split2: 3.2.2 - git-raw-commits@4.0.0: + git-raw-commits@5.0.1(conventional-commits-parser@6.3.0): dependencies: - dargs: 8.1.0 - meow: 12.1.1 - split2: 4.2.0 + '@conventional-changelog/git-client': 2.6.0(conventional-commits-parser@6.3.0) + meow: 13.2.0 + transitivePeerDependencies: + - conventional-commits-filter + - conventional-commits-parser git-remote-origin-url@2.0.0: dependencies: @@ -29808,7 +30273,7 @@ snapshots: git-semver-tags@5.0.1: dependencies: meow: 8.1.2 - semver: 7.7.2 + semver: 7.7.4 git-up@7.0.0: dependencies: @@ -29941,7 +30406,7 @@ snapshots: dependencies: duplexer: 0.1.2 - h3@1.15.5: + h3@1.15.6: dependencies: cookie-es: 1.2.2 crossws: 0.3.5 @@ -30063,7 +30528,7 @@ snapshots: dependencies: react-is: 16.13.1 - hono@4.12.5: {} + hono@4.12.7: {} hookable@5.5.3: {} @@ -30087,13 +30552,13 @@ snapshots: dependencies: lru-cache: 11.2.6 - hpke-js@1.7.0: + hpke-js@1.8.0: dependencies: - '@hpke/chacha20poly1305': 1.7.1 - '@hpke/common': 1.9.0 - '@hpke/core': 1.8.0 - '@hpke/dhkem-x25519': 1.7.0 - '@hpke/dhkem-x448': 1.7.0 + '@hpke/chacha20poly1305': 1.8.0 + '@hpke/common': 1.10.1 + '@hpke/core': 1.9.0 + '@hpke/dhkem-x25519': 1.8.0 + '@hpke/dhkem-x448': 1.8.0 html-parse-stringify@3.0.1: dependencies: @@ -30151,7 +30616,7 @@ snapshots: dependencies: '@babel/runtime': 7.28.6 - i18next@25.8.14(typescript@5.9.3): + i18next@25.8.18(typescript@5.9.3): dependencies: '@babel/runtime': 7.28.6 optionalDependencies: @@ -30208,8 +30673,9 @@ snapshots: import-meta-resolve@4.2.0: {} - impound@1.1.2: + impound@1.1.5: dependencies: + '@jridgewell/trace-mapping': 0.3.31 es-module-lexer: 2.0.0 pathe: 2.0.3 unplugin: 3.0.0 @@ -30240,23 +30706,23 @@ snapshots: npm-package-arg: 13.0.1 promzard: 2.0.0 read: 4.1.0 - semver: 7.7.2 + semver: 7.7.4 validate-npm-package-license: 3.0.4 validate-npm-package-name: 6.0.2 inline-style-parser@0.1.1: {} - inquirer@12.9.6(@types/node@25.3.5): + inquirer@12.9.6(@types/node@25.5.0): dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.3.5) - '@inquirer/prompts': 7.10.1(@types/node@25.3.5) - '@inquirer/type': 3.0.10(@types/node@25.3.5) + '@inquirer/core': 10.3.2(@types/node@25.5.0) + '@inquirer/prompts': 7.10.1(@types/node@25.5.0) + '@inquirer/type': 3.0.10(@types/node@25.5.0) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 internal-slot@1.1.0: dependencies: @@ -30534,7 +31000,7 @@ snapshots: isarray@2.0.5: {} - isbot@5.1.35: {} + isbot@5.1.36: {} isexe@2.0.0: {} @@ -30631,19 +31097,19 @@ snapshots: - bufferutil - utf-8-validate - jest-diff@30.2.0: + jest-diff@30.3.0: dependencies: - '@jest/diff-sequences': 30.0.1 + '@jest/diff-sequences': 30.3.0 '@jest/get-type': 30.1.0 chalk: 4.1.2 - pretty-format: 30.2.0 + pretty-format: 30.3.0 jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 25.3.5 + '@types/node': 25.5.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -30653,7 +31119,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 25.3.5 + '@types/node': 25.5.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -30680,7 +31146,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 25.3.5 + '@types/node': 25.5.0 jest-util: 29.7.0 jest-regex-util@29.6.3: {} @@ -30688,7 +31154,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 25.3.5 + '@types/node': 25.5.0 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -30705,7 +31171,7 @@ snapshots: jest-worker@29.7.0: dependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -30714,7 +31180,7 @@ snapshots: jose@4.15.9: {} - jose@6.2.0: {} + jose@6.2.1: {} joycon@3.1.1: {} @@ -30825,14 +31291,13 @@ snapshots: klona@2.0.6: {} - knip@5.85.0(@types/node@25.3.5)(typescript@5.9.3): + knip@5.86.0(@types/node@25.5.0)(typescript@5.9.3): dependencies: '@nodelib/fs.walk': 1.2.8 - '@types/node': 25.3.5 + '@types/node': 25.5.0 fast-glob: 3.3.3 formatly: 0.3.0 jiti: 2.6.1 - js-yaml: 4.1.1 minimist: 1.2.8 oxc-resolver: 11.19.1 picocolors: 1.1.1 @@ -30840,6 +31305,8 @@ snapshots: smol-toml: 1.6.0 strip-json-comments: 5.0.3 typescript: 5.9.3 + unbash: 2.2.0 + yaml: 2.8.2 zod: 4.3.6 knitwork@1.3.0: {} @@ -30859,9 +31326,8 @@ snapshots: dependencies: readable-stream: 2.3.8 - lerna@9.0.5(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.3.5)(babel-plugin-macros@3.1.0): + lerna@9.0.6(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.5.0)(babel-plugin-macros@3.1.0): dependencies: - '@lerna/create': 9.0.5(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(typescript@5.9.3) '@npmcli/arborist': 9.1.6 '@npmcli/package-json': 7.0.2 '@npmcli/run-script': 10.0.3 @@ -30871,6 +31337,7 @@ snapshots: aproba: 2.0.0 byte-size: 8.1.1 chalk: 4.1.0 + ci-info: 4.3.1 cmd-shim: 6.0.3 color-support: 1.1.3 columnify: 1.6.0 @@ -30891,10 +31358,10 @@ snapshots: import-local: 3.1.0 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@25.3.5) + inquirer: 12.9.6(@types/node@25.5.0) is-ci: 3.0.1 is-stream: 2.0.0 - jest-diff: 30.2.0 + jest-diff: 30.3.0 js-yaml: 4.1.1 libnpmaccess: 10.0.3 libnpmpublish: 11.1.2 @@ -30924,7 +31391,7 @@ snapshots: slash: 3.0.0 ssri: 12.0.0 string-width: 4.2.3 - tar: 7.5.8 + tar: 7.5.11 temp-dir: 1.0.0 through: 2.3.8 tinyglobby: 0.2.12 @@ -30963,17 +31430,17 @@ snapshots: libnpmpublish@11.1.2: dependencies: '@npmcli/package-json': 7.0.2 - ci-info: 4.4.0 + ci-info: 4.3.1 npm-package-arg: 13.0.1 npm-registry-fetch: 19.1.0 proc-log: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 sigstore: 4.1.0 ssri: 12.0.0 transitivePeerDependencies: - supports-color - libphonenumber-js@1.12.38: {} + libphonenumber-js@1.12.39: {} lighthouse-logger@1.4.2: dependencies: @@ -30982,13 +31449,62 @@ snapshots: transitivePeerDependencies: - supports-color + lightningcss-android-arm64@1.32.0: + optional: true + + lightningcss-darwin-arm64@1.32.0: + optional: true + + lightningcss-darwin-x64@1.32.0: + optional: true + + lightningcss-freebsd-x64@1.32.0: + optional: true + + lightningcss-linux-arm-gnueabihf@1.32.0: + optional: true + + lightningcss-linux-arm64-gnu@1.32.0: + optional: true + + lightningcss-linux-arm64-musl@1.32.0: + optional: true + + lightningcss-linux-x64-gnu@1.32.0: + optional: true + + lightningcss-linux-x64-musl@1.32.0: + optional: true + + lightningcss-win32-arm64-msvc@1.32.0: + optional: true + + lightningcss-win32-x64-msvc@1.32.0: + optional: true + + lightningcss@1.32.0: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 + lilconfig@3.1.3: {} lines-and-columns@1.2.4: {} lines-and-columns@2.0.3: {} - lint-staged@16.3.2: + lint-staged@16.3.3: dependencies: commander: 14.0.3 listr2: 9.0.5 @@ -31007,7 +31523,7 @@ snapshots: crossws: 0.3.5 defu: 6.1.4 get-port-please: 3.2.0 - h3: 1.15.5 + h3: 1.15.6 http-shutdown: 1.2.2 jiti: 2.6.1 mlly: 1.8.1 @@ -31210,7 +31726,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.4 make-fetch-happen@15.0.2: dependencies: @@ -31391,8 +31907,6 @@ snapshots: memoize-one@5.2.1: {} - meow@12.1.1: {} - meow@13.2.0: {} meow@14.1.0: {} @@ -32022,7 +32536,7 @@ snapshots: array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 - minimatch: 3.1.4 + minimatch: 3.1.5 mute-stream@2.0.0: {} @@ -32053,7 +32567,7 @@ snapshots: '@next/env': 14.2.35 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001777 + caniuse-lite: 1.0.30001778 graceful-fs: 4.2.11 postcss: 8.4.31 react: 19.2.4 @@ -32077,7 +32591,7 @@ snapshots: dependencies: '@next/env': 15.5.12 '@swc/helpers': 0.5.15 - caniuse-lite: 1.0.30001777 + caniuse-lite: 1.0.30001778 postcss: 8.4.31 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -32100,8 +32614,8 @@ snapshots: dependencies: '@next/env': 16.1.6 '@swc/helpers': 0.5.15 - baseline-browser-mapping: 2.10.0 - caniuse-lite: 1.0.30001777 + baseline-browser-mapping: 2.10.7 + caniuse-lite: 1.0.30001778 postcss: 8.4.31 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -32120,11 +32634,11 @@ snapshots: - '@babel/core' - babel-plugin-macros - nitropack@2.13.1(encoding@0.1.13)(idb-keyval@6.2.2): + nitropack@2.13.1(encoding@0.1.13)(idb-keyval@6.2.2)(rolldown@1.0.0-rc.9): dependencies: '@cloudflare/kv-asset-handler': 0.4.2 '@rollup/plugin-alias': 6.0.0(rollup@4.59.0) - '@rollup/plugin-commonjs': 29.0.1(rollup@4.59.0) + '@rollup/plugin-commonjs': 29.0.2(rollup@4.59.0) '@rollup/plugin-inject': 5.0.5(rollup@4.59.0) '@rollup/plugin-json': 6.1.0(rollup@4.59.0) '@rollup/plugin-node-resolve': 16.0.3(rollup@4.59.0) @@ -32145,13 +32659,13 @@ snapshots: defu: 6.1.4 destr: 2.0.5 dot-prop: 10.1.0 - esbuild: 0.27.3 + esbuild: 0.27.4 escape-string-regexp: 5.0.0 etag: 1.8.1 exsolve: 1.0.8 globby: 16.1.1 gzip-size: 7.0.0 - h3: 1.15.5 + h3: 1.15.6 hookable: 5.5.3 httpxy: 0.1.7 ioredis: 5.10.0 @@ -32173,7 +32687,7 @@ snapshots: pretty-bytes: 7.1.0 radix3: 1.1.2 rollup: 4.59.0 - rollup-plugin-visualizer: 6.0.11(rollup@4.59.0) + rollup-plugin-visualizer: 6.0.11(rolldown@1.0.0-rc.9)(rollup@4.59.0) scule: 1.3.0 semver: 7.7.4 serve-placeholder: 2.0.2 @@ -32254,9 +32768,9 @@ snapshots: make-fetch-happen: 15.0.2 nopt: 9.0.0 proc-log: 6.1.0 - semver: 7.7.2 - tar: 7.5.8 - tinyglobby: 0.2.12 + semver: 7.7.4 + tar: 7.5.11 + tinyglobby: 0.2.15 which: 6.0.1 transitivePeerDependencies: - supports-color @@ -32322,7 +32836,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.7.2 + semver: 7.7.4 validate-npm-package-license: 3.0.4 normalize-package-data@5.0.0: @@ -32348,11 +32862,11 @@ snapshots: npm-install-checks@7.1.2: dependencies: - semver: 7.7.2 + semver: 7.7.4 npm-install-checks@8.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.4 npm-normalize-package-bin@3.0.1: {} @@ -32371,14 +32885,14 @@ snapshots: dependencies: hosted-git-info: 8.1.0 proc-log: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 validate-npm-package-name: 6.0.2 npm-package-arg@13.0.1: dependencies: hosted-git-info: 9.0.2 proc-log: 5.0.0 - semver: 7.7.2 + semver: 7.7.4 validate-npm-package-name: 6.0.2 npm-packlist@10.0.3: @@ -32391,14 +32905,14 @@ snapshots: npm-install-checks: 7.1.2 npm-normalize-package-bin: 4.0.0 npm-package-arg: 12.0.2 - semver: 7.7.2 + semver: 7.7.4 npm-pick-manifest@11.0.3: dependencies: npm-install-checks: 8.0.0 npm-normalize-package-bin: 5.0.0 npm-package-arg: 13.0.1 - semver: 7.7.2 + semver: 7.7.4 npm-pick-manifest@8.0.2: dependencies: @@ -32444,17 +32958,17 @@ snapshots: bn.js: 4.11.6 strip-hex-prefix: 1.0.0 - nuxt@3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.3.5)(@vue/compiler-sfc@3.5.29)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.3(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): + nuxt@3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): dependencies: - '@nuxt/cli': 3.33.1(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2) + '@nuxt/cli': 3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2) '@nuxt/devalue': 2.0.2 - '@nuxt/devtools': 2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)) + '@nuxt/devtools': 2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) '@nuxt/kit': 3.17.7(magicast@0.5.2) '@nuxt/schema': 3.17.7 '@nuxt/telemetry': 2.7.0(@nuxt/kit@3.17.7(magicast@0.5.2)) - '@nuxt/vite-builder': 3.17.7(@biomejs/biome@2.4.6)(@types/node@25.3.5)(eslint@9.39.3(jiti@2.6.1))(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rollup@4.59.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.29(typescript@5.9.3))(yaml@2.8.2) - '@unhead/vue': 2.1.10(vue@3.5.29(typescript@5.9.3)) - '@vue/shared': 3.5.29 + '@nuxt/vite-builder': 3.17.7(@biomejs/biome@2.4.6)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2) + '@unhead/vue': 2.1.12(vue@3.5.30(typescript@5.9.3)) + '@vue/shared': 3.5.30 c12: 3.3.3(magicast@0.5.2) chokidar: 4.0.3 compatx: 0.2.0 @@ -32462,16 +32976,16 @@ snapshots: cookie-es: 2.0.0 defu: 6.1.4 destr: 2.0.5 - devalue: 5.6.3 + devalue: 5.6.4 errx: 0.1.0 esbuild: 0.25.12 escape-string-regexp: 5.0.0 estree-walker: 3.0.3 exsolve: 1.0.8 - h3: 1.15.5 + h3: 1.15.6 hookable: 5.5.3 ignore: 7.0.5 - impound: 1.1.2 + impound: 1.1.5 jiti: 2.6.1 klona: 2.0.6 knitwork: 1.3.0 @@ -32479,7 +32993,7 @@ snapshots: mlly: 1.8.1 mocked-exports: 0.1.1 nanotar: 0.2.1 - nitropack: 2.13.1(encoding@0.1.13)(idb-keyval@6.2.2) + nitropack: 2.13.1(encoding@0.1.13)(idb-keyval@6.2.2)(rolldown@1.0.0-rc.9) nypm: 0.6.5 ofetch: 1.5.1 ohash: 2.0.11 @@ -32500,16 +33014,16 @@ snapshots: unctx: 2.5.0 unimport: 5.7.0 unplugin: 2.3.11 - unplugin-vue-router: 0.14.0(@vue/compiler-sfc@3.5.29)(vue-router@4.6.4(vue@3.5.29(typescript@5.9.3)))(vue@3.5.29(typescript@5.9.3)) + unplugin-vue-router: 0.14.0(@vue/compiler-sfc@3.5.30)(vue-router@4.6.4(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3)) unstorage: 1.17.4(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.10.0) untyped: 2.0.0 - vue: 3.5.29(typescript@5.9.3) + vue: 3.5.30(typescript@5.9.3) vue-bundle-renderer: 2.2.0 vue-devtools-stub: 0.1.0 - vue-router: 4.6.4(vue@3.5.29(typescript@5.9.3)) + vue-router: 4.6.4(vue@3.5.30(typescript@5.9.3)) optionalDependencies: '@parcel/watcher': 2.5.6 - '@types/node': 25.3.5 + '@types/node': 25.5.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -32588,7 +33102,7 @@ snapshots: flat: 5.0.2 front-matter: 4.0.2 ignore: 7.0.5 - jest-diff: 30.2.0 + jest-diff: 30.3.0 jsonc-parser: 3.2.0 lines-and-columns: 2.0.3 minimatch: 10.2.4 @@ -32598,7 +33112,7 @@ snapshots: ora: 5.3.0 picocolors: 1.1.1 resolve.exports: 2.0.3 - semver: 7.7.2 + semver: 7.7.4 string-width: 4.2.3 tar-stream: 2.2.0 tmp: 0.2.5 @@ -32766,7 +33280,7 @@ snapshots: ora@5.3.0: dependencies: bl: 4.1.0 - chalk: 4.1.0 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -32814,11 +33328,11 @@ snapshots: ox@0.6.7(typescript@5.9.3)(zod@4.3.6): dependencies: '@adraffy/ens-normalize': 1.11.1 - '@noble/curves': 1.9.7 + '@noble/curves': 1.8.1 '@noble/hashes': 1.8.0 - '@scure/bip32': 1.7.0 - '@scure/bip39': 1.6.0 - abitype: 1.2.3(typescript@5.9.3)(zod@4.3.6) + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.9.3)(zod@4.3.6) eventemitter3: 5.0.1 optionalDependencies: typescript: 5.9.3 @@ -32843,11 +33357,11 @@ snapshots: dependencies: '@adraffy/ens-normalize': 1.11.1 '@noble/ciphers': 1.3.0 - '@noble/curves': 1.9.7 + '@noble/curves': 1.9.2 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.2.3(typescript@5.9.3)(zod@4.3.6) + abitype: 1.0.8(typescript@5.9.3)(zod@4.3.6) eventemitter3: 5.0.1 optionalDependencies: typescript: 5.9.3 @@ -33023,11 +33537,11 @@ snapshots: promise-retry: 2.0.1 sigstore: 4.1.0 ssri: 12.0.0 - tar: 7.5.8 + tar: 7.5.11 transitivePeerDependencies: - supports-color - pacote@21.4.0: + pacote@21.5.0: dependencies: '@gar/promise-retry': 1.0.2 '@npmcli/git': 7.0.2 @@ -33045,7 +33559,7 @@ snapshots: proc-log: 6.1.0 sigstore: 4.1.0 ssri: 13.0.1 - tar: 7.5.8 + tar: 7.5.11 transitivePeerDependencies: - supports-color @@ -33166,9 +33680,9 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.3 - permissionless@0.2.57(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)): + permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)): dependencies: - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) picocolors@1.1.1: {} @@ -33271,14 +33785,6 @@ snapshots: exsolve: 1.0.8 pathe: 2.0.3 - playwright-core@1.58.2: {} - - playwright@1.58.2: - dependencies: - playwright-core: 1.58.2 - optionalDependencies: - fsevents: 2.3.2 - pluralize@8.0.0: {} pngjs@5.0.0: {} @@ -33292,14 +33798,14 @@ snapshots: style-value-types: 5.0.0 tslib: 2.8.1 - porto@0.2.35(24f5adc8154a927e71c0f75cb97a0236): + porto@0.2.35(b56bdc6606f1758b7b087ff1c0afc5fd): dependencies: - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.5 + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.7 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: @@ -33307,20 +33813,20 @@ snapshots: react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - immer - use-sync-external-store - porto@0.2.37(64c1d34846c4ed68f9fe2020443c4f38): + porto@0.2.37(4dd7932f2eb85b1ba405d8aeacd4ca3f): dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.5 + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.7 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: @@ -33328,21 +33834,21 @@ snapshots: react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - immer - use-sync-external-store optional: true - porto@0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0): + porto@0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0): dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.5 + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.7 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: @@ -33350,7 +33856,7 @@ snapshots: react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 3.5.0(a168feae2a0de4c1971a620e477734e8) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) transitivePeerDependencies: - '@types/react' - immer @@ -33366,7 +33872,7 @@ snapshots: postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.5(postcss@8.5.8): + postcss-colormin@7.0.6(postcss@8.5.8): dependencies: browserslist: 4.28.1 caniuse-api: 3.0.0 @@ -33374,13 +33880,13 @@ snapshots: postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.8(postcss@8.5.8): + postcss-convert-values@7.0.9(postcss@8.5.8): dependencies: browserslist: 4.28.1 postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-discard-comments@7.0.5(postcss@8.5.8): + postcss-discard-comments@7.0.6(postcss@8.5.8): dependencies: postcss: 8.5.8 postcss-selector-parser: 7.1.1 @@ -33412,9 +33918,9 @@ snapshots: dependencies: postcss: 8.5.8 postcss-value-parser: 4.2.0 - stylehacks: 7.0.7(postcss@8.5.8) + stylehacks: 7.0.8(postcss@8.5.8) - postcss-merge-rules@7.0.7(postcss@8.5.8): + postcss-merge-rules@7.0.8(postcss@8.5.8): dependencies: browserslist: 4.28.1 caniuse-api: 3.0.0 @@ -33434,14 +33940,14 @@ snapshots: postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.5(postcss@8.5.8): + postcss-minify-params@7.0.6(postcss@8.5.8): dependencies: browserslist: 4.28.1 cssnano-utils: 5.0.1(postcss@8.5.8) postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.5(postcss@8.5.8): + postcss-minify-selectors@7.0.6(postcss@8.5.8): dependencies: cssesc: 3.0.0 postcss: 8.5.8 @@ -33509,7 +34015,7 @@ snapshots: postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.5(postcss@8.5.8): + postcss-normalize-unicode@7.0.6(postcss@8.5.8): dependencies: browserslist: 4.28.1 postcss: 8.5.8 @@ -33531,7 +34037,7 @@ snapshots: postcss: 8.5.8 postcss-value-parser: 4.2.0 - postcss-reduce-initial@7.0.5(postcss@8.5.8): + postcss-reduce-initial@7.0.6(postcss@8.5.8): dependencies: browserslist: 4.28.1 caniuse-api: 3.0.0 @@ -33547,13 +34053,13 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@7.1.0(postcss@8.5.8): + postcss-svgo@7.1.1(postcss@8.5.8): dependencies: postcss: 8.5.8 postcss-value-parser: 4.2.0 svgo: 4.0.1 - postcss-unique-selectors@7.0.4(postcss@8.5.8): + postcss-unique-selectors@7.0.5(postcss@8.5.8): dependencies: postcss: 8.5.8 postcss-selector-parser: 7.1.1 @@ -33587,7 +34093,7 @@ snapshots: preact@10.24.2: {} - preact@10.28.4: {} + preact@10.29.0: {} precinct@12.2.0: dependencies: @@ -33623,7 +34129,7 @@ snapshots: ansi-styles: 5.2.0 react-is: 18.3.1 - pretty-format@30.2.0: + pretty-format@30.3.0: dependencies: '@jest/schemas': 30.0.5 ansi-styles: 5.2.0 @@ -33727,7 +34233,7 @@ snapshots: q@1.5.1: {} - qr@0.5.4: {} + qr@0.5.5: {} qrcode@1.5.1: dependencies: @@ -33867,11 +34373,11 @@ snapshots: react-dom: 19.2.4(react@19.2.4) react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) - react-i18next@16.5.5(i18next@25.8.14(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3): + react-i18next@16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3): dependencies: '@babel/runtime': 7.28.6 html-parse-stringify: 3.0.1 - i18next: 25.8.14(typescript@5.9.3) + i18next: 25.8.18(typescript@5.9.3) react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) optionalDependencies: @@ -33945,7 +34451,7 @@ snapshots: react-refresh@0.14.2: {} - react-refresh@0.18.0: {} + react-refresh@0.17.0: {} react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.4): dependencies: @@ -34003,32 +34509,24 @@ snapshots: optionalDependencies: react-dom: 19.2.4(react@19.2.4) - react-scan@0.4.3(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@types/react@19.2.14)(next@16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(rollup@4.59.0): + react-scan@0.5.3(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rollup@4.59.0): dependencies: '@babel/core': 7.29.0 '@babel/generator': 7.29.1 '@babel/types': 7.29.0 - '@clack/core': 0.3.5 - '@clack/prompts': 0.8.2 - '@pivanov/utils': 0.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@preact/signals': 1.3.4(preact@10.28.4) + '@preact/signals': 1.3.4(preact@10.29.0) '@rollup/pluginutils': 5.3.0(rollup@4.59.0) '@types/node': 20.19.37 - bippy: 0.3.34(@types/react@19.2.14)(react@19.2.4) + bippy: 0.5.32(@types/react@19.2.14)(react@19.2.4) + commander: 14.0.3 esbuild: 0.25.12 estree-walker: 3.0.3 - kleur: 4.1.5 - mri: 1.2.0 - playwright: 1.58.2 - preact: 10.28.4 + picocolors: 1.1.1 + preact: 10.29.0 + prompts: 2.4.2 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - tsx: 4.21.0 optionalDependencies: - '@remix-run/react': 2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) - next: 16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - react-router: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - react-router-dom: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) unplugin: 2.1.0 transitivePeerDependencies: - '@types/react' @@ -34206,9 +34704,9 @@ snapshots: mdast-util-to-hast: 12.3.0 unified: 10.1.2 - remix-utils@9.2.0(@standard-schema/spec@1.1.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4): + remix-utils@9.3.1(@standard-schema/spec@1.1.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4): dependencies: - type-fest: 4.41.0 + type-fest: 5.4.4 optionalDependencies: '@standard-schema/spec': 1.1.0 react: 19.2.4 @@ -34296,13 +34794,35 @@ snapshots: hash-base: 3.1.2 inherits: 2.0.4 - rollup-plugin-visualizer@6.0.11(rollup@4.59.0): + rolldown@1.0.0-rc.9: + dependencies: + '@oxc-project/types': 0.115.0 + '@rolldown/pluginutils': 1.0.0-rc.9 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-rc.9 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.9 + '@rolldown/binding-darwin-x64': 1.0.0-rc.9 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.9 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.9 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.9 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.9 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.9 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.9 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.9 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.9 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.9 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.9 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9 + + rollup-plugin-visualizer@6.0.11(rolldown@1.0.0-rc.9)(rollup@4.59.0): dependencies: open: 8.4.2 picomatch: 4.0.3 source-map: 0.7.6 yargs: 17.7.2 optionalDependencies: + rolldown: 1.0.0-rc.9 rollup: 4.59.0 rollup@4.59.0: @@ -34474,11 +34994,11 @@ snapshots: dependencies: randombytes: 2.1.0 - seroval-plugins@1.5.0(seroval@1.5.0): + seroval-plugins@1.5.1(seroval@1.5.1): dependencies: - seroval: 1.5.0 + seroval: 1.5.1 - seroval@1.5.0: {} + seroval@1.5.1: {} serve-placeholder@2.0.2: dependencies: @@ -34653,7 +35173,7 @@ snapshots: transitivePeerDependencies: - supports-color - simple-git@3.32.3: + simple-git@3.33.0: dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 @@ -34802,7 +35322,7 @@ snapshots: sprintf-js@1.0.3: {} - srvx@0.11.8: {} + srvx@0.11.9: {} ssri@10.0.6: dependencies: @@ -34859,6 +35379,8 @@ snapshots: std-env@3.10.0: {} + std-env@4.0.0: {} + stop-iteration-iterator@1.1.0: dependencies: es-errors: 1.3.0 @@ -35095,7 +35617,7 @@ snapshots: '@babel/core': 7.29.0 babel-plugin-macros: 3.1.0 - stylehacks@7.0.7(postcss@8.5.8): + stylehacks@7.0.8(postcss@8.5.8): dependencies: browserslist: 4.28.1 postcss: 8.5.8 @@ -35133,28 +35655,28 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3): + svelte-check@4.4.5(picomatch@4.0.3)(svelte@5.53.11)(typescript@5.9.3): dependencies: '@jridgewell/trace-mapping': 0.3.31 chokidar: 4.0.3 fdir: 6.5.0(picomatch@4.0.3) picocolors: 1.1.1 sade: 1.8.1 - svelte: 5.53.7 + svelte: 5.53.11 typescript: 5.9.3 transitivePeerDependencies: - picomatch - svelte-preprocess@6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.7)(typescript@5.9.3): + svelte-preprocess@6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.11)(typescript@5.9.3): dependencies: - svelte: 5.53.7 + svelte: 5.53.11 optionalDependencies: '@babel/core': 7.29.0 postcss: 8.5.8 postcss-load-config: 4.0.2(postcss@8.5.8) typescript: 5.9.3 - svelte@5.53.7: + svelte@5.53.11: dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -35165,7 +35687,7 @@ snapshots: aria-query: 5.3.1 axobject-query: 4.1.0 clsx: 2.1.1 - devalue: 5.6.3 + devalue: 5.6.4 esm-env: 1.2.2 esrap: 2.2.3 is-reference: 3.0.3 @@ -35226,15 +35748,7 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.5.10: - dependencies: - '@isaacs/fs-minipass': 4.0.1 - chownr: 3.0.0 - minipass: 7.1.3 - minizlib: 3.1.0 - yallist: 5.0.0 - - tar@7.5.8: + tar@7.5.11: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 @@ -35314,6 +35828,8 @@ snapshots: tinybench@2.9.0: {} + tinyclip@0.1.12: {} + tinycolor2@1.6.0: {} tinyexec@1.0.2: {} @@ -35333,7 +35849,7 @@ snapshots: fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 - tinyrainbow@3.0.3: {} + tinyrainbow@3.1.0: {} tldts-core@6.1.86: {} @@ -35417,13 +35933,6 @@ snapshots: tslib@2.8.1: {} - tsx@4.21.0: - dependencies: - esbuild: 0.27.3 - get-tsconfig: 4.13.6 - optionalDependencies: - fsevents: 2.3.3 - tty-browserify@0.0.1: {} tuf-js@4.1.0: @@ -35458,8 +35967,6 @@ snapshots: type-fest@0.8.1: {} - type-fest@4.41.0: {} - type-fest@5.4.4: dependencies: tagged-tag: 1.0.0 @@ -35506,13 +36013,13 @@ snapshots: typeforce@1.18.0: {} - typescript-eslint@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3): + typescript-eslint@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/parser': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.56.1(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.3(jiti@2.6.1) + '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.39.4(jiti@2.6.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -35540,6 +36047,8 @@ snapshots: ultrahtml@1.6.0: {} + unbash@2.2.0: {} + unbox-primitive@1.1.0: dependencies: call-bound: 1.0.4 @@ -35562,7 +36071,7 @@ snapshots: undici-types@7.18.2: {} - undici-types@7.22.0: {} + undici-types@7.23.0: {} undici@6.23.0: {} @@ -35570,7 +36079,7 @@ snapshots: dependencies: pathe: 2.0.3 - unhead@2.1.10: + unhead@2.1.12: dependencies: hookable: 6.0.1 @@ -35671,10 +36180,10 @@ snapshots: pathe: 2.0.3 picomatch: 4.0.3 - unplugin-vue-router@0.14.0(@vue/compiler-sfc@3.5.29)(vue-router@4.6.4(vue@3.5.29(typescript@5.9.3)))(vue@3.5.29(typescript@5.9.3)): + unplugin-vue-router@0.14.0(@vue/compiler-sfc@3.5.30)(vue-router@4.6.4(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3)): dependencies: - '@vue-macros/common': 3.0.0-beta.15(vue@3.5.29(typescript@5.9.3)) - '@vue/compiler-sfc': 3.5.29 + '@vue-macros/common': 3.0.0-beta.15(vue@3.5.30(typescript@5.9.3)) + '@vue/compiler-sfc': 3.5.30 ast-walker-scope: 0.8.3 chokidar: 4.0.3 fast-glob: 3.3.3 @@ -35689,7 +36198,7 @@ snapshots: unplugin-utils: 0.2.5 yaml: 2.8.2 optionalDependencies: - vue-router: 4.6.4(vue@3.5.29(typescript@5.9.3)) + vue-router: 4.6.4(vue@3.5.30(typescript@5.9.3)) transitivePeerDependencies: - vue @@ -35741,7 +36250,7 @@ snapshots: anymatch: 3.1.3 chokidar: 5.0.0 destr: 2.0.5 - h3: 1.15.5 + h3: 1.15.6 lru-cache: 11.2.6 node-fetch-native: 1.6.7 ofetch: 1.5.1 @@ -35954,7 +36463,7 @@ snapshots: - utf-8-validate - zod - viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6): + viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 @@ -35971,23 +36480,23 @@ snapshots: - utf-8-validate - zod - vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-dev-rpc@1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: birpc: 2.9.0 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) - vite-hot-client@2.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-hot-client@2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vite-node@1.6.1(@types/node@25.3.5)(terser@5.46.0): + vite-node@1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0): dependencies: cac: 6.7.14 debug: 4.4.3(supports-color@5.5.0) pathe: 1.1.2 picocolors: 1.1.1 - vite: 5.4.21(@types/node@25.3.5)(terser@5.46.0) + vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) transitivePeerDependencies: - '@types/node' - less @@ -35999,13 +36508,13 @@ snapshots: - supports-color - terser - vite-node@3.2.4(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2): + vite-node@3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): dependencies: cac: 6.7.14 debug: 4.4.3(supports-color@5.5.0) es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - jiti @@ -36020,7 +36529,7 @@ snapshots: - tsx - yaml - vite-plugin-checker@0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.3(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): + vite-plugin-checker@0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): dependencies: '@babel/code-frame': 7.29.0 chokidar: 4.0.3 @@ -36029,12 +36538,12 @@ snapshots: picomatch: 4.0.3 strip-ansi: 7.2.0 tiny-invariant: 1.3.3 - tinyglobby: 0.2.14 - vite: 6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + tinyglobby: 0.2.15 + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) vscode-uri: 3.1.0 optionalDependencies: '@biomejs/biome': 2.4.6 - eslint: 9.39.3(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1) meow: 13.2.0 optionator: 0.9.4 typescript: 5.9.3 @@ -36045,7 +36554,7 @@ snapshots: dotenv: 8.2.0 dotenv-expand: 5.1.0 - vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.1(magicast@0.3.5))(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: ansis: 4.2.0 debug: 4.4.3(supports-color@5.5.0) @@ -36055,133 +36564,165 @@ snapshots: perfect-debounce: 2.1.0 sirv: 3.0.2 unplugin-utils: 0.3.1 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite-dev-rpc: 1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) optionalDependencies: - '@nuxt/kit': 3.21.1(magicast@0.3.5) + '@nuxt/kit': 3.21.2(magicast@0.3.5) transitivePeerDependencies: - supports-color - vite-plugin-mkcert@1.17.10(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-plugin-mkcert@1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: axios: 1.13.6(debug@4.4.3) debug: 4.4.3(supports-color@5.5.0) picocolors: 1.1.1 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color - vite-plugin-node-polyfills@0.25.0(rollup@4.59.0)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-plugin-node-polyfills@0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.59.0) node-stdlib-browser: 1.3.1 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - rollup - vite-plugin-vue-tracer@1.2.0(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.29(typescript@5.9.3)): + vite-plugin-vue-tracer@1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)): dependencies: estree-walker: 3.0.3 exsolve: 1.0.8 magic-string: 0.30.21 pathe: 2.0.3 source-map-js: 1.2.1 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) - vue: 3.5.29(typescript@5.9.3) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vue: 3.5.30(typescript@5.9.3) - vite-tsconfig-paths@5.1.4(typescript@5.9.3)(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): dependencies: debug: 4.4.3(supports-color@5.5.0) globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.9.3) - optionalDependencies: - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + transitivePeerDependencies: + - supports-color + - typescript + + vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + dependencies: + debug: 4.4.3(supports-color@5.5.0) + globrex: 0.1.2 + tsconfck: 3.1.6(typescript@5.9.3) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color - typescript - vite@5.4.21(@types/node@25.3.5)(terser@5.46.0): + vite@5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0): dependencies: esbuild: 0.21.5 postcss: 8.5.8 rollup: 4.59.0 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 fsevents: 2.3.3 + lightningcss: 1.32.0 terser: 5.46.0 - vite@6.4.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2): + vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.8 rollup: 4.59.0 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 fsevents: 2.3.3 jiti: 2.6.1 + lightningcss: 1.32.0 terser: 5.46.0 - tsx: 4.21.0 yaml: 2.8.2 - vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2): + vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): dependencies: - esbuild: 0.27.3 + esbuild: 0.27.4 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.8 rollup: 4.59.0 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 fsevents: 2.3.3 jiti: 2.6.1 + lightningcss: 1.32.0 terser: 5.46.0 - tsx: 4.21.0 yaml: 2.8.2 - vitefu@1.1.2(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): + vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2): + dependencies: + '@oxc-project/runtime': 0.115.0 + lightningcss: 1.32.0 + picomatch: 4.0.3 + postcss: 8.5.8 + rolldown: 1.0.0-rc.9 + tinyglobby: 0.2.15 optionalDependencies: - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + '@types/node': 25.5.0 + esbuild: 0.17.6 + fsevents: 2.3.3 + jiti: 2.6.1 + terser: 5.46.0 + yaml: 2.8.2 - vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2): + vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2): dependencies: - '@vitest/expect': 4.0.18 - '@vitest/mocker': 4.0.18(vite@7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) - '@vitest/pretty-format': 4.0.18 - '@vitest/runner': 4.0.18 - '@vitest/snapshot': 4.0.18 - '@vitest/spy': 4.0.18 - '@vitest/utils': 4.0.18 - es-module-lexer: 1.7.0 + '@oxc-project/runtime': 0.115.0 + lightningcss: 1.32.0 + picomatch: 4.0.3 + postcss: 8.5.8 + rolldown: 1.0.0-rc.9 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 25.5.0 + esbuild: 0.27.4 + fsevents: 2.3.3 + jiti: 2.6.1 + terser: 5.46.0 + yaml: 2.8.2 + + vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + optionalDependencies: + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + + vitest@4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + dependencies: + '@vitest/expect': 4.1.0 + '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + '@vitest/pretty-format': 4.1.0 + '@vitest/runner': 4.1.0 + '@vitest/snapshot': 4.1.0 + '@vitest/spy': 4.1.0 + '@vitest/utils': 4.1.0 + es-module-lexer: 2.0.0 expect-type: 1.3.0 magic-string: 0.30.21 obug: 2.1.1 pathe: 2.0.3 picomatch: 4.0.3 - std-env: 3.10.0 + std-env: 4.0.0 tinybench: 2.9.0 tinyexec: 1.0.2 tinyglobby: 0.2.15 - tinyrainbow: 3.0.3 - vite: 7.3.1(@types/node@25.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) + tinyrainbow: 3.1.0 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 25.3.5 + '@types/node': 25.5.0 transitivePeerDependencies: - - jiti - - less - - lightningcss - msw - - sass - - sass-embedded - - stylus - - sugarss - - terser - - tsx - - yaml vlq@1.0.1: {} @@ -36197,10 +36738,10 @@ snapshots: vue-devtools-stub@0.1.0: {} - vue-router@4.6.4(vue@3.5.29(typescript@5.9.3)): + vue-router@4.6.4(vue@3.5.30(typescript@5.9.3)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.29(typescript@5.9.3) + vue: 3.5.30(typescript@5.9.3) vue-tsc@3.2.5(typescript@5.9.3): dependencies: @@ -36208,24 +36749,24 @@ snapshots: '@vue/language-core': 3.2.5 typescript: 5.9.3 - vue@3.5.29(typescript@5.9.3): + vue@3.5.30(typescript@5.9.3): dependencies: - '@vue/compiler-dom': 3.5.29 - '@vue/compiler-sfc': 3.5.29 - '@vue/runtime-dom': 3.5.29 - '@vue/server-renderer': 3.5.29(vue@3.5.29(typescript@5.9.3)) - '@vue/shared': 3.5.29 + '@vue/compiler-dom': 3.5.30 + '@vue/compiler-sfc': 3.5.30 + '@vue/runtime-dom': 3.5.30 + '@vue/server-renderer': 3.5.30(vue@3.5.30(typescript@5.9.3)) + '@vue/shared': 3.5.30 optionalDependencies: typescript: 5.9.3 - wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6): + wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) - '@wagmi/connectors': 6.2.0(003ad763f1c7b59f1b2f924f86aa3843) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/connectors': 6.2.0(9efce2373b19f58f3fe45ad1830a1d0e) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -36263,14 +36804,14 @@ snapshots: - utf-8-validate - zod - wagmi@3.5.0(a168feae2a0de4c1971a620e477734e8): + wagmi@3.5.0(0195199fc2a29f18ddd61e55685d1e3b): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) - '@wagmi/connectors': 7.2.1(d529671fb59ad4e7ebd38e53a18b0a7a) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/connectors': 7.2.1(7e0d03651353772277bb3afae8ed51ab) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -36617,6 +37158,7 @@ snapshots: optionalDependencies: '@types/react': 19.2.14 react: 19.2.4 + optional: true zustand@5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)): optionalDependencies: From b9e2fdfece63b52ea0580ec9e31c0182359ef11d Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 12:56:07 +0100 Subject: [PATCH 04/11] chore: improve iframe provider handling --- examples/connectkit/package.json | 2 +- examples/deposit-flow/package.json | 2 +- examples/dynamic/package.json | 16 +- examples/nft-checkout/package.json | 4 +- examples/privy-ethers/package.json | 2 +- examples/privy/package.json | 4 +- examples/rainbowkit/package.json | 2 +- examples/reown/package.json | 4 +- examples/tanstack-router/package.json | 2 +- examples/vite-iframe-wagmi/package.json | 4 +- examples/vite-iframe/package.json | 6 +- examples/vite/package.json | 2 +- examples/vue/package.json | 2 +- examples/zustand-widget-config/package.json | 2 +- .../wallet-management/src/hooks/useAccount.ts | 3 +- packages/widget-embedded/package.json | 7 +- .../src/providers/WalletProvider.tsx | 16 +- .../src/providers/WidgetConfigProvider.tsx | 4 +- .../providers/iframe/BaseIframeProvider.ts | 143 ++ .../providers/iframe/BitcoinIframeProvider.ts | 99 +- .../iframe/BitcoinIframeProviderValues.tsx | 60 +- .../iframe/EthereumIframeProvider.ts | 108 +- .../providers/iframe/SolanaIframeProvider.ts | 92 +- .../iframe/SolanaIframeProviderValues.tsx | 22 +- .../src/providers/iframe/SuiIframeProvider.ts | 92 +- .../iframe/SuiIframeProviderValues.tsx | 17 +- .../providers/iframe/widgetLightConnector.ts | 55 +- .../bitcoin/useBitcoinIframeHandler.ts | 79 +- .../ethereum/useEthereumIframeHandler.ts | 49 +- .../handlers/solana/useSolanaIframeHandler.ts | 109 +- .../src/handlers/sui/useSuiIframeHandler.ts | 54 +- .../src/host/WidgetLightEventBus.ts | 33 +- .../src/host/useWidgetLightEvents.ts | 16 +- .../src/host/useWidgetLightHost.ts | 50 +- packages/widget-light/src/index.ts | 1 - packages/widget-light/src/shared/protocol.ts | 4 - packages/widget-playground-vite/package.json | 2 +- packages/widget-playground/package.json | 2 +- packages/widget-provider-bitcoin/package.json | 2 +- .../widget-provider-ethereum/package.json | 2 +- .../src/utils/syncWagmiConfig.ts | 1 + packages/widget-provider-sui/package.json | 2 +- packages/widget/package.json | 2 +- .../BaseTransactionButton.tsx | 1 - .../src/stores/chains/ChainOrderStore.tsx | 8 + pnpm-lock.yaml | 1939 +++++++---------- 46 files changed, 1454 insertions(+), 1674 deletions(-) create mode 100644 packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts diff --git a/examples/connectkit/package.json b/examples/connectkit/package.json index d7e71e028..8903b86da 100644 --- a/examples/connectkit/package.json +++ b/examples/connectkit/package.json @@ -28,7 +28,7 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "globals": "^17.3.0", "typescript": "~5.9.3", "vite": "^8.0.0" diff --git a/examples/deposit-flow/package.json b/examples/deposit-flow/package.json index 6b03fbb8c..8cbda830b 100644 --- a/examples/deposit-flow/package.json +++ b/examples/deposit-flow/package.json @@ -25,7 +25,7 @@ "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" diff --git a/examples/dynamic/package.json b/examples/dynamic/package.json index 48cffbd9b..19d31eac9 100644 --- a/examples/dynamic/package.json +++ b/examples/dynamic/package.json @@ -12,13 +12,13 @@ "@bigmi/client": "^0.7.1", "@bigmi/core": "^0.7.1", "@bigmi/react": "^0.7.1", - "@dynamic-labs/bitcoin": "^4.67.1", - "@dynamic-labs/ethereum": "^4.67.1", - "@dynamic-labs/ethereum-aa": "^4.67.1", - "@dynamic-labs/sdk-react-core": "^4.67.1", - "@dynamic-labs/solana": "^4.67.1", - "@dynamic-labs/solana-core": "^4.67.1", - "@dynamic-labs/wagmi-connector": "^4.67.1", + "@dynamic-labs/bitcoin": "^4.67.2", + "@dynamic-labs/ethereum": "^4.67.2", + "@dynamic-labs/ethereum-aa": "^4.67.2", + "@dynamic-labs/sdk-react-core": "^4.67.2", + "@dynamic-labs/solana": "^4.67.2", + "@dynamic-labs/solana-core": "^4.67.2", + "@dynamic-labs/wagmi-connector": "^4.67.2", "@lifi/sdk": "^3.16.1", "@lifi/wallet-management": "^3.22.8", "@lifi/widget": "^3.40.12", @@ -42,7 +42,7 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "globals": "^17.3.0", "typescript": "^5.9.3", "vite": "^8.0.0" diff --git a/examples/nft-checkout/package.json b/examples/nft-checkout/package.json index d28a2d4a2..3f1444e32 100644 --- a/examples/nft-checkout/package.json +++ b/examples/nft-checkout/package.json @@ -32,10 +32,10 @@ "react-dom": "^19.2.4", "react-router-dom": "^7.13.0", "viem": "^2.47.2", - "wagmi": "^3.1.0" + "wagmi": "^3.5.0" }, "devDependencies": { - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "source-map-explorer": "^2.5.3", "typescript": "^5.9.3", "vite": "^8.0.0", diff --git a/examples/privy-ethers/package.json b/examples/privy-ethers/package.json index 0b1d80db1..4b1950172 100644 --- a/examples/privy-ethers/package.json +++ b/examples/privy-ethers/package.json @@ -31,7 +31,7 @@ "@eslint/js": "^9.39.2", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "eslint": "^9.34.0", "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.5.2", diff --git a/examples/privy/package.json b/examples/privy/package.json index fcba344b6..2861c88bd 100644 --- a/examples/privy/package.json +++ b/examples/privy/package.json @@ -16,7 +16,7 @@ "@mui/material": "^7.3.6", "@privy-io/react-auth": "^2.25.0", "@privy-io/wagmi": "^1.0.6", - "@solana/kit": "^6.3.0", + "@solana/kit": "^6.3.1", "@solana/wallet-adapter-base": "^0.9.27", "@solana/wallet-adapter-react": "^0.15.39", "@solana/web3.js": "^1.98.4", @@ -31,7 +31,7 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "globals": "^17.3.0", "typescript": "~5.9.3", "typescript-eslint": "^8.57.0", diff --git a/examples/rainbowkit/package.json b/examples/rainbowkit/package.json index 1fac0055e..c0b906b2c 100644 --- a/examples/rainbowkit/package.json +++ b/examples/rainbowkit/package.json @@ -21,7 +21,7 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" diff --git a/examples/reown/package.json b/examples/reown/package.json index 9c700ac9f..56d378685 100644 --- a/examples/reown/package.json +++ b/examples/reown/package.json @@ -29,12 +29,12 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "viem": "^2.47.2", - "wagmi": "^3.3.2" + "wagmi": "^3.5.0" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "globals": "^17.3.0", "typescript": "~5.9.3", "vite": "^8.0.0", diff --git a/examples/tanstack-router/package.json b/examples/tanstack-router/package.json index 79c7ca37b..2fdf80c16 100644 --- a/examples/tanstack-router/package.json +++ b/examples/tanstack-router/package.json @@ -19,7 +19,7 @@ "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0" } diff --git a/examples/vite-iframe-wagmi/package.json b/examples/vite-iframe-wagmi/package.json index a47b4d0ce..b091b1432 100644 --- a/examples/vite-iframe-wagmi/package.json +++ b/examples/vite-iframe-wagmi/package.json @@ -14,12 +14,12 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "viem": "^2.47.2", - "wagmi": "^3.4.2" + "wagmi": "^3.5.0" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0" } diff --git a/examples/vite-iframe/package.json b/examples/vite-iframe/package.json index f424b615f..58132e6a2 100644 --- a/examples/vite-iframe/package.json +++ b/examples/vite-iframe/package.json @@ -11,7 +11,7 @@ "preview": "vite preview" }, "dependencies": { - "@bigmi/react": "0.7.1", + "@bigmi/react": "^0.7.1", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", "@lifi/sdk": "4.0.0-beta.0", @@ -30,13 +30,13 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "viem": "^2.47.2", - "wagmi": "^3.4.2" + "wagmi": "^3.5.0" }, "devDependencies": { "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" diff --git a/examples/vite/package.json b/examples/vite/package.json index c316bbc00..1467e9f23 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -27,7 +27,7 @@ "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0" diff --git a/examples/vue/package.json b/examples/vue/package.json index e2f88cd0c..c579c131e 100644 --- a/examples/vue/package.json +++ b/examples/vue/package.json @@ -14,7 +14,7 @@ "vue": "^3.5.30" }, "devDependencies": { - "@vitejs/plugin-react": "^6.0.0", + "@vitejs/plugin-react": "^6.0.1", "@vitejs/plugin-vue": "^6.0.5", "@vitejs/plugin-vue-jsx": "^5.1.5", "typescript": "^5.9.3", diff --git a/examples/zustand-widget-config/package.json b/examples/zustand-widget-config/package.json index c9a66fc99..da2293c72 100644 --- a/examples/zustand-widget-config/package.json +++ b/examples/zustand-widget-config/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "globals": "^17.3.0", "typescript": "^5.9.3", "vite": "^8.0.0", diff --git a/packages/wallet-management/src/hooks/useAccount.ts b/packages/wallet-management/src/hooks/useAccount.ts index ae5801202..45f27f2a7 100644 --- a/packages/wallet-management/src/hooks/useAccount.ts +++ b/packages/wallet-management/src/hooks/useAccount.ts @@ -90,11 +90,12 @@ export const useAccount = (args?: UseAccountArgs): AccountResult => { }) || connectedAccounts[0] : connectedAccounts[0] - return { + const result = { account: selectedChainTypeAccount || selectedAccount || defaultAccount, // We need to return only connected account list accounts: connectedAccounts, } + return result }, [ solanaAccount?.address, solanaAccount?.status, diff --git a/packages/widget-embedded/package.json b/packages/widget-embedded/package.json index c96917636..656bd4532 100644 --- a/packages/widget-embedded/package.json +++ b/packages/widget-embedded/package.json @@ -13,9 +13,9 @@ "author": "Eugene Chybisov ", "dependencies": { "@lifi/sdk": "4.0.0-beta.0", + "@lifi/sdk-provider-bitcoin": "^4.0.0-beta.0", "@lifi/sdk-provider-solana": "^4.0.0-alpha.20", "@lifi/sdk-provider-sui": "^4.0.0-beta.0", - "@mysten/sui": "^2.6.0", "@lifi/wallet-management": "workspace:*", "@lifi/widget": "workspace:*", "@lifi/widget-light": "workspace:*", @@ -24,17 +24,18 @@ "@lifi/widget-provider-ethereum": "workspace:*", "@lifi/widget-provider-solana": "workspace:*", "@lifi/widget-provider-sui": "workspace:*", + "@mysten/sui": "^2.7.0", "@tanstack/react-query": "^5.90.20", "@wagmi/core": "^3.3.2", "react": "^19.2.4", "react-dom": "^19.2.4", "viem": "^2.47.2", - "wagmi": "^3.4.2" + "wagmi": "^3.5.0" }, "devDependencies": { "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "typescript": "^5.9.3", "vite": "^8.0.0", "vite-plugin-node-polyfills": "^0.25.0", diff --git a/packages/widget-embedded/src/providers/WalletProvider.tsx b/packages/widget-embedded/src/providers/WalletProvider.tsx index dd12fa9ad..f7a1c3808 100644 --- a/packages/widget-embedded/src/providers/WalletProvider.tsx +++ b/packages/widget-embedded/src/providers/WalletProvider.tsx @@ -7,16 +7,15 @@ import { mainnet } from 'viem/chains' import type { Config, CreateConnectorFn } from 'wagmi' import { createConfig, WagmiProvider } from 'wagmi' import { widgetLightConnector as widgetLightIframe } from './iframe/widgetLightConnector.js' -import { useEmbeddedWidgetConfig } from './WidgetConfigProvider.js' - -const FALLBACK_CONFIG: Partial = { - integrator: 'widget-embedded', -} +import { + EMBEDDED_DEFAULT_CONFIG, + useEmbeddedWidgetConfig, +} from './WidgetConfigProvider.js' export const WalletProvider: FC = ({ children }) => { const widgetConfig = useEmbeddedWidgetConfig() const { chains } = useWidgetChains( - (widgetConfig ?? FALLBACK_CONFIG) as WidgetConfig + (widgetConfig ?? EMBEDDED_DEFAULT_CONFIG) as WidgetConfig ) const iframeConnectorFn = useRef(null) @@ -35,6 +34,11 @@ export const WalletProvider: FC = ({ children }) => { connectors: [iframeConnectorFn.current!], multiInjectedProviderDiscovery: false, ssr: false, + // Disable localStorage persistence. The embedded widget receives wallet + // state from the host via postMessage (INIT/EVENT). Wagmi's Hydrate + // component calls onMount() on every non-SSR render and when + // reconnectOnMount=false it clears connections if storage is present. + storage: null, }) } diff --git a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx index 9bf04f6c5..0702f019b 100644 --- a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx +++ b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx @@ -13,7 +13,7 @@ import { const isInsideIframe = window.self !== window.top -const DEFAULT_CONFIG: Partial = { +export const EMBEDDED_DEFAULT_CONFIG: Partial = { integrator: 'widget-embedded', } @@ -70,7 +70,7 @@ export const WidgetConfigProvider: FC = ({ children }) => { [lightConfig] ) - const value = isInsideIframe ? config : DEFAULT_CONFIG + const value = isInsideIframe ? config : EMBEDDED_DEFAULT_CONFIG return ( diff --git a/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts new file mode 100644 index 000000000..f42cff1ba --- /dev/null +++ b/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts @@ -0,0 +1,143 @@ +import type { WidgetLightChainType } from '@lifi/widget-light' +import { GuestBridge } from '@lifi/widget-light' + +type Listener = (...args: unknown[]) => void + +export interface IframeConnectorInfo { + name?: string + icon?: string +} + +/** + * Base class for guest-side (iframe) providers. Handles bridge registration, + * account/connection state tracking, RPC forwarding, and event emitting. + * + * Chain-specific subclasses only need to call `super(chainType)`. + * Override `_registerBridgeCallbacks` for custom init/event handling. + */ +export class BaseIframeProvider { + protected readonly _listeners = new Map>() + protected readonly bridge = GuestBridge.getInstance() + protected readonly chainType: WidgetLightChainType + + protected _accounts: string[] = [] + protected _connected = false + protected _connector: IframeConnectorInfo = {} + + get accounts(): string[] { + return this._accounts + } + + get connected(): boolean { + return this._connected + } + + get address(): string | null { + return this._accounts[0] ?? null + } + + get connector(): IframeConnectorInfo { + return this._connector + } + + constructor(chainType: WidgetLightChainType) { + this.chainType = chainType + this._registerBridgeCallbacks() + } + + protected _registerBridgeCallbacks(): void { + this.bridge.onInit(this.chainType, (state) => { + const s = state as { + accounts: string[] + connected: boolean + connector?: IframeConnectorInfo + } + this._accounts = s.accounts + this._connected = s.connected + if (s.connector) { + this._connector = s.connector + } + + this.emit('accountsChanged', this._accounts) + if (this._connected && this.address) { + this.emit('connect', { address: this.address }) + } + }) + + this.bridge.onEvent(this.chainType, (event, data) => { + if (event === 'accountsChanged') { + this._accounts = data as string[] + this._connected = this._accounts.length > 0 + } else if (event === 'connect') { + const d = data as { connector?: IframeConnectorInfo } + if (d.connector) { + this._connector = d.connector + } + } else if (event === 'disconnect') { + this._accounts = [] + this._connected = false + } + this.emit(event, data) + }) + } + + waitForInit(): Promise { + return this.bridge.waitForInit() + } + + protected async sendRequest( + method: string, + params?: unknown + ): Promise { + await this.bridge.waitForInit() + + if (method === 'getAccount') { + return { address: this.address } + } + + return this.bridge.sendRpcRequest( + this.chainType, + method, + params as unknown[] + ) + } + + // --------------------------------------------------------------------------- + // Event emitter interface + // --------------------------------------------------------------------------- + + on(event: string, listener: Listener): this { + let set = this._listeners.get(event) + if (!set) { + set = new Set() + this._listeners.set(event, set) + } + set.add(listener) + return this + } + + removeListener(event: string, listener: Listener): this { + this._listeners.get(event)?.delete(listener) + return this + } + + emit(event: string, ...args: unknown[]): boolean { + const set = this._listeners.get(event) + if (!set || set.size === 0) { + return false + } + for (const listener of set) { + listener(...args) + } + return true + } + + removeAllListeners(event?: string): this { + if (event) { + this._listeners.delete(event) + } else { + this._listeners.clear() + } + return this + } +} diff --git a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts index 258a29ab1..d55a0e2f6 100644 --- a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts @@ -1,42 +1,40 @@ -import type { WidgetLightConfig } from '@lifi/widget-light' -import { GuestBridge } from '@lifi/widget-light' - -type Listener = (...args: unknown[]) => void +import type { IframeConnectorInfo } from './BaseIframeProvider.js' +import { BaseIframeProvider } from './BaseIframeProvider.js' /** * Guest-side (iframe) provider for Bitcoin. Delegates transport to GuestBridge. * * Registers for UTXO init state and events, forwards method calls via * bridge.sendRpcRequest('UTXO', ...). + * + * Extends the base to also track the public key received from the host, + * which is needed by the Bitcoin SDK for PSBT signing operations. */ -export class BitcoinIframeProvider { - private readonly _listeners = new Map>() - private readonly bridge = GuestBridge.getInstance() - - private _accounts: string[] = [] - private _connected = false +export class BitcoinIframeProvider extends BaseIframeProvider { + private _publicKey: string | null = null - get accounts(): string[] { - return this._accounts + get publicKey(): string | null { + return this._publicKey } - get connected(): boolean { - return this._connected - } - - get address(): string | null { - return this._accounts[0] ?? null - } - - get config(): WidgetLightConfig | null { - return this.bridge.config + constructor() { + super('UTXO') } - constructor() { - this.bridge.onInit('UTXO', (state) => { - const s = state as { accounts: string[]; connected: boolean } + protected override _registerBridgeCallbacks(): void { + this.bridge.onInit(this.chainType, (state) => { + const s = state as { + accounts: string[] + connected: boolean + publicKey: string | null + connector?: IframeConnectorInfo + } this._accounts = s.accounts this._connected = s.connected + this._publicKey = s.publicKey ?? null + if (s.connector) { + this._connector = s.connector + } this.emit('accountsChanged', this._accounts) if (this._connected && this.address) { @@ -44,56 +42,25 @@ export class BitcoinIframeProvider { } }) - this.bridge.onEvent('UTXO', (event, data) => { + this.bridge.onEvent(this.chainType, (event, data) => { if (event === 'accountsChanged') { this._accounts = data as string[] this._connected = this._accounts.length > 0 - } - if (event === 'disconnect') { + } else if (event === 'connect') { + const d = data as { connector?: IframeConnectorInfo } + if (d.connector) { + this._connector = d.connector + } + } else if (event === 'disconnect') { this._accounts = [] this._connected = false + this._publicKey = null } this.emit(event, data) }) } - waitForInit(): Promise { - return this.bridge.waitForInit() - } - - async request(method: string, params?: unknown): Promise { - await this.bridge.waitForInit() - - if (method === 'getAccount') { - return { address: this.address } - } - - return this.bridge.sendRpcRequest('UTXO', method, params as unknown[]) - } - - on(event: string, listener: Listener): this { - let set = this._listeners.get(event) - if (!set) { - set = new Set() - this._listeners.set(event, set) - } - set.add(listener) - return this - } - - removeListener(event: string, listener: Listener): this { - this._listeners.get(event)?.delete(listener) - return this - } - - emit(event: string, ...args: unknown[]): boolean { - const set = this._listeners.get(event) - if (!set || set.size === 0) { - return false - } - for (const listener of set) { - listener(...args) - } - return true + request(method: string, params?: unknown): Promise { + return this.sendRequest(method, params) } } diff --git a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx index baaf3f689..ed26f4fc6 100644 --- a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx @@ -1,17 +1,21 @@ import { ChainId, ChainType } from '@lifi/sdk' +import { BitcoinProvider as BitcoinSDKProvider } from '@lifi/sdk-provider-bitcoin' import { BitcoinContext } from '@lifi/widget-provider' import { type FC, type PropsWithChildren, useEffect, + useMemo, useRef, useState, } from 'react' +import type { IframeConnectorInfo } from './BaseIframeProvider.js' import { BitcoinIframeProvider } from './BitcoinIframeProvider.js' interface IframeWalletState { accounts: string[] connected: boolean + connector: IframeConnectorInfo } /** @@ -19,7 +23,7 @@ interface IframeWalletState { * * Reads wallet state from BitcoinIframeProvider (which receives it from the * host via GuestBridge) and exposes it through BitcoinContext so the widget - * can display the connected account. + * can display the connected account and execute transactions. */ export const BitcoinIframeProviderValues: FC = ({ children, @@ -33,23 +37,29 @@ export const BitcoinIframeProviderValues: FC = ({ const [walletState, setWalletState] = useState({ accounts: provider.accounts, connected: provider.connected, + connector: provider.connector, }) useEffect(() => { const onAccountsChanged = (accounts: unknown) => { const accts = accounts as string[] - setWalletState({ accounts: accts, connected: accts.length > 0 }) + setWalletState((s) => ({ + ...s, + accounts: accts, + connected: accts.length > 0, + })) } const onConnect = () => { setWalletState({ accounts: provider.accounts, connected: true, + connector: provider.connector, }) } const onDisconnect = () => { - setWalletState({ accounts: [], connected: false }) + setWalletState({ accounts: [], connected: false, connector: {} }) } provider.on('accountsChanged', onAccountsChanged) @@ -71,7 +81,12 @@ export const BitcoinIframeProviderValues: FC = ({ addresses: address ? [address] : [], chainType: ChainType.UTXO, chainId: ChainId.BTC, - connector: isConnected ? { name: 'iframe-bridge' } : undefined, + connector: isConnected + ? { + name: walletState.connector.name ?? 'Bitcoin Wallet', + icon: walletState.connector.icon, + } + : undefined, isConnected, isConnecting: false, isReconnecting: false, @@ -81,12 +96,27 @@ export const BitcoinIframeProviderValues: FC = ({ | 'disconnected', } + const sdkProvider = useMemo( + () => + BitcoinSDKProvider({ + async getWalletClient() { + if (!provider.address) { + throw new Error('Bitcoin wallet not connected') + } + // Cast required: the SDK types expect a full bigmi Client, but the + // executor only uses client.account and client.request() at runtime. + return createIframeBitcoinClient(provider) as any + }, + }), + [provider] + ) + return ( = ({ ) } + +/** + * Creates a minimal bigmi-compatible wallet client that delegates all + * operations to the host via the iframe bridge. + * + * The `BitcoinStepExecutor` uses: + * - `client.account.address` / `.publicKey` for PSBT input processing + * - `client.request({ method, params })` via bigmi's `signPsbt()` action + */ +function createIframeBitcoinClient(provider: BitcoinIframeProvider) { + return { + account: { + address: provider.address!, + publicKey: provider.publicKey ?? '', + }, + async request({ method, params }: { method: string; params?: unknown }) { + return provider.request(method, params) + }, + } +} diff --git a/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts index 37f128c8b..248e446ff 100644 --- a/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts @@ -1,7 +1,5 @@ -import type { RpcError, WidgetLightConfig } from '@lifi/widget-light' -import { GuestBridge } from '@lifi/widget-light' - -type Listener = (...args: unknown[]) => void +import type { IframeConnectorInfo } from './BaseIframeProvider.js' +import { BaseIframeProvider } from './BaseIframeProvider.js' /** * EIP-1193 compatible provider that bridges the iframe guest to the parent @@ -15,47 +13,54 @@ type Listener = (...args: unknown[]) => void * 4. EIP-1193 events (accountsChanged, chainChanged, etc.) are emitted * locally for the wagmi connector to consume. */ -export class EthereumIframeProvider { - private readonly _listeners = new Map>() - private readonly bridge = GuestBridge.getInstance() - - private accounts: string[] = [] +export class EthereumIframeProvider extends BaseIframeProvider { private _chainIdHex: `0x${string}` = '0x1' get chainIdHex(): `0x${string}` { return this._chainIdHex } - get config(): WidgetLightConfig | null { - return this.bridge.config + constructor() { + super('EVM') } - constructor() { + protected override _registerBridgeCallbacks(): void { this.bridge.onInit('EVM', (state) => { - const s = state as { accounts: string[]; chainId: number } - this.accounts = s.accounts + const s = state as { + accounts: string[] + chainId: number + connector?: IframeConnectorInfo + } + this._accounts = s.accounts + this._connected = s.accounts.length > 0 this._chainIdHex = `0x${s.chainId.toString(16)}` + if (s.connector) { + this._connector = s.connector + this.emit('connectorUpdate', s.connector) + } this.emit('chainChanged', this._chainIdHex) this.emit('connect', { chainId: this._chainIdHex }) - this.emit('accountsChanged', this.accounts) + this.emit('accountsChanged', this._accounts) }) this.bridge.onEvent('EVM', (event, data) => { if (event === 'accountsChanged') { - this.accounts = data as string[] - } - if (event === 'chainChanged') { + this._accounts = data as string[] + this._connected = this._accounts.length > 0 + } else if (event === 'connect') { + const d = data as { connector?: IframeConnectorInfo } + if (d.connector) { + this._connector = d.connector + this.emit('connectorUpdate', d.connector) + } + } else if (event === 'chainChanged') { this._chainIdHex = data as `0x${string}` } this.emit(event, data) }) } - waitForInit(): Promise { - return this.bridge.waitForInit() - } - async request({ method, params, @@ -68,57 +73,30 @@ export class EthereumIframeProvider { switch (method) { case 'eth_accounts': case 'eth_requestAccounts': - return this.accounts + return this._accounts case 'eth_chainId': return this.chainIdHex case 'net_version': - return String(parseInt(this.chainIdHex, 16)) + return String(Number.parseInt(this.chainIdHex, 16)) + + case 'wallet_switchEthereumChain': { + const result = await this.bridge.sendRpcRequest('EVM', method, params) + // Optimistically update internal chain state before the async EVENT + // arrives via postMessage. This prevents the race where wagmi calls + // getChainId() right after switchChain() resolves but before the + // bridge's chainChanged event updates _chainIdHex. + const requested = (params as [{ chainId: `0x${string}` }])?.[0]?.chainId + if (requested) { + this._chainIdHex = requested + this.emit('chainChanged', requested) + } + return result + } default: return this.bridge.sendRpcRequest('EVM', method, params) } } - - // --------------------------------------------------------------------------- - // EIP-1193 event emitter interface - // --------------------------------------------------------------------------- - - on(event: string, listener: Listener): this { - let set = this._listeners.get(event) - if (!set) { - set = new Set() - this._listeners.set(event, set) - } - set.add(listener) - return this - } - - removeListener(event: string, listener: Listener): this { - this._listeners.get(event)?.delete(listener) - return this - } - - emit(event: string, ...args: unknown[]): boolean { - const set = this._listeners.get(event) - if (!set || set.size === 0) { - return false - } - for (const listener of set) { - listener(...args) - } - return true - } - - removeAllListeners(event?: string): this { - if (event) { - this._listeners.delete(event) - } else { - this._listeners.clear() - } - return this - } } - -export type { RpcError, WidgetLightConfig } diff --git a/packages/widget-embedded/src/providers/iframe/SolanaIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/SolanaIframeProvider.ts index 81a85e891..6b432d146 100644 --- a/packages/widget-embedded/src/providers/iframe/SolanaIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/SolanaIframeProvider.ts @@ -1,7 +1,4 @@ -import type { WidgetLightConfig } from '@lifi/widget-light' -import { GuestBridge } from '@lifi/widget-light' - -type Listener = (...args: unknown[]) => void +import { BaseIframeProvider } from './BaseIframeProvider.js' /** * Guest-side (iframe) provider for Solana. Delegates transport to GuestBridge. @@ -9,91 +6,12 @@ type Listener = (...args: unknown[]) => void * Registers for SVM init state and events, forwards method calls via * bridge.sendRpcRequest('SVM', ...). */ -export class SolanaIframeProvider { - private readonly _listeners = new Map>() - private readonly bridge = GuestBridge.getInstance() - - private _accounts: string[] = [] - private _connected = false - - get accounts(): string[] { - return this._accounts - } - - get connected(): boolean { - return this._connected - } - - get address(): string | null { - return this._accounts[0] ?? null - } - - get config(): WidgetLightConfig | null { - return this.bridge.config - } - +export class SolanaIframeProvider extends BaseIframeProvider { constructor() { - this.bridge.onInit('SVM', (state) => { - const s = state as { accounts: string[]; connected: boolean } - this._accounts = s.accounts - this._connected = s.connected - - this.emit('accountsChanged', this._accounts) - if (this._connected && this.address) { - this.emit('connect', { address: this.address }) - } - }) - - this.bridge.onEvent('SVM', (event, data) => { - if (event === 'accountsChanged') { - this._accounts = data as string[] - this._connected = this._accounts.length > 0 - } - if (event === 'disconnect') { - this._accounts = [] - this._connected = false - } - this.emit(event, data) - }) - } - - waitForInit(): Promise { - return this.bridge.waitForInit() - } - - async request(method: string, params?: unknown): Promise { - await this.bridge.waitForInit() - - if (method === 'getAccount') { - return { address: this.address } - } - - return this.bridge.sendRpcRequest('SVM', method, params as unknown[]) - } - - on(event: string, listener: Listener): this { - let set = this._listeners.get(event) - if (!set) { - set = new Set() - this._listeners.set(event, set) - } - set.add(listener) - return this - } - - removeListener(event: string, listener: Listener): this { - this._listeners.get(event)?.delete(listener) - return this + super('SVM') } - emit(event: string, ...args: unknown[]): boolean { - const set = this._listeners.get(event) - if (!set || set.size === 0) { - return false - } - for (const listener of set) { - listener(...args) - } - return true + request(method: string, params?: unknown): Promise { + return this.sendRequest(method, params) } } diff --git a/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx index ec6220a3b..9e45de9da 100644 --- a/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx @@ -9,11 +9,13 @@ import { useRef, useState, } from 'react' +import type { IframeConnectorInfo } from './BaseIframeProvider.js' import { SolanaIframeProvider } from './SolanaIframeProvider.js' interface IframeWalletState { accounts: string[] connected: boolean + connector: IframeConnectorInfo } /** @@ -35,23 +37,29 @@ export const SolanaIframeProviderValues: FC = ({ const [walletState, setWalletState] = useState({ accounts: provider.accounts, connected: provider.connected, + connector: provider.connector, }) useEffect(() => { const onAccountsChanged = (accounts: unknown) => { const accts = accounts as string[] - setWalletState({ accounts: accts, connected: accts.length > 0 }) + setWalletState((s) => ({ + ...s, + accounts: accts, + connected: accts.length > 0, + })) } const onConnect = () => { setWalletState({ accounts: provider.accounts, connected: true, + connector: provider.connector, }) } const onDisconnect = () => { - setWalletState({ accounts: [], connected: false }) + setWalletState({ accounts: [], connected: false, connector: {} }) } provider.on('accountsChanged', onAccountsChanged) @@ -73,7 +81,10 @@ export const SolanaIframeProviderValues: FC = ({ address, chainId: ChainId.SOL, chainType: ChainType.SVM, - connector: { name: 'iframe-bridge' }, + connector: { + name: walletState.connector.name ?? 'Solana Wallet', + icon: walletState.connector.icon, + }, isConnected: true as const, isConnecting: false, isReconnecting: false, @@ -140,8 +151,9 @@ function createIframeWallet(provider: SolanaIframeProvider) { } return { - name: 'iframe-bridge', - icon: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=' as const, + name: provider.connector.name ?? 'Solana Wallet', + icon: (provider.connector.icon ?? + 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=') as `data:image/svg+xml;base64,${string}`, version: '1.0.0' as const, chains: ['solana:mainnet'] as const, accounts: [account], diff --git a/packages/widget-embedded/src/providers/iframe/SuiIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/SuiIframeProvider.ts index 6059102a0..431ae557f 100644 --- a/packages/widget-embedded/src/providers/iframe/SuiIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/SuiIframeProvider.ts @@ -1,7 +1,4 @@ -import type { WidgetLightConfig } from '@lifi/widget-light' -import { GuestBridge } from '@lifi/widget-light' - -type Listener = (...args: unknown[]) => void +import { BaseIframeProvider } from './BaseIframeProvider.js' /** * Guest-side (iframe) provider for Sui. Delegates transport to GuestBridge. @@ -9,91 +6,12 @@ type Listener = (...args: unknown[]) => void * Registers for MVM init state and events, forwards method calls via * bridge.sendRpcRequest('MVM', ...). */ -export class SuiIframeProvider { - private readonly _listeners = new Map>() - private readonly bridge = GuestBridge.getInstance() - - private _accounts: string[] = [] - private _connected = false - - get accounts(): string[] { - return this._accounts - } - - get connected(): boolean { - return this._connected - } - - get address(): string | null { - return this._accounts[0] ?? null - } - - get config(): WidgetLightConfig | null { - return this.bridge.config - } - +export class SuiIframeProvider extends BaseIframeProvider { constructor() { - this.bridge.onInit('MVM', (state) => { - const s = state as { accounts: string[]; connected: boolean } - this._accounts = s.accounts - this._connected = s.connected - - this.emit('accountsChanged', this._accounts) - if (this._connected && this.address) { - this.emit('connect', { address: this.address }) - } - }) - - this.bridge.onEvent('MVM', (event, data) => { - if (event === 'accountsChanged') { - this._accounts = data as string[] - this._connected = this._accounts.length > 0 - } - if (event === 'disconnect') { - this._accounts = [] - this._connected = false - } - this.emit(event, data) - }) - } - - waitForInit(): Promise { - return this.bridge.waitForInit() - } - - async request(method: string, params?: unknown): Promise { - await this.bridge.waitForInit() - - if (method === 'getAccount') { - return { address: this.address } - } - - return this.bridge.sendRpcRequest('MVM', method, params as unknown[]) - } - - on(event: string, listener: Listener): this { - let set = this._listeners.get(event) - if (!set) { - set = new Set() - this._listeners.set(event, set) - } - set.add(listener) - return this - } - - removeListener(event: string, listener: Listener): this { - this._listeners.get(event)?.delete(listener) - return this + super('MVM') } - emit(event: string, ...args: unknown[]): boolean { - const set = this._listeners.get(event) - if (!set || set.size === 0) { - return false - } - for (const listener of set) { - listener(...args) - } - return true + request(method: string, params?: unknown): Promise { + return this.sendRequest(method, params) } } diff --git a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx index 89c62237a..a9dbca7aa 100644 --- a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx @@ -10,12 +10,14 @@ import { useRef, useState, } from 'react' +import type { IframeConnectorInfo } from './BaseIframeProvider.js' import { IframeSuiSigner } from './IframeSuiSigner.js' import { SuiIframeProvider } from './SuiIframeProvider.js' interface IframeWalletState { accounts: string[] connected: boolean + connector: IframeConnectorInfo } /** @@ -37,23 +39,29 @@ export const SuiIframeProviderValues: FC = ({ const [walletState, setWalletState] = useState({ accounts: provider.accounts, connected: provider.connected, + connector: provider.connector, }) useEffect(() => { const onAccountsChanged = (accounts: unknown) => { const accts = accounts as string[] - setWalletState({ accounts: accts, connected: accts.length > 0 }) + setWalletState((s) => ({ + ...s, + accounts: accts, + connected: accts.length > 0, + })) } const onConnect = () => { setWalletState({ accounts: provider.accounts, connected: true, + connector: provider.connector, }) } const onDisconnect = () => { - setWalletState({ accounts: [], connected: false }) + setWalletState({ accounts: [], connected: false, connector: {} }) } provider.on('accountsChanged', onAccountsChanged) @@ -75,7 +83,10 @@ export const SuiIframeProviderValues: FC = ({ address, chainId: ChainId.SUI, chainType: ChainType.MVM, - connector: { name: 'iframe-bridge' }, + connector: { + name: walletState.connector.name ?? 'Sui Wallet', + icon: walletState.connector.icon, + }, isConnected: true as const, isConnecting: false, isReconnecting: false, diff --git a/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts b/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts index f77c72386..790268f33 100644 --- a/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts +++ b/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts @@ -25,12 +25,31 @@ type ConnectorEmitter = Parameters[0]['emitter'] * `widgetLightIframe()` closure. It is updated on every factory invocation. * The provider's listeners read from this ref instead of capturing the * original `config.emitter`. + * + * ## Connector name/icon + * + * wagmi's `setup()` spreads the factory return value (`{ ...connectorFn() }`), + * which flattens getters into static values. Since the host wallet's connector + * info arrives asynchronously via the bridge, we store a reference to the + * spread object and mutate `name`/`icon` on it when the info arrives. */ -widgetLightConnector.type = 'widget-light-iframe' as const - export function widgetLightConnector() { let provider_: EthereumIframeProvider | undefined let latestEmitter: ConnectorEmitter + // Reference to the connector object wagmi creates via spread. + // We mutate `name`/`icon` on it when the host sends connector info. + let connectorRef: Record | undefined + + function updateConnectorInfo() { + if (!connectorRef || !provider_) { + return + } + const info = provider_.connector + if (info?.name) { + connectorRef.name = info.name + connectorRef.icon = info.icon + } + } return createConnector((config) => { latestEmitter = config.emitter @@ -41,10 +60,14 @@ export function widgetLightConnector() { type: widgetLightConnector.type, async setup() { - await this.getProvider() + // wagmi calls setup() on the spread connector object, so `this` + // is the actual connector instance stored in wagmi's state. + // eslint-disable-next-line @typescript-eslint/no-this-alias + connectorRef = this as unknown as Record }, async getProvider() { + connectorRef ??= this as unknown as Record if (typeof window === 'undefined' || window.parent === window) { return undefined } @@ -70,18 +93,24 @@ export function widgetLightConnector() { provider_.on('disconnect', () => { latestEmitter.emit('disconnect') }) + + // When bridge init delivers connector info from the host, + // mutate the wagmi connector object so the widget displays + // the real wallet name/icon (e.g. "MetaMask") instead of + // the fallback "Widget Light". + provider_.on('connectorUpdate', updateConnectorInfo) + + // If init already fired during construction (bridge INIT arrived + // before getProvider() was called), the connectorUpdate event was + // emitted before this listener existed. Apply eagerly. + updateConnectorInfo() } return provider_ }, async isAuthorized() { - try { - const accounts = await this.getAccounts() - const result = accounts.length > 0 - return result - } catch { - return false - } + const accounts = await this.getAccounts().catch(() => []) + return accounts.length > 0 }, async connect({ withCapabilities } = {}) { @@ -149,13 +178,13 @@ export function widgetLightConnector() { return fromHex(chainId, 'number') }, - onAccountsChanged(accounts) { + onAccountsChanged(accounts: string[]) { latestEmitter.emit('change', { accounts: accounts.map(getAddress), }) }, - onChainChanged(chainId) { + onChainChanged(chainId: string | number) { latestEmitter.emit('change', { chainId: typeof chainId === 'string' ? Number(chainId) : chainId, }) @@ -167,3 +196,5 @@ export function widgetLightConnector() { } }) } + +widgetLightConnector.type = 'widget-light-iframe' as const diff --git a/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts b/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts index dcd83155c..350d4e733 100644 --- a/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts +++ b/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts @@ -3,7 +3,7 @@ import { getConnectorClient as getBigmiConnectorClient, } from '@bigmi/client' import { useAccount, useConfig } from '@bigmi/react' -import { useCallback, useEffect, useRef } from 'react' +import { useCallback, useEffect, useMemo, useRef } from 'react' import type { IframeEcosystemHandler } from '../../shared/protocol.js' /** @@ -14,20 +14,33 @@ import type { IframeEcosystemHandler } from '../../shared/protocol.js' * * Supported methods: * - `getAccount` → returns current account info - * - `signPsbt` → sign a PSBT (base64) - * - `sendBitcoin` → send bitcoin to an address - * - `getAddresses` → get wallet addresses - * - Generic methods are forwarded to the wallet client + * - All other methods are forwarded to the wallet client */ export function useBitcoinIframeHandler(): IframeEcosystemHandler { const bigmiConfig = useConfig() const currentWallet = useAccount() const address = currentWallet.account?.address + const publicKey = currentWallet.account?.publicKey const isConnected = currentWallet.isConnected + const connectorInfo = currentWallet.connector + ? { name: currentWallet.connector.name, icon: currentWallet.connector.icon } + : undefined - const stateRef = useRef({ address, isConnected, bigmiConfig }) - stateRef.current = { address, isConnected, bigmiConfig } + const stateRef = useRef({ + address, + publicKey, + isConnected, + bigmiConfig, + connectorInfo, + }) + stateRef.current = { + address, + publicKey, + isConnected, + bigmiConfig, + connectorInfo, + } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -37,19 +50,21 @@ export function useBitcoinIframeHandler(): IframeEcosystemHandler { useEffect(() => { if (isConnected && address) { - emitRef.current?.('connect', { address }) + emitRef.current?.('connect', { address, connector: connectorInfo }) } else { emitRef.current?.('disconnect', {}) } - }, [isConnected, address]) + }, [isConnected, address, connectorInfo]) const getInitState = useCallback(() => { - const { address, isConnected } = stateRef.current + const { address, publicKey, isConnected, connectorInfo } = stateRef.current return { chainType: 'UTXO' as const, state: { accounts: address ? [address] : [], connected: isConnected, + publicKey: publicKey ?? null, + connector: connectorInfo, }, } }, []) @@ -63,28 +78,15 @@ export function useBitcoinIframeHandler(): IframeEcosystemHandler { throw new Error('Bitcoin wallet not connected') } - switch (method) { - case 'getAccount': - return { address } - - case 'signPsbt': - case 'sendBitcoin': - case 'getAddresses': { - const client = await getBigmiConnectorClient(bigmiConfig) - return (client as any).request({ - method, - params: params as any, - }) - } - - default: { - const client = await getBigmiConnectorClient(bigmiConfig) - return (client as any).request({ - method, - params: params as any, - }) - } + if (method === 'getAccount') { + return { address, publicKey: stateRef.current.publicKey ?? null } } + + const client = await getBigmiConnectorClient(bigmiConfig) + return (client as any).request({ + method, + params: params as any, + }) }, [] ) @@ -99,10 +101,13 @@ export function useBitcoinIframeHandler(): IframeEcosystemHandler { [] ) - return { - chainType: 'UTXO', - getInitState, - handleRequest, - subscribe, - } + return useMemo( + () => ({ + chainType: 'UTXO' as const, + getInitState, + handleRequest, + subscribe, + }), + [getInitState, handleRequest, subscribe] + ) } diff --git a/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts b/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts index 29be80c42..ce79adc4c 100644 --- a/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts +++ b/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts @@ -1,4 +1,4 @@ -import { useCallback, useEffect, useRef } from 'react' +import { useCallback, useEffect, useMemo, useRef } from 'react' import { useConnection, usePublicClient, @@ -15,13 +15,29 @@ import { handleRpcRequest } from './rpcHandler.js' * forwards EIP-1193 RPC requests from the guest iframe. */ export function useEthereumIframeHandler(): IframeEcosystemHandler { - const { address, chainId } = useConnection() + const { address, chainId, connector } = useConnection() const { data: walletClient } = useWalletClient() const publicClient = usePublicClient() const { mutateAsync: switchChainAsync } = useSwitchChain() - const stateRef = useRef({ address, chainId, walletClient, publicClient }) - stateRef.current = { address, chainId, walletClient, publicClient } + const connectorInfo = connector + ? { name: connector.name, icon: connector.icon } + : undefined + + const stateRef = useRef({ + address, + chainId, + walletClient, + publicClient, + connectorInfo, + }) + stateRef.current = { + address, + chainId, + walletClient, + publicClient, + connectorInfo, + } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -35,16 +51,20 @@ export function useEthereumIframeHandler(): IframeEcosystemHandler { } const hexChainId = `0x${chainId.toString(16)}` as const emitRef.current?.('chainChanged', hexChainId) - emitRef.current?.('connect', { chainId: hexChainId }) - }, [chainId]) + emitRef.current?.('connect', { + chainId: hexChainId, + connector: connectorInfo, + }) + }, [chainId, connectorInfo]) const getInitState = useCallback(() => { - const { address, chainId } = stateRef.current + const { address, chainId, connectorInfo } = stateRef.current return { chainType: 'EVM' as const, state: { accounts: address ? [address] : [], chainId: chainId ?? 1, + connector: connectorInfo, }, } }, []) @@ -75,10 +95,13 @@ export function useEthereumIframeHandler(): IframeEcosystemHandler { [] ) - return { - chainType: 'EVM', - getInitState, - handleRequest, - subscribe, - } + return useMemo( + () => ({ + chainType: 'EVM' as const, + getInitState, + handleRequest, + subscribe, + }), + [getInitState, handleRequest, subscribe] + ) } diff --git a/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts b/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts index 05dbe7b89..21655d6ee 100644 --- a/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts +++ b/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts @@ -1,5 +1,5 @@ import type { Wallet } from '@wallet-standard/base' -import { useCallback, useEffect, useRef } from 'react' +import { useCallback, useEffect, useMemo, useRef } from 'react' import type { IframeEcosystemHandler } from '../../shared/protocol.js' export interface SolanaIframeHandlerParams { @@ -8,6 +8,23 @@ export interface SolanaIframeHandlerParams { wallet: Wallet | null } +function base64ToBytes(base64: string): Uint8Array { + return Uint8Array.from(atob(base64), (c) => c.charCodeAt(0)) +} + +function bytesToBase64(bytes: Uint8Array): string { + return btoa(String.fromCharCode(...bytes)) +} + +function getWalletFeature(wallet: Wallet, feature: string): any { + const features = wallet.features as Record + const f = features[feature] + if (!f) { + throw new Error(`Wallet does not support ${feature}`) + } + return f +} + /** * Host-side hook that creates an `IframeEcosystemHandler` for Solana (SVM). * @@ -30,25 +47,32 @@ export function useSolanaIframeHandler( const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) + const connectorInfo = wallet + ? { name: wallet.name, icon: wallet.icon } + : undefined + useEffect(() => { emitRef.current?.('accountsChanged', address ? [address] : []) }, [address]) useEffect(() => { if (connected && address) { - emitRef.current?.('connect', { address }) + emitRef.current?.('connect', { address, connector: connectorInfo }) } else { emitRef.current?.('disconnect', {}) } - }, [connected, address]) + }, [connected, address, connectorInfo]) const getInitState = useCallback(() => { - const { address, connected } = stateRef.current + const { address, connected, wallet } = stateRef.current return { chainType: 'SVM' as const, state: { accounts: address ? [address] : [], connected, + connector: wallet + ? { name: wallet.name, icon: wallet.icon } + : undefined, }, } }, []) @@ -60,76 +84,50 @@ export function useSolanaIframeHandler( throw new Error('Solana wallet not connected') } + const account = wallet.accounts[0] + switch (method) { case 'getAccount': return { address } case 'signTransaction': { const { transaction } = params as { transaction: string } - const features = wallet.features as Record - const signFeature = features['solana:signTransaction'] - if (!signFeature) { - throw new Error('Wallet does not support signTransaction') - } - const account = wallet.accounts[0] - const txBytes = Uint8Array.from(atob(transaction), (c) => - c.charCodeAt(0) - ) - const [result] = await signFeature.signTransaction({ + const feature = getWalletFeature(wallet, 'solana:signTransaction') + const [result] = await feature.signTransaction({ account, - transaction: txBytes, + transaction: base64ToBytes(transaction), }) return { - signedTransaction: btoa( - String.fromCharCode(...new Uint8Array(result.signedTransaction)) + signedTransaction: bytesToBase64( + new Uint8Array(result.signedTransaction) ), } } case 'signMessage': { const { message } = params as { message: string } - const features = wallet.features as Record - const signFeature = features['solana:signMessage'] - if (!signFeature) { - throw new Error('Wallet does not support signMessage') - } - const account = wallet.accounts[0] - const msgBytes = Uint8Array.from(atob(message), (c) => - c.charCodeAt(0) - ) - const [result] = await signFeature.signMessage({ + const feature = getWalletFeature(wallet, 'solana:signMessage') + const [result] = await feature.signMessage({ account, - message: msgBytes, + message: base64ToBytes(message), }) return { - signature: btoa( - String.fromCharCode(...new Uint8Array(result.signature)) - ), + signature: bytesToBase64(new Uint8Array(result.signature)), } } case 'signAndSendTransaction': { - const { transaction } = params as { - transaction: string - options?: Record - } - const features = wallet.features as Record - const sendFeature = features['solana:signAndSendTransaction'] - if (!sendFeature) { - throw new Error('Wallet does not support signAndSendTransaction') - } - const account = wallet.accounts[0] - const txBytes = Uint8Array.from(atob(transaction), (c) => - c.charCodeAt(0) + const { transaction } = params as { transaction: string } + const feature = getWalletFeature( + wallet, + 'solana:signAndSendTransaction' ) - const [result] = await sendFeature.signAndSendTransaction({ + const [result] = await feature.signAndSendTransaction({ account, - transaction: txBytes, + transaction: base64ToBytes(transaction), }) return { - signature: btoa( - String.fromCharCode(...new Uint8Array(result.signature)) - ), + signature: bytesToBase64(new Uint8Array(result.signature)), } } @@ -150,10 +148,13 @@ export function useSolanaIframeHandler( [] ) - return { - chainType: 'SVM', - getInitState, - handleRequest, - subscribe, - } + return useMemo( + () => ({ + chainType: 'SVM' as const, + getInitState, + handleRequest, + subscribe, + }), + [getInitState, handleRequest, subscribe] + ) } diff --git a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts index 649b5faaf..a784f28d0 100644 --- a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts +++ b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts @@ -4,9 +4,13 @@ import { useDAppKit, useWalletConnection, } from '@mysten/dapp-kit-react' -import { useCallback, useEffect, useRef } from 'react' +import { useCallback, useEffect, useMemo, useRef } from 'react' import type { IframeEcosystemHandler } from '../../shared/protocol.js' +function base64ToBytes(base64: string): Uint8Array { + return Uint8Array.from(atob(base64), (c) => c.charCodeAt(0)) +} + /** * Host-side hook that creates an `IframeEcosystemHandler` for Sui (MVM). * @@ -26,9 +30,12 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { const address = currentWallet?.accounts?.[0]?.address const isConnected = connectionStatus === 'connected' + const connectorInfo = currentWallet + ? { name: currentWallet.name, icon: currentWallet.icon } + : undefined - const stateRef = useRef({ address, isConnected, dAppKit }) - stateRef.current = { address, isConnected, dAppKit } + const stateRef = useRef({ address, isConnected, dAppKit, connectorInfo }) + stateRef.current = { address, isConnected, dAppKit, connectorInfo } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -38,19 +45,20 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { useEffect(() => { if (isConnected && address) { - emitRef.current?.('connect', { address }) + emitRef.current?.('connect', { address, connector: connectorInfo }) } else { emitRef.current?.('disconnect', {}) } - }, [isConnected, address]) + }, [isConnected, address, connectorInfo]) const getInitState = useCallback(() => { - const { address, isConnected } = stateRef.current + const { address, isConnected, connectorInfo } = stateRef.current return { chainType: 'MVM' as const, state: { accounts: address ? [address] : [], connected: isConnected, + connector: connectorInfo, }, } }, []) @@ -70,10 +78,9 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { case 'signTransaction': { const { transaction } = params as { transaction: string } - const txBytes = Uint8Array.from(atob(transaction), (c) => - c.charCodeAt(0) + const result = await signer.signTransaction( + base64ToBytes(transaction) ) - const result = await signer.signTransaction(txBytes) return { signature: result.signature, bytes: result.bytes, @@ -82,10 +89,9 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { case 'signPersonalMessage': { const { message } = params as { message: string } - const msgBytes = Uint8Array.from(atob(message), (c) => - c.charCodeAt(0) + const result = await signer.signPersonalMessage( + base64ToBytes(message) ) - const result = await signer.signPersonalMessage(msgBytes) return { signature: result.signature, bytes: result.bytes, @@ -93,13 +99,8 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { } case 'signAndExecuteTransaction': { - const { transaction } = params as { - transaction: string - } - const result = await dAppKit.signAndExecuteTransaction({ - transaction, - }) - return result + const { transaction } = params as { transaction: string } + return dAppKit.signAndExecuteTransaction({ transaction }) } default: @@ -119,10 +120,13 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { [] ) - return { - chainType: 'MVM', - getInitState, - handleRequest, - subscribe, - } + return useMemo( + () => ({ + chainType: 'MVM' as const, + getInitState, + handleRequest, + subscribe, + }), + [getInitState, handleRequest, subscribe] + ) } diff --git a/packages/widget-light/src/host/WidgetLightEventBus.ts b/packages/widget-light/src/host/WidgetLightEventBus.ts index 033ecbc59..ba7ff861d 100644 --- a/packages/widget-light/src/host/WidgetLightEventBus.ts +++ b/packages/widget-light/src/host/WidgetLightEventBus.ts @@ -9,20 +9,11 @@ const listeners = new Map>() const refCounts = new Map() let _sendFn: SendFn | null = null -function sendSubscribe(event: string): void { - _sendFn?.({ - source: WIDGET_LIGHT_SOURCE, - type: 'WIDGET_EVENT_SUBSCRIBE', - event, - }) -} - -function sendUnsubscribe(event: string): void { - _sendFn?.({ - source: WIDGET_LIGHT_SOURCE, - type: 'WIDGET_EVENT_UNSUBSCRIBE', - event, - }) +function sendEventControl( + event: string, + type: 'WIDGET_EVENT_SUBSCRIBE' | 'WIDGET_EVENT_UNSUBSCRIBE' +): void { + _sendFn?.({ source: WIDGET_LIGHT_SOURCE, type, event }) } function _register(send: SendFn): void { @@ -30,17 +21,17 @@ function _register(send: SendFn): void { // Replay existing subscriptions to the newly registered iframe for (const [event, count] of refCounts) { if (count > 0) { - send({ - source: WIDGET_LIGHT_SOURCE, - type: 'WIDGET_EVENT_SUBSCRIBE', - event, - }) + sendEventControl(event, 'WIDGET_EVENT_SUBSCRIBE') } } } function _unregister(): void { _sendFn = null + // Clear handler sets so that handlers belonging to a previous iframe session + // cannot be invoked by a future session. refCounts is intentionally preserved + // so _register can replay subscriptions to the next iframe. + listeners.clear() } function _receiveEvent(event: string, data: unknown): void { @@ -68,7 +59,7 @@ function on( const prev = refCounts.get(key) ?? 0 refCounts.set(key, prev + 1) if (prev === 0) { - sendSubscribe(key) + sendEventControl(key, 'WIDGET_EVENT_SUBSCRIBE') } } @@ -83,7 +74,7 @@ function off( const next = Math.max(0, prev - 1) refCounts.set(key, next) if (prev > 0 && next === 0) { - sendUnsubscribe(key) + sendEventControl(key, 'WIDGET_EVENT_UNSUBSCRIBE') } } diff --git a/packages/widget-light/src/host/useWidgetLightEvents.ts b/packages/widget-light/src/host/useWidgetLightEvents.ts index 5cf01094f..1f51217f6 100644 --- a/packages/widget-light/src/host/useWidgetLightEvents.ts +++ b/packages/widget-light/src/host/useWidgetLightEvents.ts @@ -1,4 +1,3 @@ -import { useMemo } from 'react' import type { WidgetLightEvents } from '../shared/widgetLightEvents.js' import { WidgetLightEventBus } from './WidgetLightEventBus.js' @@ -13,6 +12,13 @@ export interface WidgetLightEventEmitter { ): void } +// Stable module-level reference — no useMemo needed since these are +// module-level functions, not closures over React state. +const emitter: WidgetLightEventEmitter = { + on: WidgetLightEventBus.on, + off: WidgetLightEventBus.off, +} + /** * React hook that returns a typed event emitter for widget events. * @@ -30,11 +36,5 @@ export interface WidgetLightEventEmitter { * } */ export function useWidgetLightEvents(): WidgetLightEventEmitter { - return useMemo( - () => ({ - on: WidgetLightEventBus.on, - off: WidgetLightEventBus.off, - }), - [] - ) + return emitter } diff --git a/packages/widget-light/src/host/useWidgetLightHost.ts b/packages/widget-light/src/host/useWidgetLightHost.ts index 15c4d193f..ce7759db1 100644 --- a/packages/widget-light/src/host/useWidgetLightHost.ts +++ b/packages/widget-light/src/host/useWidgetLightHost.ts @@ -3,6 +3,7 @@ import type { ConnectWalletArgs, HostMessage, IframeEcosystemHandler, + RpcError, WidgetLightConfig, } from '../shared/protocol.js' import { WIDGET_LIGHT_SOURCE } from '../shared/protocol.js' @@ -82,6 +83,9 @@ export function useWidgetLightHost({ // --------------------------------------------------------------------------- const sendToIframe = useCallback( (msg: HostMessage) => { + if (!readyRef.current) { + return + } iframeRef.current?.contentWindow?.postMessage(msg, iframeOrigin ?? '*') }, [iframeOrigin] @@ -123,14 +127,17 @@ export function useWidgetLightHost({ config: enrichConfig(config, onConnect), ecosystems, }) + // Replay event subscriptions — the initial _register() call may have + // sent WIDGET_EVENT_SUBSCRIBE messages before the iframe's JS loaded, + // so they were lost. Re-registering replays all active subscriptions + // now that the guest is ready to receive them. + WidgetLightEventBus._register(sendToIframe) return } // ── RESIZE ───────────────────────────────────────────────────────────── if (msg.type === 'RESIZE' && autoResize) { - if (iframeRef.current) { - iframeRef.current.style.height = `${msg.height}px` - } + iframeRef.current.style.height = `${msg.height}px` return } @@ -150,12 +157,21 @@ export function useWidgetLightHost({ if (msg.type === 'RPC_REQUEST') { const { handlers } = stateRef.current const handler = handlers.find((h) => h.chainType === msg.chainType) - if (!handler) { + + const sendRpcResponse = ( + payload: { result: unknown } | { error: RpcError } + ) => { sendToIframe({ source: WIDGET_LIGHT_SOURCE, type: 'RPC_RESPONSE', chainType: msg.chainType, id: msg.id, + ...payload, + }) + } + + if (!handler) { + sendRpcResponse({ error: { code: -32601, message: `No handler registered for chain type: ${msg.chainType}`, @@ -170,20 +186,10 @@ export function useWidgetLightHost({ msg.method, msg.params ) - sendToIframe({ - source: WIDGET_LIGHT_SOURCE, - type: 'RPC_RESPONSE', - chainType: msg.chainType, - id: msg.id, - result, - }) + sendRpcResponse({ result }) } catch (err: unknown) { const e = err as { code?: number; message?: string; data?: unknown } - sendToIframe({ - source: WIDGET_LIGHT_SOURCE, - type: 'RPC_RESPONSE', - chainType: msg.chainType, - id: msg.id, + sendRpcResponse({ error: { code: e.code ?? -32000, message: e.message ?? 'Unknown error', @@ -202,13 +208,11 @@ export function useWidgetLightHost({ // Push config updates to the iframe when config changes (after INIT) // --------------------------------------------------------------------------- useEffect(() => { - if (readyRef.current) { - sendToIframe({ - source: WIDGET_LIGHT_SOURCE, - type: 'CONFIG_UPDATE', - config: enrichConfig(config, onConnect), - }) - } + sendToIframe({ + source: WIDGET_LIGHT_SOURCE, + type: 'CONFIG_UPDATE', + config: enrichConfig(config, onConnect), + }) }, [config, onConnect, sendToIframe]) // --------------------------------------------------------------------------- diff --git a/packages/widget-light/src/index.ts b/packages/widget-light/src/index.ts index 2aeaeb769..4e3f9db33 100644 --- a/packages/widget-light/src/index.ts +++ b/packages/widget-light/src/index.ts @@ -27,7 +27,6 @@ export type { WidgetLightConfig, } from './shared/protocol.js' export { - isGuestMessage, isWidgetLightMessage, WIDGET_LIGHT_SOURCE, } from './shared/protocol.js' diff --git a/packages/widget-light/src/shared/protocol.ts b/packages/widget-light/src/shared/protocol.ts index b6ee244f1..0cc70eacb 100644 --- a/packages/widget-light/src/shared/protocol.ts +++ b/packages/widget-light/src/shared/protocol.ts @@ -212,7 +212,3 @@ export function isWidgetLightMessage( (data as Record).source === WIDGET_LIGHT_SOURCE ) } - -export function isGuestMessage(data: unknown): data is GuestMessage { - return isWidgetLightMessage(data) && 'type' in (data as object) -} diff --git a/packages/widget-playground-vite/package.json b/packages/widget-playground-vite/package.json index a35f1f623..247ddce15 100644 --- a/packages/widget-playground-vite/package.json +++ b/packages/widget-playground-vite/package.json @@ -22,7 +22,7 @@ "vite-plugin-mkcert": "^1.17.9" }, "devDependencies": { - "@vitejs/plugin-react": "^4.5.2", + "@vitejs/plugin-react": "^6.0.1", "react-scan": "^0.5.3", "source-map-explorer": "^2.5.3", "typescript": "^5.9.3", diff --git a/packages/widget-playground/package.json b/packages/widget-playground/package.json index 3b09ded92..abf67fc01 100644 --- a/packages/widget-playground/package.json +++ b/packages/widget-playground/package.json @@ -54,7 +54,7 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "viem": "^2.47.2", - "wagmi": "^3.3.2", + "wagmi": "^3.5.0", "zustand": "^5.0.11" }, "devDependencies": { diff --git a/packages/widget-provider-bitcoin/package.json b/packages/widget-provider-bitcoin/package.json index 4f5ccc507..d3c793759 100644 --- a/packages/widget-provider-bitcoin/package.json +++ b/packages/widget-provider-bitcoin/package.json @@ -48,7 +48,7 @@ "@lifi/widget-provider": "workspace:*" }, "peerDependencies": { - "@bigmi/react": "0.7.0" + "@bigmi/react": "^0.7.1" }, "devDependencies": { "cpy-cli": "^7.0.0", diff --git a/packages/widget-provider-ethereum/package.json b/packages/widget-provider-ethereum/package.json index 1877b8b8f..18297774e 100644 --- a/packages/widget-provider-ethereum/package.json +++ b/packages/widget-provider-ethereum/package.json @@ -48,7 +48,7 @@ }, "peerDependencies": { "@wagmi/core": "^3.x", - "wagmi": "^3.1.0" + "wagmi": "^3.5.0" }, "devDependencies": { "cpy-cli": "^7.0.0", diff --git a/packages/widget-provider-ethereum/src/utils/syncWagmiConfig.ts b/packages/widget-provider-ethereum/src/utils/syncWagmiConfig.ts index 49b82819e..4f8fc5da2 100644 --- a/packages/widget-provider-ethereum/src/utils/syncWagmiConfig.ts +++ b/packages/widget-provider-ethereum/src/utils/syncWagmiConfig.ts @@ -12,6 +12,7 @@ export const syncWagmiConfig = async ( if (_mainnet) { _mainnet.contracts = { ...mainnet.contracts, ..._mainnet.contracts } } + wagmiConfig._internal.chains.setState(chains) wagmiConfig._internal.connectors.setState(() => [ diff --git a/packages/widget-provider-sui/package.json b/packages/widget-provider-sui/package.json index 78d185c96..b2136f2dc 100644 --- a/packages/widget-provider-sui/package.json +++ b/packages/widget-provider-sui/package.json @@ -43,7 +43,7 @@ "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-sui": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", - "@mysten/sui": "^2.6.0" + "@mysten/sui": "^2.7.0" }, "peerDependencies": { "@mysten/dapp-kit-react": "^2.0.0" diff --git a/packages/widget/package.json b/packages/widget/package.json index 560c513fb..9da9b6f94 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -56,7 +56,7 @@ "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", "@tanstack/react-router": "^1.166.7", - "@tanstack/react-virtual": "^3.13.16", + "@tanstack/react-virtual": "^3.13.22", "i18next": "^25.8.18", "microdiff": "^1.5.0", "mitt": "^3.0.1", diff --git a/packages/widget/src/components/BaseTransactionButton/BaseTransactionButton.tsx b/packages/widget/src/components/BaseTransactionButton/BaseTransactionButton.tsx index 9a1b01711..8485ba28b 100644 --- a/packages/widget/src/components/BaseTransactionButton/BaseTransactionButton.tsx +++ b/packages/widget/src/components/BaseTransactionButton/BaseTransactionButton.tsx @@ -23,7 +23,6 @@ export const BaseTransactionButton: React.FC = ({ route, chain ) - const handleClick = async (e: React.MouseEvent) => { if (connected) { onClick?.() diff --git a/packages/widget/src/stores/chains/ChainOrderStore.tsx b/packages/widget/src/stores/chains/ChainOrderStore.tsx index 2ddbec32f..5ecb0b8e0 100644 --- a/packages/widget/src/stores/chains/ChainOrderStore.tsx +++ b/packages/widget/src/stores/chains/ChainOrderStore.tsx @@ -99,6 +99,14 @@ export function ChainOrderStoreProvider({ setFieldValue('toChain', fromChainValue) } + // When "All Networks" is active, don't auto-select a chain from the + // persisted chain order. This prevents stale cross-ecosystem selections + // (e.g. EVM from + Solana to) from triggering the "destination wallet + // address required" message after a page refresh. + if (initialIsAllNetworks) { + return + } + const [chainValue] = getFieldValues(`${key}Chain`) if (chainValue) { return diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 530def25f..2f916500d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,7 +49,7 @@ importers: version: 5.86.0(@types/node@25.5.0)(typescript@5.9.3) lerna: specifier: ^9.0.6 - version: 9.0.6(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.5.0)(babel-plugin-macros@3.1.0) + version: 9.0.6(@types/node@25.5.0)(babel-plugin-macros@3.1.0) lint-staged: specifier: ^16.3.3 version: 16.3.3 @@ -86,10 +86,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -134,8 +134,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -153,7 +153,7 @@ importers: version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -189,8 +189,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -213,35 +213,35 @@ importers: specifier: ^0.7.1 version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@dynamic-labs/bitcoin': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/ethereum': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/ethereum-aa': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-react-core': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/solana': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/solana-core': - specifier: ^4.67.1 - version: 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + specifier: ^4.67.2 + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/wagmi-connector': - specifier: ^4.67.1 - version: 4.67.1(45c4ff2b2c1f08547fb77a9e74e7164b) + specifier: ^4.67.2 + version: 4.67.2(357284df7c9b2bd3a6b91ec3f0edd728) '@lifi/sdk': specifier: ^3.16.1 version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -298,8 +298,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -317,7 +317,7 @@ importers: version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -351,7 +351,7 @@ importers: version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -388,7 +388,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) next: specifier: ^14 version: 14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -425,7 +425,7 @@ importers: version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@15.5.12(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -512,12 +512,12 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.1.0 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) source-map-explorer: specifier: ^2.5.3 version: 2.5.3 @@ -538,7 +538,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) nuxt: specifier: 3.17.7 version: 3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) @@ -559,10 +559,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -571,13 +571,13 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) + version: 2.25.0(78098f046e864437a57df44ee72f4807) '@privy-io/wagmi': specifier: ^1.0.6 version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) '@solana/kit': - specifier: ^6.3.0 - version: 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + specifier: ^6.3.1 + version: 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/wallet-adapter-base': specifier: ^0.9.27 version: 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -616,8 +616,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -638,10 +638,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -650,7 +650,7 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) + version: 2.25.0(78098f046e864437a57df44ee72f4807) '@privy-io/wagmi': specifier: ^1.0.6 version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) @@ -695,8 +695,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) eslint: specifier: ^9.34.0 version: 9.39.4(jiti@2.6.1) @@ -726,10 +726,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@rainbow-me/rainbowkit': specifier: ^2.2.10 version: 2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) @@ -756,8 +756,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -772,7 +772,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@react-router/node': specifier: ^7.13.0 version: 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) @@ -824,7 +824,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@remix-run/css-bundle': specifier: ^2.17.2 version: 2.17.4 @@ -882,10 +882,10 @@ importers: version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(4fe09d18b121daf54023163592473233) + version: 3.22.8(181d5f00fcc30c3404045ff3c974754e) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -929,7 +929,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.3.2 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': @@ -939,8 +939,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -958,7 +958,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) react: specifier: ^19.2.4 version: 19.2.4 @@ -1034,8 +1034,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1050,10 +1050,10 @@ importers: version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(34b91203ca713c308f96c734a33217fc) + version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1092,8 +1092,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1107,7 +1107,7 @@ importers: examples/vite-iframe: dependencies: '@bigmi/react': - specifier: 0.7.1 + specifier: ^0.7.1 version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': specifier: ^11.14.0 @@ -1144,7 +1144,7 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mysten/dapp-kit-react': specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -1164,7 +1164,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.4.2 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/node': @@ -1177,8 +1177,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1193,7 +1193,7 @@ importers: dependencies: '@lifi/widget-light': specifier: ^4.0.0-alpha.2 - version: 4.0.0-alpha.3(9e0844ef006464c0a121fb61d3af23df) + version: 4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -1207,7 +1207,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.4.2 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': @@ -1217,8 +1217,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1230,7 +1230,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(2fb7761314c756a9706d026ed291c31b) + version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) veaury: specifier: ^2.6.3 version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1239,8 +1239,8 @@ importers: version: 3.5.30(typescript@5.9.3) devDependencies: '@vitejs/plugin-react': - specifier: ^6.0.0 - version: 6.0.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) '@vitejs/plugin-vue': specifier: ^6.0.5 version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) @@ -1264,7 +1264,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(6050907b036eca095d838803c2f05279) + version: 3.40.12(8296b87b860be7876c0cab13d577255c) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1291,8 +1291,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -1394,8 +1394,8 @@ importers: specifier: ^1.166.7 version: 1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@tanstack/react-virtual': - specifier: ^3.13.16 - version: 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^3.13.22 + version: 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: specifier: ^25.8.18 version: 25.8.18(typescript@5.9.3) @@ -1445,6 +1445,9 @@ importers: '@lifi/sdk': specifier: 4.0.0-beta.0 version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/sdk-provider-bitcoin': + specifier: ^4.0.0-beta.0 + version: 4.0.0-beta.0(@types/react@19.2.14)(bs58@6.0.0)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@lifi/sdk-provider-solana': specifier: ^4.0.0-alpha.20 version: 4.0.0-beta.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -1476,8 +1479,8 @@ importers: specifier: workspace:* version: link:../widget-provider-sui '@mysten/sui': - specifier: ^2.6.0 - version: 2.6.0(typescript@5.9.3) + specifier: ^2.7.0 + version: 2.7.0(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -1494,7 +1497,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.4.2 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: '@types/react': @@ -1504,8 +1507,8 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1529,7 +1532,7 @@ importers: version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/dapp-kit-react': specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@wagmi/core': specifier: ^3.x version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) @@ -1658,7 +1661,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.3.2 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) zustand: specifier: ^5.0.11 @@ -1760,8 +1763,8 @@ importers: version: 1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) devDependencies: '@vitejs/plugin-react': - specifier: ^4.5.2 - version: 4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + specifier: ^6.0.1 + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) react-scan: specifier: ^0.5.3 version: 0.5.3(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rollup@4.59.0) @@ -1809,8 +1812,8 @@ importers: specifier: ^0.7.1 version: 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': - specifier: 0.7.0 - version: 0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^0.7.1 + version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@lifi/sdk': specifier: 4.0.0-beta.0 version: 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -1852,7 +1855,7 @@ importers: specifier: ^2.47.2 version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: - specifier: ^3.1.0 + specifier: ^3.5.0 version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) devDependencies: cpy-cli: @@ -1921,10 +1924,10 @@ importers: version: link:../widget-provider '@mysten/dapp-kit-react': specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@mysten/sui': - specifier: ^2.6.0 - version: 2.6.0(typescript@5.9.3) + specifier: ^2.7.0 + version: 2.7.0(typescript@5.9.3) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -2151,18 +2154,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-self@7.27.1': - resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-source@7.27.1': - resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.28.6': resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==} engines: {node: '>=6.9.0'} @@ -2210,13 +2201,6 @@ packages: peerDependencies: bs58: '>=4.0.1' - '@bigmi/react@0.7.0': - resolution: {integrity: sha512-MetSxVx4VsdjKSyPZsNiMDwxvmdBgnOoA6t3+A/1yvqSnLBDWQsuEaxPl6FfhQlSmQ4AUj2rXjYySCqZGm02yQ==} - peerDependencies: - '@tanstack/react-query': '>=5.68.0' - react: ^18.0.0 || ^19.0.0 - react-dom: ^18.0.0 || ^19.0.0 - '@bigmi/react@0.7.1': resolution: {integrity: sha512-TuF7GgBNNv4qTeSEZttEqztxzdf5UdENPHygJm8f8pTG09o6g/52DWZ2DP6win+Wra431dNm98kRFTzEUMC27Q==} peerDependencies: @@ -2484,63 +2468,63 @@ packages: '@dynamic-labs-wallet/forward-mpc-shared@0.4.0': resolution: {integrity: sha512-bBpjnybxwCWGiMAAuRFwkas8gonkUf3NAf+LKpGzDjyn6qQ5bY8VrWmVjIgOJSCKlxlGZeBpRuFW1qRtL9Z9Yg==} - '@dynamic-labs/assert-package-version@4.67.1': - resolution: {integrity: sha512-nvte7O8oBYqMXiV+7WbfoaCEInVenpU8l627zWjwjCMxAIiqYWO6fGs5D4/6ShYevUa5eTNTIijI7d9Uh3JMUQ==} + '@dynamic-labs/assert-package-version@4.67.2': + resolution: {integrity: sha512-8wkpF0IlTP5hCUFkRZXhprCBDqDVbZnoyVp8lFJCXY4RcF8ksexnmrUgVq42Q5i64OiqhhSNrrUqeyS9Gt2zIw==} - '@dynamic-labs/bitcoin@4.67.1': - resolution: {integrity: sha512-KUQ/2gjEk6DjRwLinf2W/V3u7v9nycouSbfscnvricuNIkceK8jDyOSZNp8CR6EDMkeJwyArzy6Z58nev4pBJQ==} + '@dynamic-labs/bitcoin@4.67.2': + resolution: {integrity: sha512-oywNnch3WC1bZnhZ8IAexxMVmY/MjLMZYnOiHlvCe+YDR1Qi33sMK5GurfsgjomZTL8jia2Bo8+yc8N8b7/ERQ==} - '@dynamic-labs/embedded-wallet-evm@4.67.1': - resolution: {integrity: sha512-5H5RRwH2zaRSsW3V7aLoO64woZEWVdzIkWkxoKcjJmWlceskuLpU3TqgNsRzZmeXnQKHc+o/z79Xy/dsLmaxEQ==} + '@dynamic-labs/embedded-wallet-evm@4.67.2': + resolution: {integrity: sha512-oYtOsC1aUR6yfBJ0rbl2PdgAzn+mhbUyRKy1dgsROWNlsraogJYR3M9FEnsGZlaIO4aEzBvII6h3OYFOyA5vDA==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/embedded-wallet-solana@4.67.1': - resolution: {integrity: sha512-WgsCw3qhcvGfdXdo8/aH8Aqi7NDYTI2Kb2tuTs9vo44Ygoxclg/lGKImD3qY9RaLcJXsnMfTSV+8pSn5PU197Q==} + '@dynamic-labs/embedded-wallet-solana@4.67.2': + resolution: {integrity: sha512-/+sw/uDewP8pu/eqJyPU2MCQsP9mL43pQ1XaTXvbdpw2xybpOhXR33NcNPyZXprXcc8lTUYmuqblQ48r7edrPw==} - '@dynamic-labs/embedded-wallet@4.67.1': - resolution: {integrity: sha512-LsXq6WxqjYku6C1pVyhQS4tjWZNOZW35XnYNKHHyAjmOozSFWN2IN8LIIVwJpAmnYXydFIF2QKolTEuAywvfnA==} + '@dynamic-labs/embedded-wallet@4.67.2': + resolution: {integrity: sha512-JB6v+huZD3m9PHBCplyZec6k4QU9Bkq0lrGjTkxiPO+6Gsw+P6Ys0Xf0YgFHV4iHNSL/Rg8a342RvHMJYKR8WQ==} - '@dynamic-labs/ethereum-aa-core@4.67.1': - resolution: {integrity: sha512-S6tcJ68mbSaxTSscyKJW4zoTl2vPD2TAI19oIkWiIaV73pt2v7DIbuKEy+yHX1y835VWqWHNGJC9y7nwBD8Brg==} + '@dynamic-labs/ethereum-aa-core@4.67.2': + resolution: {integrity: sha512-gXRW0GLtLG7gD1NiYQwCJRgQs2gJy054G9pzPSygZ34223xNlgzo4FtDEdIFVCB1Mq8k1daxgN/u3ucCeuR/vQ==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum-aa@4.67.1': - resolution: {integrity: sha512-hicrssyUQURxQVM35NsxAJiTJcKkBsGGdyj/5/cmW76fSMhJtmdl+syWn9inmYk2rVbQxDsDCHREbZ/dYcwqxQ==} + '@dynamic-labs/ethereum-aa@4.67.2': + resolution: {integrity: sha512-RV6dHlWhpHSaxlSiqaBcZYIOtxaEHvfQ3BIf7N7EJIKitVF2ioNkrHHVMg/lOWMQqDz159JKEF12Gwp1UE+okw==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum-core@4.67.1': - resolution: {integrity: sha512-nKkwvGa8k3DshehXLpcywusMFIoMJ0B3gVrTauKBKRl7xK1BtZQLU+1+1p5hxAOh3rnT3O9EkYk71LHBtv8IoQ==} + '@dynamic-labs/ethereum-core@4.67.2': + resolution: {integrity: sha512-eD4Qv0UQjeEyqTUEwOGPu//5upoShsxmgvgq+zjYXSH4T5kECqJEZd9I3hyAlXv8CgZwz1aLiJMQLXMyuVm80w==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum@4.67.1': - resolution: {integrity: sha512-xao+oQIVu1+um4+No9nLrfTN03+E0CmRncJSHf0KFFcsjHNMUXRLkjUTl4igmriGQXK2wWKnilWpde58CJlmnw==} + '@dynamic-labs/ethereum@4.67.2': + resolution: {integrity: sha512-8PQkxHKL7tQJlh3AxtRwmhoEuI6Jl+g92JH26sdXJqSEVDpopyBakZJeeRo7XBXfqJbuFTaw9n7FRaIKegCPRw==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/iconic@4.67.1': - resolution: {integrity: sha512-CrphxvT0bMMLgavU/U8WK3I2vpcEP6qntKXlTHbD+StKYbuKhyMXpGxSTEXIEXRA2Y8zM6NIZWrkzaCiceSU/g==} + '@dynamic-labs/iconic@4.67.2': + resolution: {integrity: sha512-R7C9ddoIRwczPUNGJs8jb9m6R1GhBS40cW+XZYhuuRu34SVEtPowwSuai2gpKxqF/368ic69t1ugv04bXVwTFg==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/locale@4.67.1': - resolution: {integrity: sha512-A5c9196OFH5P1zseUn7AyWvAbnuao6ZCb4XL2fhfMwdD6o1A//wdLvV3Lf7AFeoSLL1gsbUo6bRlJmDuaHQyfQ==} + '@dynamic-labs/locale@4.67.2': + resolution: {integrity: sha512-yrFXKdfkngxEjFzPItyfl7D1K2YhBUQB9lTgg28Gpr6/Q80dydA13fFzily5ffV3YYWhLAl6qpf61RbkaszR3g==} - '@dynamic-labs/logger@4.67.1': - resolution: {integrity: sha512-dgfWyUymtwhL4B+K1kqtItokWUe5V6CjbhJxMIpTXhLQpNWlW4paK8parS2D3+969gzg+uElftj+91q4b7VCxQ==} + '@dynamic-labs/logger@4.67.2': + resolution: {integrity: sha512-TbE53aAi3y5wuo53pgjzhF68oOTEZhKBBDXkm21NYukFxdfVtgbiqPMOSBRfq6X7DmFlhl1jjhPgwukkYTs8fA==} - '@dynamic-labs/message-transport@4.67.1': - resolution: {integrity: sha512-6CZYlraRpxBKD6Es9SYlKPlwOdHDofqPTPRH9cY42zDRcYFjihsg0891INiXHCdwD6ujXQoh5hV/Fs+gXluQSA==} + '@dynamic-labs/message-transport@4.67.2': + resolution: {integrity: sha512-Do+xr7F0gHqsm/awhXuQIloOC31uCuMqf/hfCUSzd1St6HG+B9IyWbMVo4w2KcX2pDk7sd/caeiPNPsx7MQ0OQ==} - '@dynamic-labs/multi-wallet@4.67.1': - resolution: {integrity: sha512-ld4VmxRtjTChMKERUrXEUzinvB3fzpC2yhCh0eqIuccGV3lXU7qxx8iLPO90O091cIQADOCnVJZTTVtGFqqsaw==} + '@dynamic-labs/multi-wallet@4.67.2': + resolution: {integrity: sha512-I3bo5h7Ikmo3NIHwnxRm5s6afpsK2YU+qJ6eaegV1cfGn6+ESvE2FqumSVyGdeqWkcy2N/dX8FwCXyhdCTakfQ==} - '@dynamic-labs/rpc-providers@4.67.1': - resolution: {integrity: sha512-zf5hhE4I0qLPoZxQOtOMVN/8pzJXuxzB2pToUT4VU+7K2lgFAXxweZaxLo0b693Iqri7f0HqE5Sg/6/V32ytOQ==} + '@dynamic-labs/rpc-providers@4.67.2': + resolution: {integrity: sha512-iiOlIBY6BVvNiCHsByfl11bs0JK2gdfQDuWZ1SqEf2Iy2ZtvQlW2MYaST7sH2HX6+H0egsFjQBqbDJHgWiH/Hg==} '@dynamic-labs/sdk-api-core@0.0.764': resolution: {integrity: sha512-79JptJTTClLc9qhioThtwMuzTHJ+mrj8sTEglb7Mcx3lJub9YbXqNdzS9mLRxZsr2et3aqqpzymXdUBzSEaMng==} @@ -2557,69 +2541,69 @@ packages: '@dynamic-labs/sdk-api-core@0.0.881': resolution: {integrity: sha512-Prc/gJZOTHGlGAw4VCoR8qTxrSRu2Ivl5+dYUsTjWDWTrJYJIzPhNOdXiReDitkXwr5Zu5wrsvRnrDf9/Rn0AQ==} - '@dynamic-labs/sdk-react-core@4.67.1': - resolution: {integrity: sha512-Hc39N3299CZ0GyCg/nqZ9fQZD7EhykPs2ExlKBKLMrqx79u5WtMvwO9peux41M11Yj7RDOufPHe6+c1jg3XlZw==} + '@dynamic-labs/sdk-react-core@4.67.2': + resolution: {integrity: sha512-YhWlAnKJHAbAKYAzAYagY8LpR1SquzA/D2CpwkLqkgNRHZ6X3F6MiIsYpFE8gAASruqlGNaKrSDUL/F/BNraLA==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/solana-core@4.67.1': - resolution: {integrity: sha512-GQc7HBkKO+VtJk6Zh65K+TnyT6QO/AbkjybEp6q3smAppluOvxZhyhHrl/A4kjnejY5JupkH2BC+HRP5ZNmgDQ==} + '@dynamic-labs/solana-core@4.67.2': + resolution: {integrity: sha512-xLInw2DN/6tynjuN1SZNrTadSs4LJOc2t2cBNj9Wygj6ZgLmB83SycSgScz3ggOAsfWPiwQ1gHProZENwF0spw==} - '@dynamic-labs/solana@4.67.1': - resolution: {integrity: sha512-XyKrwfGilYZ6kXdq7AprhCt81UzilLgg62f4jsCKqf9wiA1GiAIDK/o4rikQ9QHrZY9rJJetXFMs9fEbDU3QiQ==} + '@dynamic-labs/solana@4.67.2': + resolution: {integrity: sha512-9CJRqchPY3K5tywSxlvLJNzacJXFkZYvbABzyrykVFmetkb3BIiBuZ9nNuD3vqnPYTZoRegd6ABphhqKn/hWPg==} - '@dynamic-labs/store@4.67.1': - resolution: {integrity: sha512-KJSeJTTspTvjafBxQnJgUHoh+sSMAzpcA/plCiy3z2Ls1I9326TDKhZl2XGI0eu+OPjlyvf/x1ch2aPwKYDbMA==} + '@dynamic-labs/store@4.67.2': + resolution: {integrity: sha512-KMh782VoUfnFR0sCEwm8W68wCgTNO40pROma105gBkn8py0UOpaU6e0imb2BUydvY2x+TPgiyIUNQAIK1dZQiQ==} - '@dynamic-labs/sui-core@4.67.1': - resolution: {integrity: sha512-WupQkAdBjvU+YcXb0nwGSi4cL8MevyMjZ+Df18OSbIQOXb1SIUneqFJ1em7N+IsO6rq8T5YkGv6o7Wy1v4XIOg==} + '@dynamic-labs/sui-core@4.67.2': + resolution: {integrity: sha512-56EojPjzHKdURQiEMDUDmOMbfFEkQZ+jjkA3sA4oHHJg3LKVHiADieNxtPw5fyCgUFTNYlNeaN7dKQELoQMoGA==} - '@dynamic-labs/types@4.67.1': - resolution: {integrity: sha512-tRtG6a/nDtuGsYr5q79BFNG/qclI8KHw5Gl1HHNdivKU8BBsv5XkkPt+nhlRemTieZiqqA4kUpg87hQtiPw3EQ==} + '@dynamic-labs/types@4.67.2': + resolution: {integrity: sha512-BYM/AaE7IwS4oP0AO1bcywF/35NUw+ajStpG6hiOc7JWBJE9Hvrf0DM98Ly+9mCdWLBRRwR4NtMvfzHYOKUzjg==} - '@dynamic-labs/utils@4.67.1': - resolution: {integrity: sha512-pUzX8d7rnL0iC3XidwCgfrQhRE6oV0CerwmrvNUdmK48vkXsNRNlHmZCm454vSDLoBz3DHhDIJR061qavkhFzg==} + '@dynamic-labs/utils@4.67.2': + resolution: {integrity: sha512-8vpl1dDInwC7yBpp+QQ6uNgzxIKhzfj+ePL2bLQ6gCBTcAczpw2b31WmwatOmlUe7UQJ1rVqVxjugPkv216Drw==} - '@dynamic-labs/waas-evm@4.67.1': - resolution: {integrity: sha512-mktYihRFTdVjY4ajNZN7T482mELnJp7MMHKZbMXo48EeahFs4DzHImNn94HgzH3mYdDr7DftueBWXheJSdjzgQ==} + '@dynamic-labs/waas-evm@4.67.2': + resolution: {integrity: sha512-bh56eUmGGZqPXtbu5OCwJlUwfgjGVMBGnPQNFFr/KNFO9FpWGV4082iBV0QY51XZFJ+drZX0PabRaX0mgDEZgw==} - '@dynamic-labs/waas-svm@4.67.1': - resolution: {integrity: sha512-PAKUlu1S+07twa/8aKKegQnjilsHkXsYOfc0/o3B/u7kLyhyf7hz5q01PcEdiUwlh4T/8wfeC9OrWlQoa2mH6A==} + '@dynamic-labs/waas-svm@4.67.2': + resolution: {integrity: sha512-/XDR31crnFo5C6TkaJagWSBmMoxX1PmqlFsSjK/Eii26pjh3M0zpmX7bbdQAd9+CXMkUoaNYU/vE6ATbRvyf0g==} - '@dynamic-labs/waas@4.67.1': - resolution: {integrity: sha512-1IRslEPtqCLYKpAXXJ9+PZ/EZ2MOAsPy1qr6vc9salRGzRo2lPox8a9uzIjhrSS92OD57NzUMk7aHiKN7+doww==} + '@dynamic-labs/waas@4.67.2': + resolution: {integrity: sha512-n0LjQkDtHeZAd9LEiCvvlqg42dN0I3BfvQ05IOScqO8y3rA3fahNVc2HR4t8gdCqz2Ru5zKLVM0YNL5IU1X5ww==} - '@dynamic-labs/wagmi-connector@4.67.1': - resolution: {integrity: sha512-hnc07WdDTkDs8jcYi+0LneGo1Mo4g7aH0/Y9hIqWlrA93OEJ6hBmfsm19S5JopCRcGAqN257wKEsq9k5h00CNg==} + '@dynamic-labs/wagmi-connector@4.67.2': + resolution: {integrity: sha512-iXUwWJYW2nFT94DxZZlMGc8tLhS9l1eZxneMJz/+FHL29r4gmudt8WXrRf1cPfqLWtePJFk7NN5rcShFE9SpSQ==} peerDependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-core': 4.67.1 - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 - '@dynamic-labs/sdk-react-core': 4.67.1 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/wallet-connector-core': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-core': 4.67.2 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 + '@dynamic-labs/sdk-react-core': 4.67.2 + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/wallet-connector-core': 4.67.2 '@wagmi/core': ^2.6.4 eventemitter3: 5.0.1 react: '>=18.0.0 <20.0.0' viem: ^2.28.4 wagmi: ^2.14.11 - '@dynamic-labs/wallet-book@4.67.1': - resolution: {integrity: sha512-EJJTnObl6S9R9k2aZpqy/hUSQ54RuaKVcsym8YOWLFkKPujxqZcHJa4F48OdliAtUdQhIbl6ApeKbEdbe6RBcw==} + '@dynamic-labs/wallet-book@4.67.2': + resolution: {integrity: sha512-rSiqGUV07kA2Nc0YLrUS+P+w8Kr1wObxkTlxbQWM0DltWZj9O4b3v8bgleCIiixZugDK3eb3bod+T/n+n6QGQQ==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/wallet-connect@4.67.1': - resolution: {integrity: sha512-HE9NV21KyeAqYwq7V6kXknj+7aW5rPlU/4zyl8RHSGqUtXyUrl2mRydpvGWFH+qSMgxIcZpiXpw0yJZ5GaH+0g==} + '@dynamic-labs/wallet-connect@4.67.2': + resolution: {integrity: sha512-BXZnNYlp/zjONqCeYVE0uVaNPvR/NvZ/ZTO932PI1TbcxID9+6udb9kAdVNrD62S2vvag+QCoWOUcvuH1zVSFA==} - '@dynamic-labs/wallet-connector-core@4.67.1': - resolution: {integrity: sha512-sz41t6NfOh16BJPbPdvchgiQFCUxNbUxw+R0EJG3PJhBpY7WxUi/1/bsRYdpRfjJ3vevsUm2ZubhRp4mLwMoCg==} + '@dynamic-labs/wallet-connector-core@4.67.2': + resolution: {integrity: sha512-6DrlAENmi4t4oewd1ut1zToEJYFXAUbQwTDdkM4zdUxpSgagBmtbqWY8bFTjwJY/35Dm16qWybvHbL14po/ysA==} - '@dynamic-labs/webauthn@4.67.1': - resolution: {integrity: sha512-JnNKsPONZUTPaH4trLGf07DO5fnzVMg1yuqh0Igmk3O7odYG+98J5N32cwdbbex/s4GTUEABQ4ydT1Nvhmm57g==} + '@dynamic-labs/webauthn@4.67.2': + resolution: {integrity: sha512-NcifT0RNxXhxfDBoEjMLUZ74CUiVcGJc4muj7hXhgnZ0s+wyIG0y5ZDSy25X/NKtolBORtENbbVigcWlUIWqFQ==} '@ecies/ciphers@0.2.5': resolution: {integrity: sha512-GalEZH4JgOMHYYcYmVqnFirFsjZHeoGMDt9IxEnM9F7GRUUyUksJ7Ou53L83WHJq3RWKD3AcBpo0iQh0oMpf8A==} @@ -4440,12 +4424,6 @@ packages: '@types/react': '>=17.0.0' react: '>=17.0.0' - '@mysten/dapp-kit@0.19.11': - resolution: {integrity: sha512-b0poDfJVTzmIYtDRT06KFxzer4xAN+KMvIJuZ8bIMXAOfV7a17fMEJ94HI1nXCflQGGbx+BKsIKcb93ptwPgag==} - peerDependencies: - '@tanstack/react-query': ^5.0.0 - react: '*' - '@mysten/dapp-kit@1.0.3': resolution: {integrity: sha512-grlRTgrfRTrl7old0wZ9Q2hV1LOAhCErX0OCxnZ9cjl3g16rCMYamm8LOQeGKtr7hWiE6lVNUtFFzahuaoMH+Q==} peerDependencies: @@ -4453,9 +4431,6 @@ packages: '@tanstack/react-query': ^5.0.0 react: '*' - '@mysten/slush-wallet@0.2.12': - resolution: {integrity: sha512-OVIQbADqUVZCTps3MGvVI90nczTbwepAb75x+jZuH2W2p8lXoYIuvuuP4KlwwalR9QgpqOqptdpYFVAKi8ncLQ==} - '@mysten/slush-wallet@1.0.2': resolution: {integrity: sha512-gcAQaG4rExDqvw+4dTRNlM8U+st8Ngp5cpdFO54DuYqhNqzk5Pc4DAa9lh4zZiUMq/ZtGki2+SpvYrVvT2Vy7Q==} peerDependencies: @@ -4465,8 +4440,8 @@ packages: resolution: {integrity: sha512-gftf7fNpFSiXyfXpbtP2afVEnhc7p2m/MEYc/SO5pov92dacGKOpQIF7etZsGDI1Wvhv+dpph+ulRNpnYSs7Bg==} engines: {node: '>=18'} - '@mysten/sui@2.6.0': - resolution: {integrity: sha512-Dp3z7mDuUCXGgldQ3/AtC1iDiK48XTuAi//fPrHdxEaMl+f5VLjbYtB+mlKNC1SVYLKOUjTeF/RA9qfEBY++pA==} + '@mysten/sui@2.7.0': + resolution: {integrity: sha512-aIEb19Y/VB1CYt1lyqYgiOGDlvIJZI9GlvDp70QHumwIoIVPj8miA08+iOlsnvbmmXpBmUSzc4YYArWcPGlsLg==} engines: {node: '>=22'} '@mysten/utils@0.2.0': @@ -4483,9 +4458,6 @@ packages: peerDependencies: '@mysten/sui': '*' - '@mysten/window-wallet-core@0.1.1': - resolution: {integrity: sha512-TboJvuqXvJbKy0sqK72kR3RXp7SLkgNfEaNsKWsSUwD+wV9+h/S3wtO+E+yFmPgHgOr8c7HJIQLAdunMssKZtg==} - '@mysten/window-wallet-core@0.1.3': resolution: {integrity: sha512-Y3j896R7yfJTihJtLqRZLNwF7iEssYKJjNWPv72CflF5CvYZIngHJcUNGq9Y59o7OrD3oYL+/JM1YVZVMkR/EQ==} @@ -6170,9 +6142,6 @@ packages: cpu: [x64] os: [win32] - '@rolldown/pluginutils@1.0.0-beta.27': - resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} - '@rolldown/pluginutils@1.0.0-rc.2': resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==} @@ -6574,8 +6543,8 @@ packages: typescript: optional: true - '@solana/accounts@6.3.0': - resolution: {integrity: sha512-Ojd1Wz/xBveE8in4GiNEE4vd5/QbIXyCHKSAPh+ggA/iGNFv+cqFHF1EwKCXkI4FkCU7eS9JzGeh2ZuJo3bNYg==} + '@solana/accounts@6.3.1': + resolution: {integrity: sha512-6HlpxGVWbSMUEEdRovU4Blkc63uOyD/wNyLtiO3A99R8qFG49Ae95m37sBMd7+jqOw2/Ik4Lrmvb4r5mF9JiIw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6592,8 +6561,8 @@ packages: typescript: optional: true - '@solana/addresses@6.3.0': - resolution: {integrity: sha512-if/HpMyoRf4+6SPBjn7UB9LKLb3fDuJn1I502FAjpXHLY13NT7JGqPPiRZuXR3U4NkZTXw6zYksO3RPIFDaWVQ==} + '@solana/addresses@6.3.1': + resolution: {integrity: sha512-XlNRV0vOrxe28EVr4diG8tR0n8jn+8Z1GYw+Bm66z07GlyZOd4ArqgbiWU6WH6MCMiNb6TiY3msXp1SGH6Oy1A==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6610,8 +6579,8 @@ packages: typescript: optional: true - '@solana/assertions@6.3.0': - resolution: {integrity: sha512-3eRFQofn7VLuCHmFy2XmuzqaG5SVVtSbgSSrs5BycP55hwAf2baU0hKCjj/WgumIY3UuNkfeZgfZ4FcjSERiRw==} + '@solana/assertions@6.3.1': + resolution: {integrity: sha512-QNO9QhwDSOQWjXihK+eaJ1fmaQ/4KGHFErx/ukS0cW0665ugd5wWBp2xQ+YUyCt0Ce9/v9bPzczPIcpi0AMXBg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6653,8 +6622,8 @@ packages: typescript: optional: true - '@solana/codecs-core@6.3.0': - resolution: {integrity: sha512-lBrGfCa9971IInFWoh1y4a3Z824f/Rl1J/A6jKxXAu8rWLWtQFzuijE/fPlpBcxiwRh7xJOLfQc3+1YAlhd43w==} + '@solana/codecs-core@6.3.1': + resolution: {integrity: sha512-OwklAT1GnY72Gg2Yd7NoKi4WeUAUl9DfTOdLXJmTcOGSB05K742X3yVwyiMsX1cs8V8DB8KOHGQjeO0XLUUCEQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6676,8 +6645,8 @@ packages: typescript: optional: true - '@solana/codecs-data-structures@6.3.0': - resolution: {integrity: sha512-D89S6Fi8g5lN4fvKYQri3A1x64XmOMqsda3rn4ycCvNjgJIh3Vmhixt1GwdJ61r/nhURRAaQhlvywo7OtztZCQ==} + '@solana/codecs-data-structures@6.3.1': + resolution: {integrity: sha512-dSndxfKKKQTFxqAlH3jQEaLs5NFYcIF2HRSi60jB3w8pVEiVcvjIgYF7bG4HJ61EKb/6kgicUhdLBi+5aj7qHw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6711,8 +6680,8 @@ packages: typescript: optional: true - '@solana/codecs-numbers@6.3.0': - resolution: {integrity: sha512-FPDaNA9loTsEfhMm8RwLWe4xMZkrnzD8xv9MDLj5u7q6hZT5R8wCDq5l1SYOl115S3RvuUaIaccxYCnhdcUkwA==} + '@solana/codecs-numbers@6.3.1': + resolution: {integrity: sha512-rudL1RjVBdpD60QPn3DhATQzxuBnrUn6N/QHzSyB24oPr/wgIJY++slgitpxCBtjSOvcIe6iYDOPTwd6lyTpjQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6745,8 +6714,8 @@ packages: typescript: optional: true - '@solana/codecs-strings@6.3.0': - resolution: {integrity: sha512-Y2zu90M+iLLGNfuGS1B+G69exd9z8Xka6iyAXm4r2BebVl+wd0vjAtfcua/KGcwKT89bxrtjS3Oerc5rtxBeWg==} + '@solana/codecs-strings@6.3.1': + resolution: {integrity: sha512-ODcenZ9kkQjbhU4jrXtXLeYqr957XkypU3/rph/o+rbgye9BtO6aAZaSMoHcAu3vqC9Ix9BdcQAD8kpC41CWrg==} engines: {node: '>=20.18.0'} peerDependencies: fastestsmallesttextencoderdecoder: ^1.0.22 @@ -6771,8 +6740,8 @@ packages: typescript: optional: true - '@solana/codecs@6.3.0': - resolution: {integrity: sha512-tPcvU7Iv2B0kD1NVBFsqgTn92bPtWqbv8YEqR++mJieRmbd6vq7aBx+7AXh3vHfBhtrxPx982OXOzBr8DXaOMw==} + '@solana/codecs@6.3.1': + resolution: {integrity: sha512-v8ocwl7YIfs6lQ/1BR3/78GQjUjcFHGtJtHZAoB76Kzm+TlB9RIqxQPpDxNQitJcmRyWFmd1QhOsVEUUSO1hMg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6810,8 +6779,8 @@ packages: typescript: optional: true - '@solana/errors@6.3.0': - resolution: {integrity: sha512-NGd0NQ7BoB7s5JDv87/CvlKrKuLBoPgT5eVXogmaRorFqXPU7wGwBgykfoyAh0eRDUT1dUvD+8xdZMSj6huKCw==} + '@solana/errors@6.3.1': + resolution: {integrity: sha512-56497UfLZRLEvtQq09FO8PuLr6bciSP6HWoQ/sZvPMNL5LXJ6z2W1qaY6r8CibHrBoVH9vmVW+DdgQE63K4cIw==} engines: {node: '>=20.18.0'} hasBin: true peerDependencies: @@ -6829,8 +6798,8 @@ packages: typescript: optional: true - '@solana/fast-stable-stringify@6.3.0': - resolution: {integrity: sha512-Ah4TVY/JfRjd/HoyLmJud2C47eu7QICfVjSZm/LcTinT/8iDGOjQGEY6NeZ4HkmMl/PMg4GMR9PkrD+0PO25+w==} + '@solana/fast-stable-stringify@6.3.1': + resolution: {integrity: sha512-UqK4MckdOpLXXV1rOZp21om3MtSTi/gTFI1Es/TFh2v2+qDQf54/PyH6xQEotjPWvW0ekp2YInj1W9+Zi99ueg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6847,8 +6816,8 @@ packages: typescript: optional: true - '@solana/functional@6.3.0': - resolution: {integrity: sha512-rAUOPsoOAvPQMGWaVJZVPEWTPKx9/sHYKjg5PkS8mPNeelfyTlnDS+NxxbfSLUYieFKGGhyT0OfBhOKNnLPGMQ==} + '@solana/functional@6.3.1': + resolution: {integrity: sha512-WCqih7trFtYkjuFJBmIgOZhFB4LfjxatN6r8vaEXeXIOi2DDuXdUHcPxINb3bulOnivwigBM4815Ap7lF8TTPg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6865,8 +6834,8 @@ packages: typescript: optional: true - '@solana/instruction-plans@6.3.0': - resolution: {integrity: sha512-qKkTLBNjDmisGSajcpRYSbvIF0p5mZLHeYhxX9Py1XdX/gDiIzmPhDt+DvuD9Z0H8y5jCfhksGzmRIzy7UEu7g==} + '@solana/instruction-plans@6.3.1': + resolution: {integrity: sha512-AgEmvrM8s+z7wYzDGj3ymJXfqMl0yirq2prQWFHTM7Qi6B7O7vvIjRXkQpyV/hzsaXtqtTMahGByQ3V04CdQCQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6883,8 +6852,8 @@ packages: typescript: optional: true - '@solana/instructions@6.3.0': - resolution: {integrity: sha512-7nQGafBhZF17bOKA1Jjq9HEImvSi5zqQqCxnuWfCV2XyOsXsQ+IdYfVJEk7EFIN8KMFSzzI8Z2hG6VtVRn9T6g==} + '@solana/instructions@6.3.1': + resolution: {integrity: sha512-iRRgmA9bTrI6A17zVwsDqg8PViGcixmj+BxsXVFM2BkJSdmfi0A4NHB11sOCF7icEQhdp1jnXibSkOglBYOEOA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6901,8 +6870,8 @@ packages: typescript: optional: true - '@solana/keys@6.3.0': - resolution: {integrity: sha512-vCvtVv2iIVfvVmg5dgVpHLO6y1zTM+GYogdF/xWGJxiHGWqUx1Mlj2GBAcVxTMJUkrKv6ktNxxAVuhG+sKMhbw==} + '@solana/keys@6.3.1': + resolution: {integrity: sha512-pjgeVwuAgJMOOnrmrViTJnhx+HcagGAFAMiVZUYv28zR5GdP5clbBL7FSDT8Kqhye4s75+zxS6YDDwvhhCsKqQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6919,8 +6888,8 @@ packages: typescript: optional: true - '@solana/kit@6.3.0': - resolution: {integrity: sha512-+p0S2ezNdHgVItqiRPyR3kRJSMLpriCWMAhM8dtf1j0iFg7UiryPUdp2eg1Nn+kqesRIx0rzAlcnFzpHjg3OIg==} + '@solana/kit@6.3.1': + resolution: {integrity: sha512-4KUAYxZnGq5JQrDGKcD4VAhPEEYHUEKeypnxKtlbAN8oHiBrFbVWqkDah24H+LKThVhoNdlmaUSyDGG/TFmAUg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6937,8 +6906,8 @@ packages: typescript: optional: true - '@solana/nominal-types@6.3.0': - resolution: {integrity: sha512-WJq6yD4quXtysPIuH/TRVHgQTjpgFpkQeXYr6xTBTHIsUsICeZA9H8J7Ajd97dU1mgCZBvs4yuul3lIOL1HdUA==} + '@solana/nominal-types@6.3.1': + resolution: {integrity: sha512-ovpJ9JUVwJWWOEgrQjJXh5YPokCdKcNtiq7jrFwUUQrNsqhc+v68v7qoIzzmF8XH7xRfaqy5aSKs6E/CeNxwLw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6955,8 +6924,8 @@ packages: typescript: optional: true - '@solana/offchain-messages@6.3.0': - resolution: {integrity: sha512-7b2a2BEqX/bixcg5JhkUV7ntqFuhyJCvT+m8xecVhiEagCNkrZCfvKYbMslJaCQ/5ojFBGKlBHLHp25PcPYavQ==} + '@solana/offchain-messages@6.3.1': + resolution: {integrity: sha512-O6lA2FvxstTzWKP+NGK+IP5UD+UnK2xqXJiUdac+yZ4smfUINEtnj63rc2/9+qShvLVhWS8AqtFkiz4tk4msbg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6978,8 +6947,8 @@ packages: typescript: optional: true - '@solana/options@6.3.0': - resolution: {integrity: sha512-nwUfBHB4WVhSAiZjlvjAGT+2swC+8T01BievMDTESeAnqB+j/cl7Ke/ncF3keCNhw9rTSUKCgSFLGdNPXBIPjg==} + '@solana/options@6.3.1': + resolution: {integrity: sha512-lBVcXli518q4bKyxm680COLI/HFuFUgEZQVaOMZbhXyKbu94vbMWQTJ3NV12BN6XNUyXq/C0I+ckYgD+Eb5YJA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -6996,8 +6965,8 @@ packages: typescript: optional: true - '@solana/plugin-core@6.3.0': - resolution: {integrity: sha512-td/twT1TwPng2vZ26PU/zIpFC8Hv43tNXQft09Bo+9AY7VIcd+zyO9fdcZJ80pJzq2vNGcrNKBR741c9x2OSVg==} + '@solana/plugin-core@6.3.1': + resolution: {integrity: sha512-A0VAlxSOA9H0jL27iVLAhdTo3P9sWGMPhuGDg+mFgiYgGzyGdyWDmnx5/pKA02KHTKaDkj4XbGPsV4O69tiZ2g==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7005,8 +6974,8 @@ packages: typescript: optional: true - '@solana/plugin-interfaces@6.3.0': - resolution: {integrity: sha512-D+74BQCtSDbluPzVp7Ll/05LHQChjsBs0W6dDj62Rt1hiGnNIfeNfomSOBCEBhiauL9+qMP5KkwHwebb9/ySeQ==} + '@solana/plugin-interfaces@6.3.1': + resolution: {integrity: sha512-GVL04hoPvUUNoQpR1S2W6dsoAnMUketpH/5+V4LJF6mIrI5d6oQkobTBpRAIyT/EiaunVcwtFllbev/etA4+Ug==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7014,8 +6983,8 @@ packages: typescript: optional: true - '@solana/program-client-core@6.3.0': - resolution: {integrity: sha512-gFv6TqlMwbNdrxZ3PECB700uXqpSAyG67LxsjYFfPT0S8F7y5TgbDbjCtNv1cCc2WC4d6uOIdEqXm7PL4DBI1Q==} + '@solana/program-client-core@6.3.1': + resolution: {integrity: sha512-V4WtLnDJA8GZZ3xwFg2rte/GIgVFrRCGtlhgjCTsE6ct4vXSSSkez7Dyod7eIqhsHZVC4Brq6n3BuuC4GciUzg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7032,8 +7001,8 @@ packages: typescript: optional: true - '@solana/programs@6.3.0': - resolution: {integrity: sha512-Hkh7o63ddK2cQYJAoNHYn2WhuZDAM8Vx5sOs82Qt7khVWFN0UCLvhzf6ChNRdP9SiGofJOF/1yA96Tsfzer9aw==} + '@solana/programs@6.3.1': + resolution: {integrity: sha512-gDmgJbGRqEmJuTvBThquSVZZvqO9jwbYwQ0IWB+VBqu52FXH1DyJU48YvZd3j9egzwqNoanEnRX8QGoBWKBuSw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7050,8 +7019,8 @@ packages: typescript: optional: true - '@solana/promises@6.3.0': - resolution: {integrity: sha512-RaKlDg6m1x8dK1z5Vlqg/OgEFrQx7qW6Sp8cVOScw10UskhKpUNCyjEeQ/LUmSXHEemXlI7lC+eDPOyzIeiZEA==} + '@solana/promises@6.3.1': + resolution: {integrity: sha512-mVArbzD8quxrVG54CFfod78ufbSi/bmBNCsSc7Ll0GuiH7hmB6ym3A9vfXgmjUkoJGZAAmA1c0B+75NjafUg9Q==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7068,8 +7037,8 @@ packages: typescript: optional: true - '@solana/rpc-api@6.3.0': - resolution: {integrity: sha512-RyuiudvrRIEhn+l2k9Zc7pScrMvNdZNH0LHpNAQBYxYykwHvVfrWQn44NgxKSFpGfHcc+Sag1hO0fnkaP76MAg==} + '@solana/rpc-api@6.3.1': + resolution: {integrity: sha512-BSuylWAx7osPd9b5/RbVnVU8FvaJpJ9ZevFBpbwHxoiEFfPO2kA7WaCLbNZ/ErTdxbySSmUtD+oskq+f8t++Vg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7086,8 +7055,8 @@ packages: typescript: optional: true - '@solana/rpc-parsed-types@6.3.0': - resolution: {integrity: sha512-hhmBxVj9gVkv+Sc1h10qDYYFnXv8DKqklkC/SdbpR9lc7+w/f6rHGqzSUI6cZa4nrfZU5Ekjo38Dg60k8aX2lQ==} + '@solana/rpc-parsed-types@6.3.1': + resolution: {integrity: sha512-dy3lDkaeNj4MCbz6KKmO4eghAUa2fp5kdQYuou09JBOUNqaVQGnYOIH2aOZY80VU7tgmqYViVUzX+EtwXxXpkQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7104,8 +7073,8 @@ packages: typescript: optional: true - '@solana/rpc-spec-types@6.3.0': - resolution: {integrity: sha512-FqSc9nLh+7FOC23STdZMylOP8o1fYdQ8AmkLgRyf+5tOhPGi313bChl/jreoKGtuqcGDzFWU49CFTJJvgIawnw==} + '@solana/rpc-spec-types@6.3.1': + resolution: {integrity: sha512-D67H6madoPn0KzzkWsBarFBlNetqCdIP1ZBBMdPLztvlWeVPBf5B3E91BjNPpWhGc2rseBBuLgRLAaj+x9IZTg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7122,8 +7091,8 @@ packages: typescript: optional: true - '@solana/rpc-spec@6.3.0': - resolution: {integrity: sha512-tKJve38H96baAhLb2fMQv282gwe63C9gC3u0wi+RHLq9sB7ZkB8VJctUloqqo4ZGoYTjC7sHOqhGOQH7nyKgPQ==} + '@solana/rpc-spec@6.3.1': + resolution: {integrity: sha512-xK8DIbjPQ7xBcLEj6mq3atSeixltJAYi/rmPRjUcuRSqXraLyTBEzH/hZqItgcTRSyl3/mG0ShT6yGaZtnZSew==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7140,8 +7109,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-api@6.3.0': - resolution: {integrity: sha512-sU/tDbJLiWNVb2kSTiJrpDbTj3oM+7Guqxg5Vr3SSGTIQhfogAjwBOTTuAkrrdX6k+7kNM8I6WLGfiTOKj9AmA==} + '@solana/rpc-subscriptions-api@6.3.1': + resolution: {integrity: sha512-w+yKkBWm067+M0OVircPoBdMqAmfYi7wRD5MBze+znDZwnm9RRHWoYE9/2JnXX+4p9HGItNDz8Rw26p968yayw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7158,8 +7127,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-channel-websocket@6.3.0': - resolution: {integrity: sha512-Q1rxzmE9v+vq5tk4qcJLqeNIhgrEZUOQW8KcXSgcBNs0merTFyw7jFbcGRnSIhUFELOUADbDoUF2Aq4iu58E5Q==} + '@solana/rpc-subscriptions-channel-websocket@6.3.1': + resolution: {integrity: sha512-ndHPIMhH1Ph4CueOdNSnxv546s4wXWLDCulk36xxnwiDQspy500sjeNrBhzYTSyKYmuLjeOz1KFJS+RAU4gT0w==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7176,8 +7145,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions-spec@6.3.0': - resolution: {integrity: sha512-2JVxx3IH9m04E5XONailQySXcwjCGvc98ItDVMQfaTp9/84kOmsD77IAopU2KxqpD79YpX+DBh2HNQ1h6O9hDQ==} + '@solana/rpc-subscriptions-spec@6.3.1': + resolution: {integrity: sha512-GZZ6Vxupi4dv9MNbQWjopEDQwWPD1MX1dXwbqqOAIrpZcVSohqN8ppgHB5GVQSG8fMk4/yXMHw0UlqBhM7ZDlg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7194,8 +7163,8 @@ packages: typescript: optional: true - '@solana/rpc-subscriptions@6.3.0': - resolution: {integrity: sha512-qOmujPoimhDLSYcEwMULRPQ7lR1+Frydl56nNBv87b53skvLoS2525poec/ewnlklmymsAV6SoNbgZHbag2ZBQ==} + '@solana/rpc-subscriptions@6.3.1': + resolution: {integrity: sha512-+s47DRgt8ZVl34QQLJbIhU9P47XMKDTMVy2HgduqoE0uLH8icI2zaGlCtKQlgfpc6VL7gzUkSAZgFycCWZPTzw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7212,8 +7181,8 @@ packages: typescript: optional: true - '@solana/rpc-transformers@6.3.0': - resolution: {integrity: sha512-UMoZnO2BqYld8WW5vBaR+DDK/mkGLtDR23sra2zc/1XZl+jaTibpMmph9+Eh5hSsioM41TUgoElx8HwDxpofvA==} + '@solana/rpc-transformers@6.3.1': + resolution: {integrity: sha512-FDyqd8zK0x4rjFrocg8GkS3SAW+ZFSJ24iPD+oMW2jbXzmiMvj9riw4qTa647PeeG/yvRvDJwKO1AkD5pMR9Ew==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7230,8 +7199,8 @@ packages: typescript: optional: true - '@solana/rpc-transport-http@6.3.0': - resolution: {integrity: sha512-wcxvn4AFAve/9DGQOgaPyYPP8pFBFUbtW4mnRsio4d29bf/b6T7Jv6ViBfTrTu3XJ986EbOB7EWioezRc7hQEg==} + '@solana/rpc-transport-http@6.3.1': + resolution: {integrity: sha512-Y1sq/Ir5/WHlcQy7XQOnnw7DLvNyvQDvKlsKB/wqvwp3AYy4A1crqGKPhT3SldTA3XvKDKqF1uKnzpFlJHt5wQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7248,8 +7217,8 @@ packages: typescript: optional: true - '@solana/rpc-types@6.3.0': - resolution: {integrity: sha512-iUQuFi+k4CvO/xQfayhfG0Xoa6a+NOxSK4jIXusKHa5Ol3rmbJckf5QXKubTrQoe8+j9bPoai2pDT/qpYdzwlw==} + '@solana/rpc-types@6.3.1': + resolution: {integrity: sha512-NoaWcKy79y5FuDDEWIAgOSiGVs74FWSVynF+DXDYb1wwArFDvf7PEHLZ0Z4cqjuUKuVcPDnYraJ85K7ovirVqA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7266,8 +7235,8 @@ packages: typescript: optional: true - '@solana/rpc@6.3.0': - resolution: {integrity: sha512-F8ROr7yJjwi8ISJv+rZmVScKXtD8up6MiixBrsmbfS0Em1UJkyalJkM27rGVJj6N8Nzm7Y0FwCgm4HjDFbfLvw==} + '@solana/rpc@6.3.1': + resolution: {integrity: sha512-ApTgWby/J/8DcQWRN5DQDSFEA//Ctect9j/gmOK/TLoIinuN/Wy8dVrsD8wwr69rxoeo/USt89sckE3YGm4wXA==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7284,8 +7253,8 @@ packages: typescript: optional: true - '@solana/signers@6.3.0': - resolution: {integrity: sha512-zeoASFELXFlWkbiza9ZIDPmyRn8i2Ze4j83u9XIBGRm6Fne89qFxaBkcMGebfhXwRVr9jjfb0fWvm3LlSF7PTA==} + '@solana/signers@6.3.1': + resolution: {integrity: sha512-PYvMKHASkz12tqVc28MKOugs9HefXRLorQHQb2dd8zL/r/FwvM9d95z5g4JzGqf5v3FTpK495lTalgDvuCOQeQ==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7320,8 +7289,8 @@ packages: typescript: optional: true - '@solana/subscribable@6.3.0': - resolution: {integrity: sha512-x4dTuvimHrgeYfsr3UDgWhT99a70ODOHrT4X8gpiq/AFKC2DBsqIevUBMaSf9xVR5JBa8XnVkBC5NiId7dHgXA==} + '@solana/subscribable@6.3.1': + resolution: {integrity: sha512-g4KuISHyy6IUxU9Qf8+ER2nGAEMKO5m6RTLuqrT9I1nujvOPmivnBm3YykxMFXljIcep0DMwTYlCXfnDhySsbw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7338,8 +7307,8 @@ packages: typescript: optional: true - '@solana/sysvars@6.3.0': - resolution: {integrity: sha512-kUYY766Ct9HSmLiXWZqKkkZsiH5BDLm7FtejY7eCG5OBOrT/v0cCRsxFQhQvozwJK//exQWhsWhX9Vdcc1ZbxQ==} + '@solana/sysvars@6.3.1': + resolution: {integrity: sha512-kPNxVZVcBdVeUOTb7YyUCZEx45aUsYBhYpNDUQ+sW9XKg2SiP9q5LOP/QtngM9fhUAw9lI25WzjQpAKjaGijyg==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7356,8 +7325,8 @@ packages: typescript: optional: true - '@solana/transaction-confirmation@6.3.0': - resolution: {integrity: sha512-HNlS1BVWPSawHfQkoNkS1dFrZHypPlSoh65CEqfbwnnKKU6AuhSmGSMjz3qdm8rK9nxCuHNNUJuXxGYeI4vNCQ==} + '@solana/transaction-confirmation@6.3.1': + resolution: {integrity: sha512-FFbmMNcGYR9PHqHcyAuiWHwPq9LVxkfaYOohiAR5cWLmharSGSqFQem3oEVXlTluk/X46K9TeVRHePXjURg0Og==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7374,8 +7343,8 @@ packages: typescript: optional: true - '@solana/transaction-messages@6.3.0': - resolution: {integrity: sha512-zcohnwHiZxogc7GpWeDdc4/Q7tZvuYSIabq9dKduQz5y/LCcMMpbvOB7bpWR+P+0S5RamgTxUnAPKMnA/hXmwA==} + '@solana/transaction-messages@6.3.1': + resolution: {integrity: sha512-XRT2NCmGaij49zGjjT43p4yiRGYQWUpVeAB6V13TRGn3oJiTvfgMaE4Rp9ODrJrfgsTTeMb7yrnvNIfuowiPXw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7392,8 +7361,8 @@ packages: typescript: optional: true - '@solana/transactions@6.3.0': - resolution: {integrity: sha512-jxUIEbzxqdEvAdg/FpX3gu8lcNaKqeq/GKdXkBFapzpqaHftnMro3e4F0k/heNglO0M8umOZ4+LN6rNHxpHI8g==} + '@solana/transactions@6.3.1': + resolution: {integrity: sha512-J09e2Cj2SLu55N5aIyw53t/vfP6tvN9mutsfY3slefVGkd2rnv6CcCX7bGRLRSdCUPygTtHu+Kjo1pcwflRlLw==} engines: {node: '>=20.18.0'} peerDependencies: typescript: ^5.0.0 @@ -7496,79 +7465,6 @@ packages: svelte: ^5.0.0 vite: ^6.3.0 || ^7.0.0 - '@swc/core-darwin-arm64@1.15.18': - resolution: {integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.15.18': - resolution: {integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.15.18': - resolution: {integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.15.18': - resolution: {integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - libc: [glibc] - - '@swc/core-linux-arm64-musl@1.15.18': - resolution: {integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - libc: [musl] - - '@swc/core-linux-x64-gnu@1.15.18': - resolution: {integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - libc: [glibc] - - '@swc/core-linux-x64-musl@1.15.18': - resolution: {integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - libc: [musl] - - '@swc/core-win32-arm64-msvc@1.15.18': - resolution: {integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.15.18': - resolution: {integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.15.18': - resolution: {integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.15.18': - resolution: {integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '>=0.5.17' - peerDependenciesMeta: - '@swc/helpers': - optional: true - '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} @@ -7581,9 +7477,6 @@ packages: '@swc/helpers@0.5.5': resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} - '@swc/types@0.1.25': - resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==} - '@tanstack/history@1.161.4': resolution: {integrity: sha512-Kp/WSt411ZWYvgXy6uiv5RmhHrz9cAml05AQPrtdAp7eUqvIDbMGPnML25OKbzR3RJ1q4wgENxDTvlGPa9+Mww==} engines: {node: '>=20.19'} @@ -7609,8 +7502,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/react-virtual@3.13.21': - resolution: {integrity: sha512-SYXFrmrbPgXBvf+HsOsKhFgqSe4M6B29VHOsX9Jih9TlNkNkDWx0hWMiMLUghMEzyUz772ndzdEeCEBx+3GIZw==} + '@tanstack/react-virtual@3.13.22': + resolution: {integrity: sha512-EaOrBBJLi3M0bTMQRjGkxLXRw7Gizwntoy5E2Q2UnSbML7Mo2a1P/Hfkw5tw9FLzK62bj34Jl6VNbQfRV6eJcA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -7622,8 +7515,8 @@ packages: '@tanstack/store@0.9.2': resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==} - '@tanstack/virtual-core@3.13.21': - resolution: {integrity: sha512-ww+fmLHyCbPSf7JNbWZP3g7wl6SdNo3ah5Aiw+0e9FDErkVHLKprYUrwTm7dF646FtEkN/KkAKPYezxpmvOjxw==} + '@tanstack/virtual-core@3.13.22': + resolution: {integrity: sha512-isuUGKsc5TAPDoHSbWTbl1SCil54zOS2MiWz/9GCWHPUQOvNTQx8qJEWC7UWR0lShhbK0Lmkcf0SZYxvch7G3g==} '@thumbmarkjs/thumbmarkjs@0.16.0': resolution: {integrity: sha512-NKyqCvP6DZKlRf6aGfnKS6Kntn2gnuBxa/ztstjy+oo1t23EHzQ54shtli0yV5WAtygmK1tti/uL2C2p/kW3HQ==} @@ -8070,17 +7963,11 @@ packages: engines: {node: '>=20'} hasBin: true - '@vitejs/plugin-react@4.7.0': - resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - - '@vitejs/plugin-react@6.0.0': - resolution: {integrity: sha512-Bu5/eP6td3WI654+tRq+ryW1PbgA90y5pqMKpb3U7UpNk6VjI53P/ncPUd192U9dSrepLy7DHnq1XEMDz5H++w==} + '@vitejs/plugin-react@6.0.1': + resolution: {integrity: sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - '@rolldown/plugin-babel': ^0.1.7 + '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0 babel-plugin-react-compiler: ^1.0.0 vite: ^8.0.0 peerDependenciesMeta: @@ -8977,8 +8864,8 @@ packages: bare-buffer: optional: true - bare-os@3.7.1: - resolution: {integrity: sha512-ebvMaS5BgZKmJlvuWh14dg9rbUI84QeV3WlWn6Ph6lFI8jJoh7ADtVTyD2c93euwbe+zgi0DVrl4YmqXeM9aIA==} + bare-os@3.8.0: + resolution: {integrity: sha512-Dc9/SlwfxkXIGYhvMQNUtKaXCaGkZYGcd1vuNUUADVqzu4/vQfvnMkYYOUnt2VwQ2AqKr/8qAVFRtwETljgeFg==} engines: {bare: '>=1.14.0'} bare-path@3.0.0: @@ -10392,8 +10279,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-iterator-helpers@1.3.0: - resolution: {integrity: sha512-04cg8iJFDOxWcYlu0GFFWgs7vtaEPCmr5w1nrj9V3z3axu/48HCMwK6VMp45Zh3ZB+xLP1ifbJfrq86+1ypKKQ==} + es-iterator-helpers@1.3.1: + resolution: {integrity: sha512-zWwRvqWiuBPr0muUG/78cW3aHROFCNIQ3zpmYDpwdbnt2m+xlNyRWpHBpa2lJjSBit7BQ+RXA1iwbSmu5yJ/EQ==} engines: {node: '>= 0.4'} es-module-lexer@1.7.0: @@ -10628,8 +10515,8 @@ packages: resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} engines: {node: '>=0.10'} - esrap@2.2.3: - resolution: {integrity: sha512-8fOS+GIGCQZl/ZIlhl59htOlms6U8NvX6ZYgYHpRU/b6tVSh3uHkOHZikl3D4cMbYM0JlpBe+p/BkZEi8J9XIQ==} + esrap@2.2.4: + resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==} esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} @@ -12193,8 +12080,8 @@ packages: resolution: {integrity: sha512-tNcU3cLH7toloAzhOOrBDhjzgbxpyuYvkf+BPPnnJCdc5EIcdJ8JcT+SglvCQKKyZ6m9dVXtCVlJcA6csxKdEA==} engines: {node: ^20.17.0 || >=22.9.0} - libphonenumber-js@1.12.39: - resolution: {integrity: sha512-MW79m7HuOqBk8mwytiXYTMELJiBbV3Zl9Y39dCCn1yC8K+WGNSq1QGvzywbylp5vGShEztMScCWHX/XFOS0rXg==} + libphonenumber-js@1.12.40: + resolution: {integrity: sha512-HKGs7GowShNls3Zh+7DTr6wYpPk5jC78l508yQQY3e8ZgJChM3A9JZghmMJZuK+5bogSfuTafpjksGSR3aMIEg==} lighthouse-logger@1.4.2: resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} @@ -14417,10 +14304,6 @@ packages: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} engines: {node: '>=0.10.0'} - react-refresh@0.17.0: - resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} - engines: {node: '>=0.10.0'} - react-remove-scroll-bar@2.3.8: resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} engines: {node: '>=10'} @@ -15871,11 +15754,11 @@ packages: undici-types@7.18.2: resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - undici-types@7.23.0: - resolution: {integrity: sha512-yR/tKkdJ6lT6e/k/SwzGDUFQE/2hZPBkWBiUtQb8zdQDSLcTKvhBqk3iP7WJKhBrhS8f0rMGjGBexCuNwdJqdg==} + undici-types@7.24.0: + resolution: {integrity: sha512-1beJCk3fcUtxAHf19TmrEd0yF3Co7El8fJvlSufm9EQNMKVR9H5XiamszDDt/FwinyUQPHpL2w8u9ZL8i8RtVg==} - undici@6.23.0: - resolution: {integrity: sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==} + undici@6.24.0: + resolution: {integrity: sha512-lVLNosgqo5EkGqh5XUDhGfsMSoO8K0BAN0TyJLvwNRSl4xWGZlCVYsAIpa/OpA3TvmnM01GWcoKmc3ZWo5wKKA==} engines: {node: '>=18.17'} unenv@2.0.0-rc.24: @@ -16317,8 +16200,8 @@ packages: peerDependencies: vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - vite-plugin-vue-tracer@1.2.0: - resolution: {integrity: sha512-a9Z/TLpxwmoE9kIcv28wqQmiszM7ec4zgndXWEsVD/2lEZLRGzcg7ONXmplzGF/UP5W59QNtS809OdywwpUWQQ==} + vite-plugin-vue-tracer@1.3.0: + resolution: {integrity: sha512-Cgfce6VikzOw5MUJTpeg50s5rRjzU1Vr61ZjuHunVVHLjZZ5AUlgyExHthZ3r59vtoz9W2rDt23FYG81avYBKw==} peerDependencies: vite: ^6.0.0 || ^7.0.0 vue: ^3.5.0 @@ -16907,21 +16790,6 @@ packages: zod@4.3.6: resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} - zustand@4.5.7: - resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': '>=16.8' - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true - zustand@5.0.0: resolution: {integrity: sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==} engines: {node: '>=12.20.0'} @@ -17216,16 +17084,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)': - dependencies: - '@babel/core': 7.29.0 - '@babel/helper-plugin-utils': 7.28.6 - - '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)': - dependencies: - '@babel/core': 7.29.0 - '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 @@ -17370,21 +17228,6 @@ snapshots: - typescript - use-sync-external-store - '@bigmi/react@0.7.0(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': - dependencies: - '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@tanstack/react-query': 5.90.21(react@19.2.4) - react: 19.2.4 - react-dom: 19.2.4(react@19.2.4) - transitivePeerDependencies: - - '@tanstack/query-core' - - '@types/react' - - bs58 - - immer - - typescript - - use-sync-external-store - '@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -17666,11 +17509,11 @@ snapshots: gonzales-pe: 4.3.0 node-source-walk: 7.0.1 - '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@types/react' @@ -17702,8 +17545,8 @@ snapshots: '@dynamic-labs-wallet/browser-wallet-client@0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/message-transport': 4.67.1 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/message-transport': 4.67.2 uuid: 11.1.0 transitivePeerDependencies: - bufferutil @@ -17714,8 +17557,8 @@ snapshots: '@dynamic-labs-wallet/browser-wallet-client@0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))': dependencies: '@dynamic-labs-wallet/core': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/message-transport': 4.67.1 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/message-transport': 4.67.2 uuid: 11.1.0 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -17724,7 +17567,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.167': dependencies: '@dynamic-labs-wallet/core': 0.0.167 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.764 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17738,7 +17581,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.818 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17754,7 +17597,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.259(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/core': 0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.864 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -17781,7 +17624,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.203(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.1.3(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.818 axios: 1.13.2 http-errors: 2.0.0 @@ -17794,7 +17637,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.259(bufferutil@4.1.0)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.2.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.864 axios: 1.13.2 http-errors: 2.0.0 @@ -17807,7 +17650,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.286(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.875 axios: 1.13.5 uuid: 11.1.0 @@ -17820,7 +17663,7 @@ snapshots: '@dynamic-labs-wallet/core@0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))': dependencies: '@dynamic-labs-wallet/forward-mpc-client': 0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.875 axios: 1.13.5 uuid: 11.1.0 @@ -17946,23 +17789,23 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/assert-package-version@4.67.1': + '@dynamic-labs/assert-package-version@4.67.2': dependencies: - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/logger': 4.67.2 - '@dynamic-labs/bitcoin@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/bitcoin@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@bitcoinerlab/secp256k1': 1.1.1 '@btckit/types': 0.0.19 '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 bitcoinjs-lib: 6.1.5 @@ -17984,17 +17827,17 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/embedded-wallet-evm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/embedded-wallet-evm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/embedded-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/embedded-wallet': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.67.1 + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.2 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/iframe-stamper': 2.5.0 '@turnkey/viem': 0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) @@ -18011,19 +17854,19 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet-solana@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@dynamic-labs/embedded-wallet-solana@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@dynamic-labs-sdk/client': 0.14.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/embedded-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/embedded-wallet': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.67.1 + '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.2 '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@turnkey/iframe-stamper': 2.5.0 '@turnkey/solana': 1.0.42(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -18041,15 +17884,15 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/embedded-wallet@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/webauthn': 4.67.1 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/webauthn': 4.67.2 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/http': 3.10.0(encoding@0.1.13) '@turnkey/iframe-stamper': 2.5.0 @@ -18061,15 +17904,15 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-aa-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-aa-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18077,17 +17920,17 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-aa@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-aa@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-aa-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-aa-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@zerodev/ecdsa-validator': 5.4.9(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@zerodev/multi-chain-ecdsa-validator': 5.4.5(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) @@ -18099,16 +17942,16 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18116,20 +17959,20 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/ethereum@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/embedded-wallet-evm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/waas-evm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/embedded-wallet-evm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/waas-evm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@walletconnect/ethereum-provider': 2.21.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) buffer: 6.0.3 @@ -18172,18 +18015,18 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/iconic@4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/iconic@4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) sharp: 0.33.5 url: 0.11.0 - '@dynamic-labs/locale@4.67.1(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)': + '@dynamic-labs/locale@4.67.2(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 i18next: 23.4.6 react-i18next: 13.5.0(i18next@23.4.6)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) transitivePeerDependencies: @@ -18191,27 +18034,27 @@ snapshots: - react-dom - react-native - '@dynamic-labs/logger@4.67.1': + '@dynamic-labs/logger@4.67.2': dependencies: eventemitter3: 5.0.1 - '@dynamic-labs/message-transport@4.67.1': + '@dynamic-labs/message-transport@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/utils': 4.67.2 '@vue/reactivity': 3.5.30 eventemitter3: 5.0.1 - '@dynamic-labs/multi-wallet@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/multi-wallet@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) tslib: 2.4.1 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18219,10 +18062,10 @@ snapshots: - react - react-dom - '@dynamic-labs/rpc-providers@4.67.1': + '@dynamic-labs/rpc-providers@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/types': 4.67.2 '@dynamic-labs/sdk-api-core@0.0.764': {} @@ -18234,22 +18077,22 @@ snapshots: '@dynamic-labs/sdk-api-core@0.0.881': {} - '@dynamic-labs/sdk-react-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@dynamic-labs/sdk-react-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: '@dynamic-labs-sdk/client': 0.14.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/iconic': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/locale': 4.67.1(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/multi-wallet': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/iconic': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/locale': 4.67.2(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/multi-wallet': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/store': 4.67.1 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/store': 4.67.2 + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@hcaptcha/react-hcaptcha': 1.4.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@thumbmarkjs/thumbmarkjs': 0.16.0 bs58: 6.0.0 @@ -18273,15 +18116,15 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/solana-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@dynamic-labs/solana-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/spl-token': 0.4.14(@solana/web3.js@1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) eventemitter3: 5.0.1 @@ -18296,20 +18139,20 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/solana@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/solana@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/embedded-wallet-solana': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/embedded-wallet-solana': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/waas-svm': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connect': 4.67.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/waas-svm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connect': 4.67.2(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 @@ -18355,21 +18198,21 @@ snapshots: - viem - zod - '@dynamic-labs/store@4.67.1': + '@dynamic-labs/store@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 - '@dynamic-labs/sui-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': + '@dynamic-labs/sui-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mysten/sui': 1.45.2(typescript@5.9.3) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) text-encoding: 0.7.0 @@ -18382,31 +18225,31 @@ snapshots: - react-dom - typescript - '@dynamic-labs/types@4.67.1': + '@dynamic-labs/types@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/utils@4.67.1': + '@dynamic-labs/utils@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 + '@dynamic-labs/types': 4.67.2 buffer: 6.0.3 eventemitter3: 5.0.1 tldts: 6.0.16 - '@dynamic-labs/waas-evm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@dynamic-labs/waas-evm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18422,18 +18265,18 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/waas-svm@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/waas-svm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/embedded-wallet-solana': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/embedded-wallet-solana': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/waas': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) bs58: 6.0.0 eventemitter3: 5.0.1 @@ -18452,18 +18295,18 @@ snapshots: - viem - zod - '@dynamic-labs/waas@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/waas@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/solana-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/sui-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/sui-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@gql.tada/svelte-support' @@ -18478,37 +18321,37 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/wagmi-connector@4.67.1(45c4ff2b2c1f08547fb77a9e74e7164b)': + '@dynamic-labs/wagmi-connector@4.67.2(357284df7c9b2bd3a6b91ec3f0edd728)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/ethereum-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 - '@dynamic-labs/sdk-react-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/wallet-connector-core': 4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 + '@dynamic-labs/sdk-react-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) eventemitter3: 5.0.1 react: 19.2.4 viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/wallet-book@4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/wallet-book@4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/iconic': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/utils': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/iconic': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/utils': 4.67.2 eventemitter3: 5.0.1 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) util: 0.12.5 zod: 4.3.6 - '@dynamic-labs/wallet-connect@4.67.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + '@dynamic-labs/wallet-connect@4.67.2(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 '@walletconnect/sign-client': 2.21.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' @@ -18535,16 +18378,16 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/wallet-connector-core@4.67.1(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 - '@dynamic-labs/rpc-providers': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 + '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 - '@dynamic-labs/types': 4.67.1 - '@dynamic-labs/utils': 4.67.1 - '@dynamic-labs/wallet-book': 4.67.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@dynamic-labs/types': 4.67.2 + '@dynamic-labs/utils': 4.67.2 + '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) eventemitter3: 5.0.1 transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' @@ -18552,10 +18395,10 @@ snapshots: - react - react-dom - '@dynamic-labs/webauthn@4.67.1': + '@dynamic-labs/webauthn@4.67.2': dependencies: - '@dynamic-labs/assert-package-version': 4.67.1 - '@dynamic-labs/logger': 4.67.1 + '@dynamic-labs/assert-package-version': 4.67.2 + '@dynamic-labs/logger': 4.67.2 '@simplewebauthn/browser': 13.1.0 '@simplewebauthn/types': 12.0.0 @@ -19318,7 +19161,7 @@ snapshots: '@floating-ui/react': 0.26.28(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@react-aria/focus': 3.21.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@react-aria/interactions': 3.27.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react: 19.2.4 react-dom: 19.2.4(react@19.2.4) use-sync-external-store: 1.4.0(react@19.2.4) @@ -19822,7 +19665,7 @@ snapshots: '@lifi/sdk-provider-solana@4.0.0-beta.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@solana/kit': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/kit': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/wallet-standard-features': 1.3.0 '@wallet-standard/base': 1.1.0 transitivePeerDependencies: @@ -19835,7 +19678,7 @@ snapshots: '@lifi/sdk-provider-sui@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/sui': 2.7.0(typescript@5.9.3) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19888,7 +19731,7 @@ snapshots: - utf-8-validate - zod - '@lifi/wallet-management@3.22.8(34b91203ca713c308f96c734a33217fc)': + '@lifi/wallet-management@3.22.8(181d5f00fcc30c3404045ff3c974754e)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -19899,7 +19742,7 @@ snapshots: '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) @@ -19912,7 +19755,7 @@ snapshots: react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19930,7 +19773,7 @@ snapshots: - utf-8-validate - zod - '@lifi/wallet-management@3.22.8(4fe09d18b121daf54023163592473233)': + '@lifi/wallet-management@3.22.8(39fc10a8dfa322c4cd62288f315e3869)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -19941,7 +19784,7 @@ snapshots: '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) @@ -19954,7 +19797,7 @@ snapshots: react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -19972,19 +19815,18 @@ snapshots: - utf-8-validate - zod - '@lifi/widget-light@4.0.0-alpha.3(9e0844ef006464c0a121fb61d3af23df)': + '@lifi/widget-light@4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0)': dependencies: react: 19.2.4 optionalDependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@mysten/dapp-kit': 0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3) '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': 1.1.0 viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) - '@lifi/widget@3.40.12(2fb7761314c756a9706d026ed291c31b)': + '@lifi/widget@3.40.12(0ddd6accedc60ee19bd7698de598bce4)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -19992,18 +19834,18 @@ snapshots: '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.8(4fe09d18b121daf54023163592473233) + '@lifi/wallet-management': 3.22.8(181d5f00fcc30c3404045ff3c974754e) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 @@ -20033,7 +19875,7 @@ snapshots: - utf-8-validate - zod - '@lifi/widget@3.40.12(6050907b036eca095d838803c2f05279)': + '@lifi/widget@3.40.12(8296b87b860be7876c0cab13d577255c)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) @@ -20041,18 +19883,18 @@ snapshots: '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.8(34b91203ca713c308f96c734a33217fc) + '@lifi/wallet-management': 3.22.8(39fc10a8dfa322c4cd62288f315e3869) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 @@ -20333,7 +20175,7 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 '@types/debug': 4.1.12 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.3.4 pony-cause: 2.1.11 semver: 7.7.4 uuid: 9.0.1 @@ -20347,7 +20189,7 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/base': 1.2.6 '@types/debug': 4.1.12 - debug: 4.4.3(supports-color@5.5.0) + debug: 4.3.4 pony-cause: 2.1.11 semver: 7.7.4 uuid: 9.0.1 @@ -20549,15 +20391,15 @@ snapshots: '@mysten/utils': 0.3.1 '@scure/base': 2.0.0 - '@mysten/dapp-kit-core@1.1.4(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3)': + '@mysten/dapp-kit-core@1.1.4(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3)': dependencies: '@floating-ui/dom': 1.7.6 '@lit-labs/scoped-registry-mixin': 1.0.4 '@lit/task': 1.0.3 - '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3) - '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/sui': 2.7.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.6.0(typescript@5.9.3)) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) '@nanostores/lit': 0.2.3(lit@3.3.2)(nanostores@1.1.1) '@wallet-standard/ui': 1.0.1 '@wallet-standard/ui-registry': 1.0.1 @@ -20567,10 +20409,10 @@ snapshots: transitivePeerDependencies: - typescript - '@mysten/dapp-kit-react@2.0.0(@mysten/sui@2.6.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)': + '@mysten/dapp-kit-react@2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)': dependencies: '@lit/react': 1.0.8(@types/react@19.2.14) - '@mysten/dapp-kit-core': 1.1.4(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/dapp-kit-core': 1.1.4(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) '@nanostores/react': 1.0.0(nanostores@1.1.1)(react@19.2.4) '@types/react': 19.2.14 nanostores: 1.1.1 @@ -20579,39 +20421,12 @@ snapshots: - '@mysten/sui' - typescript - '@mysten/dapp-kit@0.19.11(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)': + '@mysten/dapp-kit@1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: - '@mysten/slush-wallet': 0.2.12(typescript@5.9.3) - '@mysten/sui': 1.45.2(typescript@5.9.3) - '@mysten/utils': 0.2.0 - '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) - '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@radix-ui/react-slot': 1.2.4(@types/react@19.2.14)(react@19.2.4) - '@tanstack/react-query': 5.90.21(react@19.2.4) - '@vanilla-extract/css': 1.18.0(babel-plugin-macros@3.1.0) - '@vanilla-extract/dynamic': 2.1.5 - '@vanilla-extract/recipes': 0.5.7(@vanilla-extract/css@1.18.0(babel-plugin-macros@3.1.0)) - clsx: 2.1.1 - react: 19.2.4 - zustand: 4.5.7(@types/react@19.2.14)(react@19.2.4) - transitivePeerDependencies: - - '@gql.tada/svelte-support' - - '@gql.tada/vue-support' - - '@types/react' - - '@types/react-dom' - - babel-plugin-macros - - immer - - react-dom - - typescript - optional: true - - '@mysten/dapp-kit@1.0.3(@mysten/sui@2.6.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': - dependencies: - '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3) - '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/sui': 2.7.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.6.0(typescript@5.9.3)) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@radix-ui/react-slot': 1.2.4(@types/react@19.2.14)(react@19.2.4) @@ -20631,25 +20446,11 @@ snapshots: - typescript - use-sync-external-store - '@mysten/slush-wallet@0.2.12(typescript@5.9.3)': - dependencies: - '@mysten/sui': 1.45.2(typescript@5.9.3) - '@mysten/utils': 0.2.0 - '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) - '@mysten/window-wallet-core': 0.1.1(typescript@5.9.3) - mitt: 3.0.1 - valibot: 1.2.0(typescript@5.9.3) - transitivePeerDependencies: - - '@gql.tada/svelte-support' - - '@gql.tada/vue-support' - - typescript - optional: true - - '@mysten/slush-wallet@1.0.2(@mysten/sui@2.6.0(typescript@5.9.3))(typescript@5.9.3)': + '@mysten/slush-wallet@1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3)': dependencies: - '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/sui': 2.7.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.6.0(typescript@5.9.3)) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) '@mysten/window-wallet-core': 0.1.3(typescript@5.9.3) valibot: 1.2.0(typescript@5.9.3) transitivePeerDependencies: @@ -20677,7 +20478,7 @@ snapshots: - '@gql.tada/vue-support' - typescript - '@mysten/sui@2.6.0(typescript@5.9.3)': + '@mysten/sui@2.7.0(typescript@5.9.3)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1) '@mysten/bcs': 2.0.2 @@ -20716,20 +20517,11 @@ snapshots: - '@gql.tada/vue-support' - typescript - '@mysten/wallet-standard@0.20.1(@mysten/sui@2.6.0(typescript@5.9.3))': + '@mysten/wallet-standard@0.20.1(@mysten/sui@2.7.0(typescript@5.9.3))': dependencies: - '@mysten/sui': 2.6.0(typescript@5.9.3) + '@mysten/sui': 2.7.0(typescript@5.9.3) '@wallet-standard/core': 1.1.1 - '@mysten/window-wallet-core@0.1.1(typescript@5.9.3)': - dependencies: - '@mysten/utils': 0.2.0 - jose: 6.2.1 - valibot: 1.2.0(typescript@5.9.3) - transitivePeerDependencies: - - typescript - optional: true - '@mysten/window-wallet-core@0.1.3(typescript@5.9.3)': dependencies: '@mysten/utils': 0.3.1 @@ -20979,7 +20771,7 @@ snapshots: proggy: 3.0.0 promise-all-reject-late: 1.0.1 promise-call-limit: 3.0.2 - semver: 7.7.4 + semver: 7.7.2 ssri: 12.0.0 treeverse: 3.0.0 walk-up-path: 4.0.0 @@ -20992,11 +20784,11 @@ snapshots: '@npmcli/fs@4.0.0': dependencies: - semver: 7.7.4 + semver: 7.7.2 '@npmcli/fs@5.0.0': dependencies: - semver: 7.7.4 + semver: 7.7.2 '@npmcli/git@4.1.0': dependencies: @@ -21019,7 +20811,7 @@ snapshots: npm-pick-manifest: 10.0.0 proc-log: 5.0.0 promise-retry: 2.0.1 - semver: 7.7.4 + semver: 7.7.2 which: 5.0.0 '@npmcli/git@7.0.2': @@ -21030,7 +20822,7 @@ snapshots: lru-cache: 11.2.6 npm-pick-manifest: 11.0.3 proc-log: 6.1.0 - semver: 7.7.4 + semver: 7.7.2 which: 6.0.1 '@npmcli/installed-package-contents@3.0.0': @@ -21056,7 +20848,7 @@ snapshots: json-parse-even-better-errors: 5.0.0 pacote: 21.5.0 proc-log: 6.1.0 - semver: 7.7.4 + semver: 7.7.2 transitivePeerDependencies: - supports-color @@ -21087,7 +20879,7 @@ snapshots: hosted-git-info: 9.0.2 json-parse-even-better-errors: 5.0.0 proc-log: 6.1.0 - semver: 7.7.4 + semver: 7.7.2 validate-npm-package-license: 3.0.4 '@npmcli/promise-spawn@6.0.2': @@ -21210,7 +21002,7 @@ snapshots: tinyglobby: 0.2.15 vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) - vite-plugin-vue-tracer: 1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + vite-plugin-vue-tracer: 1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) which: 5.0.0 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -21349,14 +21141,14 @@ snapshots: - vue-tsc - yaml - '@nx/devkit@22.5.4(nx@22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)))': + '@nx/devkit@22.5.4(nx@22.5.4)': dependencies: '@zkochan/js-yaml': 0.0.7 ejs: 3.1.10 enquirer: 2.3.6 minimatch: 10.2.4 - nx: 22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)) - semver: 7.7.4 + nx: 22.5.4 + semver: 7.7.2 tslib: 2.8.1 yargs-parser: 21.1.1 @@ -21703,7 +21495,7 @@ snapshots: fetch-retry: 6.0.0 jose: 4.15.9 js-cookie: 3.0.5 - libphonenumber-js: 1.12.39 + libphonenumber-js: 1.12.40 set-cookie-parser: 2.7.2 uuid: 9.0.1 optionalDependencies: @@ -21718,7 +21510,7 @@ snapshots: dependencies: '@privy-io/api-base': 1.7.0 bs58: 6.0.0 - libphonenumber-js: 1.12.39 + libphonenumber-js: 1.12.40 viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 transitivePeerDependencies: @@ -21726,7 +21518,7 @@ snapshots: - typescript - utf-8-validate - '@privy-io/react-auth@2.25.0(a0260db9fc0bcaf84aa33a8add1778a8)': + '@privy-io/react-auth@2.25.0(78098f046e864437a57df44ee72f4807)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.2 @@ -21746,7 +21538,7 @@ snapshots: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0) '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(react@19.2.4) - '@tanstack/react-virtual': 3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wallet-standard/app': 1.1.0 '@walletconnect/ethereum-provider': 2.21.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) base64-js: 1.5.1 @@ -21774,7 +21566,7 @@ snapshots: viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: - '@solana/kit': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/kit': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/spl-token': 0.4.14(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) permissionless: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) @@ -21812,7 +21604,7 @@ snapshots: '@privy-io/wagmi@1.0.6(ba75cdb350cf85a71f2933e831bd3291)': dependencies: - '@privy-io/react-auth': 2.25.0(a0260db9fc0bcaf84aa33a8add1778a8) + '@privy-io/react-auth': 2.25.0(78098f046e864437a57df44ee72f4807) react: 19.2.4 viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) @@ -22436,7 +22228,7 @@ snapshots: cookie-signature: 1.2.2 source-map-support: 0.5.21 stream-slice: 0.1.2 - undici: 6.23.0 + undici: 6.24.0 optionalDependencies: typescript: 5.9.3 @@ -22985,8 +22777,6 @@ snapshots: '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9': optional: true - '@rolldown/pluginutils@1.0.0-beta.27': {} - '@rolldown/pluginutils@1.0.0-rc.2': {} '@rolldown/pluginutils@1.0.0-rc.7': {} @@ -23402,14 +23192,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/accounts@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/accounts@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23427,13 +23217,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/addresses@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/addresses@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/assertions': 6.3.0(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/assertions': 6.3.1(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23445,9 +23235,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/assertions@6.3.0(typescript@5.9.3)': + '@solana/assertions@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23488,9 +23278,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-core@6.3.0(typescript@5.9.3)': + '@solana/codecs-core@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23509,11 +23299,11 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-data-structures@6.3.0(typescript@5.9.3)': + '@solana/codecs-data-structures@6.3.1(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23542,10 +23332,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/codecs-numbers@6.3.0(typescript@5.9.3)': + '@solana/codecs-numbers@6.3.1(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23574,11 +23364,11 @@ snapshots: fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 - '@solana/codecs-strings@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/codecs-strings@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: fastestsmallesttextencoderdecoder: 1.0.22 typescript: 5.9.3 @@ -23606,13 +23396,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/codecs@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/codecs@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/options': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/options': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23643,7 +23433,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/errors@6.3.0(typescript@5.9.3)': + '@solana/errors@6.3.1(typescript@5.9.3)': dependencies: chalk: 5.6.2 commander: 14.0.3 @@ -23654,7 +23444,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/fast-stable-stringify@6.3.0(typescript@5.9.3)': + '@solana/fast-stable-stringify@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23662,7 +23452,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/functional@6.3.0(typescript@5.9.3)': + '@solana/functional@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23679,14 +23469,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/instruction-plans@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/instruction-plans@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/promises': 6.3.0(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/promises': 6.3.1(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23699,10 +23489,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/instructions@6.3.0(typescript@5.9.3)': + '@solana/instructions@6.3.1(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -23718,13 +23508,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/keys@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/keys@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/assertions': 6.3.0(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/assertions': 6.3.1(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23761,32 +23551,32 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/kit@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': - dependencies: - '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/offchain-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/plugin-core': 6.3.0(typescript@5.9.3) - '@solana/plugin-interfaces': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/program-client-core': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/programs': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-parsed-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-subscriptions': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/sysvars': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-confirmation': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/kit@6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + dependencies: + '@solana/accounts': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/instruction-plans': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/offchain-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/plugin-core': 6.3.1(typescript@5.9.3) + '@solana/plugin-interfaces': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/program-client-core': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/programs': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-api': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-parsed-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-subscriptions': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/sysvars': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-confirmation': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23798,7 +23588,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/nominal-types@6.3.0(typescript@5.9.3)': + '@solana/nominal-types@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23817,16 +23607,16 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/offchain-messages@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/offchain-messages@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23855,13 +23645,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/options@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/options@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23871,35 +23661,35 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/plugin-core@6.3.0(typescript@5.9.3)': + '@solana/plugin-core@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 - '@solana/plugin-interfaces@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/plugin-interfaces@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instruction-plans': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/program-client-core@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/program-client-core@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/instruction-plans': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/plugin-interfaces': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/signers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/accounts': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/instruction-plans': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/plugin-interfaces': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-api': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/signers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23914,10 +23704,10 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/programs@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/programs@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23927,7 +23717,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/promises@6.3.0(typescript@5.9.3)': + '@solana/promises@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23949,19 +23739,19 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-api@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-api@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-parsed-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-parsed-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -23971,7 +23761,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-parsed-types@6.3.0(typescript@5.9.3)': + '@solana/rpc-parsed-types@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23979,7 +23769,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-spec-types@6.3.0(typescript@5.9.3)': + '@solana/rpc-spec-types@6.3.1(typescript@5.9.3)': optionalDependencies: typescript: 5.9.3 @@ -23990,10 +23780,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-spec@6.3.0(typescript@5.9.3)': + '@solana/rpc-spec@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -24011,15 +23801,15 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-subscriptions-api@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-subscriptions-api@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24038,12 +23828,12 @@ snapshots: - bufferutil - utf-8-validate - '@solana/rpc-subscriptions-channel-websocket@6.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/rpc-subscriptions-channel-websocket@6.3.1(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) - '@solana/subscribable': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/rpc-subscriptions-spec': 6.3.1(typescript@5.9.3) + '@solana/subscribable': 6.3.1(typescript@5.9.3) ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) optionalDependencies: typescript: 5.9.3 @@ -24060,12 +23850,12 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/rpc-subscriptions-spec@6.3.0(typescript@5.9.3)': + '@solana/rpc-subscriptions-spec@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/promises': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - '@solana/subscribable': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/promises': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + '@solana/subscribable': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -24089,19 +23879,19 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/rpc-subscriptions@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/rpc-subscriptions@6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/fast-stable-stringify': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/promises': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-subscriptions-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions-channel-websocket': 6.3.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-subscriptions-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/subscribable': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/fast-stable-stringify': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/promises': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-subscriptions-api': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions-channel-websocket': 6.3.1(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-subscriptions-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/subscribable': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24121,13 +23911,13 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-transformers@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-transformers@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24138,16 +23928,16 @@ snapshots: '@solana/errors': 5.5.1(typescript@5.9.3) '@solana/rpc-spec': 5.5.1(typescript@5.9.3) '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3) - undici-types: 7.23.0 + undici-types: 7.24.0 optionalDependencies: typescript: 5.9.3 - '@solana/rpc-transport-http@6.3.0(typescript@5.9.3)': + '@solana/rpc-transport-http@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - undici-types: 7.23.0 + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + undici-types: 7.24.0 optionalDependencies: typescript: 5.9.3 @@ -24164,14 +23954,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc-types@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc-types@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24193,17 +23983,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/rpc@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/rpc@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/fast-stable-stringify': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/rpc-api': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-spec': 6.3.0(typescript@5.9.3) - '@solana/rpc-spec-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-transformers': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-transport-http': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/fast-stable-stringify': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/rpc-api': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-spec': 6.3.1(typescript@5.9.3) + '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-transformers': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-transport-http': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24225,17 +24015,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/signers@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/signers@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) - '@solana/offchain-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) + '@solana/offchain-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24309,9 +24099,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@solana/subscribable@6.3.0(typescript@5.9.3)': + '@solana/subscribable@6.3.1(typescript@5.9.3)': dependencies: - '@solana/errors': 6.3.0(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -24326,14 +24116,14 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/sysvars@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/sysvars@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/accounts': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/accounts': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24358,18 +24148,18 @@ snapshots: - fastestsmallesttextencoderdecoder - utf-8-validate - '@solana/transaction-confirmation@6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': + '@solana/transaction-confirmation@6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/promises': 6.3.0(typescript@5.9.3) - '@solana/rpc': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/rpc-subscriptions': 6.3.0(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transactions': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/promises': 6.3.1(typescript@5.9.3) + '@solana/rpc': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/rpc-subscriptions': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24393,17 +24183,17 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/transaction-messages@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + '@solana/transaction-messages@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24428,20 +24218,20 @@ snapshots: transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/transactions@6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': - dependencies: - '@solana/addresses': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/codecs-core': 6.3.0(typescript@5.9.3) - '@solana/codecs-data-structures': 6.3.0(typescript@5.9.3) - '@solana/codecs-numbers': 6.3.0(typescript@5.9.3) - '@solana/codecs-strings': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/errors': 6.3.0(typescript@5.9.3) - '@solana/functional': 6.3.0(typescript@5.9.3) - '@solana/instructions': 6.3.0(typescript@5.9.3) - '@solana/keys': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/nominal-types': 6.3.0(typescript@5.9.3) - '@solana/rpc-types': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) - '@solana/transaction-messages': 6.3.0(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transactions@6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)': + dependencies: + '@solana/addresses': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/codecs-core': 6.3.1(typescript@5.9.3) + '@solana/codecs-data-structures': 6.3.1(typescript@5.9.3) + '@solana/codecs-numbers': 6.3.1(typescript@5.9.3) + '@solana/codecs-strings': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/errors': 6.3.1(typescript@5.9.3) + '@solana/functional': 6.3.1(typescript@5.9.3) + '@solana/instructions': 6.3.1(typescript@5.9.3) + '@solana/keys': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/nominal-types': 6.3.1(typescript@5.9.3) + '@solana/rpc-types': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) + '@solana/transaction-messages': 6.3.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24628,54 +24418,6 @@ snapshots: vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) - '@swc/core-darwin-arm64@1.15.18': - optional: true - - '@swc/core-darwin-x64@1.15.18': - optional: true - - '@swc/core-linux-arm-gnueabihf@1.15.18': - optional: true - - '@swc/core-linux-arm64-gnu@1.15.18': - optional: true - - '@swc/core-linux-arm64-musl@1.15.18': - optional: true - - '@swc/core-linux-x64-gnu@1.15.18': - optional: true - - '@swc/core-linux-x64-musl@1.15.18': - optional: true - - '@swc/core-win32-arm64-msvc@1.15.18': - optional: true - - '@swc/core-win32-ia32-msvc@1.15.18': - optional: true - - '@swc/core-win32-x64-msvc@1.15.18': - optional: true - - '@swc/core@1.15.18(@swc/helpers@0.5.19)': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.25 - optionalDependencies: - '@swc/core-darwin-arm64': 1.15.18 - '@swc/core-darwin-x64': 1.15.18 - '@swc/core-linux-arm-gnueabihf': 1.15.18 - '@swc/core-linux-arm64-gnu': 1.15.18 - '@swc/core-linux-arm64-musl': 1.15.18 - '@swc/core-linux-x64-gnu': 1.15.18 - '@swc/core-linux-x64-musl': 1.15.18 - '@swc/core-win32-arm64-msvc': 1.15.18 - '@swc/core-win32-ia32-msvc': 1.15.18 - '@swc/core-win32-x64-msvc': 1.15.18 - '@swc/helpers': 0.5.19 - optional: true - '@swc/counter@0.1.3': {} '@swc/helpers@0.5.15': @@ -24691,11 +24433,6 @@ snapshots: '@swc/counter': 0.1.3 tslib: 2.8.1 - '@swc/types@0.1.25': - dependencies: - '@swc/counter': 0.1.3 - optional: true - '@tanstack/history@1.161.4': {} '@tanstack/query-core@5.90.20': {} @@ -24723,9 +24460,9 @@ snapshots: react-dom: 19.2.4(react@19.2.4) use-sync-external-store: 1.4.0(react@19.2.4) - '@tanstack/react-virtual@3.13.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@tanstack/react-virtual@3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@tanstack/virtual-core': 3.13.21 + '@tanstack/virtual-core': 3.13.22 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -24741,7 +24478,7 @@ snapshots: '@tanstack/store@0.9.2': {} - '@tanstack/virtual-core@3.13.21': {} + '@tanstack/virtual-core@3.13.22': {} '@thumbmarkjs/thumbmarkjs@0.16.0': {} @@ -25360,19 +25097,7 @@ snapshots: - rollup - supports-color - '@vitejs/plugin-react@4.7.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': - dependencies: - '@babel/core': 7.29.0 - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) - '@rolldown/pluginutils': 1.0.0-beta.27 - '@types/babel__core': 7.20.5 - react-refresh: 0.17.0 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - transitivePeerDependencies: - - supports-color - - '@vitejs/plugin-react@6.0.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@vitejs/plugin-react@6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.7 vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) @@ -27581,11 +27306,11 @@ snapshots: - bare-abort-controller - react-native-b4a - bare-os@3.7.1: {} + bare-os@3.8.0: {} bare-path@3.0.0: dependencies: - bare-os: 3.7.1 + bare-os: 3.8.0 bare-stream@2.8.1(bare-events@2.8.2): dependencies: @@ -28403,7 +28128,7 @@ snapshots: handlebars: 4.7.8 json-stringify-safe: 5.0.1 meow: 8.1.2 - semver: 7.7.4 + semver: 7.7.2 split: 1.0.1 conventional-changelog@3.1.25: @@ -29190,7 +28915,7 @@ snapshots: es-errors@1.3.0: {} - es-iterator-helpers@1.3.0: + es-iterator-helpers@1.3.1: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 @@ -29391,8 +29116,8 @@ snapshots: '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1) eslint-plugin-react: 7.37.5(eslint@8.57.1) eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1) @@ -29411,7 +29136,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@5.5.0) @@ -29422,22 +29147,22 @@ snapshots: tinyglobby: 0.2.15 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.57.0(eslint@8.57.1)(typescript@5.9.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -29448,7 +29173,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.57.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -29511,7 +29236,7 @@ snapshots: array.prototype.flatmap: 1.3.3 array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 - es-iterator-helpers: 1.3.0 + es-iterator-helpers: 1.3.1 eslint: 8.57.1 estraverse: 5.3.0 hasown: 2.0.2 @@ -29646,9 +29371,10 @@ snapshots: dependencies: estraverse: 5.3.0 - esrap@2.2.3: + esrap@2.2.4: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 + '@typescript-eslint/types': 8.57.0 esrecurse@4.3.0: dependencies: @@ -30273,7 +29999,7 @@ snapshots: git-semver-tags@5.0.1: dependencies: meow: 8.1.2 - semver: 7.7.4 + semver: 7.7.2 git-up@7.0.0: dependencies: @@ -30706,7 +30432,7 @@ snapshots: npm-package-arg: 13.0.1 promzard: 2.0.0 read: 4.1.0 - semver: 7.7.4 + semver: 7.7.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 6.0.2 @@ -31326,12 +31052,12 @@ snapshots: dependencies: readable-stream: 2.3.8 - lerna@9.0.6(@swc/core@1.15.18(@swc/helpers@0.5.19))(@types/node@25.5.0)(babel-plugin-macros@3.1.0): + lerna@9.0.6(@types/node@25.5.0)(babel-plugin-macros@3.1.0): dependencies: '@npmcli/arborist': 9.1.6 '@npmcli/package-json': 7.0.2 '@npmcli/run-script': 10.0.3 - '@nx/devkit': 22.5.4(nx@22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19))) + '@nx/devkit': 22.5.4(nx@22.5.4) '@octokit/plugin-enterprise-rest': 6.0.1 '@octokit/rest': 20.1.2 aproba: 2.0.0 @@ -31373,7 +31099,7 @@ snapshots: npm-package-arg: 13.0.1 npm-packlist: 10.0.3 npm-registry-fetch: 19.1.0 - nx: 22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)) + nx: 22.5.4 p-map: 4.0.0 p-map-series: 2.1.0 p-pipe: 3.1.0 @@ -31434,13 +31160,13 @@ snapshots: npm-package-arg: 13.0.1 npm-registry-fetch: 19.1.0 proc-log: 5.0.0 - semver: 7.7.4 + semver: 7.7.2 sigstore: 4.1.0 ssri: 12.0.0 transitivePeerDependencies: - supports-color - libphonenumber-js@1.12.39: {} + libphonenumber-js@1.12.40: {} lighthouse-logger@1.4.2: dependencies: @@ -31726,7 +31452,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.4 + semver: 7.7.2 make-fetch-happen@15.0.2: dependencies: @@ -32536,7 +32262,7 @@ snapshots: array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 - minimatch: 3.1.5 + minimatch: 3.1.4 mute-stream@2.0.0: {} @@ -32768,9 +32494,9 @@ snapshots: make-fetch-happen: 15.0.2 nopt: 9.0.0 proc-log: 6.1.0 - semver: 7.7.4 + semver: 7.7.2 tar: 7.5.11 - tinyglobby: 0.2.15 + tinyglobby: 0.2.12 which: 6.0.1 transitivePeerDependencies: - supports-color @@ -32836,7 +32562,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.7.4 + semver: 7.7.2 validate-npm-package-license: 3.0.4 normalize-package-data@5.0.0: @@ -32862,11 +32588,11 @@ snapshots: npm-install-checks@7.1.2: dependencies: - semver: 7.7.4 + semver: 7.7.2 npm-install-checks@8.0.0: dependencies: - semver: 7.7.4 + semver: 7.7.2 npm-normalize-package-bin@3.0.1: {} @@ -32885,14 +32611,14 @@ snapshots: dependencies: hosted-git-info: 8.1.0 proc-log: 5.0.0 - semver: 7.7.4 + semver: 7.7.2 validate-npm-package-name: 6.0.2 npm-package-arg@13.0.1: dependencies: hosted-git-info: 9.0.2 proc-log: 5.0.0 - semver: 7.7.4 + semver: 7.7.2 validate-npm-package-name: 6.0.2 npm-packlist@10.0.3: @@ -32905,14 +32631,14 @@ snapshots: npm-install-checks: 7.1.2 npm-normalize-package-bin: 4.0.0 npm-package-arg: 12.0.2 - semver: 7.7.4 + semver: 7.7.2 npm-pick-manifest@11.0.3: dependencies: npm-install-checks: 8.0.0 npm-normalize-package-bin: 5.0.0 npm-package-arg: 13.0.1 - semver: 7.7.4 + semver: 7.7.2 npm-pick-manifest@8.0.2: dependencies: @@ -33084,7 +32810,7 @@ snapshots: - xml2js - yaml - nx@22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)): + nx@22.5.4: dependencies: '@napi-rs/wasm-runtime': 0.2.4 '@yarnpkg/lockfile': 1.1.0 @@ -33112,7 +32838,7 @@ snapshots: ora: 5.3.0 picocolors: 1.1.1 resolve.exports: 2.0.3 - semver: 7.7.4 + semver: 7.7.2 string-width: 4.2.3 tar-stream: 2.2.0 tmp: 0.2.5 @@ -33133,7 +32859,6 @@ snapshots: '@nx/nx-linux-x64-musl': 22.5.4 '@nx/nx-win32-arm64-msvc': 22.5.4 '@nx/nx-win32-x64-msvc': 22.5.4 - '@swc/core': 1.15.18(@swc/helpers@0.5.19) transitivePeerDependencies: - debug @@ -33280,7 +33005,7 @@ snapshots: ora@5.3.0: dependencies: bl: 4.1.0 - chalk: 4.1.2 + chalk: 4.1.0 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -33329,7 +33054,7 @@ snapshots: dependencies: '@adraffy/ens-normalize': 1.11.1 '@noble/curves': 1.8.1 - '@noble/hashes': 1.8.0 + '@noble/hashes': 1.7.1 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 abitype: 1.0.8(typescript@5.9.3)(zod@4.3.6) @@ -34451,8 +34176,6 @@ snapshots: react-refresh@0.14.2: {} - react-refresh@0.17.0: {} - react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.4): dependencies: react: 19.2.4 @@ -35689,7 +35412,7 @@ snapshots: clsx: 2.1.1 devalue: 5.6.4 esm-env: 1.2.2 - esrap: 2.2.3 + esrap: 2.2.4 is-reference: 3.0.3 locate-character: 3.0.0 magic-string: 0.30.21 @@ -36071,9 +35794,9 @@ snapshots: undici-types@7.18.2: {} - undici-types@7.23.0: {} + undici-types@7.24.0: {} - undici@6.23.0: {} + undici@6.24.0: {} unenv@2.0.0-rc.24: dependencies: @@ -36538,7 +36261,7 @@ snapshots: picomatch: 4.0.3 strip-ansi: 7.2.0 tiny-invariant: 1.3.3 - tinyglobby: 0.2.15 + tinyglobby: 0.2.14 vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) vscode-uri: 3.1.0 optionalDependencies: @@ -36588,7 +36311,7 @@ snapshots: transitivePeerDependencies: - rollup - vite-plugin-vue-tracer@1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)): + vite-plugin-vue-tracer@1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)): dependencies: estree-walker: 3.0.3 exsolve: 1.0.8 @@ -36636,7 +36359,7 @@ snapshots: picomatch: 4.0.3 postcss: 8.5.8 rollup: 4.59.0 - tinyglobby: 0.2.15 + tinyglobby: 0.2.14 optionalDependencies: '@types/node': 25.5.0 fsevents: 2.3.3 @@ -37152,14 +36875,6 @@ snapshots: zod@4.3.6: {} - zustand@4.5.7(@types/react@19.2.14)(react@19.2.4): - dependencies: - use-sync-external-store: 1.4.0(react@19.2.4) - optionalDependencies: - '@types/react': 19.2.14 - react: 19.2.4 - optional: true - zustand@5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)): optionalDependencies: '@types/react': 19.2.14 From 94d07a15c134e96b05521dead861ed7ded1417e6 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 14:08:09 +0100 Subject: [PATCH 05/11] chore: update package --- examples/connectkit/package.json | 2 +- examples/deposit-flow/package.json | 2 +- examples/dynamic/package.json | 2 +- examples/nft-checkout/package.json | 2 +- examples/privy-ethers/package.json | 2 +- examples/privy/package.json | 2 +- examples/rainbowkit/package.json | 2 +- examples/reown/package.json | 2 +- examples/svelte/package.json | 2 +- examples/tanstack-router/package.json | 2 +- examples/vite-iframe-wagmi/package.json | 2 +- examples/vite-iframe/package.json | 4 +- examples/vite/package.json | 2 +- examples/zustand-widget-config/package.json | 2 +- package.json | 12 +- packages/wallet-management/package.json | 2 +- packages/widget-embedded/package.json | 4 +- .../providers/iframe/widgetLightConnector.ts | 30 +- packages/widget-playground/package.json | 4 +- .../widget-provider-ethereum/package.json | 2 +- packages/widget-provider-solana/package.json | 2 +- packages/widget-provider-sui/package.json | 2 +- packages/widget/package.json | 6 +- pnpm-lock.yaml | 1695 ++++++++--------- 24 files changed, 828 insertions(+), 961 deletions(-) diff --git a/examples/connectkit/package.json b/examples/connectkit/package.json index 8903b86da..60e533221 100644 --- a/examples/connectkit/package.json +++ b/examples/connectkit/package.json @@ -22,7 +22,7 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/deposit-flow/package.json b/examples/deposit-flow/package.json index 8cbda830b..12726e756 100644 --- a/examples/deposit-flow/package.json +++ b/examples/deposit-flow/package.json @@ -17,7 +17,7 @@ "events": "^3.3.0", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/dynamic/package.json b/examples/dynamic/package.json index 19d31eac9..3ef1e33d0 100644 --- a/examples/dynamic/package.json +++ b/examples/dynamic/package.json @@ -35,7 +35,7 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "vite-plugin-env-compatible": "^2.0.1", "wagmi": "^2.19.4" }, diff --git a/examples/nft-checkout/package.json b/examples/nft-checkout/package.json index 3f1444e32..7e1a79406 100644 --- a/examples/nft-checkout/package.json +++ b/examples/nft-checkout/package.json @@ -31,7 +31,7 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "react-router-dom": "^7.13.0", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0" }, "devDependencies": { diff --git a/examples/privy-ethers/package.json b/examples/privy-ethers/package.json index 4b1950172..56827466f 100644 --- a/examples/privy-ethers/package.json +++ b/examples/privy-ethers/package.json @@ -24,7 +24,7 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/privy/package.json b/examples/privy/package.json index 2861c88bd..08ef69a7a 100644 --- a/examples/privy/package.json +++ b/examples/privy/package.json @@ -25,7 +25,7 @@ "permissionless": "^0.2.57", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/rainbowkit/package.json b/examples/rainbowkit/package.json index c0b906b2c..70ee7f249 100644 --- a/examples/rainbowkit/package.json +++ b/examples/rainbowkit/package.json @@ -15,7 +15,7 @@ "@tanstack/react-query": "^5.90.20", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/reown/package.json b/examples/reown/package.json index 56d378685..8375dc25f 100644 --- a/examples/reown/package.json +++ b/examples/reown/package.json @@ -28,7 +28,7 @@ "mitt": "^3.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0" }, "devDependencies": { diff --git a/examples/svelte/package.json b/examples/svelte/package.json index 8a3382719..0c0335475 100644 --- a/examples/svelte/package.json +++ b/examples/svelte/package.json @@ -16,7 +16,7 @@ "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", - "svelte": "^5.53.11", + "svelte": "^5.53.12", "svelte-check": "^4.4.5", "svelte-preprocess": "^6.0.3", "tslib": "^2.8.1", diff --git a/examples/tanstack-router/package.json b/examples/tanstack-router/package.json index 2fdf80c16..9da63e595 100644 --- a/examples/tanstack-router/package.json +++ b/examples/tanstack-router/package.json @@ -11,7 +11,7 @@ "dependencies": { "@lifi/widget": "workspace:*", "@tanstack/react-query": "^5.90.20", - "@tanstack/react-router": "^1.166.7", + "@tanstack/react-router": "^1.167.3", "react": "^19.2.4", "react-dom": "^19.2.4" }, diff --git a/examples/vite-iframe-wagmi/package.json b/examples/vite-iframe-wagmi/package.json index b091b1432..f31db9c34 100644 --- a/examples/vite-iframe-wagmi/package.json +++ b/examples/vite-iframe-wagmi/package.json @@ -13,7 +13,7 @@ "@tanstack/react-query": "^5.90.20", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0" }, "devDependencies": { diff --git a/examples/vite-iframe/package.json b/examples/vite-iframe/package.json index 58132e6a2..531485498 100644 --- a/examples/vite-iframe/package.json +++ b/examples/vite-iframe/package.json @@ -23,13 +23,13 @@ "@lifi/widget-provider-solana": "workspace:*", "@lifi/widget-provider-sui": "workspace:*", "@mui/material": "^7.3.6", - "@mysten/dapp-kit-react": "^2.0.0", + "@mysten/dapp-kit-react": "^2.0.1", "@tanstack/react-query": "^5.90.20", "@wagmi/connectors": "^7.1.6", "bs58": ">=4.0.1", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0" }, "devDependencies": { diff --git a/examples/vite/package.json b/examples/vite/package.json index 1467e9f23..9b0ef7435 100644 --- a/examples/vite/package.json +++ b/examples/vite/package.json @@ -19,7 +19,7 @@ "events": "^3.3.0", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^2.19.4" }, "devDependencies": { diff --git a/examples/zustand-widget-config/package.json b/examples/zustand-widget-config/package.json index da2293c72..1233399d3 100644 --- a/examples/zustand-widget-config/package.json +++ b/examples/zustand-widget-config/package.json @@ -15,7 +15,7 @@ "react": "^19.2.4", "react-dom": "^19.2.4", "wagmi": "^2.19.4", - "zustand": "^5.0.11" + "zustand": "^5.0.12" }, "devDependencies": { "@types/react": "^19.2.13", diff --git a/package.json b/package.json index 5b52ef932..d07d89fb3 100644 --- a/package.json +++ b/package.json @@ -54,17 +54,17 @@ } }, "devDependencies": { - "@biomejs/biome": "^2.3.14", - "@commitlint/cli": "^20.4.4", - "@commitlint/config-conventional": "^20.4.4", + "@biomejs/biome": "^2.4.7", + "@commitlint/cli": "^20.5.0", + "@commitlint/config-conventional": "^20.5.0", "@types/node": "^25.5.0", "@types/react": "^19.2.13", "@types/react-dom": "^19.2.3", "fs-extra": "^11.3.3", "husky": "^9.1.7", - "knip": "^5.86.0", - "lerna": "^9.0.6", - "lint-staged": "^16.3.3", + "knip": "^5.87.0", + "lerna": "^9.0.7", + "lint-staged": "^16.4.0", "standard-version": "^9.5.0", "typescript": "^5.9.3" }, diff --git a/packages/wallet-management/package.json b/packages/wallet-management/package.json index 07183b74e..19f449aec 100644 --- a/packages/wallet-management/package.json +++ b/packages/wallet-management/package.json @@ -54,7 +54,7 @@ "i18next": "^25.8.18", "mitt": "^3.0.1", "react-i18next": "^16.5.8", - "zustand": "^5.0.11" + "zustand": "^5.0.12" }, "devDependencies": { "cpy-cli": "^7.0.0", diff --git a/packages/widget-embedded/package.json b/packages/widget-embedded/package.json index 656bd4532..c77b536aa 100644 --- a/packages/widget-embedded/package.json +++ b/packages/widget-embedded/package.json @@ -24,12 +24,12 @@ "@lifi/widget-provider-ethereum": "workspace:*", "@lifi/widget-provider-solana": "workspace:*", "@lifi/widget-provider-sui": "workspace:*", - "@mysten/sui": "^2.7.0", + "@mysten/sui": "^2.8.0", "@tanstack/react-query": "^5.90.20", "@wagmi/core": "^3.3.2", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0" }, "devDependencies": { diff --git a/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts b/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts index 790268f33..8884d844e 100644 --- a/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts +++ b/packages/widget-embedded/src/providers/iframe/widgetLightConnector.ts @@ -36,21 +36,11 @@ type ConnectorEmitter = Parameters[0]['emitter'] export function widgetLightConnector() { let provider_: EthereumIframeProvider | undefined let latestEmitter: ConnectorEmitter - // Reference to the connector object wagmi creates via spread. - // We mutate `name`/`icon` on it when the host sends connector info. + // Mutable ref to the spread connector object wagmi stores internally. + // Updated in setup() on each re-creation (syncWagmiConfig), read by + // the connectorUpdate listener to mutate name/icon. let connectorRef: Record | undefined - function updateConnectorInfo() { - if (!connectorRef || !provider_) { - return - } - const info = provider_.connector - if (info?.name) { - connectorRef.name = info.name - connectorRef.icon = info.icon - } - } - return createConnector((config) => { latestEmitter = config.emitter @@ -67,7 +57,6 @@ export function widgetLightConnector() { }, async getProvider() { - connectorRef ??= this as unknown as Record if (typeof window === 'undefined' || window.parent === window) { return undefined } @@ -98,12 +87,21 @@ export function widgetLightConnector() { // mutate the wagmi connector object so the widget displays // the real wallet name/icon (e.g. "MetaMask") instead of // the fallback "Widget Light". - provider_.on('connectorUpdate', updateConnectorInfo) + provider_.on('connectorUpdate', () => { + const info = provider_?.connector + if (connectorRef && info?.name) { + connectorRef.name = info.name + connectorRef.icon = info.icon + } + }) // If init already fired during construction (bridge INIT arrived // before getProvider() was called), the connectorUpdate event was // emitted before this listener existed. Apply eagerly. - updateConnectorInfo() + if (connectorRef && provider_.connector?.name) { + connectorRef.name = provider_.connector.name + connectorRef.icon = provider_.connector.icon + } } return provider_ }, diff --git a/packages/widget-playground/package.json b/packages/widget-playground/package.json index abf67fc01..b1e4a0020 100644 --- a/packages/widget-playground/package.json +++ b/packages/widget-playground/package.json @@ -53,9 +53,9 @@ "porto": "^0.2.37", "react": "^19.2.4", "react-dom": "^19.2.4", - "viem": "^2.47.2", + "viem": "^2.47.4", "wagmi": "^3.5.0", - "zustand": "^5.0.11" + "zustand": "^5.0.12" }, "devDependencies": { "@types/lodash.isequal": "^4.5.8", diff --git a/packages/widget-provider-ethereum/package.json b/packages/widget-provider-ethereum/package.json index 18297774e..7c5c1d4d9 100644 --- a/packages/widget-provider-ethereum/package.json +++ b/packages/widget-provider-ethereum/package.json @@ -44,7 +44,7 @@ "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-ethereum": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", - "viem": "^2.47.2" + "viem": "^2.47.4" }, "peerDependencies": { "@wagmi/core": "^3.x", diff --git a/packages/widget-provider-solana/package.json b/packages/widget-provider-solana/package.json index 8cf397f4d..84f9a1a95 100644 --- a/packages/widget-provider-solana/package.json +++ b/packages/widget-provider-solana/package.json @@ -46,7 +46,7 @@ "@wallet-standard/app": "^1.1.0", "@wallet-standard/base": "^1.1.0", "@wallet-standard/features": "^1.1.0", - "zustand": "^5.0.11" + "zustand": "^5.0.12" }, "peerDependencies": { "bs58": ">=4.0.1" diff --git a/packages/widget-provider-sui/package.json b/packages/widget-provider-sui/package.json index b2136f2dc..2d7a4c718 100644 --- a/packages/widget-provider-sui/package.json +++ b/packages/widget-provider-sui/package.json @@ -43,7 +43,7 @@ "@lifi/sdk": "4.0.0-beta.0", "@lifi/sdk-provider-sui": "^4.0.0-alpha.20", "@lifi/widget-provider": "workspace:*", - "@mysten/sui": "^2.7.0" + "@mysten/sui": "^2.8.0" }, "peerDependencies": { "@mysten/dapp-kit-react": "^2.0.0" diff --git a/packages/widget/package.json b/packages/widget/package.json index 9da9b6f94..65717214f 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -55,15 +55,15 @@ "@mui/icons-material": "^7.3.6", "@mui/material": "^7.3.6", "@mui/system": "^7.3.6", - "@tanstack/react-router": "^1.166.7", - "@tanstack/react-virtual": "^3.13.22", + "@tanstack/react-router": "^1.167.3", + "@tanstack/react-virtual": "^3.13.23", "i18next": "^25.8.18", "microdiff": "^1.5.0", "mitt": "^3.0.1", "react-i18next": "^16.5.8", "react-intersection-observer": "^9.16.0", "react-transition-group": "^4.4.5", - "zustand": "^5.0.11" + "zustand": "^5.0.12" }, "devDependencies": { "@types/react-transition-group": "^4.4.12", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2f916500d..9c787fec6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,14 +21,14 @@ importers: .: devDependencies: '@biomejs/biome': - specifier: ^2.3.14 - version: 2.4.6 + specifier: ^2.4.7 + version: 2.4.7 '@commitlint/cli': - specifier: ^20.4.4 - version: 20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3) + specifier: ^20.5.0 + version: 20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3) '@commitlint/config-conventional': - specifier: ^20.4.4 - version: 20.4.4 + specifier: ^20.5.0 + version: 20.5.0 '@types/node': specifier: ^25.5.0 version: 25.5.0 @@ -45,14 +45,14 @@ importers: specifier: ^9.1.7 version: 9.1.7 knip: - specifier: ^5.86.0 - version: 5.86.0(@types/node@25.5.0)(typescript@5.9.3) + specifier: ^5.87.0 + version: 5.87.0(@types/node@25.5.0)(typescript@5.9.3) lerna: - specifier: ^9.0.6 - version: 9.0.6(@types/node@25.5.0)(babel-plugin-macros@3.1.0) + specifier: ^9.0.7 + version: 9.0.7(@types/node@25.5.0)(babel-plugin-macros@3.1.0) lint-staged: - specifier: ^16.3.3 - version: 16.3.3 + specifier: ^16.4.0 + version: 16.4.0 standard-version: specifier: ^9.5.0 version: 9.5.0 @@ -62,7 +62,7 @@ importers: optionalDependencies: '@gemini-wallet/core': specifier: '>=0.3.0' - version: 0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 0.3.2(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@react-native-async-storage/async-storage': specifier: '>=2.2.0' version: 3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4) @@ -86,10 +86,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -110,7 +110,7 @@ importers: version: 5.90.21(react@19.2.4) connectkit: specifier: ^1.9.1 - version: 1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + version: 1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) mitt: specifier: ^3.0.1 version: 3.0.1 @@ -121,11 +121,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -135,7 +135,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -144,16 +144,16 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) examples/deposit-flow: dependencies: '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -170,11 +170,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/events': specifier: ^3.0.3 @@ -190,16 +190,16 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/dynamic: dependencies: @@ -214,34 +214,34 @@ importers: version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@dynamic-labs/bitcoin': specifier: ^4.67.2 - version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/ethereum': specifier: ^4.67.2 - version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/ethereum-aa': specifier: ^4.67.2 - version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-react-core': specifier: ^4.67.2 version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/solana': specifier: ^4.67.2 - version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/solana-core': specifier: ^4.67.2 version: 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/wagmi-connector': specifier: ^4.67.2 - version: 4.67.2(357284df7c9b2bd3a6b91ec3f0edd728) + version: 4.67.2(d9c833f3d6ae9889595a6f76ff5fc475) '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -262,7 +262,7 @@ importers: version: 5.90.21(react@19.2.4) '@wagmi/core': specifier: ^2.22.1 - version: 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': specifier: ^1.1.0 version: 1.1.0 @@ -282,14 +282,14 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) vite-plugin-env-compatible: specifier: ^2.0.1 version: 2.0.1 wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -299,7 +299,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -308,16 +308,16 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) examples/nextjs: dependencies: '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@16.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -348,10 +348,10 @@ importers: dependencies: '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -388,7 +388,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) next: specifier: ^14 version: 14.2.35(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -422,10 +422,10 @@ importers: dependencies: '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@mui/material-nextjs': specifier: ^7.3.6 version: 7.3.9(@emotion/cache@11.14.0)(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(next@15.5.12(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4) @@ -509,15 +509,15 @@ importers: specifier: ^7.13.0 version: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) source-map-explorer: specifier: ^2.5.3 version: 2.5.3 @@ -526,10 +526,10 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: 0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -538,16 +538,16 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) nuxt: specifier: 3.17.7 - version: 3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) + version: 3.17.7(@biomejs/biome@2.4.7)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.3.5)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.1)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2) veaury: specifier: ^2.6.3 version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) vue: specifier: ^3.5.30 version: 3.5.30(typescript@5.9.3) @@ -559,10 +559,10 @@ importers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -571,10 +571,10 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(78098f046e864437a57df44ee72f4807) + version: 2.25.0(8217d29b9cd998111a4a0149dd725611) '@privy-io/wagmi': specifier: ^1.0.6 - version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) + version: 1.0.6(0ed647e9f2a2772ff1664d00c39e17af) '@solana/kit': specifier: ^6.3.1 version: 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) @@ -595,7 +595,7 @@ importers: version: 3.0.1 permissionless: specifier: ^0.2.57 - version: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: specifier: ^19.2.4 version: 19.2.4 @@ -603,11 +603,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -617,7 +617,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -629,19 +629,19 @@ importers: version: 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/privy-ethers: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/icons-material': specifier: ^7.3.6 version: 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) @@ -650,10 +650,10 @@ importers: version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@privy-io/react-auth': specifier: ^2.25.0 - version: 2.25.0(78098f046e864437a57df44ee72f4807) + version: 2.25.0(8217d29b9cd998111a4a0149dd725611) '@privy-io/wagmi': specifier: ^1.0.6 - version: 1.0.6(ba75cdb350cf85a71f2933e831bd3291) + version: 1.0.6(0ed647e9f2a2772ff1664d00c39e17af) '@solana/wallet-adapter-base': specifier: ^0.9.27 version: 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) @@ -679,11 +679,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@eslint/js': specifier: ^9.39.2 @@ -696,7 +696,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) eslint: specifier: ^9.34.0 version: 9.39.4(jiti@2.6.1) @@ -717,22 +717,22 @@ importers: version: 8.57.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/rainbowkit: dependencies: '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@rainbow-me/rainbowkit': specifier: ^2.2.10 - version: 2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + version: 2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -743,11 +743,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/react': specifier: ^19.2.13 @@ -757,22 +757,22 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/react-router-7: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@react-router/node': specifier: ^7.13.0 version: 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) @@ -797,13 +797,13 @@ importers: devDependencies: '@react-router/dev': specifier: ^7.13.0 - version: 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) + version: 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2) '@react-router/fs-routes': specifier: ^7.13.0 - version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) + version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) '@react-router/remix-routes-option-adapter': specifier: ^7.13.0 - version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) + version: 7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3) '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -815,16 +815,16 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-tsconfig-paths: specifier: ^6.1.1 - version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/remix: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@remix-run/css-bundle': specifier: ^2.17.2 version: 2.17.4 @@ -852,7 +852,7 @@ importers: devDependencies: '@remix-run/dev': specifier: ^2.17.2 - version: 2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) + version: 2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2) '@types/react': specifier: ^19.2.13 version: 19.2.14 @@ -864,10 +864,10 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-tsconfig-paths: specifier: ^6.1.1 - version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/reown: dependencies: @@ -882,10 +882,10 @@ importers: version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(181d5f00fcc30c3404045ff3c974754e) + version: 3.22.8(f6a613b4b0ca149200037841e8c84622) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -900,7 +900,7 @@ importers: version: 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-adapter-wagmi': specifier: ^1.8.17 - version: 1.8.19(cbba8c8e56bd71466029bf033b724b4b) + version: 1.8.19(20724cea3314d24dc8d3dbac3db964de) '@reown/appkit-common': specifier: ^1.8.17 version: 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -926,11 +926,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -940,7 +940,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -949,7 +949,7 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-env-compatible: specifier: ^2.0.1 version: 2.0.1 @@ -958,7 +958,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) react: specifier: ^19.2.4 version: 19.2.4 @@ -968,7 +968,7 @@ importers: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^6.2.1 - version: 6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.2.4(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) '@tsconfig/svelte': specifier: ^5.0.7 version: 5.0.8 @@ -985,14 +985,14 @@ importers: specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.14) svelte: - specifier: ^5.53.11 - version: 5.53.11 + specifier: ^5.53.12 + version: 5.53.12 svelte-check: specifier: ^4.4.5 - version: 4.4.5(picomatch@4.0.3)(svelte@5.53.11)(typescript@5.9.3) + version: 4.4.5(picomatch@4.0.3)(svelte@5.53.12)(typescript@5.9.3) svelte-preprocess: specifier: ^6.0.3 - version: 6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.11)(typescript@5.9.3) + version: 6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.12)(typescript@5.9.3) tslib: specifier: ^2.8.1 version: 2.8.1 @@ -1001,10 +1001,10 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/tanstack-router: dependencies: @@ -1015,8 +1015,8 @@ importers: specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@tanstack/react-router': - specifier: ^1.166.7 - version: 1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^1.167.3 + version: 1.167.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react: specifier: ^19.2.4 version: 19.2.4 @@ -1035,25 +1035,25 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) examples/vite: dependencies: '@lifi/sdk': specifier: ^3.16.1 - version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@lifi/wallet-management': specifier: ^3.22.8 - version: 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + version: 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1062,7 +1062,7 @@ importers: version: 5.90.21(react@19.2.4) '@wagmi/connectors': specifier: ^7.1.6 - version: 7.2.1(b2c4187e18adabafd3d4e9ecc6ff0b24) + version: 7.2.1(78d796fcbc83a37678b75f6671c56888) events: specifier: ^3.3.0 version: 3.3.0 @@ -1073,11 +1073,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) devDependencies: '@types/events': specifier: ^3.0.3 @@ -1093,16 +1093,16 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/vite-iframe: dependencies: @@ -1143,14 +1143,14 @@ importers: specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mysten/dapp-kit-react': - specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + specifier: ^2.0.1 + version: 2.0.1(@mysten/sui@2.8.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@wagmi/connectors': specifier: ^7.1.6 - version: 7.2.1(7e0d03651353772277bb3afae8ed51ab) + version: 7.2.1(f785ee48dbf63a20991d69b34e3094ca) bs58: specifier: '>=4.0.1' version: 6.0.0 @@ -1161,11 +1161,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: '@types/node': specifier: ^25.5.0 @@ -1178,22 +1178,22 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) examples/vite-iframe-wagmi: dependencies: '@lifi/widget-light': specifier: ^4.0.0-alpha.2 - version: 4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) + version: 4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) @@ -1204,11 +1204,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -1218,19 +1218,19 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) examples/vue: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(0ddd6accedc60ee19bd7698de598bce4) + version: 3.40.12(e9f60c2525a29cf193a7e2565b69e339) veaury: specifier: ^2.6.3 version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1240,22 +1240,22 @@ importers: devDependencies: '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) '@vitejs/plugin-vue': specifier: ^6.0.5 - version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) '@vitejs/plugin-vue-jsx': specifier: ^5.1.5 - version: 5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + version: 5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) vue-tsc: specifier: ^3.2.4 version: 3.2.5(typescript@5.9.3) @@ -1264,7 +1264,7 @@ importers: dependencies: '@lifi/widget': specifier: ^3.40.12 - version: 3.40.12(8296b87b860be7876c0cab13d577255c) + version: 3.40.12(de59e4021d9100062f92946dd8127c23) '@mui/material': specifier: ^7.3.6 version: 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -1279,10 +1279,10 @@ importers: version: 19.2.4(react@19.2.4) wagmi: specifier: ^2.19.4 - version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + version: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) zustand: - specifier: ^5.0.11 - version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^5.0.12 + version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) devDependencies: '@types/react': specifier: ^19.2.13 @@ -1292,7 +1292,7 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) globals: specifier: ^17.3.0 version: 17.4.0 @@ -1301,10 +1301,10 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) packages/wallet-management: dependencies: @@ -1342,8 +1342,8 @@ importers: specifier: ^16.5.8 version: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) zustand: - specifier: ^5.0.11 - version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^5.0.12 + version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1391,11 +1391,11 @@ importers: specifier: '>=5.90.0' version: 5.90.21(react@19.2.4) '@tanstack/react-router': - specifier: ^1.166.7 - version: 1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^1.167.3 + version: 1.167.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@tanstack/react-virtual': - specifier: ^3.13.22 - version: 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + specifier: ^3.13.23 + version: 3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: specifier: ^25.8.18 version: 25.8.18(typescript@5.9.3) @@ -1415,8 +1415,8 @@ importers: specifier: ^4.4.5 version: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) zustand: - specifier: ^5.0.11 - version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^5.0.12 + version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) devDependencies: '@types/react-transition-group': specifier: ^4.4.12 @@ -1438,7 +1438,7 @@ importers: version: 5.9.3 vitest: specifier: ^4.1.0 - version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) packages/widget-embedded: dependencies: @@ -1479,14 +1479,14 @@ importers: specifier: workspace:* version: link:../widget-provider-sui '@mysten/sui': - specifier: ^2.7.0 - version: 2.7.0(typescript@5.9.3) + specifier: ^2.8.0 + version: 2.8.0(typescript@5.9.3) '@tanstack/react-query': specifier: ^5.90.20 version: 5.90.21(react@19.2.4) '@wagmi/core': specifier: ^3.3.2 - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: specifier: ^19.2.4 version: 19.2.4 @@ -1494,11 +1494,11 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: '@types/react': specifier: ^19.2.13 @@ -1508,16 +1508,16 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) typescript: specifier: ^5.9.3 version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: ^0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -1532,10 +1532,10 @@ importers: version: 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/dapp-kit-react': specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + version: 2.0.1(@mysten/sui@2.8.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@wagmi/core': specifier: ^3.x - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': specifier: ^1.1.0 version: 1.1.0 @@ -1544,10 +1544,10 @@ importers: version: 19.2.4 viem: specifier: ^2.x - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.x - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1560,7 +1560,7 @@ importers: version: 5.9.3 vitest: specifier: ^4.1.0 - version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) packages/widget-playground: dependencies: @@ -1629,7 +1629,7 @@ importers: version: 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-adapter-wagmi': specifier: ^1.8.17 - version: 1.8.19(cbba8c8e56bd71466029bf033b724b4b) + version: 1.8.19(20724cea3314d24dc8d3dbac3db964de) '@reown/appkit-common': specifier: ^1.8.17 version: 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -1650,7 +1650,7 @@ importers: version: 1.5.0 porto: specifier: ^0.2.37 - version: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) + version: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) react: specifier: ^19.2.4 version: 19.2.4 @@ -1658,14 +1658,14 @@ importers: specifier: ^19.2.4 version: 19.2.4(react@19.2.4) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) zustand: - specifier: ^5.0.11 - version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^5.0.12 + version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) devDependencies: '@types/lodash.isequal': specifier: ^4.5.8 @@ -1690,7 +1690,7 @@ importers: version: 5.9.3 vitest: specifier: ^4.1.0 - version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) packages/widget-playground-next: dependencies: @@ -1760,11 +1760,11 @@ importers: version: 19.2.4(react@19.2.4) vite-plugin-mkcert: specifier: ^1.17.9 - version: 1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) devDependencies: '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) react-scan: specifier: ^0.5.3 version: 0.5.3(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rollup@4.59.0) @@ -1776,10 +1776,10 @@ importers: version: 5.9.3 vite: specifier: ^8.0.0 - version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vite-plugin-node-polyfills: specifier: 0.25.0 - version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + version: 0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) web-vitals: specifier: ^5.1.0 version: 5.1.0 @@ -1850,13 +1850,13 @@ importers: version: link:../widget-provider '@wagmi/core': specifier: ^3.x - version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + version: 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) viem: - specifier: ^2.47.2 - version: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + specifier: ^2.47.4 + version: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) wagmi: specifier: ^3.5.0 - version: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + version: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1895,8 +1895,8 @@ importers: specifier: '>=4.0.1' version: 6.0.0 zustand: - specifier: ^5.0.11 - version: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + specifier: ^5.0.12 + version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -1924,10 +1924,10 @@ importers: version: link:../widget-provider '@mysten/dapp-kit-react': specifier: ^2.0.0 - version: 2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) + version: 2.0.1(@mysten/sui@2.8.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3) '@mysten/sui': - specifier: ^2.7.0 - version: 2.7.0(typescript@5.9.3) + specifier: ^2.8.0 + version: 2.8.0(typescript@5.9.3) devDependencies: cpy-cli: specifier: ^7.0.0 @@ -2208,59 +2208,59 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 - '@biomejs/biome@2.4.6': - resolution: {integrity: sha512-QnHe81PMslpy3mnpL8DnO2M4S4ZnYPkjlGCLWBZT/3R9M6b5daArWMMtEfP52/n174RKnwRIf3oT8+wc9ihSfQ==} + '@biomejs/biome@2.4.7': + resolution: {integrity: sha512-vXrgcmNGZ4lpdwZSpMf1hWw1aWS6B+SyeSYKTLrNsiUsAdSRN0J4d/7mF3ogJFbIwFFSOL3wT92Zzxia/d5/ng==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@2.4.6': - resolution: {integrity: sha512-NW18GSyxr+8sJIqgoGwVp5Zqm4SALH4b4gftIA0n62PTuBs6G2tHlwNAOj0Vq0KKSs7Sf88VjjmHh0O36EnzrQ==} + '@biomejs/cli-darwin-arm64@2.4.7': + resolution: {integrity: sha512-Oo0cF5mHzmvDmTXw8XSjhCia8K6YrZnk7aCS54+/HxyMdZMruMO3nfpDsrlar/EQWe41r1qrwKiCa2QDYHDzWA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@2.4.6': - resolution: {integrity: sha512-4uiE/9tuI7cnjtY9b07RgS7gGyYOAfIAGeVJWEfeCnAarOAS7qVmuRyX6d7JTKw28/mt+rUzMasYeZ+0R/U1Mw==} + '@biomejs/cli-darwin-x64@2.4.7': + resolution: {integrity: sha512-I+cOG3sd/7HdFtvDSnF9QQPrWguUH7zrkIMMykM3PtfWU9soTcS2yRb9Myq6MHmzbeCT08D1UmY+BaiMl5CcoQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@2.4.6': - resolution: {integrity: sha512-F/JdB7eN22txiTqHM5KhIVt0jVkzZwVYrdTR1O3Y4auBOQcXxHK4dxULf4z43QyZI5tsnQJrRBHZy7wwtL+B3A==} + '@biomejs/cli-linux-arm64-musl@2.4.7': + resolution: {integrity: sha512-I2NvM9KPb09jWml93O2/5WMfNR7Lee5Latag1JThDRMURVhPX74p9UDnyTw3Ae6cE1DgXfw7sqQgX7rkvpc0vw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] libc: [musl] - '@biomejs/cli-linux-arm64@2.4.6': - resolution: {integrity: sha512-kMLaI7OF5GN1Q8Doymjro1P8rVEoy7BKQALNz6fiR8IC1WKduoNyteBtJlHT7ASIL0Cx2jR6VUOBIbcB1B8pew==} + '@biomejs/cli-linux-arm64@2.4.7': + resolution: {integrity: sha512-om6FugwmibzfP/6ALj5WRDVSND4H2G9X0nkI1HZpp2ySf9lW2j0X68oQSaHEnls6666oy4KDsc5RFjT4m0kV0w==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] libc: [glibc] - '@biomejs/cli-linux-x64-musl@2.4.6': - resolution: {integrity: sha512-C9s98IPDu7DYarjlZNuzJKTjVHN03RUnmHV5htvqsx6vEUXCDSJ59DNwjKVD5XYoSS4N+BYhq3RTBAL8X6svEg==} + '@biomejs/cli-linux-x64-musl@2.4.7': + resolution: {integrity: sha512-00kx4YrBMU8374zd2wHuRV5wseh0rom5HqRND+vDldJPrWwQw+mzd/d8byI9hPx926CG+vWzq6AeiT7Yi5y59g==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] libc: [musl] - '@biomejs/cli-linux-x64@2.4.6': - resolution: {integrity: sha512-oHXmUFEoH8Lql1xfc3QkFLiC1hGR7qedv5eKNlC185or+o4/4HiaU7vYODAH3peRCfsuLr1g6v2fK9dFFOYdyw==} + '@biomejs/cli-linux-x64@2.4.7': + resolution: {integrity: sha512-bV8/uo2Tj+gumnk4sUdkerWyCPRabaZdv88IpbmDWARQQoA/Q0YaqPz1a+LSEDIL7OfrnPi9Hq1Llz4ZIGyIQQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] libc: [glibc] - '@biomejs/cli-win32-arm64@2.4.6': - resolution: {integrity: sha512-xzThn87Pf3YrOGTEODFGONmqXpTwUNxovQb72iaUOdcw8sBSY3+3WD8Hm9IhMYLnPi0n32s3L3NWU6+eSjfqFg==} + '@biomejs/cli-win32-arm64@2.4.7': + resolution: {integrity: sha512-hOUHBMlFCvDhu3WCq6vaBoG0dp0LkWxSEnEEsxxXvOa9TfT6ZBnbh72A/xBM7CBYB7WgwqboetzFEVDnMxelyw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@2.4.6': - resolution: {integrity: sha512-7++XhnsPlr1HDbor5amovPjOH6vsrFOCdp93iKXhFn6bcMUI6soodj3WWKfgEO6JosKU1W5n3uky3WW9RlRjTg==} + '@biomejs/cli-win32-x64@2.4.7': + resolution: {integrity: sha512-qEpGjSkPC3qX4ycbMUthXvi9CkRq7kZpkqMY1OyhmYlYLnANnooDQ7hDerM8+0NJ+DZKVnsIc07h30XOpt7LtQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -2314,61 +2314,61 @@ packages: '@coinbase/wallet-sdk@4.3.7': resolution: {integrity: sha512-z6e5XDw6EF06RqkeyEa+qD0dZ2ZbLci99vx3zwDY//XO8X7166tqKJrR2XlQnzVmtcUuJtCd5fCvr9Cu6zzX7w==} - '@commitlint/cli@20.4.4': - resolution: {integrity: sha512-GLMNQHYGcn0ohL2HMlAnXcD1PS2vqBBGbYKlhrRPOYsWiRoLWtrewsR3uKRb9v/IdS+qOS0vqJQ64n1g8VPKFw==} + '@commitlint/cli@20.5.0': + resolution: {integrity: sha512-yNkyN/tuKTJS3wdVfsZ2tXDM4G4Gi7z+jW54Cki8N8tZqwKBltbIvUUrSbT4hz1bhW/h0CdR+5sCSpXD+wMKaQ==} engines: {node: '>=v18'} hasBin: true - '@commitlint/config-conventional@20.4.4': - resolution: {integrity: sha512-Usg+XXbPNG2GtFWTgRURNWCge1iH1y6jQIvvklOdAbyn2t8ajfVwZCnf5t5X4gUsy17BOiY+myszGsSMIvhOVA==} + '@commitlint/config-conventional@20.5.0': + resolution: {integrity: sha512-t3Ni88rFw1XMa4nZHgOKJ8fIAT9M2j5TnKyTqJzsxea7FUetlNdYFus9dz+MhIRZmc16P0PPyEfh6X2d/qw8SA==} engines: {node: '>=v18'} - '@commitlint/config-validator@20.4.4': - resolution: {integrity: sha512-K8hMS9PTLl7EYe5vWtSFQ/sgsV2PHUOtEnosg8k3ZQxCyfKD34I4C7FxWEfRTR54rFKeUYmM3pmRQqBNQeLdlw==} + '@commitlint/config-validator@20.5.0': + resolution: {integrity: sha512-T/Uh6iJUzyx7j35GmHWdIiGRQB+ouZDk0pwAaYq4SXgB54KZhFdJ0vYmxiW6AMYICTIWuyMxDBl1jK74oFp/Gw==} engines: {node: '>=v18'} - '@commitlint/ensure@20.4.4': - resolution: {integrity: sha512-QivV0M1MGL867XCaF+jJkbVXEPKBALhUUXdjae66hes95aY1p3vBJdrcl3x8jDv2pdKWvIYIz+7DFRV/v0dRkA==} + '@commitlint/ensure@20.5.0': + resolution: {integrity: sha512-IpHqAUesBeW1EDDdjzJeaOxU9tnogLAyXLRBn03SHlj1SGENn2JGZqSWGkFvBJkJzfXAuCNtsoYzax+ZPS+puw==} engines: {node: '>=v18'} '@commitlint/execute-rule@20.0.0': resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==} engines: {node: '>=v18'} - '@commitlint/format@20.4.4': - resolution: {integrity: sha512-jLi/JBA4GEQxc5135VYCnkShcm1/rarbXMn2Tlt3Si7DHiiNKHm4TaiJCLnGbZ1r8UfwDRk+qrzZ80kwh08Aow==} + '@commitlint/format@20.5.0': + resolution: {integrity: sha512-TI9EwFU/qZWSK7a5qyXMpKPPv3qta7FO4tKW+Wt2al7sgMbLWTsAcDpX1cU8k16TRdsiiet9aOw0zpvRXNJu7Q==} engines: {node: '>=v18'} - '@commitlint/is-ignored@20.4.4': - resolution: {integrity: sha512-y76rT8yq02x+pMDBI2vY4y/ByAwmJTkta/pASbgo8tldBiKLduX8/2NCRTSCjb3SumE5FBeopERKx3oMIm8RTQ==} + '@commitlint/is-ignored@20.5.0': + resolution: {integrity: sha512-JWLarAsurHJhPozbuAH6GbP4p/hdOCoqS9zJMfqwswne+/GPs5V0+rrsfOkP68Y8PSLphwtFXV0EzJ+GTXTTGg==} engines: {node: '>=v18'} - '@commitlint/lint@20.4.4': - resolution: {integrity: sha512-svOEW+RptcNpXKE7UllcAsV0HDIdOck9reC2TP1QA6K5Fo0xxQV+QPjV8Zqx9g6X/hQBkF2S9ZQZ78Xrv1Eiog==} + '@commitlint/lint@20.5.0': + resolution: {integrity: sha512-jiM3hNUdu04jFBf1VgPdjtIPvbuVfDTBAc6L98AWcoLjF5sYqkulBHBzlVWll4rMF1T5zeQFB6r//a+s+BBKlA==} engines: {node: '>=v18'} - '@commitlint/load@20.4.4': - resolution: {integrity: sha512-kvFrzvoIACa/fMjXEP0LNEJB1joaH3q3oeMJsLajXE5IXjYrNGVcW1ZFojXUruVJ7odTZbC3LdE/6+ONW4f2Dg==} + '@commitlint/load@20.5.0': + resolution: {integrity: sha512-sLhhYTL/KxeOTZjjabKDhwidGZan84XKK1+XFkwDYL/4883kIajcz/dZFAhBJmZPtL8+nBx6bnkzA95YxPeDPw==} engines: {node: '>=v18'} '@commitlint/message@20.4.3': resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==} engines: {node: '>=v18'} - '@commitlint/parse@20.4.4': - resolution: {integrity: sha512-AjfgOgrjEozeQNzhFu1KL5N0nDx4JZmswVJKNfOTLTUGp6xODhZHCHqb//QUHKOzx36If5DQ7tci2o7szYxu1A==} + '@commitlint/parse@20.5.0': + resolution: {integrity: sha512-SeKWHBMk7YOTnnEWUhx+d1a9vHsjjuo6Uo1xRfPNfeY4bdYFasCH1dDpAv13Lyn+dDPOels+jP6D2GRZqzc5fA==} engines: {node: '>=v18'} - '@commitlint/read@20.4.4': - resolution: {integrity: sha512-jvgdAQDdEY6L8kCxOo21IWoiAyNFzvrZb121wU2eBxI1DzWAUZgAq+a8LlJRbT0Qsj9INhIPVWgdaBbEzlF0dQ==} + '@commitlint/read@20.5.0': + resolution: {integrity: sha512-JDEIJ2+GnWpK8QqwfmW7O42h0aycJEWNqcdkJnyzLD11nf9dW2dWLTVEa8Wtlo4IZFGLPATjR5neA5QlOvIH1w==} engines: {node: '>=v18'} - '@commitlint/resolve-extends@20.4.4': - resolution: {integrity: sha512-pyOf+yX3c3m/IWAn2Jop+7s0YGKPQ8YvQaxt9IQxnLIM3yZAlBdkKiQCT14TnrmZTkVGTXiLtckcnFTXYwlY0A==} + '@commitlint/resolve-extends@20.5.0': + resolution: {integrity: sha512-3SHPWUW2v0tyspCTcfSsYml0gses92l6TlogwzvM2cbxDgmhSRc+fldDjvGkCXJrjSM87BBaWYTPWwwyASZRrg==} engines: {node: '>=v18'} - '@commitlint/rules@20.4.4': - resolution: {integrity: sha512-PmUp8QPLICn9w05dAx5r1rdOYoTk7SkfusJJh5tP3TqHwo2mlQ9jsOm8F0HSXU9kuLfgTEGNrunAx/dlK/RyPQ==} + '@commitlint/rules@20.5.0': + resolution: {integrity: sha512-5NdQXQEdnDPT5pK8O39ZA7HohzPRHEsDGU23cyVCNPQy4WegAbAwrQk3nIu7p2sl3dutPk8RZd91yKTrMTnRkQ==} engines: {node: '>=v18'} '@commitlint/to-lines@20.0.0': @@ -2379,8 +2379,8 @@ packages: resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==} engines: {node: '>=v18'} - '@commitlint/types@20.4.4': - resolution: {integrity: sha512-dwTGzyAblFXHJNBOgrTuO5Ee48ioXpS5XPRLLatxhQu149DFAHUcB3f0Q5eea3RM4USSsP1+WVT2dBtLVod4fg==} + '@commitlint/types@20.5.0': + resolution: {integrity: sha512-ZJoS8oSq2CAZEpc/YI9SulLrdiIyXeHb/OGqGrkUP6Q7YV+0ouNAa7GjqRdXeQPncHQIDz/jbCTlHScvYvO/gA==} engines: {node: '>=v18'} '@conventional-changelog/git-client@2.6.0': @@ -4066,6 +4066,9 @@ packages: '@lifi/types@17.65.0': resolution: {integrity: sha512-2COF1WimbFiPv51x4T1lvXSs8sRB6CP0SzOTCt7xCwaaeMBLczuuJmF0r10pY9JPxdzbJtVMM83Za3uCslqlWA==} + '@lifi/types@17.67.0': + resolution: {integrity: sha512-3glVBBlB8xWkZ1TCimx7BQcEyR6jD3qoSinkupdI295KaiVeNhxqG/qX7q7q0glYHR7zV+1h6FgjIeuNYlYw6w==} + '@lifi/wallet-management@3.22.8': resolution: {integrity: sha512-9BKfq6GQk27vrL/OXGBahAg5hQCysYNnyQAQ2++sfyJEd6c90SIqZvfMU+MZYq3Mw87JC4+rmqUwiVr+MEQbaw==} peerDependencies: @@ -4410,38 +4413,38 @@ packages: '@mysten/bcs@1.9.2': resolution: {integrity: sha512-kBk5xrxV9OWR7i+JhL/plQrgQ2/KJhB2pB5gj+w6GXhbMQwS3DPpOvi/zN0Tj84jwPvHMllpEl0QHj6ywN7/eQ==} - '@mysten/bcs@2.0.2': - resolution: {integrity: sha512-c/nVRPJEV1fRZdKXhysVsy/yCPdiFt7jn6A4/7W2LH1ZPSVPzRkxtLY362D0zaLuBnyT5Y9d9nFLm3ixI8Goug==} + '@mysten/bcs@2.0.3': + resolution: {integrity: sha512-dwcaL4HNAsEGpU3hKUAsXgCZp9l6++e2A3THpzoYZ8e7bsy4XH1V0dXD5dIzgNcVZiZfb6ZnDMG+gdF6+1WOQA==} - '@mysten/dapp-kit-core@1.1.4': - resolution: {integrity: sha512-kq+2OdySrDniKtajAEKddaoppxObHEHwVoVo5ra3PI81raJCK07Or7YGPPzH0GF7eaUUC0TWWkaVwP0Wawee3g==} + '@mysten/dapp-kit-core@1.2.0': + resolution: {integrity: sha512-TZmyLz9j2Q/8uoS7J/wt+VB6UIkSHvSjymT1SH45fsbBkozZv9QLcnE+IwASeXB9mwFyiadrHnSQ6ZeCRj00Fg==} peerDependencies: - '@mysten/sui': ^2.6.0 + '@mysten/sui': ^2.8.0 - '@mysten/dapp-kit-react@2.0.0': - resolution: {integrity: sha512-ImGF7WoSQRzIgD5Mj4NRRcKDmAFCMtoNUbblPpMyuErt0S8Sm9HW5Ka+//cR7nGaOz5HC/O3Y6IFudC6QQOxdw==} + '@mysten/dapp-kit-react@2.0.1': + resolution: {integrity: sha512-kfI2fxeF+2KgYXTa8ZK7kUFF/ZuAoPKBn500Y2uQnhmD8HX8IBTouHB1DANUkUpxUK/F85Cb9/yP3dD2M674UA==} peerDependencies: '@types/react': '>=17.0.0' react: '>=17.0.0' - '@mysten/dapp-kit@1.0.3': - resolution: {integrity: sha512-grlRTgrfRTrl7old0wZ9Q2hV1LOAhCErX0OCxnZ9cjl3g16rCMYamm8LOQeGKtr7hWiE6lVNUtFFzahuaoMH+Q==} + '@mysten/dapp-kit@1.0.4': + resolution: {integrity: sha512-RybvMIT3R+GNWNH7tOWXnsLk0gKLtpY/GOefp/Mzsqb78JD3QzKzlQmrm/Bc5bEisI/SuykU3qYzKDLQivZy0Q==} peerDependencies: - '@mysten/sui': ^2.3.2 + '@mysten/sui': ^2.8.0 '@tanstack/react-query': ^5.0.0 react: '*' - '@mysten/slush-wallet@1.0.2': - resolution: {integrity: sha512-gcAQaG4rExDqvw+4dTRNlM8U+st8Ngp5cpdFO54DuYqhNqzk5Pc4DAa9lh4zZiUMq/ZtGki2+SpvYrVvT2Vy7Q==} + '@mysten/slush-wallet@1.0.3': + resolution: {integrity: sha512-TF1CXXug5VPaV4KImKxZ7nyR0XY//KJVzOFxFXaajBHewLBinCO7s6GS9EYbtQMaNvnjrYQn1cpGhYfwGkzvtQ==} peerDependencies: - '@mysten/sui': ^2.3.2 + '@mysten/sui': ^2.8.0 '@mysten/sui@1.45.2': resolution: {integrity: sha512-gftf7fNpFSiXyfXpbtP2afVEnhc7p2m/MEYc/SO5pov92dacGKOpQIF7etZsGDI1Wvhv+dpph+ulRNpnYSs7Bg==} engines: {node: '>=18'} - '@mysten/sui@2.7.0': - resolution: {integrity: sha512-aIEb19Y/VB1CYt1lyqYgiOGDlvIJZI9GlvDp70QHumwIoIVPj8miA08+iOlsnvbmmXpBmUSzc4YYArWcPGlsLg==} + '@mysten/sui@2.8.0': + resolution: {integrity: sha512-N9YvsAuVc6sCY6OJqYaNUmZ3VShq8C4AaZrEtvz75W59VpK84YNkox7+FuRDFKU3lXvv6DRzpbYySjLwawMpkQ==} engines: {node: '>=22'} '@mysten/utils@0.2.0': @@ -4458,8 +4461,8 @@ packages: peerDependencies: '@mysten/sui': '*' - '@mysten/window-wallet-core@0.1.3': - resolution: {integrity: sha512-Y3j896R7yfJTihJtLqRZLNwF7iEssYKJjNWPv72CflF5CvYZIngHJcUNGq9Y59o7OrD3oYL+/JM1YVZVMkR/EQ==} + '@mysten/window-wallet-core@0.1.4': + resolution: {integrity: sha512-LK1t5dJQZUJv0fF/Cj8HS8N9HHaa7cAOcdWfPAFuYvgVJMEr9K/p33ldqiflcn6p1d53uTtUH9kA5/lQlTmZ2A==} '@nanostores/lit@0.2.3': resolution: {integrity: sha512-hIUKzdNrgKXkXCsppzQxmYYYMTn96cncijWhzcYZKn3Yimqj7B6YK94qN/KObjBNEe0xR3JLgMo96ew5fVtW2w==} @@ -4467,11 +4470,11 @@ packages: lit: ^2.6.0 || ^3.0.0 nanostores: '>=0.7 < 1.0.0 || ^1.0.0' - '@nanostores/react@1.0.0': - resolution: {integrity: sha512-eDduyNy+lbQJMg6XxZ/YssQqF6b4OXMFEZMYKPJCCmBevp1lg0g+4ZRi94qGHirMtsNfAWKNwsjOhC+q1gvC+A==} + '@nanostores/react@1.0.1': + resolution: {integrity: sha512-dS3xM5U2Qqd9wCkpzQ8mrNtNfB3mzTgPnxIGG3J22TlfDvDkbXVaf2IuMECixpK3tg+O6xNVpuwMeqmuQtyRew==} engines: {node: ^20.0.0 || >=22.0.0} peerDependencies: - nanostores: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^1.0.0 + nanostores: ^1.2.0 react: '>=18.0.0' '@napi-rs/wasm-runtime@0.2.12': @@ -7477,8 +7480,8 @@ packages: '@swc/helpers@0.5.5': resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} - '@tanstack/history@1.161.4': - resolution: {integrity: sha512-Kp/WSt411ZWYvgXy6uiv5RmhHrz9cAml05AQPrtdAp7eUqvIDbMGPnML25OKbzR3RJ1q4wgENxDTvlGPa9+Mww==} + '@tanstack/history@1.161.6': + resolution: {integrity: sha512-NaOGLRrddszbQj9upGat6HG/4TKvXLvu+osAIgfxPYA+eIvYKv8GKDJOrY2D3/U9MRnKfMWD7bU4jeD4xmqyIg==} engines: {node: '>=20.19'} '@tanstack/query-core@5.90.20': @@ -7489,8 +7492,8 @@ packages: peerDependencies: react: ^18 || ^19 - '@tanstack/react-router@1.166.7': - resolution: {integrity: sha512-LLcXu2nrCn2WL+w0YAbg3CRZIIO2cYVSC3y+ZYlFBxBs4hh8eoNP1EWFvRLZGCFYpqON7x6qUf1u0W7tH0cJJw==} + '@tanstack/react-router@1.167.3': + resolution: {integrity: sha512-1qbSy4r+O7IBdmPLlcKsjB041Gq2MMnIEAYSGIjaMZIL4duUIQnOWLw4jTfjKil/IJz/9rO5JcvrbxOG5UTSdg==} engines: {node: '>=20.19'} peerDependencies: react: '>=18.0.0 || >=19.0.0' @@ -7502,21 +7505,21 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/react-virtual@3.13.22': - resolution: {integrity: sha512-EaOrBBJLi3M0bTMQRjGkxLXRw7Gizwntoy5E2Q2UnSbML7Mo2a1P/Hfkw5tw9FLzK62bj34Jl6VNbQfRV6eJcA==} + '@tanstack/react-virtual@3.13.23': + resolution: {integrity: sha512-XnMRnHQ23piOVj2bzJqHrRrLg4r+F86fuBcwteKfbIjJrtGxb4z7tIvPVAe4B+4UVwo9G4Giuz5fmapcrnZ0OQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/router-core@1.166.7': - resolution: {integrity: sha512-MCc8wYIIcxmbeidM8PL2QeaAjUIHyhEDIZPW6NGfn/uwvyi+K2ucn3AGCxxcXl4JGGm0Mx9+7buYl1v3HdcFrg==} + '@tanstack/router-core@1.167.3': + resolution: {integrity: sha512-M/CxrTGKk1fsySJjd+Pzpbi3YLDz+cJSutDjSTMy12owWlOgHV/I6kzR0UxyaBlHraM6XgMHNA0XdgsS1fa4Nw==} engines: {node: '>=20.19'} '@tanstack/store@0.9.2': resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==} - '@tanstack/virtual-core@3.13.22': - resolution: {integrity: sha512-isuUGKsc5TAPDoHSbWTbl1SCil54zOS2MiWz/9GCWHPUQOvNTQx8qJEWC7UWR0lShhbK0Lmkcf0SZYxvch7G3g==} + '@tanstack/virtual-core@3.13.23': + resolution: {integrity: sha512-zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg==} '@thumbmarkjs/thumbmarkjs@0.16.0': resolution: {integrity: sha512-NKyqCvP6DZKlRf6aGfnKS6Kntn2gnuBxa/ztstjy+oo1t23EHzQ54shtli0yV5WAtygmK1tti/uL2C2p/kW3HQ==} @@ -7679,9 +7682,6 @@ packages: '@types/mdx@2.0.13': resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - '@types/minimatch@3.0.5': - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} @@ -7933,8 +7933,8 @@ packages: '@vanilla-extract/css@1.17.3': resolution: {integrity: sha512-jHivr1UPoJTX5Uel4AZSOwrCf4mO42LcdmnhJtUxZaRWhW4FviFbIfs0moAWWld7GOT+2XnuVZjjA/K32uUnMQ==} - '@vanilla-extract/css@1.18.0': - resolution: {integrity: sha512-/p0dwOjr0o8gE5BRQ5O9P0u/2DjUd6Zfga2JGmE4KaY7ZITWMszTzk4x4CPlM5cKkRr2ZGzbE6XkuPNfp9shSQ==} + '@vanilla-extract/css@1.19.0': + resolution: {integrity: sha512-CmiHmTn0VXYW2/A575zzAJ+gJWBRdpEhEseg93WBst0QNQJiHO3cQXyVMIW+RhPi5D9TM8W4U929/ELDaXq6yQ==} '@vanilla-extract/dynamic@2.1.4': resolution: {integrity: sha512-7+Ot7VlP3cIzhJnTsY/kBtNs21s0YD7WI1rKJJKYP56BkbDxi/wrQUWMGEczKPUDkJuFcvbye+E2ub1u/mHH9w==} @@ -8645,10 +8645,6 @@ packages: resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} engines: {node: '>= 0.4'} - array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -8659,10 +8655,6 @@ packages: resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} engines: {node: '>= 0.4'} - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - array.prototype.findlast@1.2.5: resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} engines: {node: '>= 0.4'} @@ -8691,10 +8683,6 @@ packages: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} - arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} @@ -8899,8 +8887,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.10.7: - resolution: {integrity: sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==} + baseline-browser-mapping@2.10.8: + resolution: {integrity: sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==} engines: {node: '>=6.0.0'} hasBin: true @@ -9168,8 +9156,8 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001778: - resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==} + caniuse-lite@1.0.30001779: + resolution: {integrity: sha512-U5og2PN7V4DMgF50YPNtnZJGWVLFjjsN3zb6uMT5VGYIewieDj1upwfuVNXf4Kor+89c3iCRJnSzMD5LmTvsfA==} canonicalize@2.1.0: resolution: {integrity: sha512-F705O3xrsUtgt98j7leetNhTWPe+5S72rlL5O4jA1pKqBVQ/dT1O1D6PFxmSXvc0SUOinWS57DKx0I3CHrXJHQ==} @@ -10007,10 +9995,6 @@ packages: detect-browser@5.3.0: resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} - detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - detect-indent@6.1.0: resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} engines: {node: '>=8'} @@ -11260,15 +11244,15 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hono@4.12.7: - resolution: {integrity: sha512-jq9l1DM0zVIvsm3lv9Nw9nlJnMNPOcAtsbsgiUhWcFzPE99Gvo6yRTlszSLLYacMeQ6quHD6hMfId8crVHvexw==} + hono@4.12.8: + resolution: {integrity: sha512-VJCEvtrezO1IAR+kqEYnxUOoStaQPGrCmX3j4wDTNOcD1uRPFpGlwQUIW8niPuvHXaTUxeOUl5MMDGrl+tmO9A==} engines: {node: '>=16.9.0'} hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} - hookable@6.0.1: - resolution: {integrity: sha512-uKGyY8BuzN/a5gvzvA+3FVWo0+wUjgtfSdnmjtrOVwQCZPHpHDH2WRO3VZSOeluYrHoDCiXFffZXs8Dj1ULWtw==} + hookable@6.1.0: + resolution: {integrity: sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==} hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} @@ -11700,10 +11684,6 @@ packages: is-ssh@1.4.1: resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==} - is-stream@2.0.0: - resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} - engines: {node: '>=8'} - is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -12034,8 +12014,8 @@ packages: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} - knip@5.86.0: - resolution: {integrity: sha512-tGpRCbP+L+VysXnAp1bHTLQ0k/SdC3M3oX18+Cpiqax1qdS25iuCPzpK8LVmAKARZv0Ijri81Wq09Rzk0JTl+Q==} + knip@5.87.0: + resolution: {integrity: sha512-oJBrwd4/Mt5E6817vcdQLaPpejxZTxpASauYLkp6HaT0HN1seHnpF96KEjza9O8yARvHEQ9+So9AFUjkPci7dQ==} engines: {node: '>=18.18.0'} hasBin: true peerDependencies: @@ -12059,8 +12039,8 @@ packages: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} - lerna@9.0.6: - resolution: {integrity: sha512-ylCTTq8QOa2oRBDhQhy8UIFob6wJZTdREjXTtMJzoB9eWk8qbI0qyIAYmFClu0NVN3mTZ2UKN1HFgTpg4hCdmQ==} + lerna@9.0.7: + resolution: {integrity: sha512-PMjbSWYfwL1yZ5c1D2PZuFyzmtYhLdn0f76uG8L25g6eYy34j+2jPb4Q6USx1UJvxVtxkdVEeAAWS/WxgJ8VZA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true @@ -12171,8 +12151,8 @@ packages: resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lint-staged@16.3.3: - resolution: {integrity: sha512-RLq2koZ5fGWrx7tcqx2tSTMQj4lRkfNJaebO/li/uunhCJbtZqwTuwPHpgIimAHHi/2nZIiGrkCHDCOeR1onxA==} + lint-staged@16.4.0: + resolution: {integrity: sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==} engines: {node: '>=20.17'} hasBin: true @@ -12304,8 +12284,8 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@11.2.6: - resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==} + lru-cache@11.2.7: + resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==} engines: {node: 20 || >=22} lru-cache@5.1.1: @@ -12347,14 +12327,6 @@ packages: magicast@0.5.2: resolution: {integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==} - make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - - make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - make-fetch-happen@15.0.2: resolution: {integrity: sha512-sI1NY4lWlXBAfjmCtVWIIpBypbBdhHtcjnwnv+gtCnsaOffyFil3aidszGC8hgzJe+fT1qix05sWxmD/Bmf/oQ==} engines: {node: ^20.17.0 || >=22.9.0} @@ -12843,10 +12815,6 @@ packages: multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} - multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} - mute-stream@2.0.0: resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} engines: {node: ^18.17.0 || >=20.5.0} @@ -12859,13 +12827,13 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanoid@5.1.6: - resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==} + nanoid@5.1.7: + resolution: {integrity: sha512-ua3NDgISf6jdwezAheMOk4mbE1LXjm1DfMUDMuJf4AqxLFK3ccGpgWizwa5YV7Yz9EpXwEaWoRXSb/BnV0t5dQ==} engines: {node: ^18 || >=20} hasBin: true - nanostores@1.1.1: - resolution: {integrity: sha512-EYJqS25r2iBeTtGQCHidXl1VfZ1jXM7Q04zXJOrMlxVVmD0ptxJaNux92n1mJ7c5lN3zTq12MhH/8x59nP+qmg==} + nanostores@1.2.0: + resolution: {integrity: sha512-F0wCzbsH80G7XXo0Jd9/AVQC7ouWY6idUCTnMwW5t/Rv9W8qmO6endavDwg7TNp5GbugwSukFMVZqzPSrSMndg==} engines: {node: ^20.0.0 || >=22.0.0} nanotar@0.2.1: @@ -13293,8 +13261,8 @@ packages: resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} engines: {node: '>= 0.4'} - ox@0.14.0: - resolution: {integrity: sha512-WLOB7IKnmI3Ol6RAqY7CJdZKl8QaI44LN91OGF1061YIeN6bL5IsFcdp7+oQShRyamE/8fW/CBRWhJAOzI35Dw==} + ox@0.14.5: + resolution: {integrity: sha512-HgmHmBveYO40H/R3K6TMrwYtHsx/u6TAB+GpZlgJCoW0Sq5Ttpjih0IZZiwGQw7T6vdW4IAyobYrE2mdAvyF8Q==} peerDependencies: typescript: '>=5.4.0' peerDependenciesMeta: @@ -13596,10 +13564,6 @@ packages: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - pify@5.0.0: resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} engines: {node: '>=10'} @@ -14635,11 +14599,6 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@6.1.3: - resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==} - engines: {node: 20 || >=22} - hasBin: true - ripemd160@2.0.3: resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} engines: {node: '>= 0.8'} @@ -14713,8 +14672,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sass-lookup@6.1.0: - resolution: {integrity: sha512-Zx+lVyoWqXZxHuYWlTA17Z5sczJ6braNT2C7rmClw+c4E7r/n911Zwss3h1uHI9reR5AgHZyNHF7c2+VIp5AUA==} + sass-lookup@6.1.1: + resolution: {integrity: sha512-12dvZdQYTeKZ1ypjuiijZYuMZ1m0F+4+BkRX5yJi2WA9W3DBUrcdCt7bVuKlagHl11n8eYtalWDle+m98Ol2DA==} engines: {node: '>=18'} hasBin: true @@ -14948,10 +14907,6 @@ packages: sonic-boom@4.2.1: resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==} - sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} - source-map-explorer@2.5.3: resolution: {integrity: sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==} engines: {node: '>=12'} @@ -15012,8 +14967,8 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - srvx@0.11.9: - resolution: {integrity: sha512-97wWJS6F0KTKAhDlHVmBzMvlBOp5FiNp3XrLoodIgYJpXxgG5tE9rX4Pg7s46n2shI4wtEsMATTS1+rI3/ubzA==} + srvx@0.11.12: + resolution: {integrity: sha512-AQfrGqntqVPXgP03pvBDN1KyevHC+KmYVqb8vVf4N+aomQqdhaZxjvoVp+AOm4u6x+GgNQY3MVzAUIn+TqwkOA==} engines: {node: '>=20.16.0'} hasBin: true @@ -15368,8 +15323,8 @@ packages: typescript: optional: true - svelte@5.53.11: - resolution: {integrity: sha512-GYmqRjRhJYLQBonfdfGAt28gkfWEShrtXKGXcFGneXi502aBE+I1dJcs/YQriByvP6xqXRz/OdBGC6tfvUQHyQ==} + svelte@5.53.12: + resolution: {integrity: sha512-4x/uk4rQe/d7RhfvS8wemTfNjQ0bJbKvamIzRBfTe2eHHjzBZ7PZicUQrC2ryj83xxEacfA1zHKd1ephD1tAxA==} engines: {node: '>=18'} svgo@4.0.1: @@ -15414,16 +15369,12 @@ packages: teex@1.0.1: resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==} - temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - temp@0.9.4: resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==} engines: {node: '>=6.0.0'} - terser@5.46.0: - resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==} + terser@5.46.1: + resolution: {integrity: sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==} engines: {node: '>=10'} hasBin: true @@ -15486,8 +15437,8 @@ packages: tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - tinyexec@1.0.2: - resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + tinyexec@1.0.4: + resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==} engines: {node: '>=18'} tinyglobby@0.2.12: @@ -15644,10 +15595,6 @@ packages: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} @@ -15754,11 +15701,11 @@ packages: undici-types@7.18.2: resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - undici-types@7.24.0: - resolution: {integrity: sha512-1beJCk3fcUtxAHf19TmrEd0yF3Co7El8fJvlSufm9EQNMKVR9H5XiamszDDt/FwinyUQPHpL2w8u9ZL8i8RtVg==} + undici-types@7.24.4: + resolution: {integrity: sha512-cRaY9PagdEZoRmcwzk3tUV3SVGrVQkR6bcSilav/A0vXsfpW4Lvd0BvgRMwTEDTLLGN+QdyBTG+nnvTgJhdt6w==} - undici@6.24.0: - resolution: {integrity: sha512-lVLNosgqo5EkGqh5XUDhGfsMSoO8K0BAN0TyJLvwNRSl4xWGZlCVYsAIpa/OpA3TvmnM01GWcoKmc3ZWo5wKKA==} + undici@6.24.1: + resolution: {integrity: sha512-sC+b0tB1whOCzbtlx20fx3WgCXwkW627p4EA9uM+/tNNPkSS+eSEld6pAs9nDv7WbY1UUljBMYPtu9BCOrCWKA==} engines: {node: '>=18.17'} unenv@2.0.0-rc.24: @@ -16114,8 +16061,8 @@ packages: typescript: optional: true - viem@2.47.2: - resolution: {integrity: sha512-etDIwDgmDiGaPg8rUbJtUFuC3/nAJCbhMYyfh5dOcqNNkzBWTNcS2VluPSM5JVo+9U3b2hle2RkBEq3+xyvlvg==} + viem@2.47.4: + resolution: {integrity: sha512-h0Wp/SYmJO/HB4B/em1OZ3W1LaKrmr7jzaN7talSlZpo0LCn0V6rZ5g923j6sf4VUSrqp/gUuWuHFc7UcoIp8A==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: @@ -16587,9 +16534,6 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -16602,14 +16546,6 @@ packages: resolution: {integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==} engines: {node: ^18.17.0 || >=20.5.0} - write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} - - write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} - ws@7.5.10: resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} engines: {node: '>=8.3.0'} @@ -16808,8 +16744,8 @@ packages: use-sync-external-store: optional: true - zustand@5.0.11: - resolution: {integrity: sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==} + zustand@5.0.12: + resolution: {integrity: sha512-i77ae3aZq4dhMlRhJVCYgMLKuSiZAaUPAct2AksxQ+gOtimhGMdXljRT21P5BNpeT4kXlLIckvkPM029OljD7g==} engines: {node: '>=12.20.0'} peerDependencies: '@types/react': '>=18.0.0' @@ -17139,7 +17075,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17160,7 +17096,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17184,7 +17120,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17204,7 +17140,7 @@ snapshots: '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@tanstack/query-core': 5.90.20 eventemitter3: 5.0.4 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' - bs58 @@ -17220,7 +17156,7 @@ snapshots: bitcoinjs-lib: 7.0.1(typescript@5.9.3) bs58: 6.0.0 eventemitter3: 5.0.4 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' - immer @@ -17243,39 +17179,39 @@ snapshots: - typescript - use-sync-external-store - '@biomejs/biome@2.4.6': + '@biomejs/biome@2.4.7': optionalDependencies: - '@biomejs/cli-darwin-arm64': 2.4.6 - '@biomejs/cli-darwin-x64': 2.4.6 - '@biomejs/cli-linux-arm64': 2.4.6 - '@biomejs/cli-linux-arm64-musl': 2.4.6 - '@biomejs/cli-linux-x64': 2.4.6 - '@biomejs/cli-linux-x64-musl': 2.4.6 - '@biomejs/cli-win32-arm64': 2.4.6 - '@biomejs/cli-win32-x64': 2.4.6 + '@biomejs/cli-darwin-arm64': 2.4.7 + '@biomejs/cli-darwin-x64': 2.4.7 + '@biomejs/cli-linux-arm64': 2.4.7 + '@biomejs/cli-linux-arm64-musl': 2.4.7 + '@biomejs/cli-linux-x64': 2.4.7 + '@biomejs/cli-linux-x64-musl': 2.4.7 + '@biomejs/cli-win32-arm64': 2.4.7 + '@biomejs/cli-win32-x64': 2.4.7 - '@biomejs/cli-darwin-arm64@2.4.6': + '@biomejs/cli-darwin-arm64@2.4.7': optional: true - '@biomejs/cli-darwin-x64@2.4.6': + '@biomejs/cli-darwin-x64@2.4.7': optional: true - '@biomejs/cli-linux-arm64-musl@2.4.6': + '@biomejs/cli-linux-arm64-musl@2.4.7': optional: true - '@biomejs/cli-linux-arm64@2.4.6': + '@biomejs/cli-linux-arm64@2.4.7': optional: true - '@biomejs/cli-linux-x64-musl@2.4.6': + '@biomejs/cli-linux-x64-musl@2.4.7': optional: true - '@biomejs/cli-linux-x64@2.4.6': + '@biomejs/cli-linux-x64@2.4.7': optional: true - '@biomejs/cli-win32-arm64@2.4.6': + '@biomejs/cli-win32-arm64@2.4.7': optional: true - '@biomejs/cli-win32-x64@2.4.6': + '@biomejs/cli-win32-x64@2.4.7': optional: true '@bitcoinerlab/secp256k1@1.1.1': @@ -17318,7 +17254,7 @@ snapshots: jose: 6.2.1 md5: 2.3.0 uncrypto: 0.1.3 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 transitivePeerDependencies: - bufferutil @@ -17357,7 +17293,7 @@ snapshots: idb-keyval: 6.2.1 ox: 0.6.9(typescript@5.9.3)(zod@4.3.6) preact: 10.24.2 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.3(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' @@ -17375,21 +17311,21 @@ snapshots: clsx: 1.2.1 eventemitter3: 5.0.4 preact: 10.29.0 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@commitlint/cli@20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)': + '@commitlint/cli@20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)': dependencies: - '@commitlint/format': 20.4.4 - '@commitlint/lint': 20.4.4 - '@commitlint/load': 20.4.4(@types/node@25.5.0)(typescript@5.9.3) - '@commitlint/read': 20.4.4(conventional-commits-parser@6.3.0) - '@commitlint/types': 20.4.4 - tinyexec: 1.0.2 + '@commitlint/format': 20.5.0 + '@commitlint/lint': 20.5.0 + '@commitlint/load': 20.5.0(@types/node@25.5.0)(typescript@5.9.3) + '@commitlint/read': 20.5.0(conventional-commits-parser@6.3.0) + '@commitlint/types': 20.5.0 + tinyexec: 1.0.4 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -17397,19 +17333,19 @@ snapshots: - conventional-commits-parser - typescript - '@commitlint/config-conventional@20.4.4': + '@commitlint/config-conventional@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 conventional-changelog-conventionalcommits: 9.3.0 - '@commitlint/config-validator@20.4.4': + '@commitlint/config-validator@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 ajv: 8.18.0 - '@commitlint/ensure@20.4.4': + '@commitlint/ensure@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -17418,29 +17354,29 @@ snapshots: '@commitlint/execute-rule@20.0.0': {} - '@commitlint/format@20.4.4': + '@commitlint/format@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 picocolors: 1.1.1 - '@commitlint/is-ignored@20.4.4': + '@commitlint/is-ignored@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 semver: 7.7.4 - '@commitlint/lint@20.4.4': + '@commitlint/lint@20.5.0': dependencies: - '@commitlint/is-ignored': 20.4.4 - '@commitlint/parse': 20.4.4 - '@commitlint/rules': 20.4.4 - '@commitlint/types': 20.4.4 + '@commitlint/is-ignored': 20.5.0 + '@commitlint/parse': 20.5.0 + '@commitlint/rules': 20.5.0 + '@commitlint/types': 20.5.0 - '@commitlint/load@20.4.4(@types/node@25.5.0)(typescript@5.9.3)': + '@commitlint/load@20.5.0(@types/node@25.5.0)(typescript@5.9.3)': dependencies: - '@commitlint/config-validator': 20.4.4 + '@commitlint/config-validator': 20.5.0 '@commitlint/execute-rule': 20.0.0 - '@commitlint/resolve-extends': 20.4.4 - '@commitlint/types': 20.4.4 + '@commitlint/resolve-extends': 20.5.0 + '@commitlint/types': 20.5.0 cosmiconfig: 9.0.1(typescript@5.9.3) cosmiconfig-typescript-loader: 6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3) is-plain-obj: 4.1.0 @@ -17452,38 +17388,38 @@ snapshots: '@commitlint/message@20.4.3': {} - '@commitlint/parse@20.4.4': + '@commitlint/parse@20.5.0': dependencies: - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 conventional-changelog-angular: 8.3.0 conventional-commits-parser: 6.3.0 - '@commitlint/read@20.4.4(conventional-commits-parser@6.3.0)': + '@commitlint/read@20.5.0(conventional-commits-parser@6.3.0)': dependencies: '@commitlint/top-level': 20.4.3 - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0) minimist: 1.2.8 - tinyexec: 1.0.2 + tinyexec: 1.0.4 transitivePeerDependencies: - conventional-commits-filter - conventional-commits-parser - '@commitlint/resolve-extends@20.4.4': + '@commitlint/resolve-extends@20.5.0': dependencies: - '@commitlint/config-validator': 20.4.4 - '@commitlint/types': 20.4.4 + '@commitlint/config-validator': 20.5.0 + '@commitlint/types': 20.5.0 global-directory: 4.0.1 import-meta-resolve: 4.2.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - '@commitlint/rules@20.4.4': + '@commitlint/rules@20.5.0': dependencies: - '@commitlint/ensure': 20.4.4 + '@commitlint/ensure': 20.5.0 '@commitlint/message': 20.4.3 '@commitlint/to-lines': 20.0.0 - '@commitlint/types': 20.4.4 + '@commitlint/types': 20.5.0 '@commitlint/to-lines@20.0.0': {} @@ -17491,7 +17427,7 @@ snapshots: dependencies: escalade: 3.2.0 - '@commitlint/types@20.4.4': + '@commitlint/types@20.5.0': dependencies: conventional-commits-parser: 6.3.0 picocolors: 1.1.1 @@ -17509,12 +17445,12 @@ snapshots: gonzales-pe: 4.3.0 node-source-walk: 7.0.1 - '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@types/react' - bufferutil @@ -17677,7 +17613,7 @@ snapshots: '@evervault/wasm-attestation-bindings': 0.3.1 '@noble/hashes': 2.0.1 '@noble/post-quantum': 0.5.4 - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 fp-ts: 2.16.11 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -17692,7 +17628,7 @@ snapshots: '@evervault/wasm-attestation-bindings': 0.3.1 '@noble/hashes': 2.0.1 '@noble/post-quantum': 0.5.4 - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 fp-ts: 2.16.11 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -17707,7 +17643,7 @@ snapshots: '@evervault/wasm-attestation-bindings': 0.3.1 '@noble/hashes': 2.0.1 '@noble/post-quantum': 0.5.4 - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 fp-ts: 2.16.11 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -17723,7 +17659,7 @@ snapshots: '@evervault/wasm-attestation-bindings': 0.3.1 '@noble/hashes': 2.0.1 '@noble/post-quantum': 0.5.4 - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 fp-ts: 2.16.11 isows: 1.0.7(ws@8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)) ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) @@ -17793,7 +17729,7 @@ snapshots: dependencies: '@dynamic-labs/logger': 4.67.2 - '@dynamic-labs/bitcoin@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/bitcoin@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@bitcoinerlab/secp256k1': 1.1.1 '@btckit/types': 0.0.19 @@ -17803,7 +17739,7 @@ snapshots: '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 - '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wallet-standard/app': 1.0.1 @@ -17827,11 +17763,11 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/embedded-wallet-evm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/embedded-wallet-evm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 '@dynamic-labs/embedded-wallet': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 @@ -17840,9 +17776,9 @@ snapshots: '@dynamic-labs/webauthn': 4.67.2 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/iframe-stamper': 2.5.0 - '@turnkey/viem': 0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@turnkey/viem': 0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@turnkey/webauthn-stamper': 0.5.1 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - bufferutil @@ -17904,37 +17840,37 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-aa-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-aa-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - debug - react - react-dom - '@dynamic-labs/ethereum-aa@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-aa@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@zerodev/webauthn-key@5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/ethereum-aa-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-aa-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@zerodev/ecdsa-validator': 5.4.9(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/multi-chain-ecdsa-validator': 5.4.5(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@zerodev/ecdsa-validator': 5.4.9(@zerodev/sdk@5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/multi-chain-ecdsa-validator': 5.4.5(@zerodev/sdk@5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/sdk': 5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@zerodev/webauthn-key' @@ -17942,7 +17878,7 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 '@dynamic-labs/logger': 4.67.2 @@ -17952,20 +17888,20 @@ snapshots: '@dynamic-labs/utils': 4.67.2 '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - debug - react - react-dom - '@dynamic-labs/ethereum@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/ethereum@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@dynamic-labs/wallet-connector-core@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/embedded-wallet-evm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/embedded-wallet-evm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/types': 4.67.2 @@ -17977,7 +17913,7 @@ snapshots: '@walletconnect/ethereum-provider': 2.21.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) buffer: 6.0.3 eventemitter3: 5.0.1 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18139,7 +18075,7 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/solana@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/solana@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 '@dynamic-labs/embedded-wallet-solana': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -18149,7 +18085,7 @@ snapshots: '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 - '@dynamic-labs/waas-svm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@dynamic-labs/waas-svm': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/wallet-book': 4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@dynamic-labs/wallet-connect': 4.67.2(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -18243,14 +18179,14 @@ snapshots: '@dynamic-labs/waas-evm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 - '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@dynamic-labs-wallet/forward-mpc-client' - '@gql.tada/svelte-support' @@ -18265,7 +18201,7 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/waas-svm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@dynamic-labs/waas-svm@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 '@dynamic-labs/embedded-wallet-solana': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -18275,7 +18211,7 @@ snapshots: '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/types': 4.67.2 '@dynamic-labs/utils': 4.67.2 - '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/waas': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@solana/web3.js': 1.98.1(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) bs58: 6.0.0 @@ -18295,11 +18231,11 @@ snapshots: - viem - zod - '@dynamic-labs/waas@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@dynamic-labs/waas@4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@dynamic-labs-wallet/browser-wallet-client': 0.0.289(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/sdk-api-core': 0.0.881 '@dynamic-labs/solana-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) @@ -18321,20 +18257,20 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/wagmi-connector@4.67.2(357284df7c9b2bd3a6b91ec3f0edd728)': + '@dynamic-labs/wagmi-connector@4.67.2(d9c833f3d6ae9889595a6f76ff5fc475)': dependencies: '@dynamic-labs/assert-package-version': 4.67.2 - '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@dynamic-labs/ethereum-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@dynamic-labs/logger': 4.67.2 '@dynamic-labs/rpc-providers': 4.67.2 '@dynamic-labs/sdk-react-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6) '@dynamic-labs/types': 4.67.2 '@dynamic-labs/wallet-connector-core': 4.67.2(@dynamic-labs-wallet/forward-mpc-client@0.4.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6))(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) eventemitter3: 5.0.1 react: 19.2.4 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@dynamic-labs/wallet-book@4.67.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: @@ -19125,11 +19061,11 @@ snapshots: dependencies: retry: 0.13.1 - '@gemini-wallet/core@0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@gemini-wallet/core@0.3.2(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@metamask/rpc-errors': 7.0.2 eventemitter3: 5.0.1 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - supports-color @@ -19161,7 +19097,7 @@ snapshots: '@floating-ui/react': 0.26.28(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@react-aria/focus': 3.21.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@react-aria/interactions': 3.27.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react: 19.2.4 react-dom: 19.2.4(react@19.2.4) use-sync-external-store: 1.4.0(react@19.2.4) @@ -19655,7 +19591,7 @@ snapshots: '@lifi/sdk-provider-ethereum@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -19678,7 +19614,7 @@ snapshots: '@lifi/sdk-provider-sui@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@lifi/sdk': 4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@mysten/sui': 2.7.0(typescript@5.9.3) + '@mysten/sui': 2.8.0(typescript@5.9.3) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19687,7 +19623,7 @@ snapshots: - utf-8-validate - zod - '@lifi/sdk@3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@lifi/sdk@3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bitcoinerlab/secp256k1': 1.2.0 @@ -19700,7 +19636,7 @@ snapshots: bech32: 2.0.0 bitcoinjs-lib: 7.0.1(typescript@5.9.3) bs58: 6.0.0 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19715,7 +19651,7 @@ snapshots: '@lifi/sdk@4.0.0-beta.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - '@lifi/types': 17.65.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@lifi/types': 17.67.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -19724,25 +19660,34 @@ snapshots: '@lifi/types@17.65.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@lifi/wallet-management@3.22.8(181d5f00fcc30c3404045ff3c974754e)': + '@lifi/types@17.67.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': + dependencies: + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@lifi/wallet-management@3.22.8(d6c111fcb1c0ad7a26316e500973e488)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.4(@mysten/sui@2.8.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) @@ -19754,9 +19699,9 @@ snapshots: react-dom: 19.2.4(react@19.2.4) react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19773,18 +19718,18 @@ snapshots: - utf-8-validate - zod - '@lifi/wallet-management@3.22.8(39fc10a8dfa322c4cd62288f315e3869)': + '@lifi/wallet-management@3.22.8(f6a613b4b0ca149200037841e8c84622)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.4(@mysten/sui@2.8.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/wallet-standard': 0.19.9(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) @@ -19796,9 +19741,9 @@ snapshots: react-dom: 19.2.4(react@19.2.4) react-i18next: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19815,37 +19760,37 @@ snapshots: - utf-8-validate - zod - '@lifi/widget-light@4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0)': + '@lifi/widget-light@4.0.0-alpha.3(@bigmi/client@0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@bigmi/react@0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)))(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@wallet-standard/base@1.1.0)(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0)': dependencies: react: 19.2.4 optionalDependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@wallet-standard/base': 1.1.0 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) - '@lifi/widget@3.40.12(0ddd6accedc60ee19bd7698de598bce4)': + '@lifi/widget@3.40.12(de59e4021d9100062f92946dd8127c23)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.8(181d5f00fcc30c3404045ff3c974754e) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/wallet-management': 3.22.8(d6c111fcb1c0ad7a26316e500973e488) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.4(@mysten/sui@2.8.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 @@ -19855,9 +19800,9 @@ snapshots: react-intersection-observer: 9.16.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-router-dom: 6.30.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-transition-group: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -19875,26 +19820,26 @@ snapshots: - utf-8-validate - zod - '@lifi/widget@3.40.12(8296b87b860be7876c0cab13d577255c)': + '@lifi/widget@3.40.12(e9f60c2525a29cf193a7e2565b69e339)': dependencies: '@bigmi/client': 0.7.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/core': 0.7.1(@types/react@19.2.14)(bs58@6.0.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@bigmi/react': 0.7.1(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bs58@6.0.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@emotion/react': 11.14.0(@types/react@19.2.14)(react@19.2.4) '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - '@lifi/wallet-management': 3.22.8(39fc10a8dfa322c4cd62288f315e3869) + '@lifi/sdk': 3.16.1(@solana/wallet-adapter-base@0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + '@lifi/wallet-management': 3.22.8(f6a613b4b0ca149200037841e8c84622) '@mui/icons-material': 7.3.9(@mui/material@7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) '@mui/material': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@mui/system': 7.3.9(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4))(@types/react@19.2.14)(react@19.2.4) - '@mysten/dapp-kit': 1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) + '@mysten/dapp-kit': 1.0.4(@mysten/sui@2.8.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4)) '@mysten/sui': 1.45.2(typescript@5.9.3) '@solana/wallet-adapter-base': 0.9.27(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-coinbase': 0.1.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-adapter-react': 0.15.39(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(fastestsmallesttextencoderdecoder@1.0.22)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) '@tanstack/react-query': 5.90.21(react@19.2.4) - '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4) i18next: 25.8.18(typescript@5.9.3) microdiff: 1.5.0 mitt: 3.0.1 @@ -19904,9 +19849,9 @@ snapshots: react-intersection-observer: 9.16.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-router-dom: 6.30.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4) react-transition-group: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -20386,57 +20331,57 @@ snapshots: '@mysten/utils': 0.2.0 '@scure/base': 1.2.6 - '@mysten/bcs@2.0.2': + '@mysten/bcs@2.0.3': dependencies: '@mysten/utils': 0.3.1 '@scure/base': 2.0.0 - '@mysten/dapp-kit-core@1.1.4(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3)': + '@mysten/dapp-kit-core@1.2.0(@mysten/sui@2.8.0(typescript@5.9.3))(typescript@5.9.3)': dependencies: '@floating-ui/dom': 1.7.6 '@lit-labs/scoped-registry-mixin': 1.0.4 '@lit/task': 1.0.3 - '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) - '@mysten/sui': 2.7.0(typescript@5.9.3) + '@mysten/slush-wallet': 1.0.3(@mysten/sui@2.8.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/sui': 2.8.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) - '@nanostores/lit': 0.2.3(lit@3.3.2)(nanostores@1.1.1) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.8.0(typescript@5.9.3)) + '@nanostores/lit': 0.2.3(lit@3.3.2)(nanostores@1.2.0) '@wallet-standard/ui': 1.0.1 '@wallet-standard/ui-registry': 1.0.1 '@webcomponents/scoped-custom-element-registry': 0.0.10 lit: 3.3.2 - nanostores: 1.1.1 + nanostores: 1.2.0 transitivePeerDependencies: - typescript - '@mysten/dapp-kit-react@2.0.0(@mysten/sui@2.7.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)': + '@mysten/dapp-kit-react@2.0.1(@mysten/sui@2.8.0(typescript@5.9.3))(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)': dependencies: '@lit/react': 1.0.8(@types/react@19.2.14) - '@mysten/dapp-kit-core': 1.1.4(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) - '@nanostores/react': 1.0.0(nanostores@1.1.1)(react@19.2.4) + '@mysten/dapp-kit-core': 1.2.0(@mysten/sui@2.8.0(typescript@5.9.3))(typescript@5.9.3) + '@nanostores/react': 1.0.1(nanostores@1.2.0)(react@19.2.4) '@types/react': 19.2.14 - nanostores: 1.1.1 + nanostores: 1.2.0 react: 19.2.4 transitivePeerDependencies: - '@mysten/sui' - typescript - '@mysten/dapp-kit@1.0.3(@mysten/sui@2.7.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': + '@mysten/dapp-kit@1.0.4(@mysten/sui@2.8.0(typescript@5.9.3))(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))': dependencies: - '@mysten/slush-wallet': 1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3) - '@mysten/sui': 2.7.0(typescript@5.9.3) + '@mysten/slush-wallet': 1.0.3(@mysten/sui@2.8.0(typescript@5.9.3))(typescript@5.9.3) + '@mysten/sui': 2.8.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.8.0(typescript@5.9.3)) '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@radix-ui/react-slot': 1.2.4(@types/react@19.2.14)(react@19.2.4) '@tanstack/react-query': 5.90.21(react@19.2.4) - '@vanilla-extract/css': 1.18.0(babel-plugin-macros@3.1.0) + '@vanilla-extract/css': 1.19.0(babel-plugin-macros@3.1.0) '@vanilla-extract/dynamic': 2.1.5 - '@vanilla-extract/recipes': 0.5.7(@vanilla-extract/css@1.18.0(babel-plugin-macros@3.1.0)) + '@vanilla-extract/recipes': 0.5.7(@vanilla-extract/css@1.19.0(babel-plugin-macros@3.1.0)) clsx: 2.1.1 react: 19.2.4 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -20446,12 +20391,12 @@ snapshots: - typescript - use-sync-external-store - '@mysten/slush-wallet@1.0.2(@mysten/sui@2.7.0(typescript@5.9.3))(typescript@5.9.3)': + '@mysten/slush-wallet@1.0.3(@mysten/sui@2.8.0(typescript@5.9.3))(typescript@5.9.3)': dependencies: - '@mysten/sui': 2.7.0(typescript@5.9.3) + '@mysten/sui': 2.8.0(typescript@5.9.3) '@mysten/utils': 0.3.1 - '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.7.0(typescript@5.9.3)) - '@mysten/window-wallet-core': 0.1.3(typescript@5.9.3) + '@mysten/wallet-standard': 0.20.1(@mysten/sui@2.8.0(typescript@5.9.3)) + '@mysten/window-wallet-core': 0.1.4(typescript@5.9.3) valibot: 1.2.0(typescript@5.9.3) transitivePeerDependencies: - typescript @@ -20478,10 +20423,10 @@ snapshots: - '@gql.tada/vue-support' - typescript - '@mysten/sui@2.7.0(typescript@5.9.3)': + '@mysten/sui@2.8.0(typescript@5.9.3)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1) - '@mysten/bcs': 2.0.2 + '@mysten/bcs': 2.0.3 '@mysten/utils': 0.3.1 '@noble/curves': 2.0.1 '@noble/hashes': 2.0.1 @@ -20517,12 +20462,12 @@ snapshots: - '@gql.tada/vue-support' - typescript - '@mysten/wallet-standard@0.20.1(@mysten/sui@2.7.0(typescript@5.9.3))': + '@mysten/wallet-standard@0.20.1(@mysten/sui@2.8.0(typescript@5.9.3))': dependencies: - '@mysten/sui': 2.7.0(typescript@5.9.3) + '@mysten/sui': 2.8.0(typescript@5.9.3) '@wallet-standard/core': 1.1.1 - '@mysten/window-wallet-core@0.1.3(typescript@5.9.3)': + '@mysten/window-wallet-core@0.1.4(typescript@5.9.3)': dependencies: '@mysten/utils': 0.3.1 jose: 6.2.1 @@ -20530,14 +20475,14 @@ snapshots: transitivePeerDependencies: - typescript - '@nanostores/lit@0.2.3(lit@3.3.2)(nanostores@1.1.1)': + '@nanostores/lit@0.2.3(lit@3.3.2)(nanostores@1.2.0)': dependencies: lit: 3.3.2 - nanostores: 1.1.1 + nanostores: 1.2.0 - '@nanostores/react@1.0.0(nanostores@1.1.1)(react@19.2.4)': + '@nanostores/react@1.0.1(nanostores@1.2.0)(react@19.2.4)': dependencies: - nanostores: 1.1.1 + nanostores: 1.2.0 react: 19.2.4 '@napi-rs/wasm-runtime@0.2.12': @@ -20735,7 +20680,7 @@ snapshots: agent-base: 7.1.4 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 - lru-cache: 11.2.6 + lru-cache: 11.2.7 socks-proxy-agent: 8.0.5 transitivePeerDependencies: - supports-color @@ -20758,7 +20703,7 @@ snapshots: common-ancestor-path: 1.0.1 hosted-git-info: 9.0.2 json-stringify-nice: 1.1.4 - lru-cache: 11.2.6 + lru-cache: 11.2.7 minimatch: 10.2.4 nopt: 8.1.0 npm-install-checks: 7.1.2 @@ -20819,7 +20764,7 @@ snapshots: '@gar/promise-retry': 1.0.2 '@npmcli/promise-spawn': 9.0.1 ini: 6.0.0 - lru-cache: 11.2.6 + lru-cache: 11.2.7 npm-pick-manifest: 11.0.3 proc-log: 6.1.0 semver: 7.7.2 @@ -20911,11 +20856,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@nuxt/cli@3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2)': + '@nuxt/cli@3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.3.5)': dependencies: '@bomb.sh/tab': 0.0.14(cac@6.7.14)(citty@0.2.1)(commander@13.1.0) '@clack/prompts': 1.1.0 - c12: 3.3.3(magicast@0.5.2) + c12: 3.3.3(magicast@0.3.5) citty: 0.2.1 confbox: 0.2.4 consola: 3.4.2 @@ -20935,10 +20880,10 @@ snapshots: pkg-types: 2.3.0 scule: 1.3.0 semver: 7.7.4 - srvx: 0.11.9 + srvx: 0.11.12 std-env: 3.10.0 tinyclip: 0.1.12 - tinyexec: 1.0.2 + tinyexec: 1.0.4 ufo: 1.6.3 youch: 4.1.0 optionalDependencies: @@ -20951,11 +20896,11 @@ snapshots: '@nuxt/devalue@2.0.2': {} - '@nuxt/devtools-kit@2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@nuxt/devtools-kit@2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))': dependencies: '@nuxt/kit': 3.21.2(magicast@0.3.5) execa: 8.0.1 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - magicast @@ -20970,12 +20915,12 @@ snapshots: prompts: 2.4.2 semver: 7.7.4 - '@nuxt/devtools@2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@nuxt/devtools@2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: - '@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + '@nuxt/devtools-kit': 2.7.0(magicast@0.3.5)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) '@nuxt/devtools-wizard': 2.7.0 '@nuxt/kit': 3.21.2(magicast@0.3.5) - '@vue/devtools-core': 7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + '@vue/devtools-core': 7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) '@vue/devtools-kit': 7.7.9 birpc: 2.9.0 consola: 3.4.2 @@ -21000,9 +20945,9 @@ snapshots: sirv: 3.0.2 structured-clone-es: 1.0.0 tinyglobby: 0.2.15 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) - vite-plugin-vue-tracer: 1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) + vite-plugin-inspect: 11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) + vite-plugin-vue-tracer: 1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) which: 5.0.0 ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6) transitivePeerDependencies: @@ -21011,9 +20956,9 @@ snapshots: - utf-8-validate - vue - '@nuxt/kit@3.17.7(magicast@0.5.2)': + '@nuxt/kit@3.17.7(magicast@0.3.5)': dependencies: - c12: 3.3.3(magicast@0.5.2) + c12: 3.3.3(magicast@0.3.5) consola: 3.4.2 defu: 6.1.4 destr: 2.0.5 @@ -21072,21 +21017,21 @@ snapshots: pathe: 2.0.3 std-env: 3.10.0 - '@nuxt/telemetry@2.7.0(@nuxt/kit@3.17.7(magicast@0.5.2))': + '@nuxt/telemetry@2.7.0(@nuxt/kit@3.17.7(magicast@0.3.5))': dependencies: - '@nuxt/kit': 3.17.7(magicast@0.5.2) + '@nuxt/kit': 3.17.7(magicast@0.3.5) citty: 0.2.1 consola: 3.4.2 ofetch: 2.0.0-alpha.3 rc9: 3.0.0 std-env: 3.10.0 - '@nuxt/vite-builder@3.17.7(@biomejs/biome@2.4.6)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)': + '@nuxt/vite-builder@3.17.7(@biomejs/biome@2.4.7)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.3.5)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.1)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2)': dependencies: - '@nuxt/kit': 3.17.7(magicast@0.5.2) + '@nuxt/kit': 3.17.7(magicast@0.3.5) '@rollup/plugin-replace': 6.0.3(rollup@4.59.0) - '@vitejs/plugin-vue': 5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) - '@vitejs/plugin-vue-jsx': 4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + '@vitejs/plugin-vue': 5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + '@vitejs/plugin-vue-jsx': 4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) autoprefixer: 10.4.27(postcss@8.5.8) consola: 3.4.2 cssnano: 7.1.3(postcss@8.5.8) @@ -21111,9 +21056,9 @@ snapshots: std-env: 3.10.0 ufo: 1.6.3 unenv: 2.0.0-rc.24 - vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) - vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) - vite-plugin-checker: 0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) + vite-plugin-checker: 0.10.3(@biomejs/biome@2.4.7)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)) vue: 3.5.30(typescript@5.9.3) vue-bundle-renderer: 2.2.0 transitivePeerDependencies: @@ -21475,11 +21420,11 @@ snapshots: '@privy-io/chains@0.0.2': {} - '@privy-io/ethereum@0.0.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@privy-io/ethereum@0.0.2(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@privy-io/js-sdk-core@0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@privy-io/js-sdk-core@0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@ethersproject/abstract-signer': 5.8.0 '@ethersproject/bignumber': 5.8.0 @@ -21499,8 +21444,8 @@ snapshots: set-cookie-parser: 2.7.2 uuid: 9.0.1 optionalDependencies: - permissionless: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + permissionless: 0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -21511,14 +21456,14 @@ snapshots: '@privy-io/api-base': 1.7.0 bs58: 6.0.0 libphonenumber-js: 1.12.40 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - '@privy-io/react-auth@2.25.0(78098f046e864437a57df44ee72f4807)': + '@privy-io/react-auth@2.25.0(8217d29b9cd998111a4a0149dd725611)': dependencies: '@base-org/account': 1.1.1(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.2 @@ -21529,8 +21474,8 @@ snapshots: '@metamask/eth-sig-util': 6.0.2 '@privy-io/api-base': 1.7.0 '@privy-io/chains': 0.0.2 - '@privy-io/ethereum': 0.0.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@privy-io/js-sdk-core': 0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@privy-io/ethereum': 0.0.2(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@privy-io/js-sdk-core': 0.55.0(bufferutil@4.1.0)(permissionless@0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@privy-io/public-api': 2.45.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@reown/appkit': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@scure/base': 1.2.6 @@ -21538,7 +21483,7 @@ snapshots: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)) '@solana/wallet-standard-wallet-adapter-base': 1.1.4(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0) '@solana/wallet-standard-wallet-adapter-react': 1.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)))(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bs58@6.0.0)(react@19.2.4) - '@tanstack/react-virtual': 3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4) + '@tanstack/react-virtual': 3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4) '@wallet-standard/app': 1.1.0 '@walletconnect/ethereum-provider': 2.21.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) base64-js: 1.5.1 @@ -21563,13 +21508,13 @@ snapshots: stylis: 4.3.6 tinycolor2: 1.6.0 uuid: 9.0.1 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@solana/kit': 6.3.1(bufferutil@4.1.0)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/spl-token': 0.4.14(@solana/web3.js@1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6))(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.9.3)(utf-8-validate@6.0.6) '@solana/web3.js': 1.98.4(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6) - permissionless: 0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + permissionless: 0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21602,12 +21547,12 @@ snapshots: - utf-8-validate - zod - '@privy-io/wagmi@1.0.6(ba75cdb350cf85a71f2933e831bd3291)': + '@privy-io/wagmi@1.0.6(0ed647e9f2a2772ff1664d00c39e17af)': dependencies: - '@privy-io/react-auth': 2.25.0(78098f046e864437a57df44ee72f4807) + '@privy-io/react-auth': 2.25.0(8217d29b9cd998111a4a0149dd725611) react: 19.2.4 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) '@protobuf-ts/grpcweb-transport@2.11.1': dependencies: @@ -21889,7 +21834,7 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@rainbow-me/rainbowkit@2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6))': + '@rainbow-me/rainbowkit@2.2.10(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6))': dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) '@vanilla-extract/css': 1.17.3(babel-plugin-macros@3.1.0) @@ -21901,8 +21846,8 @@ snapshots: react-dom: 19.2.4(react@19.2.4) react-remove-scroll: 2.6.2(@types/react@19.2.14)(react@19.2.4) ua-parser-js: 1.0.41 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - babel-plugin-macros @@ -22021,7 +21966,7 @@ snapshots: optionalDependencies: '@types/react': 19.2.14 - '@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)': + '@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2)': dependencies: '@babel/core': 7.29.0 '@babel/generator': 7.29.1 @@ -22051,8 +21996,8 @@ snapshots: semver: 7.7.4 tinyglobby: 0.2.15 valibot: 1.2.0(typescript@5.9.3) - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) optionalDependencies: '@react-router/serve': 7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3) typescript: 5.9.3 @@ -22079,9 +22024,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@react-router/fs-routes@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': + '@react-router/fs-routes@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': dependencies: - '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) + '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2) minimatch: 9.0.9 optionalDependencies: typescript: 5.9.3 @@ -22093,9 +22038,9 @@ snapshots: optionalDependencies: typescript: 5.9.3 - '@react-router/remix-routes-option-adapter@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': + '@react-router/remix-routes-option-adapter@7.13.1(@react-router/dev@7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)': dependencies: - '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2) + '@react-router/dev': 7.13.1(@react-router/serve@7.13.1(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(terser@5.46.1)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2) optionalDependencies: typescript: 5.9.3 @@ -22129,7 +22074,7 @@ snapshots: '@remix-run/css-bundle@2.17.4': {} - '@remix-run/dev@2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)': + '@remix-run/dev@2.17.4(@remix-run/react@2.17.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3))(@remix-run/serve@2.17.4(typescript@5.9.3))(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(yaml@2.8.2)': dependencies: '@babel/core': 7.29.0 '@babel/generator': 7.29.1 @@ -22146,7 +22091,7 @@ snapshots: '@remix-run/router': 1.23.2 '@remix-run/server-runtime': 2.17.4(typescript@5.9.3) '@types/mdx': 2.0.13 - '@vanilla-extract/integration': 6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.0) + '@vanilla-extract/integration': 6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.1) arg: 5.0.2 cacache: 17.1.4 chalk: 4.1.2 @@ -22186,12 +22131,12 @@ snapshots: tar-fs: 2.1.4 tsconfig-paths: 4.2.0 valibot: 1.2.0(typescript@5.9.3) - vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) ws: 7.5.10(bufferutil@4.1.0)(utf-8-validate@6.0.6) optionalDependencies: '@remix-run/serve': 2.17.4(typescript@5.9.3) typescript: 5.9.3 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -22228,7 +22173,7 @@ snapshots: cookie-signature: 1.2.2 source-map-support: 0.5.21 stream-slice: 0.1.2 - undici: 6.24.0 + undici: 6.24.1 optionalDependencies: typescript: 5.9.3 @@ -22400,7 +22345,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-adapter-wagmi@1.8.19(cbba8c8e56bd71466029bf033b724b4b)': + '@reown/appkit-adapter-wagmi@1.8.19(20724cea3314d24dc8d3dbac3db964de)': dependencies: '@reown/appkit': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@reown/appkit-common': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -22409,13 +22354,13 @@ snapshots: '@reown/appkit-scaffold-ui': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(valtio@2.1.7(@types/react@19.2.14)(react@19.2.4))(zod@4.3.6) '@reown/appkit-utils': 1.8.19(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(valtio@2.1.7(@types/react@19.2.14)(react@19.2.4))(zod@4.3.6) '@reown/appkit-wallet': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) optionalDependencies: - '@wagmi/connectors': 7.2.1(7e0d03651353772277bb3afae8ed51ab) + '@wagmi/connectors': 7.2.1(f785ee48dbf63a20991d69b34e3094ca) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -22459,7 +22404,7 @@ snapshots: dependencies: big.js: 6.2.2 dayjs: 1.11.13 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -22472,7 +22417,7 @@ snapshots: '@reown/appkit-wallet': 1.8.19(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6) '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -22633,7 +22578,7 @@ snapshots: '@walletconnect/logger': 3.0.2 '@walletconnect/universal-provider': 2.23.7(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(ioredis@5.10.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.4.0(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -22695,7 +22640,7 @@ snapshots: bs58: 6.0.0 semver: 7.7.2 valtio: 2.1.7(@types/react@19.2.14)(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@lit/react': 1.0.8(@types/react@19.2.14) transitivePeerDependencies: @@ -22834,7 +22779,7 @@ snapshots: dependencies: serialize-javascript: 6.0.2 smob: 1.6.1 - terser: 5.46.0 + terser: 5.46.1 optionalDependencies: rollup: 4.59.0 @@ -22938,7 +22883,7 @@ snapshots: '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.23.1 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -23928,7 +23873,7 @@ snapshots: '@solana/errors': 5.5.1(typescript@5.9.3) '@solana/rpc-spec': 5.5.1(typescript@5.9.3) '@solana/rpc-spec-types': 5.5.1(typescript@5.9.3) - undici-types: 7.24.0 + undici-types: 7.24.4 optionalDependencies: typescript: 5.9.3 @@ -23937,7 +23882,7 @@ snapshots: '@solana/errors': 6.3.1(typescript@5.9.3) '@solana/rpc-spec': 6.3.1(typescript@5.9.3) '@solana/rpc-spec-types': 6.3.1(typescript@5.9.3) - undici-types: 7.24.0 + undici-types: 7.24.4 optionalDependencies: typescript: 5.9.3 @@ -24401,22 +24346,22 @@ snapshots: dependencies: acorn: 8.16.0 - '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)))(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)))(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) obug: 2.1.1 - svelte: 5.53.11 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + svelte: 5.53.12 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) - '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)))(svelte@5.53.11)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)))(svelte@5.53.12)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) deepmerge: 4.3.1 magic-string: 0.30.21 obug: 2.1.1 - svelte: 5.53.11 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + svelte: 5.53.12 + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) + vitefu: 1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) '@swc/counter@0.1.3': {} @@ -24433,7 +24378,7 @@ snapshots: '@swc/counter': 0.1.3 tslib: 2.8.1 - '@tanstack/history@1.161.4': {} + '@tanstack/history@1.161.6': {} '@tanstack/query-core@5.90.20': {} @@ -24442,11 +24387,11 @@ snapshots: '@tanstack/query-core': 5.90.20 react: 19.2.4 - '@tanstack/react-router@1.166.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@tanstack/react-router@1.167.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@tanstack/history': 1.161.4 + '@tanstack/history': 1.161.6 '@tanstack/react-store': 0.9.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4) - '@tanstack/router-core': 1.166.7 + '@tanstack/router-core': 1.167.3 isbot: 5.1.36 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -24460,15 +24405,15 @@ snapshots: react-dom: 19.2.4(react@19.2.4) use-sync-external-store: 1.4.0(react@19.2.4) - '@tanstack/react-virtual@3.13.22(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': + '@tanstack/react-virtual@3.13.23(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: - '@tanstack/virtual-core': 3.13.22 + '@tanstack/virtual-core': 3.13.23 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - '@tanstack/router-core@1.166.7': + '@tanstack/router-core@1.167.3': dependencies: - '@tanstack/history': 1.161.4 + '@tanstack/history': 1.161.6 '@tanstack/store': 0.9.2 cookie-es: 2.0.0 seroval: 1.5.1 @@ -24478,7 +24423,7 @@ snapshots: '@tanstack/store@0.9.2': {} - '@tanstack/virtual-core@3.13.22': {} + '@tanstack/virtual-core@3.13.23': {} '@thumbmarkjs/thumbmarkjs@0.16.0': {} @@ -24590,7 +24535,7 @@ snapshots: - utf-8-validate - zod - '@turnkey/viem@0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': + '@turnkey/viem@0.13.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)': dependencies: '@noble/curves': 1.8.0 '@openzeppelin/contracts': 4.9.6 @@ -24599,7 +24544,7 @@ snapshots: '@turnkey/sdk-browser': 5.8.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@turnkey/sdk-server': 4.7.0(bufferutil@4.1.0)(encoding@0.1.13)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) cross-fetch: 4.1.0(encoding@0.1.13) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - encoding @@ -24612,7 +24557,7 @@ snapshots: '@turnkey/crypto': 2.5.0 '@turnkey/encoding': 0.5.0 optionalDependencies: - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) transitivePeerDependencies: - bufferutil - typescript @@ -24716,8 +24661,6 @@ snapshots: '@types/mdx@2.0.13': {} - '@types/minimatch@3.0.5': {} - '@types/minimist@1.2.5': {} '@types/ms@2.1.0': {} @@ -24930,7 +24873,7 @@ snapshots: '@unhead/vue@2.1.12(vue@3.5.30(typescript@5.9.3))': dependencies: - hookable: 6.0.1 + hookable: 6.1.0 unhead: 2.1.12 vue: 3.5.30(typescript@5.9.3) @@ -25016,7 +24959,7 @@ snapshots: transitivePeerDependencies: - babel-plugin-macros - '@vanilla-extract/css@1.18.0(babel-plugin-macros@3.1.0)': + '@vanilla-extract/css@1.19.0(babel-plugin-macros@3.1.0)': dependencies: '@emotion/hash': 0.9.2 '@vanilla-extract/private': 1.0.9 @@ -25041,12 +24984,12 @@ snapshots: dependencies: '@vanilla-extract/private': 1.0.9 - '@vanilla-extract/integration@6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.0)': + '@vanilla-extract/integration@6.5.0(@types/node@25.5.0)(babel-plugin-macros@3.1.0)(lightningcss@1.32.0)(terser@5.46.1)': dependencies: '@babel/core': 7.29.0 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) '@vanilla-extract/babel-plugin-debug-ids': 1.2.2 - '@vanilla-extract/css': 1.18.0(babel-plugin-macros@3.1.0) + '@vanilla-extract/css': 1.19.0(babel-plugin-macros@3.1.0) esbuild: 0.17.6 eval: 0.1.8 find-up: 5.0.0 @@ -25054,8 +24997,8 @@ snapshots: lodash: 4.17.23 mlly: 1.8.1 outdent: 0.8.0 - vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) - vite-node: 1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) + vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.1) + vite-node: 1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -25070,9 +25013,9 @@ snapshots: '@vanilla-extract/private@1.0.9': {} - '@vanilla-extract/recipes@0.5.7(@vanilla-extract/css@1.18.0(babel-plugin-macros@3.1.0))': + '@vanilla-extract/recipes@0.5.7(@vanilla-extract/css@1.19.0(babel-plugin-macros@3.1.0))': dependencies: - '@vanilla-extract/css': 1.18.0(babel-plugin-macros@3.1.0) + '@vanilla-extract/css': 1.19.0(babel-plugin-macros@3.1.0) '@vanilla-extract/sprinkles@1.6.4(@vanilla-extract/css@1.17.3(babel-plugin-macros@3.1.0))': dependencies: @@ -25097,43 +25040,43 @@ snapshots: - rollup - supports-color - '@vitejs/plugin-react@6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@vitejs/plugin-react@6.0.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.7 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) - '@vitejs/plugin-vue-jsx@4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@vitejs/plugin-vue-jsx@4.2.0(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) '@rolldown/pluginutils': 1.0.0-rc.9 '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0) - vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) '@rolldown/pluginutils': 1.0.0-rc.9 '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@vitejs/plugin-vue@5.2.4(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: - vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) vue: 3.5.30(typescript@5.9.3) - '@vitejs/plugin-vue@6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@vitejs/plugin-vue@6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.2 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vue: 3.5.30(typescript@5.9.3) '@vitest/expect@4.1.0': @@ -25145,13 +25088,13 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.1.0 - '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))': + '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))': dependencies: '@vitest/spy': 4.1.0 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) '@vitest/pretty-format@4.1.0': dependencies: @@ -25289,14 +25232,14 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/devtools-core@7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': + '@vue/devtools-core@7.7.9(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))': dependencies: '@vue/devtools-kit': 7.7.9 '@vue/devtools-shared': 7.7.9 mitt: 3.0.1 - nanoid: 5.1.6 + nanoid: 5.1.7 pathe: 2.0.3 - vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) vue: 3.5.30(typescript@5.9.3) transitivePeerDependencies: - vite @@ -25349,19 +25292,19 @@ snapshots: '@vue/shared@3.5.30': {} - '@wagmi/connectors@6.2.0(9efce2373b19f58f3fe45ad1830a1d0e)': + '@wagmi/connectors@6.2.0(69f13268063ce835acc14538241afc8d)': dependencies: '@base-org/account': 2.4.0(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.6(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - '@gemini-wallet/core': 0.3.2(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@gemini-wallet/core': 0.3.2(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@metamask/sdk': 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6) '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) '@walletconnect/ethereum-provider': 2.21.1(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' - porto: 0.2.35(b56bdc6606f1758b7b087ff1c0afc5fd) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + porto: 0.2.35(4f38feece2a255680fc901b908c132b6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -25402,10 +25345,10 @@ snapshots: - wagmi - zod - '@wagmi/connectors@7.2.1(7e0d03651353772277bb3afae8ed51ab)': + '@wagmi/connectors@7.2.1(78d796fcbc83a37678b75f6671c56888)': dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -25413,13 +25356,13 @@ snapshots: '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@walletconnect/ethereum-provider': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - porto: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) + porto: 0.2.37(cd0fa67041c4e78eefddc5257e15e507) typescript: 5.9.3 - '@wagmi/connectors@7.2.1(b2c4187e18adabafd3d4e9ecc6ff0b24)': + '@wagmi/connectors@7.2.1(f785ee48dbf63a20991d69b34e3094ca)': dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: '@base-org/account': 2.5.2(@types/react@19.2.14)(bufferutil@4.1.0)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) @@ -25427,14 +25370,14 @@ snapshots: '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@walletconnect/ethereum-provider': 2.23.8(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(utf-8-validate@6.0.6)(zod@4.3.6) - porto: 0.2.37(4dd7932f2eb85b1ba405d8aeacd4ca3f) + porto: 0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0) typescript: 5.9.3 - '@wagmi/core@2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@wagmi/core@2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: eventemitter3: 5.0.1 mipd: 0.0.7(typescript@5.9.3) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/query-core': 5.90.20 @@ -25445,15 +25388,15 @@ snapshots: - react - use-sync-external-store - '@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: eventemitter3: 5.0.1 mipd: 0.0.7(typescript@5.9.3) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zustand: 5.0.0(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/query-core': 5.90.20 - ox: 0.14.0(typescript@5.9.3)(zod@4.3.6) + ox: 0.14.5(typescript@5.9.3)(zod@4.3.6) typescript: 5.9.3 transitivePeerDependencies: - '@types/react' @@ -26811,31 +26754,31 @@ snapshots: js-yaml: 3.14.2 tslib: 2.8.1 - '@zerodev/ecdsa-validator@5.4.9(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/ecdsa-validator@5.4.9(@zerodev/sdk@5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: - '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + '@zerodev/sdk': 5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/multi-chain-ecdsa-validator@5.4.5(@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/multi-chain-ecdsa-validator@5.4.5(@zerodev/sdk@5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(@zerodev/webauthn-key@5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@simplewebauthn/browser': 9.0.1 '@simplewebauthn/typescript-types': 8.3.4 - '@zerodev/sdk': 5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - '@zerodev/webauthn-key': 5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/sdk': 5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@zerodev/webauthn-key': 5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) merkletreejs: 0.3.11 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/sdk@5.5.7(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/sdk@5.5.7(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: semver: 7.7.4 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - '@zerodev/webauthn-key@5.5.0(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': + '@zerodev/webauthn-key@5.5.0(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))': dependencies: '@noble/curves': 1.9.7 '@simplewebauthn/browser': 8.3.7 '@simplewebauthn/types': 12.0.0 - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) '@zkochan/js-yaml@0.0.7': dependencies: @@ -27007,8 +26950,6 @@ snapshots: call-bound: 1.0.4 is-array-buffer: 3.0.5 - array-differ@3.0.0: {} - array-flatten@1.1.1: {} array-ify@1.0.0: {} @@ -27024,8 +26965,6 @@ snapshots: is-string: 1.1.1 math-intrinsics: 1.1.0 - array-union@2.1.0: {} - array.prototype.findlast@1.2.5: dependencies: call-bind: 1.0.8 @@ -27079,8 +27018,6 @@ snapshots: arrify@1.0.1: {} - arrify@2.0.1: {} - asap@2.0.6: {} asn1.js@4.10.1: @@ -27132,7 +27069,7 @@ snapshots: autoprefixer@10.4.27(postcss@8.5.8): dependencies: browserslist: 4.28.1 - caniuse-lite: 1.0.30001778 + caniuse-lite: 1.0.30001779 fraction.js: 5.3.4 picocolors: 1.1.1 postcss: 8.5.8 @@ -27334,7 +27271,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.10.7: {} + baseline-browser-mapping@2.10.8: {} basic-auth@2.0.1: dependencies: @@ -27542,8 +27479,8 @@ snapshots: browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.10.7 - caniuse-lite: 1.0.30001778 + baseline-browser-mapping: 2.10.8 + caniuse-lite: 1.0.30001779 electron-to-chromium: 1.5.313 node-releases: 2.0.36 update-browserslist-db: 1.2.3(browserslist@4.28.1) @@ -27666,7 +27603,7 @@ snapshots: '@npmcli/fs': 5.0.0 fs-minipass: 3.0.3 glob: 13.0.6 - lru-cache: 11.2.6 + lru-cache: 11.2.7 minipass: 7.1.3 minipass-collect: 2.0.1 minipass-flush: 1.0.5 @@ -27709,11 +27646,11 @@ snapshots: caniuse-api@3.0.0: dependencies: browserslist: 4.28.1 - caniuse-lite: 1.0.30001778 + caniuse-lite: 1.0.30001779 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001778: {} + caniuse-lite@1.0.30001779: {} canonicalize@2.1.0: {} @@ -27986,12 +27923,12 @@ snapshots: transitivePeerDependencies: - supports-color - connectkit@1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): + connectkit@1.9.1(@babel/core@7.29.0)(@tanstack/react-query@5.90.21(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) buffer: 6.0.3 detect-browser: 5.3.0 - family: 0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) + family: 0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)) framer-motion: 6.5.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4) qrcode: 1.5.4 react: 19.2.4 @@ -28000,8 +27937,8 @@ snapshots: react-use-measure: 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4) resize-observer-polyfill: 1.5.1 styled-components: 5.3.11(@babel/core@7.29.0)(react-dom@19.2.4(react@19.2.4))(react-is@19.2.4)(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@babel/core' - react-is @@ -28588,8 +28525,6 @@ snapshots: detect-browser@5.3.0: {} - detect-indent@5.0.0: {} - detect-indent@6.1.0: {} detect-libc@2.1.2: {} @@ -29515,7 +29450,7 @@ snapshots: cross-spawn: 7.0.6 get-stream: 6.0.0 human-signals: 2.1.0 - is-stream: 2.0.0 + is-stream: 2.0.1 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 @@ -29594,7 +29529,7 @@ snapshots: extension-port-stream@3.0.0: dependencies: - readable-stream: 4.7.0 + readable-stream: 3.6.2 webextension-polyfill: 0.10.0 externality@1.0.2: @@ -29606,12 +29541,12 @@ snapshots: eyes@0.1.8: {} - family@0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): + family@0.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6)): optionalDependencies: react: 19.2.4 react-dom: 19.2.4(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) fast-copy@3.0.2: {} @@ -29696,7 +29631,7 @@ snapshots: module-lookup-amd: 9.1.1 resolve: 1.22.11 resolve-dependency-path: 4.0.1 - sass-lookup: 6.1.0 + sass-lookup: 6.1.1 stylus-lookup: 6.1.0 tsconfig-paths: 4.2.0 typescript: 5.9.3 @@ -30254,11 +30189,11 @@ snapshots: dependencies: react-is: 16.13.1 - hono@4.12.7: {} + hono@4.12.8: {} hookable@5.5.3: {} - hookable@6.0.1: {} + hookable@6.1.0: {} hosted-git-info@2.8.9: {} @@ -30276,7 +30211,7 @@ snapshots: hosted-git-info@9.0.2: dependencies: - lru-cache: 11.2.6 + lru-cache: 11.2.7 hpke-js@1.8.0: dependencies: @@ -30666,8 +30601,6 @@ snapshots: dependencies: protocols: 2.0.2 - is-stream@2.0.0: {} - is-stream@2.0.1: {} is-stream@3.0.0: {} @@ -31017,7 +30950,7 @@ snapshots: klona@2.0.6: {} - knip@5.86.0(@types/node@25.5.0)(typescript@5.9.3): + knip@5.87.0(@types/node@25.5.0)(typescript@5.9.3): dependencies: '@nodelib/fs.walk': 1.2.8 '@types/node': 25.5.0 @@ -31052,7 +30985,7 @@ snapshots: dependencies: readable-stream: 2.3.8 - lerna@9.0.6(@types/node@25.5.0)(babel-plugin-macros@3.1.0): + lerna@9.0.7(@types/node@25.5.0)(babel-plugin-macros@3.1.0): dependencies: '@npmcli/arborist': 9.1.6 '@npmcli/package-json': 7.0.2 @@ -31076,7 +31009,6 @@ snapshots: envinfo: 7.13.0 execa: 5.0.0 fs-extra: 11.3.4 - get-port: 5.1.1 get-stream: 6.0.0 git-url-parse: 14.0.0 glob-parent: 6.0.2 @@ -31086,16 +31018,13 @@ snapshots: init-package-json: 8.2.2 inquirer: 12.9.6(@types/node@25.5.0) is-ci: 3.0.1 - is-stream: 2.0.0 jest-diff: 30.3.0 js-yaml: 4.1.1 libnpmaccess: 10.0.3 libnpmpublish: 11.1.2 load-json-file: 6.2.0 - make-dir: 4.0.0 make-fetch-happen: 15.0.2 minimatch: 3.1.4 - multimatch: 5.0.0 npm-package-arg: 13.0.1 npm-packlist: 10.0.3 npm-registry-fetch: 19.1.0 @@ -31107,28 +31036,21 @@ snapshots: p-reduce: 2.1.0 p-waterfall: 2.1.1 pacote: 21.0.1 - pify: 5.0.0 read-cmd-shim: 4.0.0 - resolve-from: 5.0.0 - rimraf: 6.1.3 semver: 7.7.2 - set-blocking: 2.0.0 signal-exit: 3.0.7 slash: 3.0.0 ssri: 12.0.0 string-width: 4.2.3 tar: 7.5.11 - temp-dir: 1.0.0 through: 2.3.8 tinyglobby: 0.2.12 typescript: 5.9.3 upath: 2.0.1 - uuid: 11.1.0 validate-npm-package-license: 3.0.4 validate-npm-package-name: 6.0.2 wide-align: 1.1.5 write-file-atomic: 5.0.1 - write-pkg: 4.0.0 yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -31230,13 +31152,13 @@ snapshots: lines-and-columns@2.0.3: {} - lint-staged@16.3.3: + lint-staged@16.4.0: dependencies: commander: 14.0.3 listr2: 9.0.5 - micromatch: 4.0.8 + picomatch: 4.0.3 string-argv: 0.3.2 - tinyexec: 1.0.2 + tinyexec: 1.0.4 yaml: 2.8.2 listhen@1.9.0: @@ -31390,7 +31312,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.2.6: {} + lru-cache@11.2.7: {} lru-cache@5.1.1: dependencies: @@ -31445,15 +31367,6 @@ snapshots: '@babel/types': 7.29.0 source-map-js: 1.2.1 - make-dir@2.1.0: - dependencies: - pify: 4.0.1 - semver: 5.7.2 - - make-dir@4.0.0: - dependencies: - semver: 7.7.2 - make-fetch-happen@15.0.2: dependencies: '@npmcli/agent': 4.0.0 @@ -31733,7 +31646,7 @@ snapshots: metro-minify-terser@0.83.5: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.46.0 + terser: 5.46.1 metro-resolver@0.83.5: dependencies: @@ -32256,23 +32169,15 @@ snapshots: multiformats@9.9.0: {} - multimatch@5.0.0: - dependencies: - '@types/minimatch': 3.0.5 - array-differ: 3.0.0 - array-union: 2.1.0 - arrify: 2.0.1 - minimatch: 3.1.4 - mute-stream@2.0.0: {} nanoclone@0.2.1: {} nanoid@3.3.11: {} - nanoid@5.1.6: {} + nanoid@5.1.7: {} - nanostores@1.1.1: {} + nanostores@1.2.0: {} nanotar@0.2.1: {} @@ -32293,7 +32198,7 @@ snapshots: '@next/env': 14.2.35 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001778 + caniuse-lite: 1.0.30001779 graceful-fs: 4.2.11 postcss: 8.4.31 react: 19.2.4 @@ -32317,7 +32222,7 @@ snapshots: dependencies: '@next/env': 15.5.12 '@swc/helpers': 0.5.15 - caniuse-lite: 1.0.30001778 + caniuse-lite: 1.0.30001779 postcss: 8.4.31 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -32340,8 +32245,8 @@ snapshots: dependencies: '@next/env': 16.1.6 '@swc/helpers': 0.5.15 - baseline-browser-mapping: 2.10.7 - caniuse-lite: 1.0.30001778 + baseline-browser-mapping: 2.10.8 + caniuse-lite: 1.0.30001779 postcss: 8.4.31 react: 19.2.4 react-dom: 19.2.4(react@19.2.4) @@ -32684,18 +32589,18 @@ snapshots: bn.js: 4.11.6 strip-hex-prefix: 1.0.0 - nuxt@3.17.7(@biomejs/biome@2.4.6)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): + nuxt@3.17.7(@biomejs/biome@2.4.7)(@parcel/watcher@2.5.6)(@types/node@25.5.0)(@vue/compiler-sfc@3.5.30)(bufferutil@4.1.0)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.4(jiti@2.6.1))(idb-keyval@6.2.2)(ioredis@5.10.0)(lightningcss@1.32.0)(magicast@0.3.5)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.1)(typescript@5.9.3)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3))(yaml@2.8.2): dependencies: - '@nuxt/cli': 3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.2) + '@nuxt/cli': 3.34.0(@nuxt/schema@3.17.7)(cac@6.7.14)(commander@13.1.0)(magicast@0.3.5) '@nuxt/devalue': 2.0.2 - '@nuxt/devtools': 2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) - '@nuxt/kit': 3.17.7(magicast@0.5.2) + '@nuxt/devtools': 2.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)) + '@nuxt/kit': 3.17.7(magicast@0.3.5) '@nuxt/schema': 3.17.7 - '@nuxt/telemetry': 2.7.0(@nuxt/kit@3.17.7(magicast@0.5.2)) - '@nuxt/vite-builder': 3.17.7(@biomejs/biome@2.4.6)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.5.2)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2) + '@nuxt/telemetry': 2.7.0(@nuxt/kit@3.17.7(magicast@0.3.5)) + '@nuxt/vite-builder': 3.17.7(@biomejs/biome@2.4.7)(@types/node@25.5.0)(eslint@9.39.4(jiti@2.6.1))(lightningcss@1.32.0)(magicast@0.3.5)(meow@13.2.0)(optionator@0.9.4)(rolldown@1.0.0-rc.9)(rollup@4.59.0)(terser@5.46.1)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))(yaml@2.8.2) '@unhead/vue': 2.1.12(vue@3.5.30(typescript@5.9.3)) '@vue/shared': 3.5.30 - c12: 3.3.3(magicast@0.5.2) + c12: 3.3.3(magicast@0.3.5) chokidar: 4.0.3 compatx: 0.2.0 consola: 3.4.2 @@ -32866,7 +32771,7 @@ snapshots: dependencies: citty: 0.2.1 pathe: 2.0.3 - tinyexec: 1.0.2 + tinyexec: 1.0.4 ob1@0.83.5: dependencies: @@ -33035,7 +32940,7 @@ snapshots: object-keys: 1.1.1 safe-push-apply: 1.0.0 - ox@0.14.0(typescript@5.9.3)(zod@4.3.6): + ox@0.14.5(typescript@5.9.3)(zod@4.3.6): dependencies: '@adraffy/ens-normalize': 1.11.1 '@noble/ciphers': 1.3.0 @@ -33221,7 +33126,7 @@ snapshots: p-queue@9.1.0: dependencies: - eventemitter3: 5.0.4 + eventemitter3: 5.0.1 p-timeout: 7.0.1 p-reduce@2.1.0: {} @@ -33365,7 +33270,7 @@ snapshots: path-scurry@2.0.2: dependencies: - lru-cache: 11.2.6 + lru-cache: 11.2.7 minipass: 7.1.3 path-to-regexp@0.1.12: {} @@ -33405,9 +33310,9 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.3 - permissionless@0.2.57(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)): + permissionless@0.2.57(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)): dependencies: - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) picocolors@1.1.1: {} @@ -33421,8 +33326,6 @@ snapshots: pify@3.0.0: {} - pify@4.0.1: {} - pify@5.0.0: {} pino-abstract-transport@0.5.0: @@ -33523,69 +33426,69 @@ snapshots: style-value-types: 5.0.0 tslib: 2.8.1 - porto@0.2.35(b56bdc6606f1758b7b087ff1c0afc5fd): + porto@0.2.35(4f38feece2a255680fc901b908c132b6): dependencies: - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.7 + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.8 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - immer - use-sync-external-store - porto@0.2.37(4dd7932f2eb85b1ba405d8aeacd4ca3f): + porto@0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0): dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.7 + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.8 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) + wagmi: 3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b) transitivePeerDependencies: - '@types/react' - immer - use-sync-external-store - optional: true - porto@0.2.37(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(@wagmi/core@3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)))(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(wagmi@3.5.0): + porto@0.2.37(cd0fa67041c4e78eefddc5257e15e507): dependencies: - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) - hono: 4.12.7 + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + hono: 4.12.8 idb-keyval: 6.2.2 mipd: 0.0.7(typescript@5.9.3) ox: 0.9.17(typescript@5.9.3)(zod@4.3.6) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) zod: 4.3.6 - zustand: 5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) + zustand: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)) optionalDependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) react: 19.2.4 react-native: 0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6) typescript: 5.9.3 - wagmi: 3.5.0(0195199fc2a29f18ddd61e55685d1e3b) + wagmi: 2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6) transitivePeerDependencies: - '@types/react' - immer - use-sync-external-store + optional: true poseidon-lite@0.2.1: {} @@ -34507,11 +34410,6 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@6.1.3: - dependencies: - glob: 13.0.6 - package-json-from-dist: 1.0.1 - ripemd160@2.0.3: dependencies: hash-base: 3.1.2 @@ -34635,7 +34533,7 @@ snapshots: safer-buffer@2.1.2: {} - sass-lookup@6.1.0: + sass-lookup@6.1.1: dependencies: commander: 12.1.0 enhanced-resolve: 5.20.0 @@ -34981,10 +34879,6 @@ snapshots: dependencies: atomic-sleep: 1.0.0 - sort-keys@2.0.0: - dependencies: - is-plain-obj: 1.1.0 - source-map-explorer@2.5.3: dependencies: btoa: 1.2.1 @@ -35045,7 +34939,7 @@ snapshots: sprintf-js@1.0.3: {} - srvx@0.11.9: {} + srvx@0.11.12: {} ssri@10.0.6: dependencies: @@ -35378,28 +35272,28 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@4.4.5(picomatch@4.0.3)(svelte@5.53.11)(typescript@5.9.3): + svelte-check@4.4.5(picomatch@4.0.3)(svelte@5.53.12)(typescript@5.9.3): dependencies: '@jridgewell/trace-mapping': 0.3.31 chokidar: 4.0.3 fdir: 6.5.0(picomatch@4.0.3) picocolors: 1.1.1 sade: 1.8.1 - svelte: 5.53.11 + svelte: 5.53.12 typescript: 5.9.3 transitivePeerDependencies: - picomatch - svelte-preprocess@6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.11)(typescript@5.9.3): + svelte-preprocess@6.0.3(@babel/core@7.29.0)(postcss-load-config@4.0.2(postcss@8.5.8))(postcss@8.5.8)(svelte@5.53.12)(typescript@5.9.3): dependencies: - svelte: 5.53.11 + svelte: 5.53.12 optionalDependencies: '@babel/core': 7.29.0 postcss: 8.5.8 postcss-load-config: 4.0.2(postcss@8.5.8) typescript: 5.9.3 - svelte@5.53.11: + svelte@5.53.12: dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -35486,14 +35380,12 @@ snapshots: - bare-abort-controller - react-native-b4a - temp-dir@1.0.0: {} - temp@0.9.4: dependencies: mkdirp: 0.5.6 rimraf: 2.6.3 - terser@5.46.0: + terser@5.46.1: dependencies: '@jridgewell/source-map': 0.3.11 acorn: 8.16.0 @@ -35555,7 +35447,7 @@ snapshots: tinycolor2@1.6.0: {} - tinyexec@1.0.2: {} + tinyexec@1.0.4: {} tinyglobby@0.2.12: dependencies: @@ -35682,8 +35574,6 @@ snapshots: type-fest@0.20.2: {} - type-fest@0.4.1: {} - type-fest@0.6.0: {} type-fest@0.7.1: {} @@ -35794,9 +35684,9 @@ snapshots: undici-types@7.18.2: {} - undici-types@7.24.0: {} + undici-types@7.24.4: {} - undici@6.24.0: {} + undici@6.24.1: {} unenv@2.0.0-rc.24: dependencies: @@ -35804,7 +35694,7 @@ snapshots: unhead@2.1.12: dependencies: - hookable: 6.0.1 + hookable: 6.1.0 unicorn-magic@0.3.0: {} @@ -35974,7 +35864,7 @@ snapshots: chokidar: 5.0.0 destr: 2.0.5 h3: 1.15.6 - lru-cache: 11.2.6 + lru-cache: 11.2.7 node-fetch-native: 1.6.7 ofetch: 1.5.1 ufo: 1.6.3 @@ -36186,7 +36076,7 @@ snapshots: - utf-8-validate - zod - viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6): + viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 @@ -36194,7 +36084,7 @@ snapshots: '@scure/bip39': 1.6.0 abitype: 1.2.3(typescript@5.9.3)(zod@4.3.6) isows: 1.0.7(ws@8.18.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)) - ox: 0.14.0(typescript@5.9.3)(zod@4.3.6) + ox: 0.14.5(typescript@5.9.3)(zod@4.3.6) ws: 8.18.3(bufferutil@4.1.0)(utf-8-validate@6.0.6) optionalDependencies: typescript: 5.9.3 @@ -36203,23 +36093,23 @@ snapshots: - utf-8-validate - zod - vite-dev-rpc@1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-dev-rpc@1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: birpc: 2.9.0 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) + vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) - vite-hot-client@2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-hot-client@2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) - vite-node@1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0): + vite-node@1.6.1(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.1): dependencies: cac: 6.7.14 debug: 4.4.3(supports-color@5.5.0) pathe: 1.1.2 picocolors: 1.1.1 - vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0) + vite: 5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.1) transitivePeerDependencies: - '@types/node' - less @@ -36231,13 +36121,13 @@ snapshots: - supports-color - terser - vite-node@3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): + vite-node@3.2.4(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2): dependencies: cac: 6.7.14 debug: 4.4.3(supports-color@5.5.0) es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - '@types/node' - jiti @@ -36252,7 +36142,7 @@ snapshots: - tsx - yaml - vite-plugin-checker@0.10.3(@biomejs/biome@2.4.6)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): + vite-plugin-checker@0.10.3(@biomejs/biome@2.4.7)(eslint@9.39.4(jiti@2.6.1))(meow@13.2.0)(optionator@0.9.4)(typescript@5.9.3)(vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2))(vue-tsc@3.2.5(typescript@5.9.3)): dependencies: '@babel/code-frame': 7.29.0 chokidar: 4.0.3 @@ -36262,10 +36152,10 @@ snapshots: strip-ansi: 7.2.0 tiny-invariant: 1.3.3 tinyglobby: 0.2.14 - vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2) + vite: 6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2) vscode-uri: 3.1.0 optionalDependencies: - '@biomejs/biome': 2.4.6 + '@biomejs/biome': 2.4.7 eslint: 9.39.4(jiti@2.6.1) meow: 13.2.0 optionator: 0.9.4 @@ -36277,7 +36167,7 @@ snapshots: dotenv: 8.2.0 dotenv-expand: 5.1.0 - vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-plugin-inspect@11.3.3(@nuxt/kit@3.21.2(magicast@0.3.5))(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: ansis: 4.2.0 debug: 4.4.3(supports-color@5.5.0) @@ -36287,61 +36177,61 @@ snapshots: perfect-debounce: 2.1.0 sirv: 3.0.2 unplugin-utils: 0.3.1 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) - vite-dev-rpc: 1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) + vite-dev-rpc: 1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) optionalDependencies: '@nuxt/kit': 3.21.2(magicast@0.3.5) transitivePeerDependencies: - supports-color - vite-plugin-mkcert@1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-plugin-mkcert@1.17.10(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: axios: 1.13.6(debug@4.4.3) debug: 4.4.3(supports-color@5.5.0) picocolors: 1.1.1 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - vite-plugin-node-polyfills@0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-plugin-node-polyfills@0.25.0(rollup@4.59.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.59.0) node-stdlib-browser: 1.3.1 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - rollup - vite-plugin-vue-tracer@1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)): + vite-plugin-vue-tracer@1.3.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)): dependencies: estree-walker: 3.0.3 exsolve: 1.0.8 magic-string: 0.30.21 pathe: 2.0.3 source-map-js: 1.2.1 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) vue: 3.5.30(typescript@5.9.3) - vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: debug: 4.4.3(supports-color@5.5.0) globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.9.3) - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - typescript - vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: debug: 4.4.3(supports-color@5.5.0) globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.9.3) - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) transitivePeerDependencies: - supports-color - typescript - vite@5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.0): + vite@5.4.21(@types/node@25.5.0)(lightningcss@1.32.0)(terser@5.46.1): dependencies: esbuild: 0.21.5 postcss: 8.5.8 @@ -36350,9 +36240,9 @@ snapshots: '@types/node': 25.5.0 fsevents: 2.3.3 lightningcss: 1.32.0 - terser: 5.46.0 + terser: 5.46.1 - vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): + vite@6.4.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -36365,10 +36255,10 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 lightningcss: 1.32.0 - terser: 5.46.0 + terser: 5.46.1 yaml: 2.8.2 - vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.0)(yaml@2.8.2): + vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.2): dependencies: esbuild: 0.27.4 fdir: 6.5.0(picomatch@4.0.3) @@ -36381,10 +36271,10 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 lightningcss: 1.32.0 - terser: 5.46.0 + terser: 5.46.1 yaml: 2.8.2 - vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2): + vite@8.0.0(@types/node@25.5.0)(esbuild@0.17.6)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2): dependencies: '@oxc-project/runtime': 0.115.0 lightningcss: 1.32.0 @@ -36397,10 +36287,10 @@ snapshots: esbuild: 0.17.6 fsevents: 2.3.3 jiti: 2.6.1 - terser: 5.46.0 + terser: 5.46.1 yaml: 2.8.2 - vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2): + vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2): dependencies: '@oxc-project/runtime': 0.115.0 lightningcss: 1.32.0 @@ -36413,17 +36303,17 @@ snapshots: esbuild: 0.27.4 fsevents: 2.3.3 jiti: 2.6.1 - terser: 5.46.0 + terser: 5.46.1 yaml: 2.8.2 - vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vitefu@1.1.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): optionalDependencies: - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) - vitest@4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)): + vitest@4.1.0(@types/node@25.5.0)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)): dependencies: '@vitest/expect': 4.1.0 - '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2)) + '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2)) '@vitest/pretty-format': 4.1.0 '@vitest/runner': 4.1.0 '@vitest/snapshot': 4.1.0 @@ -36437,10 +36327,10 @@ snapshots: picomatch: 4.0.3 std-env: 4.0.0 tinybench: 2.9.0 - tinyexec: 1.0.2 + tinyexec: 1.0.4 tinyglobby: 0.2.15 tinyrainbow: 3.1.0 - vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.0)(yaml@2.8.2) + vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(terser@5.46.1)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 25.5.0 @@ -36482,14 +36372,14 @@ snapshots: optionalDependencies: typescript: 5.9.3 - wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6): + wagmi@2.19.5(@react-native-async-storage/async-storage@3.0.1(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.21(react@19.2.4))(@types/react@19.2.14)(bufferutil@4.1.0)(db0@0.3.4)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(ioredis@5.10.0)(react-native@0.84.1(@babel/core@7.29.0)(@types/react@19.2.14)(bufferutil@4.1.0)(react@19.2.4)(utf-8-validate@6.0.6))(react@19.2.4)(typescript@5.9.3)(utf-8-validate@6.0.6)(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6))(zod@4.3.6): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) - '@wagmi/connectors': 6.2.0(9efce2373b19f58f3fe45ad1830a1d0e) - '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/connectors': 6.2.0(69f13268063ce835acc14538241afc8d) + '@wagmi/core': 2.22.1(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -36527,14 +36417,14 @@ snapshots: - utf-8-validate - zod - wagmi@3.5.0(0195199fc2a29f18ddd61e55685d1e3b): + wagmi@3.5.0(7dee36d3cde0b83b6a506576a2b4aa0b): dependencies: '@tanstack/react-query': 5.90.21(react@19.2.4) - '@wagmi/connectors': 7.2.1(7e0d03651353772277bb3afae8ed51ab) - '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.0(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) + '@wagmi/connectors': 7.2.1(f785ee48dbf63a20991d69b34e3094ca) + '@wagmi/core': 3.4.0(@tanstack/query-core@5.90.20)(@types/react@19.2.14)(ox@0.14.5(typescript@5.9.3)(zod@4.3.6))(react@19.2.4)(typescript@5.9.3)(use-sync-external-store@1.4.0(react@19.2.4))(viem@2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)) react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) - viem: 2.47.2(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) + viem: 2.47.4(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -36698,12 +36588,6 @@ snapshots: wrappy@1.0.2: {} - write-file-atomic@2.4.3: - dependencies: - graceful-fs: 4.2.11 - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 @@ -36719,21 +36603,6 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 4.1.0 - write-json-file@3.2.0: - dependencies: - detect-indent: 5.0.0 - graceful-fs: 4.2.11 - make-dir: 2.1.0 - pify: 4.0.1 - sort-keys: 2.0.0 - write-file-atomic: 2.4.3 - - write-pkg@4.0.0: - dependencies: - sort-keys: 2.0.0 - type-fest: 0.4.1 - write-json-file: 3.2.0 - ws@7.5.10(bufferutil@4.1.0)(utf-8-validate@6.0.6): optionalDependencies: bufferutil: 4.1.0 @@ -36881,7 +36750,7 @@ snapshots: react: 19.2.4 use-sync-external-store: 1.4.0(react@19.2.4) - zustand@5.0.11(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)): + zustand@5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.4.0(react@19.2.4)): optionalDependencies: '@types/react': 19.2.14 react: 19.2.4 From 0a5352d70fe834fe7c2f068a292f015acbd50284 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 14:23:25 +0100 Subject: [PATCH 06/11] docs(widget-embedded): update README to reflect new LI.FI Widget Light integration and features --- CLAUDE.md | 2 +- packages/widget-embedded/README.md | 469 +++++++++++++++++++++++++++-- 2 files changed, 450 insertions(+), 21 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 92ede0a6e..23a23bf59 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -85,7 +85,7 @@ QueryClient → Settings → WidgetConfig → I18n → Theme → SDK → Wallet ## Conventions - **ESM only** — all packages output to `dist/esm/`. No CJS. -- **Biome** for linting and formatting (not ESLint/Prettier). Single quotes, no semicolons, 2-space indent, trailing commas (ES5). +- **Biome** for linting and formatting (not ESLint/Prettier). Single quotes, no semicolons, 2-space indent, trailing commas (ES5). **Always run `pnpm check:write` after making changes** so Biome can auto-fix formatting. - **Conventional commits** enforced by commitlint (`feat:`, `fix:`, `chore:`, etc.). - **`console.log` is an error** — only `console.warn` and `console.error` are allowed (except in `examples/`). - **`useExhaustiveDependencies`** and **`useHookAtTopLevel`** are errors. diff --git a/packages/widget-embedded/README.md b/packages/widget-embedded/README.md index 51e546b23..9d3d69ee6 100644 --- a/packages/widget-embedded/README.md +++ b/packages/widget-embedded/README.md @@ -1,35 +1,464 @@ -# LI.FI Widget NFT Checkout +# LI.FI Widget Light — Integration Guide -The demo of the LI.FI Widget NFT Checkout based on the OpenSea API. +LI.FI Widget Light (`@lifi/widget-light`) lets you embed the full LI.FI cross-chain swap and bridge widget into your application via an iframe, while keeping wallet connections on your side. Your users sign transactions with their existing wallet — the widget never touches browser extensions or private keys directly. -### How to run? +## Features +- **Iframe isolation** — the widget runs in a sandboxed iframe; your page stays in full control +- **Multi-ecosystem support** — Ethereum (EVM), Solana, Bitcoin, and Sui out of the box +- **Your wallet, your UX** — transactions are signed by wallets you already manage (wagmi, wallet-standard, bigmi, dapp-kit) +- **Zero core dependencies** — `@lifi/widget-light` ships nothing beyond React as a peer dep; chain-specific handlers are tree-shakeable subpath imports +- **Reactive configuration** — update config at any time without reloading the iframe +- **Typed event system** — subscribe to route execution, wallet, and UI events with full TypeScript support + +## How It Works + +``` +┌─────────────────────────────────┐ ┌────────────────────────────────┐ +│ YOUR APPLICATION │ │ IFRAME (widget.li.fi) │ +│ │ │ │ +│ LiFiWidgetLight component │◄─────►│ Full LI.FI Widget │ +│ + Ecosystem handlers (wagmi…) │ post │ Receives config, sends RPC │ +│ + Event subscriptions │ Msg │ requests back to your wallets │ +└─────────────────────────────────┘ └────────────────────────────────┘ +``` + +1. Your app renders `` pointing at the hosted widget URL +2. The iframe sends a `READY` signal; your app responds with config + wallet state +3. When the widget needs a signature or chain switch, it sends an RPC request via `postMessage` +4. Your ecosystem handler (e.g. wagmi) executes the request and returns the result +5. Wallet state changes (account switch, network change) are pushed to the iframe automatically + +## Quick Start — EVM Only (wagmi) + +This is the minimal setup for EVM chains using wagmi. See [Full Multi-Ecosystem Setup](#full-multi-ecosystem-setup) for all chains. + +### 1. Install + +```bash +pnpm add @lifi/widget-light wagmi viem @wagmi/core @tanstack/react-query +``` + +### 2. Configure your wallet provider + +Set up wagmi as you normally would. Widget Light reads wallet state from your existing wagmi context. + +```tsx +// providers/WalletProvider.tsx +import type { FC, PropsWithChildren } from 'react' +import { createClient, http } from 'viem' +import { arbitrum, base, mainnet, optimism, polygon } from 'viem/chains' +import { createConfig, WagmiProvider } from 'wagmi' +import { injected } from 'wagmi/connectors' + +const config = createConfig({ + chains: [mainnet, arbitrum, optimism, base, polygon], + connectors: [injected()], + client({ chain }) { + return createClient({ chain, transport: http() }) + }, + multiInjectedProviderDiscovery: true, + ssr: false, +}) + +export const WalletProvider: FC = ({ children }) => ( + {children} +) +``` + +### 3. Set up the provider tree + +```tsx +// main.tsx +import { QueryClient, QueryClientProvider } from '@tanstack/react-query' +import React from 'react' +import ReactDOM from 'react-dom/client' +import { App } from './App' +import { WalletProvider } from './providers/WalletProvider' + +const queryClient = new QueryClient() + +ReactDOM.createRoot(document.getElementById('root')!).render( + + + + + + + +) +``` + +### 4. Render the widget + +```tsx +// App.tsx +import { LiFiWidgetLight } from '@lifi/widget-light' +import type { WidgetLightConfig } from '@lifi/widget-light' +import { useEthereumIframeHandler } from '@lifi/widget-light/ethereum' +import { useMemo } from 'react' + +const widgetConfig: WidgetLightConfig = { + integrator: 'your-project-name', // Required — identifies you in LI.FI analytics + variant: 'wide', // 'compact' | 'wide' | 'drawer' + theme: { + container: { + border: '1px solid rgb(234, 234, 234)', + borderRadius: '16px', + }, + }, + sdkConfig: { + routeOptions: { + maxPriceImpact: 0.4, + }, + }, +} + +export function App() { + const ethHandler = useEthereumIframeHandler() + const handlers = useMemo(() => [ethHandler], [ethHandler]) + + return ( + + ) +} +``` + +That's it. The widget renders inside an iframe and all EVM transactions are signed through your wagmi-managed wallet. + +## Full Multi-Ecosystem Setup + +To support Solana, Bitcoin, and Sui alongside EVM, install the additional handler peer dependencies and pass all handlers to the widget. + +### Install + +```bash +# Core +pnpm add @lifi/widget-light @tanstack/react-query + +# EVM +pnpm add wagmi viem @wagmi/core + +# Solana (optional) +pnpm add @wallet-standard/base + +# Bitcoin (optional) +pnpm add @bigmi/client @bigmi/react + +# Sui (optional) +pnpm add @mysten/dapp-kit-react +``` + +### Create handlers for each ecosystem + +```tsx +import { LiFiWidgetLight } from '@lifi/widget-light' +import { useEthereumIframeHandler } from '@lifi/widget-light/ethereum' +import { useSolanaIframeHandler } from '@lifi/widget-light/solana' +import { useBitcoinIframeHandler } from '@lifi/widget-light/bitcoin' +import { useSuiIframeHandler } from '@lifi/widget-light/sui' +import { useMemo, useCallback } from 'react' + +export function App() { + // EVM — reads wallet state from wagmi context automatically + const ethHandler = useEthereumIframeHandler() + + // Solana — pass wallet state explicitly (library-agnostic) + const solHandler = useSolanaIframeHandler({ + address: solanaAddress, // string | undefined + connected: solanaConnected, // boolean + wallet: solanaWallet, // Wallet from @wallet-standard/base + }) + + // Bitcoin — reads from @bigmi/react context automatically + const btcHandler = useBitcoinIframeHandler() + + // Sui — reads from @mysten/dapp-kit-react context automatically + const suiHandler = useSuiIframeHandler() + + const handlers = useMemo( + () => [ethHandler, solHandler, btcHandler, suiHandler], + [ethHandler, solHandler, btcHandler, suiHandler] + ) + + return ( + + ) +} +``` + +> Only include the handlers you need. If you only support EVM and Solana, pass `[ethHandler, solHandler]`. Unused ecosystem packages are fully tree-shaken. + +## Component Props + +| Prop | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `src` | `string` | No | `'https://widget.li.fi'` | URL of the hosted widget | +| `config` | `WidgetLightConfig` | Yes | — | JSON-serializable widget configuration | +| `handlers` | `IframeEcosystemHandler[]` | No | `[]` | Ecosystem handlers for wallet/RPC bridging | +| `iframeOrigin` | `string` | No | Derived from `src` | Restrict `postMessage` to this origin | +| `autoResize` | `boolean` | No | `true` | Automatically resize iframe height to fit content | +| `onConnect` | `(args?: ConnectWalletArgs) => void` | No | — | Called when the widget requests a wallet connection (external wallet management) | +| `style` | `CSSProperties` | No | — | Inline styles for the iframe element | +| `className` | `string` | No | — | CSS class for the iframe element | +| `title` | `string` | No | `'LI.FI Widget'` | Accessible title for the iframe | + +## Configuration + +`WidgetLightConfig` must be **JSON-serializable** — no React nodes, no callback functions, no MUI theme objects. + +### Required + +| Field | Type | Description | +|-------|------|-------------| +| `integrator` | `string` | Your project identifier for LI.FI analytics | + +### Common Options + +```ts +const config: WidgetLightConfig = { + integrator: 'your-project-name', + + // Layout + variant: 'wide', // 'compact' | 'wide' | 'drawer' + subvariant: 'default', // 'default' | 'split' | 'custom' | 'refuel' + appearance: 'light', // 'light' | 'dark' | 'system' + + // Pre-fill form + fromChain: 1, // Source chain ID + toChain: 42161, // Destination chain ID + fromToken: '0x...', // Source token address + toToken: '0x...', // Destination token address + fromAmount: '10', // Pre-filled amount + + // Theming (CSS properties only — no MUI) + theme: { + container: { + border: '1px solid #eaeaea', + borderRadius: '16px', + }, + }, + + // API and routing + apiKey: 'your-api-key', + fee: 0.03, // Integrator fee (0-1) + sdkConfig: { + routeOptions: { + maxPriceImpact: 0.4, + }, + }, + + // Filter chains, bridges, exchanges + chains: { + allow: [1, 137, 42161], // Only show these chains + }, + bridges: { + deny: ['stargate'], // Hide specific bridges + }, + + // UI controls + hiddenUI: ['appearance', 'language'], + disabledUI: ['toAddress'], + requiredUI: ['toAddress'], +} +``` + +### Reactive Config Updates + +Configuration is reactive. When you pass a new `config` object, the widget updates without reloading the iframe. + +```tsx +const [variant, setVariant] = useState<'wide' | 'compact'>('wide') + +const widgetConfig = useMemo( + () => ({ ...baseConfig, variant }), + [variant] +) + +// Changing `variant` state updates the widget in real-time + +``` + +## External Wallet Management + +If your app has its own wallet connection UI, pass `onConnect` to handle wallet connection requests from the widget. The widget will call your handler instead of opening its built-in wallet menu. + +```tsx +import type { ConnectWalletArgs } from '@lifi/widget-light' + +function App() { + const handleConnect = useCallback((args?: ConnectWalletArgs) => { + // Open your wallet modal/dialog + openYourWalletModal() + }, []) + + return ( + + ) +} ``` -pnpm dev + +## Events + +Subscribe to widget events from any component using the `useWidgetLightEvents` hook. No provider wrapping required — the event bus is a module-level singleton. + +```tsx +import { + useWidgetLightEvents, + WidgetLightEvent, + type WidgetLightRouteExecutionUpdate, +} from '@lifi/widget-light' +import { useEffect } from 'react' + +function TransactionTracker() { + const events = useWidgetLightEvents() + + useEffect(() => { + const onComplete = (data: WidgetLightRouteExecutionUpdate) => { + console.log('Route completed:', data) + } + events.on(WidgetLightEvent.RouteExecutionCompleted, onComplete) + return () => events.off(WidgetLightEvent.RouteExecutionCompleted, onComplete) + }, [events]) + + return null +} ``` -### How to test? +### Available Events + +| Event | Payload Type | Description | +|-------|-------------|-------------| +| `RouteExecutionStarted` | `WidgetLightRouteExecutionUpdate` | A route has started executing | +| `RouteExecutionUpdated` | `WidgetLightRouteExecutionUpdate` | Step progress update | +| `RouteExecutionCompleted` | `WidgetLightRouteExecutionUpdate` | Route completed successfully | +| `RouteExecutionFailed` | `WidgetLightRouteExecutionUpdate` | Route execution failed | +| `RouteSelected` | `WidgetLightRouteSelected` | User selected a route | +| `RouteHighValueLoss` | `WidgetLightRouteHighValueLoss` | High value loss detected | +| `SourceChainTokenSelected` | `WidgetLightChainTokenSelected` | Source token changed | +| `DestinationChainTokenSelected` | `WidgetLightChainTokenSelected` | Destination token changed | +| `FormFieldChanged` | `WidgetLightFormFieldChanged` | Any form field changed | +| `WalletConnected` | `WidgetLightWalletConnected` | Wallet connected | +| `WalletDisconnected` | `WidgetLightWalletDisconnected` | Wallet disconnected | +| `ReviewTransactionPageEntered` | — | User entered review page | +| `ContactSupport` | `WidgetLightContactSupport` | User clicked contact support | +| `AvailableRoutes` | — | Routes fetched and available | +| `PageEntered` | — | Page navigation | +| `WidgetExpanded` | — | Widget expanded (drawer variant) | +| `SendToWalletToggled` | — | Send-to-wallet toggle changed | +| `SettingUpdated` | `WidgetLightSettingUpdated` | User changed a setting | +| `ChainPinned` | `WidgetLightChainPinned` | Chain pinned/unpinned | +| `TokenSearch` | `WidgetLightTokenSearch` | User searched for a token | +| `LowAddressActivityConfirmed` | `WidgetLightLowAddressActivityConfirmed` | Low activity address confirmed | + +## Ecosystem Handler Reference + +Each handler implements the `IframeEcosystemHandler` interface and bridges RPC calls between the iframe and your wallet provider. + +### EVM — `useEthereumIframeHandler()` + +```tsx +import { useEthereumIframeHandler } from '@lifi/widget-light/ethereum' +``` + +- **Reads from:** wagmi context (`useConnection`, `useWalletClient`, `usePublicClient`, `useSwitchChain`) +- **Peer deps:** `wagmi`, `viem`, `@wagmi/core` +- **RPC methods handled:** `eth_accounts`, `eth_requestAccounts`, `eth_chainId`, `eth_sendTransaction`, `personal_sign`, `eth_signTypedData_v4`, `wallet_switchEthereumChain`, `wallet_addEthereumChain`, `wallet_sendCalls`, `wallet_getCallsStatus`, `wallet_getCapabilities`, and more +- **No parameters** — all state is read from wagmi hooks + +### Solana — `useSolanaIframeHandler(params)` + +```tsx +import { useSolanaIframeHandler } from '@lifi/widget-light/solana' +``` + +- **Peer deps:** `@wallet-standard/base` +- **Parameters:** + - `address: string | undefined` — connected wallet address + - `connected: boolean` — whether a wallet is connected + - `wallet: Wallet | undefined` — wallet-standard `Wallet` instance +- **RPC methods:** `getAccount`, `signTransaction`, `signMessage`, `signAndSendTransaction` +- **Library-agnostic** — works with any Solana wallet adapter that provides a wallet-standard `Wallet` + +### Bitcoin — `useBitcoinIframeHandler()` + +```tsx +import { useBitcoinIframeHandler } from '@lifi/widget-light/bitcoin' +``` + +- **Reads from:** `@bigmi/react` context (`useAccount`, `useConfig`) +- **Peer deps:** `@bigmi/client`, `@bigmi/react` +- **No parameters** + +### Sui — `useSuiIframeHandler()` + +```tsx +import { useSuiIframeHandler } from '@lifi/widget-light/sui' +``` + +- **Reads from:** `@mysten/dapp-kit-react` hooks +- **Peer deps:** `@mysten/dapp-kit-react` +- **RPC methods:** `getAccount`, `signTransaction`, `signPersonalMessage`, `signAndExecuteTransaction` +- **No parameters** + +## Security + +`iframeOrigin` is automatically derived from `src` (defaults to `https://widget.li.fi`), so `postMessage` communication is restricted to the correct origin out of the box. If you use a custom `src`, `iframeOrigin` will be derived from it automatically. You only need to set `iframeOrigin` explicitly if you want to override the derived value. + +## Examples + +Working examples are available in the repository: + +| Example | Description | Path | +|---------|-------------|------| +| **vite-iframe-wagmi** | Minimal EVM-only integration | `examples/vite-iframe-wagmi/` | +| **vite-iframe** | Full multi-ecosystem with events, config reactivity, and external wallet management | `examples/vite-iframe/` | + +Run an example locally: + +```bash +# From the repository root +pnpm install +pnpm --filter vite-iframe-wagmi dev +# or +pnpm --filter vite-iframe dev +``` + +## FAQ + +### What URL should I use for `src`? + +The default (`https://widget.li.fi`) is the production-hosted widget — you don't need to set `src` at all for most use cases. For testing against a specific version or self-hosted deployment, pass your custom URL as `src`. + +### Can I run multiple widgets on the same page? -1. Find an NFT on the [OpenSea](https://opensea.io/). Please make sure it has an active listing and the test wallet has enough tokens to buy it. While we will be able to pay with any token in the process, the OpenSea SDK checks for the token in which the NFT is listed to generate transaction data. -2. Let's say we found this NFT https://opensea.io/assets/base/0x9e81df5258908dbeef4f841d0ab3816b10850426/2578 -3. We need to replace the `opensea.io/assets` part with `localhost:3000` or `widget.li.fi`, depending on the testing environment, so the final URL should look like this -http://localhost:3000/base/0x9e81df5258908dbeef4f841d0ab3816b10850426/2578 or this https://widget.li.fi/base/0x9e81df5258908dbeef4f841d0ab3816b10850426/2578 -4. Open the URL and make sure the test wallet is switched to the chain the NFT is on so OpenSea SDK can generate transaction data. -5. Select any token on any chain and pay for NFT. +Currently, `@lifi/widget-light` uses a module-level singleton for the event bus and guest bridge. Only one `` instance per page is supported. -### Live Demo +### Why must config be JSON-serializable? -https://github.com/lifinance/widget/assets/18644653/af360181-3856-4276-b309-f923f476f40b +Configuration is sent to the iframe via `postMessage`, which uses the structured clone algorithm. React nodes, functions, class instances, and MUI theme objects cannot be cloned. Use the `WidgetLightConfig` type to ensure compatibility — the type system will catch non-serializable values at compile time. -#### Demo Transactions +### How does auto-resize work? -https://optimistic.etherscan.io/tx/0xa9f4e4304822cfe01808555b66e047761361c9e54b2387f93e23e9ffb92ba151 -https://polygonscan.com/tx/0x370682cbbc544e0ea258da774220b529a086c4b22941b924587cd2e0105579f6 +When `autoResize` is `true` (default), the iframe content uses a `ResizeObserver` to detect height changes and posts them to the host. The host directly mutates `iframe.style.height` for zero-flicker updates. Set `autoResize={false}` if you want to control iframe dimensions yourself via CSS. -### What does it look like? +### Do I need to handle reconnection after page refresh? - +Wallet state is sent from your app to the iframe on every mount via the `INIT` handshake. If your wagmi/wallet-adapter handles reconnection (which most do by default), the widget will automatically receive the reconnected state. -### Questions? +## Support -Please don't hesitate to open an issue or contact us if you have any questions. +- [LI.FI Widget Documentation](https://docs.li.fi/widget/overview) +- [GitHub Issues](https://github.com/lifinance/widget/issues) +- [Widget Playground](https://playground.li.fi) — interactively explore configuration options From fe7e5cab65f0c651fb314ecb70cf726df7ddeacf Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 14:23:58 +0100 Subject: [PATCH 07/11] refactor(widget-light): update iframe URL handling --- examples/vite-iframe-wagmi/src/App.tsx | 5 ----- examples/vite-iframe/src/App.tsx | 5 ++--- packages/widget-light/src/host/WidgetLight.tsx | 14 +++++++++----- packages/widget-light/src/host/constants.ts | 1 + packages/widget-light/src/index.ts | 1 + 5 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 packages/widget-light/src/host/constants.ts diff --git a/examples/vite-iframe-wagmi/src/App.tsx b/examples/vite-iframe-wagmi/src/App.tsx index 464ae8d29..b2a98eab3 100644 --- a/examples/vite-iframe-wagmi/src/App.tsx +++ b/examples/vite-iframe-wagmi/src/App.tsx @@ -4,9 +4,6 @@ import { useMemo } from 'react' import { WalletHeader } from './components/WalletHeader' import { widgetConfig } from './widgetConfig' -const WIDGET_URL = import.meta.env.VITE_WIDGET_URL || 'https://widget.li.fi' -const WIDGET_ORIGIN = new URL(WIDGET_URL).origin - export function HostApp() { const ethHandler = useEthereumIframeHandler() const handlers = useMemo(() => [ethHandler], [ethHandler]) @@ -17,10 +14,8 @@ export function HostApp() {
*/ export function WidgetLight({ - src, + src = DEFAULT_WIDGET_URL, config, handlers, - iframeOrigin, + iframeOrigin = new URL(src).origin, autoResize, onConnect, style, diff --git a/packages/widget-light/src/host/constants.ts b/packages/widget-light/src/host/constants.ts new file mode 100644 index 000000000..d88aa14c5 --- /dev/null +++ b/packages/widget-light/src/host/constants.ts @@ -0,0 +1 @@ +export const DEFAULT_WIDGET_URL = 'https://widget.li.fi' diff --git a/packages/widget-light/src/index.ts b/packages/widget-light/src/index.ts index 4e3f9db33..f79ad70e3 100644 --- a/packages/widget-light/src/index.ts +++ b/packages/widget-light/src/index.ts @@ -1,4 +1,5 @@ export { GuestBridge } from './guest/GuestBridge.js' +export { DEFAULT_WIDGET_URL } from './host/constants.js' export type { WidgetLightEventEmitter } from './host/useWidgetLightEvents.js' export { useWidgetLightEvents } from './host/useWidgetLightEvents.js' export type { UseWidgetLightHostOptions } from './host/useWidgetLightHost.js' From 3997f94a7e8c59780feff970dd4764072716c01e Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 14:30:47 +0100 Subject: [PATCH 08/11] docs: update CLAUDE.md with Biome import sorting and PR template details --- CLAUDE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 23a23bf59..45395ccb3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -86,6 +86,7 @@ QueryClient → Settings → WidgetConfig → I18n → Theme → SDK → Wallet - **ESM only** — all packages output to `dist/esm/`. No CJS. - **Biome** for linting and formatting (not ESLint/Prettier). Single quotes, no semicolons, 2-space indent, trailing commas (ES5). **Always run `pnpm check:write` after making changes** so Biome can auto-fix formatting. +- **Biome sorts imports** — running `pnpm check:write` may reorder import/export statements. This is expected. - **Conventional commits** enforced by commitlint (`feat:`, `fix:`, `chore:`, etc.). - **`console.log` is an error** — only `console.warn` and `console.error` are allowed (except in `examples/`). - **`useExhaustiveDependencies`** and **`useHookAtTopLevel`** are errors. @@ -93,6 +94,8 @@ QueryClient → Settings → WidgetConfig → I18n → Theme → SDK → Wallet - **widget-light must have zero `dependencies`** — all types are self-contained duplicates. Chain-specific integrations are optional peer deps exposed via subpath exports (`@lifi/widget-light/ethereum`, etc.). - Package entry points use TypeScript source (`src/index.ts`). The `scripts/formatPackageJson.js` rewrites paths to `dist/esm/` at publish time. - TypeScript target is ES2020, module resolution is Bundler. +- **PR template** at `.github/pull_request_template.md` — always use it when creating PRs via `gh pr create`. +- `packages/widget-embedded/README.md` — main integration guide for widget-light (not a typical package readme). ## Release From 9705d84eb5ede95f6dcff0ad1dc62f52a8b070e8 Mon Sep 17 00:00:00 2001 From: Eugene Chybisov Date: Mon, 16 Mar 2026 15:56:00 +0100 Subject: [PATCH 09/11] refactor(widget-embedded): update iframe autoResize behavior and improve configuration handling --- packages/widget-embedded/README.md | 2 +- .../src/providers/WidgetConfigProvider.tsx | 59 +++++++------ .../providers/iframe/BaseIframeProvider.ts | 12 ++- .../providers/iframe/BitcoinIframeProvider.ts | 4 +- .../iframe/BitcoinIframeProviderValues.tsx | 71 +++++++++------- .../iframe/EthereumIframeProvider.ts | 7 +- .../iframe/SolanaIframeProviderValues.tsx | 80 ++++++++++-------- .../iframe/SuiIframeProviderValues.tsx | 82 ++++++++++--------- .../widget-light/src/guest/GuestBridge.ts | 48 +++++++++-- .../bitcoin/useBitcoinIframeHandler.ts | 27 ++++-- .../ethereum/useEthereumIframeHandler.ts | 23 ++++-- .../handlers/solana/useSolanaIframeHandler.ts | 14 ++-- .../src/handlers/sui/useSuiIframeHandler.ts | 39 ++++++--- .../widget-light/src/host/WidgetLight.tsx | 11 ++- .../src/host/useWidgetLightHost.ts | 19 +++-- packages/widget-light/src/shared/protocol.ts | 2 + 16 files changed, 308 insertions(+), 192 deletions(-) diff --git a/packages/widget-embedded/README.md b/packages/widget-embedded/README.md index 9d3d69ee6..acd8db8d2 100644 --- a/packages/widget-embedded/README.md +++ b/packages/widget-embedded/README.md @@ -205,7 +205,7 @@ export function App() { | `config` | `WidgetLightConfig` | Yes | — | JSON-serializable widget configuration | | `handlers` | `IframeEcosystemHandler[]` | No | `[]` | Ecosystem handlers for wallet/RPC bridging | | `iframeOrigin` | `string` | No | Derived from `src` | Restrict `postMessage` to this origin | -| `autoResize` | `boolean` | No | `true` | Automatically resize iframe height to fit content | +| `autoResize` | `boolean` | No | `false` | When true, iframe height auto-adjusts to match content | | `onConnect` | `(args?: ConnectWalletArgs) => void` | No | — | Called when the widget requests a wallet connection (external wallet management) | | `style` | `CSSProperties` | No | — | Inline styles for the iframe element | | `className` | `string` | No | — | CSS class for the iframe element | diff --git a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx index 0702f019b..9d1ec2a91 100644 --- a/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx +++ b/packages/widget-embedded/src/providers/WidgetConfigProvider.tsx @@ -5,6 +5,7 @@ import { createContext, type FC, type PropsWithChildren, + useCallback, useContext, useEffect, useMemo, @@ -21,32 +22,6 @@ const WidgetConfigContext = createContext | null>(null) export const useEmbeddedWidgetConfig = () => useContext(WidgetConfigContext) -/** - * Converts the serializable WidgetLightConfig into a Partial, - * injecting `walletConfig.onConnect` when the host signals external wallet - * management via `useExternalWalletManagement`. - */ -function toWidgetConfig(cfg: WidgetLightConfig): Partial { - const base = cfg as unknown as Partial - if (!cfg.walletConfig?.useExternalWalletManagement) { - return base - } - const bridge = GuestBridge.getInstance() - return { - ...base, - walletConfig: { - ...base.walletConfig, - onConnect(args) { - bridge.sendConnectWalletRequest( - args - ? { chainId: args.chain?.id, chainType: args.chainType } - : undefined - ) - }, - }, - } -} - export const WidgetConfigProvider: FC = ({ children }) => { const [lightConfig, setLightConfig] = useState( () => { @@ -65,10 +40,34 @@ export const WidgetConfigProvider: FC = ({ children }) => { return bridge.onConfig(setLightConfig) }, []) - const config = useMemo( - () => (lightConfig ? toWidgetConfig(lightConfig) : null), - [lightConfig] - ) + // Stable reference so downstream consumers don't re-render on every + // CONFIG_UPDATE just because the onConnect closure was recreated. + const onConnect: WidgetConfig['walletConfig'] extends + | { onConnect?: infer F } + | undefined + ? F + : never = useCallback((args: any) => { + GuestBridge.getInstance().sendConnectWalletRequest( + args ? { chainId: args.chain?.id, chainType: args.chainType } : undefined + ) + }, []) + + const config = useMemo(() => { + if (!lightConfig) { + return null + } + const base = lightConfig as unknown as Partial + if (!lightConfig.walletConfig?.useExternalWalletManagement) { + return base + } + return { + ...base, + walletConfig: { + ...base.walletConfig, + onConnect, + }, + } + }, [lightConfig, onConnect]) const value = isInsideIframe ? config : EMBEDDED_DEFAULT_CONFIG diff --git a/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts index f42cff1ba..453c6e521 100644 --- a/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/BaseIframeProvider.ts @@ -23,6 +23,8 @@ export class BaseIframeProvider { protected _accounts: string[] = [] protected _connected = false protected _connector: IframeConnectorInfo = {} + protected _unsubInit?: () => void + protected _unsubEvent?: () => void get accounts(): string[] { return this._accounts @@ -46,7 +48,7 @@ export class BaseIframeProvider { } protected _registerBridgeCallbacks(): void { - this.bridge.onInit(this.chainType, (state) => { + this._unsubInit = this.bridge.onInit(this.chainType, (state) => { const s = state as { accounts: string[] connected: boolean @@ -64,7 +66,7 @@ export class BaseIframeProvider { } }) - this.bridge.onEvent(this.chainType, (event, data) => { + this._unsubEvent = this.bridge.onEvent(this.chainType, (event, data) => { if (event === 'accountsChanged') { this._accounts = data as string[] this._connected = this._accounts.length > 0 @@ -81,6 +83,12 @@ export class BaseIframeProvider { }) } + destroy(): void { + this._unsubInit?.() + this._unsubEvent?.() + this.removeAllListeners() + } + waitForInit(): Promise { return this.bridge.waitForInit() } diff --git a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts index d55a0e2f6..49722ab77 100644 --- a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProvider.ts @@ -22,7 +22,7 @@ export class BitcoinIframeProvider extends BaseIframeProvider { } protected override _registerBridgeCallbacks(): void { - this.bridge.onInit(this.chainType, (state) => { + this._unsubInit = this.bridge.onInit(this.chainType, (state) => { const s = state as { accounts: string[] connected: boolean @@ -42,7 +42,7 @@ export class BitcoinIframeProvider extends BaseIframeProvider { } }) - this.bridge.onEvent(this.chainType, (event, data) => { + this._unsubEvent = this.bridge.onEvent(this.chainType, (event, data) => { if (event === 'accountsChanged') { this._accounts = data as string[] this._connected = this._accounts.length > 0 diff --git a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx index ed26f4fc6..ffaf2f117 100644 --- a/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/BitcoinIframeProviderValues.tsx @@ -70,31 +70,37 @@ export const BitcoinIframeProviderValues: FC = ({ provider.removeListener('accountsChanged', onAccountsChanged) provider.removeListener('connect', onConnect) provider.removeListener('disconnect', onDisconnect) + provider.destroy() } }, [provider]) const address = walletState.accounts[0] ?? null const isConnected = walletState.connected && !!address + const connectorName = walletState.connector.name + const connectorIcon = walletState.connector.icon - const account = { - address: address ?? undefined, - addresses: address ? [address] : [], - chainType: ChainType.UTXO, - chainId: ChainId.BTC, - connector: isConnected - ? { - name: walletState.connector.name ?? 'Bitcoin Wallet', - icon: walletState.connector.icon, - } - : undefined, - isConnected, - isConnecting: false, - isReconnecting: false, - isDisconnected: !isConnected, - status: (isConnected ? 'connected' : 'disconnected') as - | 'connected' - | 'disconnected', - } + const account = useMemo( + () => ({ + address: address ?? undefined, + addresses: address ? [address] : [], + chainType: ChainType.UTXO, + chainId: ChainId.BTC, + connector: isConnected + ? { + name: connectorName ?? 'Bitcoin Wallet', + icon: connectorIcon, + } + : undefined, + isConnected, + isConnecting: false, + isReconnecting: false, + isDisconnected: !isConnected, + status: (isConnected ? 'connected' : 'disconnected') as + | 'connected' + | 'disconnected', + }), + [address, isConnected, connectorName, connectorIcon] + ) const sdkProvider = useMemo( () => @@ -111,19 +117,22 @@ export const BitcoinIframeProviderValues: FC = ({ [provider] ) + const contextValue = useMemo( + () => ({ + isEnabled: true, + account, + sdkProvider, + installedWallets: [] as [], + isConnected, + isExternalContext: true, + connect: async () => {}, + disconnect: async () => {}, + }), + [account, sdkProvider, isConnected] + ) + return ( - {}, - disconnect: async () => {}, - }} - > + {children} ) diff --git a/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts b/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts index 248e446ff..8b14f25bf 100644 --- a/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts +++ b/packages/widget-embedded/src/providers/iframe/EthereumIframeProvider.ts @@ -25,7 +25,7 @@ export class EthereumIframeProvider extends BaseIframeProvider { } protected override _registerBridgeCallbacks(): void { - this.bridge.onInit('EVM', (state) => { + this._unsubInit = this.bridge.onInit('EVM', (state) => { const s = state as { accounts: string[] chainId: number @@ -44,7 +44,7 @@ export class EthereumIframeProvider extends BaseIframeProvider { this.emit('accountsChanged', this._accounts) }) - this.bridge.onEvent('EVM', (event, data) => { + this._unsubEvent = this.bridge.onEvent('EVM', (event, data) => { if (event === 'accountsChanged') { this._accounts = data as string[] this._connected = this._accounts.length > 0 @@ -56,6 +56,9 @@ export class EthereumIframeProvider extends BaseIframeProvider { } } else if (event === 'chainChanged') { this._chainIdHex = data as `0x${string}` + } else if (event === 'disconnect') { + this._accounts = [] + this._connected = false } this.emit(event, data) }) diff --git a/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx index 9e45de9da..4a0a9937f 100644 --- a/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/SolanaIframeProviderValues.tsx @@ -70,35 +70,42 @@ export const SolanaIframeProviderValues: FC = ({ provider.removeListener('accountsChanged', onAccountsChanged) provider.removeListener('connect', onConnect) provider.removeListener('disconnect', onDisconnect) + provider.destroy() } }, [provider]) const address = walletState.accounts[0] ?? null const isConnected = walletState.connected && !!address + const connectorName = walletState.connector.name + const connectorIcon = walletState.connector.icon - const account = isConnected - ? { - address, - chainId: ChainId.SOL, - chainType: ChainType.SVM, - connector: { - name: walletState.connector.name ?? 'Solana Wallet', - icon: walletState.connector.icon, - }, - isConnected: true as const, - isConnecting: false, - isReconnecting: false, - isDisconnected: false, - status: 'connected' as const, - } - : { - chainType: ChainType.SVM, - isConnected: false as const, - isConnecting: false, - isReconnecting: false, - isDisconnected: true, - status: 'disconnected' as const, - } + const account = useMemo( + () => + isConnected + ? { + address, + chainId: ChainId.SOL, + chainType: ChainType.SVM, + connector: { + name: connectorName ?? 'Solana Wallet', + icon: connectorIcon, + }, + isConnected: true as const, + isConnecting: false, + isReconnecting: false, + isDisconnected: false, + status: 'connected' as const, + } + : { + chainType: ChainType.SVM, + isConnected: false as const, + isConnecting: false, + isReconnecting: false, + isDisconnected: true, + status: 'disconnected' as const, + }, + [address, isConnected, connectorName, connectorIcon] + ) const sdkProvider = useMemo( () => @@ -113,19 +120,22 @@ export const SolanaIframeProviderValues: FC = ({ [provider] ) + const contextValue = useMemo( + () => ({ + isEnabled: true, + account, + sdkProvider, + installedWallets: [] as [], + isConnected, + isExternalContext: true, + connect: async () => {}, + disconnect: async () => {}, + }), + [account, sdkProvider, isConnected] + ) + return ( - {}, - disconnect: async () => {}, - }} - > + {children} ) diff --git a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx index a9dbca7aa..7b546157f 100644 --- a/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx +++ b/packages/widget-embedded/src/providers/iframe/SuiIframeProviderValues.tsx @@ -72,35 +72,42 @@ export const SuiIframeProviderValues: FC = ({ provider.removeListener('accountsChanged', onAccountsChanged) provider.removeListener('connect', onConnect) provider.removeListener('disconnect', onDisconnect) + provider.destroy() } }, [provider]) const address = walletState.accounts[0] ?? null const isConnected = walletState.connected && !!address + const connectorName = walletState.connector.name + const connectorIcon = walletState.connector.icon - const account = isConnected - ? { - address, - chainId: ChainId.SUI, - chainType: ChainType.MVM, - connector: { - name: walletState.connector.name ?? 'Sui Wallet', - icon: walletState.connector.icon, - }, - isConnected: true as const, - isConnecting: false, - isReconnecting: false, - isDisconnected: false, - status: 'connected' as const, - } - : { - chainType: ChainType.MVM, - isConnected: false as const, - isConnecting: false, - isReconnecting: false, - isDisconnected: true, - status: 'disconnected' as const, - } + const account = useMemo( + () => + isConnected + ? { + address, + chainId: ChainId.SUI, + chainType: ChainType.MVM, + connector: { + name: connectorName ?? 'Sui Wallet', + icon: connectorIcon, + }, + isConnected: true as const, + isConnecting: false, + isReconnecting: false, + isDisconnected: false, + status: 'connected' as const, + } + : { + chainType: ChainType.MVM, + isConnected: false as const, + isConnecting: false, + isReconnecting: false, + isDisconnected: true, + status: 'disconnected' as const, + }, + [address, isConnected, connectorName, connectorIcon] + ) const sdkProvider = useMemo( () => @@ -115,20 +122,21 @@ export const SuiIframeProviderValues: FC = ({ [address, provider] ) + const contextValue = useMemo( + () => ({ + isEnabled: true, + account, + sdkProvider, + installedWallets: [] as [], + isConnected, + isExternalContext: true, + connect: async () => {}, + disconnect: async () => {}, + }), + [account, sdkProvider, isConnected] + ) + return ( - {}, - disconnect: async () => {}, - }} - > - {children} - + {children} ) } diff --git a/packages/widget-light/src/guest/GuestBridge.ts b/packages/widget-light/src/guest/GuestBridge.ts index 20b4f9653..08e23e447 100644 --- a/packages/widget-light/src/guest/GuestBridge.ts +++ b/packages/widget-light/src/guest/GuestBridge.ts @@ -63,6 +63,9 @@ export class GuestBridge { private _config: WidgetLightConfig | null = null private _ecosystems: EcosystemInitState[] = [] private trustedOrigin = '*' + private _resizeObserver: ResizeObserver | null = null + private _retryInterval: ReturnType | null = null + private _retryTimeout: ReturnType | null = null get config(): WidgetLightConfig | null { return this._config @@ -203,6 +206,23 @@ export class GuestBridge { } } + /** + * Tear down the bridge: remove the message listener, disconnect the + * ResizeObserver, clear retry timers, and reset the singleton. + */ + destroy(): void { + window.removeEventListener('message', this.handleMessage) + this.clearRetryTimers() + this._resizeObserver?.disconnect() + this._resizeObserver = null + this.pendingRequests.clear() + this.initCallbacks.clear() + this.eventCallbacks.clear() + this.configCallbacks.clear() + this.subscriptionCallbacks.clear() + GuestBridge.instance = null + } + /** Returns the set of event names the host is currently subscribed to. */ getSubscribedEvents(): ReadonlySet { return this.subscribedEvents @@ -248,15 +268,26 @@ export class GuestBridge { sendReady() - const interval = setInterval(() => { + this._retryInterval = setInterval(() => { if (this._config !== null) { - clearInterval(interval) + this.clearRetryTimers() return } sendReady() }, 250) - setTimeout(() => clearInterval(interval), 30_000) + this._retryTimeout = setTimeout(() => this.clearRetryTimers(), 30_000) + } + + private clearRetryTimers(): void { + if (this._retryInterval) { + clearInterval(this._retryInterval) + this._retryInterval = null + } + if (this._retryTimeout) { + clearTimeout(this._retryTimeout) + this._retryTimeout = null + } } private readonly handleMessage = (event: MessageEvent): void => { @@ -317,8 +348,11 @@ export class GuestBridge { this._config = msg.config this._ecosystems = msg.ecosystems ?? [] + this.clearRetryTimers() this.initResolve() - this.startResizeReporting() + if (msg.autoResize) { + this.startResizeReporting() + } for (const configCb of this.configCallbacks) { configCb(this._config) @@ -368,7 +402,7 @@ export class GuestBridge { } private startResizeReporting(): void { - if (typeof ResizeObserver === 'undefined') { + if (typeof ResizeObserver === 'undefined' || this._resizeObserver) { return } @@ -386,12 +420,12 @@ export class GuestBridge { } } - const ro = new ResizeObserver(() => { + this._resizeObserver = new ResizeObserver(() => { cancelAnimationFrame(rafId) rafId = requestAnimationFrame(report) }) - ro.observe(document.body) + this._resizeObserver.observe(document.body) report() } } diff --git a/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts b/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts index 350d4e733..f04db5b28 100644 --- a/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts +++ b/packages/widget-light/src/handlers/bitcoin/useBitcoinIframeHandler.ts @@ -23,23 +23,24 @@ export function useBitcoinIframeHandler(): IframeEcosystemHandler { const address = currentWallet.account?.address const publicKey = currentWallet.account?.publicKey const isConnected = currentWallet.isConnected - const connectorInfo = currentWallet.connector - ? { name: currentWallet.connector.name, icon: currentWallet.connector.icon } - : undefined + const connectorName = currentWallet.connector?.name + const connectorIcon = currentWallet.connector?.icon const stateRef = useRef({ address, publicKey, isConnected, bigmiConfig, - connectorInfo, + connectorName, + connectorIcon, }) stateRef.current = { address, publicKey, isConnected, bigmiConfig, - connectorInfo, + connectorName, + connectorIcon, } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -50,21 +51,29 @@ export function useBitcoinIframeHandler(): IframeEcosystemHandler { useEffect(() => { if (isConnected && address) { - emitRef.current?.('connect', { address, connector: connectorInfo }) + emitRef.current?.('connect', { + address, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, + }) } else { emitRef.current?.('disconnect', {}) } - }, [isConnected, address, connectorInfo]) + }, [isConnected, address, connectorName, connectorIcon]) const getInitState = useCallback(() => { - const { address, publicKey, isConnected, connectorInfo } = stateRef.current + const { address, publicKey, isConnected, connectorName, connectorIcon } = + stateRef.current return { chainType: 'UTXO' as const, state: { accounts: address ? [address] : [], connected: isConnected, publicKey: publicKey ?? null, - connector: connectorInfo, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, }, } }, []) diff --git a/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts b/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts index ce79adc4c..30f119089 100644 --- a/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts +++ b/packages/widget-light/src/handlers/ethereum/useEthereumIframeHandler.ts @@ -20,23 +20,24 @@ export function useEthereumIframeHandler(): IframeEcosystemHandler { const publicClient = usePublicClient() const { mutateAsync: switchChainAsync } = useSwitchChain() - const connectorInfo = connector - ? { name: connector.name, icon: connector.icon } - : undefined + const connectorName = connector?.name + const connectorIcon = connector?.icon const stateRef = useRef({ address, chainId, walletClient, publicClient, - connectorInfo, + connectorName, + connectorIcon, }) stateRef.current = { address, chainId, walletClient, publicClient, - connectorInfo, + connectorName, + connectorIcon, } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -53,18 +54,22 @@ export function useEthereumIframeHandler(): IframeEcosystemHandler { emitRef.current?.('chainChanged', hexChainId) emitRef.current?.('connect', { chainId: hexChainId, - connector: connectorInfo, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, }) - }, [chainId, connectorInfo]) + }, [chainId, connectorName, connectorIcon]) const getInitState = useCallback(() => { - const { address, chainId, connectorInfo } = stateRef.current + const { address, chainId, connectorName, connectorIcon } = stateRef.current return { chainType: 'EVM' as const, state: { accounts: address ? [address] : [], chainId: chainId ?? 1, - connector: connectorInfo, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, }, } }, []) diff --git a/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts b/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts index 21655d6ee..79dc8dc25 100644 --- a/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts +++ b/packages/widget-light/src/handlers/solana/useSolanaIframeHandler.ts @@ -47,9 +47,8 @@ export function useSolanaIframeHandler( const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) - const connectorInfo = wallet - ? { name: wallet.name, icon: wallet.icon } - : undefined + const connectorName = wallet?.name + const connectorIcon = wallet?.icon useEffect(() => { emitRef.current?.('accountsChanged', address ? [address] : []) @@ -57,11 +56,16 @@ export function useSolanaIframeHandler( useEffect(() => { if (connected && address) { - emitRef.current?.('connect', { address, connector: connectorInfo }) + emitRef.current?.('connect', { + address, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, + }) } else { emitRef.current?.('disconnect', {}) } - }, [connected, address, connectorInfo]) + }, [connected, address, connectorName, connectorIcon]) const getInitState = useCallback(() => { const { address, connected, wallet } = stateRef.current diff --git a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts index a784f28d0..023774890 100644 --- a/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts +++ b/packages/widget-light/src/handlers/sui/useSuiIframeHandler.ts @@ -30,12 +30,23 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { const address = currentWallet?.accounts?.[0]?.address const isConnected = connectionStatus === 'connected' - const connectorInfo = currentWallet - ? { name: currentWallet.name, icon: currentWallet.icon } - : undefined - - const stateRef = useRef({ address, isConnected, dAppKit, connectorInfo }) - stateRef.current = { address, isConnected, dAppKit, connectorInfo } + const connectorName = currentWallet?.name + const connectorIcon = currentWallet?.icon + + const stateRef = useRef({ + address, + isConnected, + dAppKit, + connectorName, + connectorIcon, + }) + stateRef.current = { + address, + isConnected, + dAppKit, + connectorName, + connectorIcon, + } const emitRef = useRef<((event: string, data: unknown) => void) | null>(null) @@ -45,20 +56,28 @@ export function useSuiIframeHandler(): IframeEcosystemHandler { useEffect(() => { if (isConnected && address) { - emitRef.current?.('connect', { address, connector: connectorInfo }) + emitRef.current?.('connect', { + address, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, + }) } else { emitRef.current?.('disconnect', {}) } - }, [isConnected, address, connectorInfo]) + }, [isConnected, address, connectorName, connectorIcon]) const getInitState = useCallback(() => { - const { address, isConnected, connectorInfo } = stateRef.current + const { address, isConnected, connectorName, connectorIcon } = + stateRef.current return { chainType: 'MVM' as const, state: { accounts: address ? [address] : [], connected: isConnected, - connector: connectorInfo, + connector: connectorName + ? { name: connectorName, icon: connectorIcon } + : undefined, }, } }, []) diff --git a/packages/widget-light/src/host/WidgetLight.tsx b/packages/widget-light/src/host/WidgetLight.tsx index 2c7db51d2..86355ff60 100644 --- a/packages/widget-light/src/host/WidgetLight.tsx +++ b/packages/widget-light/src/host/WidgetLight.tsx @@ -29,9 +29,9 @@ export interface WidgetLightProps { */ iframeOrigin?: string /** - * When true (default), the iframe height auto-adjusts to match the guest - * content via RESIZE messages. Set to false for fluid layouts where the - * iframe should fill its parent and scroll internally. + * When true, the iframe height auto-adjusts to match the guest content + * via RESIZE messages. Defaults to false (the iframe fills its parent + * and scrolls internally). */ autoResize?: boolean /** @@ -62,7 +62,10 @@ export function WidgetLight({ src = DEFAULT_WIDGET_URL, config, handlers, - iframeOrigin = new URL(src).origin, + iframeOrigin = new URL( + src, + typeof window !== 'undefined' ? window.location.origin : undefined + ).origin, autoResize, onConnect, style, diff --git a/packages/widget-light/src/host/useWidgetLightHost.ts b/packages/widget-light/src/host/useWidgetLightHost.ts index ce7759db1..9806a0844 100644 --- a/packages/widget-light/src/host/useWidgetLightHost.ts +++ b/packages/widget-light/src/host/useWidgetLightHost.ts @@ -27,10 +27,10 @@ export interface UseWidgetLightHostOptions { */ iframeOrigin?: string /** - * When true (default), the hook listens for RESIZE messages from the guest + * When true, the hook listens for RESIZE messages from the guest * and updates the iframe element's height directly via the DOM ref. - * No React state is involved — the DOM mutation is synchronous and does not - * trigger a re-render of the host tree. + * Defaults to false — set to true when the iframe should grow to match + * its content height instead of scrolling internally. */ autoResize?: boolean /** @@ -63,17 +63,19 @@ export interface UseWidgetLightHostOptions { * return