diff --git a/packages/wallet-management/package.json b/packages/wallet-management/package.json
index 9cbbaf389..c33491e96 100644
--- a/packages/wallet-management/package.json
+++ b/packages/wallet-management/package.json
@@ -41,7 +41,10 @@
"ENS",
"web3",
"blockchain",
- "lifi"
+ "lifi",
+ "tron",
+ "solana",
+ "bitcoin"
],
"dependencies": {
"@emotion/react": "^11.14.0",
diff --git a/packages/wallet-management/src/components/TronListItemButton.tsx b/packages/wallet-management/src/components/TronListItemButton.tsx
new file mode 100644
index 000000000..0e86fb27c
--- /dev/null
+++ b/packages/wallet-management/src/components/TronListItemButton.tsx
@@ -0,0 +1,68 @@
+import { ChainId, ChainType } from '@lifi/sdk'
+import { useTronContext } from '@lifi/widget-provider'
+import { useLastConnectedAccount } from '../hooks/useAccount.js'
+import { useWalletManagementEvents } from '../hooks/useWalletManagementEvents.js'
+import { getChainTypeIcon } from '../icons.js'
+import { WalletManagementEvent } from '../types/events.js'
+import { WalletTagType } from '../types/walletTagType.js'
+import { CardListItemButton } from './CardListItemButton.js'
+import type { WalletListItemButtonProps } from './types.js'
+
+export const TronListItemButton = ({
+ ecosystemSelection,
+ connector,
+ tagType,
+ onConnected,
+ onConnecting,
+ onError,
+}: WalletListItemButtonProps) => {
+ const emitter = useWalletManagementEvents()
+ const { connect, disconnect, isConnected } = useTronContext()
+ const connectorDisplayName = ecosystemSelection ? 'Tron' : connector.name
+ const { setLastConnectedAccount } = useLastConnectedAccount()
+
+ const connectWallet = async () => {
+ if (tagType === WalletTagType.Connected) {
+ onConnected?.()
+ return
+ }
+
+ try {
+ onConnecting?.()
+ if (isConnected) {
+ await disconnect()
+ }
+ await connect(connector.id ?? connector.name, (address: string) => {
+ setLastConnectedAccount(connector)
+ emitter.emit(WalletManagementEvent.WalletConnected, {
+ address: address,
+ chainId: ChainId.TRN,
+ chainType: ChainType.TVM,
+ connectorId: connector.id ?? connector.name,
+ connectorName: connector.name,
+ })
+ onConnected?.()
+ })
+ } catch (error) {
+ onError?.(error)
+ }
+ }
+
+ return (
+
+ )
+}
diff --git a/packages/wallet-management/src/components/WalletMenuContent.tsx b/packages/wallet-management/src/components/WalletMenuContent.tsx
index 4bf79bc1c..d64069509 100644
--- a/packages/wallet-management/src/components/WalletMenuContent.tsx
+++ b/packages/wallet-management/src/components/WalletMenuContent.tsx
@@ -28,6 +28,7 @@ import { CardListItemButton } from './CardListItemButton.js'
import { EthereumListItemButton } from './EthereumListItemButton.js'
import { SolanaListItemButton } from './SolanaListItemButton.js'
import { SuiListItemButton } from './SuiListItemButton.js'
+import { TronListItemButton } from './TronListItemButton.js'
import type { WalletListItemButtonProps } from './types.js'
import { WalletInfoDisplay } from './WalletInfoDisplay.js'
import { WalletMenuContentEmpty } from './WalletMenuContentEmpty.js'
@@ -180,6 +181,9 @@ export const WalletMenuContent: React.FC = ({
case ChainType.MVM:
ListItemButtonComponent = SuiListItemButton
break
+ case ChainType.TVM:
+ ListItemButtonComponent = TronListItemButton
+ break
}
return ListItemButtonComponent ? (
diff --git a/packages/wallet-management/src/hooks/useAccount.ts b/packages/wallet-management/src/hooks/useAccount.ts
index ae5801202..1186b391b 100644
--- a/packages/wallet-management/src/hooks/useAccount.ts
+++ b/packages/wallet-management/src/hooks/useAccount.ts
@@ -5,6 +5,7 @@ import {
useEthereumContext,
useSolanaContext,
useSuiContext,
+ useTronContext,
type WalletConnector,
} from '@lifi/widget-provider'
import { useMemo } from 'react'
@@ -53,6 +54,7 @@ export const useAccount = (args?: UseAccountArgs): AccountResult => {
const { account: bitcoinAccount } = useBitcoinContext()
const { account: solanaAccount } = useSolanaContext()
const { account: suiAccount } = useSuiContext()
+ const { account: tronAccount } = useTronContext()
const { lastConnectedAccount } = useLastConnectedAccount()
// biome-ignore lint/correctness/useExhaustiveDependencies: run only when wallet changes
@@ -62,6 +64,7 @@ export const useAccount = (args?: UseAccountArgs): AccountResult => {
solanaAccount,
bitcoinAccount,
suiAccount,
+ tronAccount,
].filter(Boolean) as Account[]
const connectedAccounts = accounts.filter(
(account) => account.isConnected && account.address
@@ -110,6 +113,8 @@ export const useAccount = (args?: UseAccountArgs): AccountResult => {
bitcoinAccount?.chainId,
suiAccount?.address,
suiAccount?.status,
+ tronAccount?.address,
+ tronAccount?.status,
args?.chainType,
lastConnectedAccount,
])
diff --git a/packages/wallet-management/src/hooks/useAccountDisconnect.ts b/packages/wallet-management/src/hooks/useAccountDisconnect.ts
index 0eef13e21..5e4ac8591 100644
--- a/packages/wallet-management/src/hooks/useAccountDisconnect.ts
+++ b/packages/wallet-management/src/hooks/useAccountDisconnect.ts
@@ -5,6 +5,7 @@ import {
useEthereumContext,
useSolanaContext,
useSuiContext,
+ useTronContext,
type WalletConnector,
} from '@lifi/widget-provider'
import {
@@ -18,6 +19,7 @@ export const useAccountDisconnect = () => {
const { disconnect: bitcoinDisconnect } = useBitcoinContext()
const { disconnect: solanaDisconnect } = useSolanaContext()
const { disconnect: suiDisconnect } = useSuiContext()
+ const { disconnect: tronDisconnect } = useTronContext()
const emitter = useWalletManagementEvents()
return async (account: Account) => {
@@ -41,6 +43,9 @@ export const useAccountDisconnect = () => {
case ChainType.MVM:
await suiDisconnect()
break
+ case ChainType.TVM:
+ await tronDisconnect()
+ break
}
emitter.emit(WalletManagementEvent.WalletDisconnected, walletDisconnected)
}
diff --git a/packages/wallet-management/src/hooks/useCombinedWallets.ts b/packages/wallet-management/src/hooks/useCombinedWallets.ts
index b509239a4..225b14f1a 100644
--- a/packages/wallet-management/src/hooks/useCombinedWallets.ts
+++ b/packages/wallet-management/src/hooks/useCombinedWallets.ts
@@ -4,6 +4,7 @@ import {
useEthereumContext,
useSolanaContext,
useSuiContext,
+ useTronContext,
type WalletConnector,
} from '@lifi/widget-provider'
import { useMemo } from 'react'
@@ -30,6 +31,7 @@ const combineWalletLists = (
bitcoinConnectorList: WalletConnector[],
solanaWalletList: WalletConnector[],
suiWalletList: WalletConnector[],
+ tronWalletList: WalletConnector[],
walletEcosystemsOrder?: Record
): CombinedWallet[] => {
const walletMap = new Map()
@@ -87,6 +89,18 @@ const combineWalletLists = (
walletMap.set(normalizedName, existing)
})
+ tronWalletList.forEach((tron) => {
+ const normalizedName = normalizeName(tron.name)
+ const existing = walletMap.get(normalizedName) || {
+ id: tron.name,
+ name: tron.name,
+ icon: tron.icon,
+ connectors: [] as CombinedWalletConnector[],
+ }
+ existing.connectors.push({ connector: tron, chainType: ChainType.TVM })
+ walletMap.set(normalizedName, existing)
+ })
+
let combinedWallets = Array.from(walletMap.values())
if (walletEcosystemsOrder) {
combinedWallets = combinedWallets.map((wallet) => {
@@ -113,6 +127,7 @@ export const useCombinedWallets = () => {
const { installedWallets: installedBitcoinWallets } = useBitcoinContext()
const { installedWallets: installedSolanaWallets } = useSolanaContext()
const { installedWallets: installedSuiWallets } = useSuiContext()
+ const { installedWallets: installedTronWallets } = useTronContext()
const combinedWallets = useMemo(() => {
const includeEcosystem = (chainType: ChainType) =>
@@ -124,6 +139,7 @@ export const useCombinedWallets = () => {
includeEcosystem(ChainType.UTXO) ? installedBitcoinWallets : [],
includeEcosystem(ChainType.SVM) ? installedSolanaWallets : [],
includeEcosystem(ChainType.MVM) ? installedSuiWallets : [],
+ includeEcosystem(ChainType.TVM) ? installedTronWallets : [],
walletConfig.walletEcosystemsOrder
)
@@ -135,6 +151,7 @@ export const useCombinedWallets = () => {
installedBitcoinWallets,
installedSolanaWallets,
installedSuiWallets,
+ installedTronWallets,
walletConfig,
])
diff --git a/packages/widget-playground-next/src/app/AppProvider.tsx b/packages/widget-playground-next/src/app/AppProvider.tsx
index df86de80d..c33e326d7 100644
--- a/packages/widget-playground-next/src/app/AppProvider.tsx
+++ b/packages/widget-playground-next/src/app/AppProvider.tsx
@@ -21,6 +21,7 @@ export const AppProvider = ({ children }: PropsWithChildren) => {
return (
diff --git a/packages/widget-playground-vite/.env b/packages/widget-playground-vite/.env
index 6c9440662..a6008741d 100644
--- a/packages/widget-playground-vite/.env
+++ b/packages/widget-playground-vite/.env
@@ -1,2 +1,3 @@
VITE_EVM_WALLET_CONNECT=5432e3507d41270bee46b7b85bbc2ef8
-VITE_API_URL=https://li.quest/v1
+VITE_TVM_WALLET_CONNECT=5432e3507d41270bee46b7b85bbc2ef8
+VITE_API_URL=https://feat-featex55tronfeecollection.li.quest/v1
diff --git a/packages/widget-playground-vite/src/App.tsx b/packages/widget-playground-vite/src/App.tsx
index a2cd6e7b2..7f24c018d 100644
--- a/packages/widget-playground-vite/src/App.tsx
+++ b/packages/widget-playground-vite/src/App.tsx
@@ -18,6 +18,7 @@ const AppProvider = ({ children }: PropsWithChildren) => {
return (
diff --git a/packages/widget-playground/package.json b/packages/widget-playground/package.json
index d01262ee1..4a0d8696f 100644
--- a/packages/widget-playground/package.json
+++ b/packages/widget-playground/package.json
@@ -35,6 +35,7 @@
"@lifi/widget-provider-ethereum": "workspace:*",
"@lifi/widget-provider-solana": "workspace:*",
"@lifi/widget-provider-sui": "workspace:*",
+ "@lifi/widget-provider-tron": "workspace:*",
"@metamask/sdk": "~0.34.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.3.6",
@@ -55,7 +56,8 @@
"react-dom": "^19.2.4",
"viem": "^2.45.1",
"wagmi": "^3.3.2",
- "zustand": "^5.0.11"
+ "zustand": "^5.0.11",
+ "@tronweb3/tronwallet-adapter-react-hooks": "^1.1.11"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.8",
diff --git a/packages/widget-playground/src/defaultWidgetConfig.ts b/packages/widget-playground/src/defaultWidgetConfig.ts
index 31da67ae2..0906873f9 100644
--- a/packages/widget-playground/src/defaultWidgetConfig.ts
+++ b/packages/widget-playground/src/defaultWidgetConfig.ts
@@ -4,6 +4,7 @@ import { BitcoinProvider } from '@lifi/widget-provider-bitcoin'
import { EthereumProvider } from '@lifi/widget-provider-ethereum'
import { SolanaProvider } from '@lifi/widget-provider-solana'
import { SuiProvider } from '@lifi/widget-provider-sui'
+import { TronProvider } from '@lifi/widget-provider-tron'
export const widgetBaseConfig: WidgetConfig = {
// fromChain: 137,
@@ -44,6 +45,9 @@ export const widgetBaseConfig: WidgetConfig = {
SuiProvider(),
SolanaProvider(),
BitcoinProvider(),
+ TronProvider({
+ walletConnect: true,
+ }),
],
variant: 'wide',
// subvariant: 'split',
diff --git a/packages/widget-playground/src/providers/EnvVariablesProvider.tsx b/packages/widget-playground/src/providers/EnvVariablesProvider.tsx
index a1515a5b6..56ef7f77b 100644
--- a/packages/widget-playground/src/providers/EnvVariablesProvider.tsx
+++ b/packages/widget-playground/src/providers/EnvVariablesProvider.tsx
@@ -3,18 +3,23 @@ import { createContext, useContext } from 'react'
const EnvVariablesContext = createContext({
EVMWalletConnectId: '',
+ TVMWalletConnectId: '',
})
interface EvnVariablesProviderProps extends PropsWithChildren {
EVMWalletConnectId: string
+ TVMWalletConnectId: string
}
export const EnvVariablesProvider = ({
children,
EVMWalletConnectId,
+ TVMWalletConnectId,
}: EvnVariablesProviderProps) => {
return (
-
+
{children}
)
diff --git a/packages/widget-provider-ethereum/src/providers/EthereumBaseProvider.tsx b/packages/widget-provider-ethereum/src/providers/EthereumBaseProvider.tsx
index 34a13363b..4a4b5e074 100644
--- a/packages/widget-provider-ethereum/src/providers/EthereumBaseProvider.tsx
+++ b/packages/widget-provider-ethereum/src/providers/EthereumBaseProvider.tsx
@@ -1,4 +1,5 @@
import type { ExtendedChain } from '@lifi/sdk'
+import { resolveConfig } from '@lifi/widget-provider'
import { type FC, type PropsWithChildren, useRef } from 'react'
import { WagmiProvider } from 'wagmi'
import { defaultBaseAccountConfig } from '../config/baseAccount.js'
@@ -11,7 +12,6 @@ import {
createDefaultWagmiConfig,
type DefaultWagmiConfigResult,
} from '../utils/createDefaultWagmiConfig.js'
-import { resolveConfig } from '../utils/resolveConfig.js'
interface EthereumBaseProviderProps {
config?: EthereumProviderConfig
diff --git a/packages/widget-provider-ethereum/src/providers/EthereumProviderValues.tsx b/packages/widget-provider-ethereum/src/providers/EthereumProviderValues.tsx
index 1e83c9c6b..bd0bf96fc 100644
--- a/packages/widget-provider-ethereum/src/providers/EthereumProviderValues.tsx
+++ b/packages/widget-provider-ethereum/src/providers/EthereumProviderValues.tsx
@@ -5,7 +5,11 @@ import {
isDelegationDesignatorCode,
isGaslessStep,
} from '@lifi/sdk-provider-ethereum'
-import { EthereumContext, isWalletInstalled } from '@lifi/widget-provider'
+import {
+ EthereumContext,
+ isWalletInstalled,
+ resolveConfig,
+} from '@lifi/widget-provider'
import {
type FC,
type PropsWithChildren,
@@ -39,7 +43,6 @@ import type {
CreateConnectorFnExtended,
EthereumProviderConfig,
} from '../types.js'
-import { resolveConfig } from '../utils/resolveConfig.js'
interface EthereumProviderValuesProps {
isExternalContext: boolean
diff --git a/packages/widget-provider-tron/package.json b/packages/widget-provider-tron/package.json
new file mode 100644
index 000000000..054b395fb
--- /dev/null
+++ b/packages/widget-provider-tron/package.json
@@ -0,0 +1,58 @@
+{
+ "name": "@lifi/widget-provider-tron",
+ "version": "4.0.0-alpha.0",
+ "description": "LI.FI Widget Provider for Tron blockchain integration.",
+ "type": "module",
+ "main": "./src/index.ts",
+ "types": "./src/index.d.ts",
+ "sideEffects": false,
+ "scripts": {
+ "watch": "tsc -w -p ./tsconfig.json",
+ "build": "pnpm clean && pnpm build:esm && pnpm build:clean",
+ "build:esm": "tsc --build",
+ "build:prerelease": "node ../../scripts/prerelease.js && cpy '../../*.md' .",
+ "build:postrelease": "node ../../scripts/postrelease.js && rm -rf *.md",
+ "build:clean": "rm -rf tsconfig.tsbuildinfo ./dist/tsconfig.tsbuildinfo",
+ "release:build": "pnpm build",
+ "clean": "pnpm build:clean && rm -rf dist",
+ "check:types": "tsc --noEmit",
+ "check:circular-deps": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx')",
+ "check:circular-deps-graph": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx') --image graph.svg"
+ },
+ "author": "Eugene Chybisov ",
+ "homepage": "https://github.com/lifinance/widget",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/lifinance/widget.git",
+ "directory": "packages/widget-provider-tron"
+ },
+ "bugs": {
+ "url": "https://github.com/lifinance/widget/issues"
+ },
+ "license": "Apache-2.0",
+ "keywords": [
+ "widget",
+ "lifi-widget",
+ "wallet",
+ "web3",
+ "lifi",
+ "tron",
+ "trx"
+ ],
+ "dependencies": {
+ "@lifi/sdk": "^4.0.0-alpha.21",
+ "@lifi/sdk-provider-tron": "^4.0.0-alpha.21",
+ "@lifi/widget-provider": "workspace:*",
+ "@tronweb3/tronwallet-abstract-adapter": "^1.1.10",
+ "@tronweb3/tronwallet-adapters": "^1.2.21"
+ },
+ "peerDependencies": {
+ "@tronweb3/tronwallet-adapter-react-hooks": "^1.1.11"
+ },
+ "devDependencies": {
+ "cpy-cli": "^7.0.0",
+ "madge": "^8.0.0",
+ "react": "^19.2.4",
+ "typescript": "^5.9.3"
+ }
+}
diff --git a/packages/widget-provider-tron/src/config/adapters.ts b/packages/widget-provider-tron/src/config/adapters.ts
new file mode 100644
index 000000000..46f8e4ad7
--- /dev/null
+++ b/packages/widget-provider-tron/src/config/adapters.ts
@@ -0,0 +1,34 @@
+import type { Adapter } from '@tronweb3/tronwallet-abstract-adapter'
+import {
+ BinanceWalletAdapter,
+ BitKeepAdapter,
+ BybitWalletAdapter,
+ FoxWalletAdapter,
+ GateWalletAdapter,
+ GuardaAdapter,
+ ImTokenAdapter,
+ LedgerAdapter,
+ MetaMaskAdapter,
+ OkxWalletAdapter,
+ TokenPocketAdapter,
+ TomoWalletAdapter,
+ TronLinkAdapter,
+ TrustAdapter,
+} from '@tronweb3/tronwallet-adapters'
+
+export const createTronAdapters = (): Adapter[] => [
+ new BinanceWalletAdapter(),
+ new BitKeepAdapter(),
+ new BybitWalletAdapter(),
+ new FoxWalletAdapter(),
+ new GateWalletAdapter(),
+ new GuardaAdapter(),
+ new ImTokenAdapter(),
+ new LedgerAdapter(),
+ new MetaMaskAdapter(),
+ new OkxWalletAdapter(),
+ new TokenPocketAdapter(),
+ new TomoWalletAdapter(),
+ new TronLinkAdapter(),
+ new TrustAdapter(),
+]
diff --git a/packages/widget-provider-tron/src/config/walletConnect.ts b/packages/widget-provider-tron/src/config/walletConnect.ts
new file mode 100644
index 000000000..dcbac0baf
--- /dev/null
+++ b/packages/widget-provider-tron/src/config/walletConnect.ts
@@ -0,0 +1,8 @@
+import type { WalletConnectAdapterConfig } from '@tronweb3/tronwallet-adapters'
+
+export const defaultTronWalletConnectConfig: WalletConnectAdapterConfig = {
+ network: 'mainnet',
+ options: {
+ projectId: '5432e3507d41270bee46b7b85bbc2ef8',
+ },
+}
diff --git a/packages/widget-provider-tron/src/index.ts b/packages/widget-provider-tron/src/index.ts
new file mode 100644
index 000000000..bc9627650
--- /dev/null
+++ b/packages/widget-provider-tron/src/index.ts
@@ -0,0 +1,2 @@
+export { TronProvider } from './providers/TronProvider.js'
+export type { TronProviderConfig } from './types.js'
diff --git a/packages/widget-provider-tron/src/providers/TronBaseProvider.tsx b/packages/widget-provider-tron/src/providers/TronBaseProvider.tsx
new file mode 100644
index 000000000..4a7a164ff
--- /dev/null
+++ b/packages/widget-provider-tron/src/providers/TronBaseProvider.tsx
@@ -0,0 +1,34 @@
+import { resolveConfig } from '@lifi/widget-provider'
+import type { Adapter } from '@tronweb3/tronwallet-abstract-adapter'
+import { WalletProvider } from '@tronweb3/tronwallet-adapter-react-hooks'
+import { WalletConnectAdapter } from '@tronweb3/tronwallet-adapters'
+import { type FC, type PropsWithChildren, useRef } from 'react'
+import { createTronAdapters } from '../config/adapters.js'
+import { defaultTronWalletConnectConfig } from '../config/walletConnect.js'
+import type { TronProviderConfig } from '../types.js'
+
+interface TronBaseProviderProps {
+ config?: TronProviderConfig
+}
+
+export const TronBaseProvider: FC> = ({
+ config,
+ children,
+}) => {
+ const adapters = useRef(null)
+
+ if (!adapters.current) {
+ const walletConnectConfig = resolveConfig(
+ config?.walletConnect,
+ defaultTronWalletConnectConfig
+ )
+ adapters.current = [
+ ...createTronAdapters(),
+ ...(walletConnectConfig
+ ? [new WalletConnectAdapter(walletConnectConfig)]
+ : []),
+ ]
+ }
+
+ return {children}
+}
diff --git a/packages/widget-provider-tron/src/providers/TronProvider.tsx b/packages/widget-provider-tron/src/providers/TronProvider.tsx
new file mode 100644
index 000000000..c78d7f2ef
--- /dev/null
+++ b/packages/widget-provider-tron/src/providers/TronProvider.tsx
@@ -0,0 +1,52 @@
+import type { WidgetProviderProps } from '@lifi/widget-provider'
+import { WalletContext } from '@tronweb3/tronwallet-adapter-react-hooks'
+import { type PropsWithChildren, useContext } from 'react'
+import type { TronProviderConfig } from '../types.js'
+import { TronBaseProvider } from './TronBaseProvider.js'
+import { TronProviderValues } from './TronProviderValues.js'
+
+interface TronWidgetProviderProps extends WidgetProviderProps {
+ config?: TronProviderConfig
+}
+
+// Detects if a parent TronWalletProvider already wraps the component tree.
+// The default WalletContext uses lazy getters on its properties (e.g. `wallets`),
+// while a real provider sets plain data properties. Checking the property descriptor
+// distinguishes between the two — a non-getter means a real provider is present.
+function useInTronContext(): boolean {
+ const context = useContext(WalletContext)
+ const descriptor = Object.getOwnPropertyDescriptor(context, 'wallets')
+ return Boolean(descriptor && !descriptor.get)
+}
+
+const TronWidgetProvider = ({
+ forceInternalWalletManagement,
+ config,
+ children,
+}: PropsWithChildren) => {
+ const inTronContext = useInTronContext()
+
+ if (inTronContext && !forceInternalWalletManagement) {
+ return (
+
+ {children}
+
+ )
+ }
+
+ return (
+
+
+ {children}
+
+
+ )
+}
+
+export const TronProvider = (config?: TronProviderConfig) => {
+ return ({ children, ...props }: PropsWithChildren) => (
+
+ {children}
+
+ )
+}
diff --git a/packages/widget-provider-tron/src/providers/TronProviderValues.tsx b/packages/widget-provider-tron/src/providers/TronProviderValues.tsx
new file mode 100644
index 000000000..711cb238c
--- /dev/null
+++ b/packages/widget-provider-tron/src/providers/TronProviderValues.tsx
@@ -0,0 +1,120 @@
+import { ChainId, ChainType, type SDKProvider } from '@lifi/sdk'
+import { TronProvider as TronSDKProvider } from '@lifi/sdk-provider-tron'
+import { TronContext } from '@lifi/widget-provider'
+import {
+ type AdapterName,
+ WalletReadyState,
+} from '@tronweb3/tronwallet-abstract-adapter'
+import { useWallet } from '@tronweb3/tronwallet-adapter-react-hooks'
+import { type FC, type PropsWithChildren, useCallback, useMemo } from 'react'
+
+interface TronProviderValuesProps {
+ isExternalContext: boolean
+}
+
+export const TronProviderValues: FC<
+ PropsWithChildren
+> = ({ children, isExternalContext }) => {
+ const {
+ address,
+ connected: isConnected,
+ wallet: currentWallet,
+ disconnect,
+ wallets,
+ select,
+ connecting,
+ } = useWallet()
+
+ const connector = currentWallet
+ ? {
+ name: currentWallet.adapter.name,
+ icon: currentWallet.adapter.icon,
+ }
+ : undefined
+
+ const account = address
+ ? {
+ address: address,
+ chainId: ChainId.TRN,
+ chainType: ChainType.TVM,
+ connector,
+ isConnected,
+ isConnecting: connecting,
+ isReconnecting: false,
+ isDisconnected: false,
+ status: 'connected' as const,
+ }
+ : {
+ chainType: ChainType.TVM,
+ isConnected: false,
+ isConnecting: false,
+ isReconnecting: false,
+ isDisconnected: true,
+ status: 'disconnected' as const,
+ }
+
+ const sdkProvider = useMemo(
+ () =>
+ TronSDKProvider({
+ getWallet: async () => {
+ if (!currentWallet?.adapter) {
+ throw new Error('No Tron wallet connected')
+ }
+ return currentWallet.adapter
+ },
+ }) as SDKProvider,
+ [currentWallet]
+ )
+
+ const installedWallets = useMemo(
+ () =>
+ wallets
+ .filter(
+ (wallet) => wallet.adapter.readyState === WalletReadyState.Found
+ )
+ .map((wallet) => ({
+ name: wallet.adapter.name,
+ icon: wallet.adapter.icon,
+ })),
+ [wallets]
+ )
+
+ const handleConnect = useCallback(
+ async (
+ walletName: string,
+ onSuccess?: (address: string, chainId: number) => void
+ ) => {
+ const wallet = wallets.find((w) => w.adapter.name === walletName)
+ if (!wallet) {
+ throw new Error(`Wallet ${walletName} not found`)
+ }
+ select(walletName as AdapterName)
+ // Connect directly on the adapter — the hook's connect() requires adapter
+ // state that hasn't updated yet. May overlap with autoConnect, but adapters
+ // handle duplicate connects as a no-op.
+ await wallet.adapter.connect()
+ const connectedAddress = wallet.adapter.address
+ if (connectedAddress) {
+ onSuccess?.(connectedAddress, ChainId.TRN)
+ }
+ },
+ [wallets, select]
+ )
+
+ return (
+
+ {children}
+
+ )
+}
diff --git a/packages/widget-provider-tron/src/types.ts b/packages/widget-provider-tron/src/types.ts
new file mode 100644
index 000000000..b0a3a1c0c
--- /dev/null
+++ b/packages/widget-provider-tron/src/types.ts
@@ -0,0 +1,5 @@
+import type { WalletConnectAdapterConfig } from '@tronweb3/tronwallet-adapters'
+
+export interface TronProviderConfig {
+ walletConnect?: WalletConnectAdapterConfig | boolean
+}
diff --git a/packages/widget-provider-tron/tsconfig.json b/packages/widget-provider-tron/tsconfig.json
new file mode 100644
index 000000000..8e1598c91
--- /dev/null
+++ b/packages/widget-provider-tron/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "composite": true,
+ "declaration": true,
+ "sourceMap": true,
+ "outDir": "dist/esm",
+ "rootDir": "./src",
+ "module": "ESNext",
+ "moduleResolution": "Bundler"
+ },
+ "include": ["./src/**/*", "./src/**/*.json"]
+}
diff --git a/packages/widget-provider/src/contexts/TronContext.ts b/packages/widget-provider/src/contexts/TronContext.ts
new file mode 100644
index 000000000..d36d1d3d9
--- /dev/null
+++ b/packages/widget-provider/src/contexts/TronContext.ts
@@ -0,0 +1,11 @@
+import { createContext, useContext } from 'react'
+import type { WidgetProviderContext } from '../types.js'
+import { defaultContextValue } from './defaultContextValue.js'
+
+export const TronContext =
+ createContext(defaultContextValue)
+
+export const useTronContext = () => {
+ const context = useContext(TronContext)
+ return context || defaultContextValue
+}
diff --git a/packages/widget-provider/src/hooks/useChainTypeFromAddress.ts b/packages/widget-provider/src/hooks/useChainTypeFromAddress.ts
index 633743f09..f02f94bbb 100644
--- a/packages/widget-provider/src/hooks/useChainTypeFromAddress.ts
+++ b/packages/widget-provider/src/hooks/useChainTypeFromAddress.ts
@@ -4,12 +4,14 @@ import { useBitcoinContext } from '../contexts/BitcoinContext.js'
import { useEthereumContext } from '../contexts/EthereumContext.js'
import { useSolanaContext } from '../contexts/SolanaContext.js'
import { useSuiContext } from '../contexts/SuiContext.js'
+import { useTronContext } from '../contexts/TronContext.js'
export const useChainTypeFromAddress = () => {
const { sdkProvider: ethereumProvider } = useEthereumContext()
const { sdkProvider: solanaProvider } = useSolanaContext()
const { sdkProvider: bitcoinProvider } = useBitcoinContext()
const { sdkProvider: suiProvider } = useSuiContext()
+ const { sdkProvider: tronProvider } = useTronContext()
const getChainTypeFromAddress = useCallback(
(address: string): ChainType | undefined => {
@@ -25,8 +27,17 @@ export const useChainTypeFromAddress = () => {
if (suiProvider?.isAddress(address)) {
return ChainType.MVM
}
+ if (tronProvider?.isAddress(address)) {
+ return ChainType.TVM
+ }
},
- [ethereumProvider, solanaProvider, bitcoinProvider, suiProvider]
+ [
+ ethereumProvider,
+ solanaProvider,
+ bitcoinProvider,
+ suiProvider,
+ tronProvider,
+ ]
)
return { getChainTypeFromAddress }
}
diff --git a/packages/widget-provider/src/hooks/useSDKProviders.ts b/packages/widget-provider/src/hooks/useSDKProviders.ts
index 30d5920de..c9b718354 100644
--- a/packages/widget-provider/src/hooks/useSDKProviders.ts
+++ b/packages/widget-provider/src/hooks/useSDKProviders.ts
@@ -3,17 +3,20 @@ import { useBitcoinContext } from '../contexts/BitcoinContext'
import { useEthereumContext } from '../contexts/EthereumContext'
import { useSolanaContext } from '../contexts/SolanaContext'
import { useSuiContext } from '../contexts/SuiContext'
+import { useTronContext } from '../contexts/TronContext'
export const useSDKProviders = () => {
const { sdkProvider: evmSDKProvider } = useEthereumContext()
const { sdkProvider: utxoSDKProvider } = useBitcoinContext()
const { sdkProvider: svmSDKProvider } = useSolanaContext()
const { sdkProvider: suiSDKProvider } = useSuiContext()
+ const { sdkProvider: tronSDKProvider } = useTronContext()
return [
evmSDKProvider,
utxoSDKProvider,
svmSDKProvider,
suiSDKProvider,
+ tronSDKProvider,
].filter(Boolean) as SDKProvider[]
}
diff --git a/packages/widget-provider/src/index.ts b/packages/widget-provider/src/index.ts
index 8f910cd71..8378ddd3b 100644
--- a/packages/widget-provider/src/index.ts
+++ b/packages/widget-provider/src/index.ts
@@ -5,6 +5,7 @@ export {
} from './contexts/EthereumContext.js'
export { SolanaContext, useSolanaContext } from './contexts/SolanaContext.js'
export { SuiContext, useSuiContext } from './contexts/SuiContext.js'
+export { TronContext, useTronContext } from './contexts/TronContext.js'
export { useChainTypeFromAddress } from './hooks/useChainTypeFromAddress.js'
export { useSDKProviders } from './hooks/useSDKProviders.js'
export type {
@@ -15,3 +16,4 @@ export type {
WidgetProviderProps,
} from './types.js'
export { isWalletInstalled } from './utils/isWalletInstalled.js'
+export { resolveConfig } from './utils/resolveConfig.js'
diff --git a/packages/widget-provider-ethereum/src/utils/resolveConfig.ts b/packages/widget-provider/src/utils/resolveConfig.ts
similarity index 100%
rename from packages/widget-provider-ethereum/src/utils/resolveConfig.ts
rename to packages/widget-provider/src/utils/resolveConfig.ts
diff --git a/packages/widget/src/components/Chains/AllChainsAvatar.tsx b/packages/widget/src/components/Chains/AllChainsAvatar.tsx
index def156559..e97642ef7 100644
--- a/packages/widget/src/components/Chains/AllChainsAvatar.tsx
+++ b/packages/widget/src/components/Chains/AllChainsAvatar.tsx
@@ -37,6 +37,12 @@ const chainTypeIcons = [
icon: 'https://lifinance.github.io/types/src/assets/icons/chains/sui.svg',
defaultChainId: ChainId.SUI,
},
+ {
+ name: 'Tron',
+ chainType: ChainType.TVM,
+ icon: 'https://lifinance.github.io/types/src/assets/icons/chains/tron.svg',
+ defaultChainId: ChainId.TRN,
+ },
]
const maxChainAvatarsCount = chainTypeIcons.length
diff --git a/packages/widget/src/hooks/useAvailableChains.ts b/packages/widget/src/hooks/useAvailableChains.ts
index d2bf52b96..6155a2120 100644
--- a/packages/widget/src/hooks/useAvailableChains.ts
+++ b/packages/widget/src/hooks/useAvailableChains.ts
@@ -18,6 +18,7 @@ const supportedChainTypes = [
ChainType.SVM,
ChainType.UTXO,
ChainType.MVM,
+ ChainType.TVM,
]
export const useAvailableChains = (
diff --git a/packages/widget/src/hooks/useTokens.ts b/packages/widget/src/hooks/useTokens.ts
index fdb73f203..30b93ac3e 100644
--- a/packages/widget/src/hooks/useTokens.ts
+++ b/packages/widget/src/hooks/useTokens.ts
@@ -43,6 +43,7 @@ export const useTokens = (
ChainType.SVM,
ChainType.UTXO,
ChainType.MVM,
+ ChainType.TVM,
].filter((chainType) => isItemAllowed(chainType, chainsConfig?.types))
const tokensResponse: TokensExtendedResponse = await getTokens(
@@ -85,6 +86,7 @@ export const useTokens = (
ChainType.SVM,
ChainType.UTXO,
ChainType.MVM,
+ ChainType.TVM,
].filter((chainType) => isItemAllowed(chainType, chainsConfig?.types))
const tokensResponse: TokensExtendedResponse = await getTokens(
diff --git a/packages/widget/src/providers/WalletProvider/useExternalWalletProvider.ts b/packages/widget/src/providers/WalletProvider/useExternalWalletProvider.ts
index c489c40a7..f5775e15a 100644
--- a/packages/widget/src/providers/WalletProvider/useExternalWalletProvider.ts
+++ b/packages/widget/src/providers/WalletProvider/useExternalWalletProvider.ts
@@ -4,6 +4,7 @@ import {
useEthereumContext,
useSolanaContext,
useSuiContext,
+ useTronContext,
} from '@lifi/widget-provider'
import { useMemo } from 'react'
import { useWidgetConfig } from '../WidgetProvider/WidgetProvider.js'
@@ -19,6 +20,7 @@ const internalChainTypes = [
ChainType.SVM,
ChainType.UTXO,
ChainType.MVM,
+ ChainType.TVM,
]
export function useExternalWalletProvider(): ExternalWalletProvider {
@@ -27,6 +29,7 @@ export function useExternalWalletProvider(): ExternalWalletProvider {
const { isExternalContext: hasExternalSolanaContext } = useSolanaContext()
const { isExternalContext: hasExternalBitcoinContext } = useBitcoinContext()
const { isExternalContext: hasExternalSuiContext } = useSuiContext()
+ const { isExternalContext: hasExternalTronContext } = useTronContext()
const data = useMemo(() => {
const providers: ChainType[] = []
if (hasExternalEthereumContext) {
@@ -41,11 +44,15 @@ export function useExternalWalletProvider(): ExternalWalletProvider {
if (hasExternalSuiContext) {
providers.push(ChainType.MVM)
}
+ if (hasExternalTronContext) {
+ providers.push(ChainType.TVM)
+ }
const hasExternalProvider =
hasExternalEthereumContext ||
hasExternalSolanaContext ||
hasExternalBitcoinContext ||
- hasExternalSuiContext
+ hasExternalSuiContext ||
+ hasExternalTronContext
const useExternalWalletProvidersOnly =
hasExternalProvider &&
@@ -63,6 +70,7 @@ export function useExternalWalletProvider(): ExternalWalletProvider {
hasExternalSolanaContext,
hasExternalBitcoinContext,
hasExternalSuiContext,
+ hasExternalTronContext,
walletConfig?.usePartialWalletManagement,
walletConfig?.forceInternalWalletManagement,
])
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 595f0d055..6a13fe9ff 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -46,7 +46,7 @@ importers:
version: 9.1.7
knip:
specifier: ^5.83.0
- version: 5.85.0(@types/node@25.3.5)(typescript@5.9.3)
+ version: 5.86.0(@types/node@25.3.5)(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)
@@ -544,7 +544,7 @@ importers:
version: 3.40.11(e2abcf2ad06ecd0a6e182f54c827ab2c)
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.3.5)(@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)(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)
veaury:
specifier: ^2.6.3
version: 2.6.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
@@ -553,10 +553,10 @@ importers:
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))
vue:
specifier: ^3.5.27
- version: 3.5.29(typescript@5.9.3)
+ 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:
@@ -629,7 +629,7 @@ importers:
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)
+ version: 8.56.1(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)
@@ -690,7 +690,7 @@ importers:
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
@@ -702,13 +702,13 @@ importers:
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))
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))
+ version: 0.4.26(eslint@9.39.4(jiti@2.6.1))
globals:
specifier: ^17.3.0
version: 17.4.0
@@ -717,7 +717,7 @@ importers:
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)
+ version: 8.56.1(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)
@@ -992,7 +992,7 @@ importers:
version: 5.53.7
svelte-check:
specifier: ^4.3.6
- version: 4.4.4(picomatch@4.0.3)(svelte@5.53.7)(typescript@5.9.3)
+ version: 4.4.5(picomatch@4.0.3)(svelte@5.53.7)(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)
@@ -1019,7 +1019,7 @@ importers:
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)
+ version: 1.166.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react:
specifier: ^19.2.4
version: 19.2.4
@@ -1239,17 +1239,17 @@ importers:
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)
+ 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))
'@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))
+ 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.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))
+ 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.30(typescript@5.9.3))
typescript:
specifier: ^5.9.3
version: 5.9.3
@@ -1337,13 +1337,13 @@ importers:
version: 5.90.21(react@19.2.4)
i18next:
specifier: ^25.8.4
- version: 25.8.14(typescript@5.9.3)
+ version: 25.8.15(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)
+ version: 16.5.6(i18next@25.8.15(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))
@@ -1395,13 +1395,13 @@ importers:
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)
+ version: 1.166.3(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)
+ version: 25.8.15(typescript@5.9.3)
microdiff:
specifier: ^1.5.0
version: 1.5.0
@@ -1410,7 +1410,7 @@ importers:
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)
+ version: 16.5.6(i18next@25.8.15(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)
@@ -1441,7 +1441,7 @@ importers:
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)
+ version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(jsdom@20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
packages/widget-embedded:
dependencies:
@@ -1554,7 +1554,7 @@ importers:
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)
+ version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(jsdom@20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
packages/widget-playground:
dependencies:
@@ -1594,6 +1594,9 @@ importers:
'@lifi/widget-provider-sui':
specifier: workspace:*
version: link:../widget-provider-sui
+ '@lifi/widget-provider-tron':
+ specifier: workspace:*
+ version: link:../widget-provider-tron
'@metamask/sdk':
specifier: ~0.34.0
version: 0.34.0(bufferutil@4.1.0)(encoding@0.1.13)(utf-8-validate@6.0.6)
@@ -1630,6 +1633,9 @@ importers:
'@tanstack/react-query':
specifier: '>=5.90.0'
version: 5.90.21(react@19.2.4)
+ '@tronweb3/tronwallet-adapter-react-hooks':
+ specifier: ^1.1.11
+ version: 1.1.11(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(utf-8-validate@6.0.6)
'@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)
@@ -1684,7 +1690,7 @@ importers:
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)
+ version: 4.0.18(@types/node@25.3.5)(jiti@2.6.1)(jsdom@20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
packages/widget-playground-next:
dependencies:
@@ -1939,6 +1945,40 @@ importers:
specifier: ^5.9.3
version: 5.9.3
+ packages/widget-provider-tron:
+ dependencies:
+ '@lifi/sdk':
+ specifier: ^4.0.0-alpha.21
+ version: 4.0.0-alpha.21(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)
+ '@lifi/sdk-provider-tron':
+ specifier: ^4.0.0-alpha.21
+ version: 4.0.0-alpha.21(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
+ '@tronweb3/tronwallet-abstract-adapter':
+ specifier: ^1.1.10
+ version: 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-react-hooks':
+ specifier: ^1.1.11
+ version: 1.1.11(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapters':
+ specifier: ^1.2.21
+ version: 1.2.21(@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/node@25.3.5)(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(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)(utf-8-validate@6.0.6)(zod@4.3.6)
+ devDependencies:
+ cpy-cli:
+ specifier: ^7.0.0
+ version: 7.0.0
+ madge:
+ specifier: ^8.0.0
+ version: 8.0.0(typescript@5.9.3)
+ react:
+ specifier: ^19.2.4
+ version: 19.2.4
+ typescript:
+ specifier: ^5.9.3
+ version: 5.9.3
+
packages:
'@0no-co/graphql.web@1.2.0':
@@ -2175,6 +2215,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/runtime@7.26.10':
+ resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/runtime@7.28.6':
resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'}
@@ -2200,6 +2244,9 @@ packages:
'@base-org/account@2.5.2':
resolution: {integrity: sha512-B3e0XiZWHXgCPLRXk0dDGA2WN8eFk/MDprqRX1Xl4PPx1LAdzynGcGUg6rnidMrIQ/GSL+oelWDHdGbWtCOOoA==}
+ '@bcoe/v8-coverage@0.2.3':
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+
'@bigmi/client@0.7.0':
resolution: {integrity: sha512-g/rcAccXE632eh3kXNgitQp2etrZDq41/Y4ZEfu3+9KbV4AcU3V4ZSiwlWlGMsAsxzfS7VXTHvcKOl9tt/gMjA==}
peerDependencies:
@@ -2217,6 +2264,15 @@ packages:
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
+ '@binance/w3w-types@1.1.4':
+ resolution: {integrity: sha512-CCnneapNTVY1+RseZNIhExVp3ux8LihcXRkGwmvJtZTTJJIC7xQlTWy9olkAsz+opqWK+heAcyYGmt4RUt1M5g==}
+
+ '@binance/w3w-utils@1.1.6':
+ resolution: {integrity: sha512-NGT629vS9tRlbigtNn9wHtTYNB00oyDcsajO/kpAcDiQn4ktYs7+oTIr/qLvjP8Z3opTXpbooqMPITDY7DI0IA==}
+
+ '@binance/w3w-utils@1.1.8':
+ resolution: {integrity: sha512-dImFqeqfOHmrZNo0qmyn4G9uMWGzR8jjjRUfesA7zRh6EmR1gpbnQNBUTtw7NZfJ5SEBzDJMwResxzU5ACwkpQ==}
+
'@biomejs/biome@2.4.6':
resolution: {integrity: sha512-QnHe81PMslpy3mnpL8DnO2M4S4ZnYPkjlGCLWBZT/3R9M6b5daArWMMtEfP52/n174RKnwRIf3oT8+wc9ihSfQ==}
engines: {node: '>=14.21.3'}
@@ -2314,8 +2370,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==}
@@ -3277,8 +3333,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 +3349,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 +3549,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.0':
+ resolution: {integrity: sha512-uVq9pTNERQ1GcFlHZzQx+a0ZMC81wQzkbNzJPEyR/l3AWM7fASd/qYN2Cnq6uL1NPEfwcD4lgOmfjjZfx2k2XA==}
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':
@@ -3976,6 +4032,19 @@ packages:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
+ '@jest/console@29.7.0':
+ resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/core@29.7.0':
+ resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
'@jest/create-cache-key-function@29.7.0':
resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3988,6 +4057,14 @@ packages:
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/expect-utils@29.7.0':
+ resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/expect@29.7.0':
+ resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
'@jest/fake-timers@29.7.0':
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3996,6 +4073,19 @@ packages:
resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/globals@29.7.0':
+ resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/reporters@29.7.0':
+ resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
'@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4004,6 +4094,18 @@ packages:
resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/source-map@29.6.3':
+ resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/test-result@29.7.0':
+ resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/test-sequencer@29.7.0':
+ resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
'@jest/transform@29.7.0':
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -4040,6 +4142,30 @@ packages:
'@kwsites/promise-deferred@1.1.1':
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
+ '@ledgerhq/devices@6.27.1':
+ resolution: {integrity: sha512-jX++oy89jtv7Dp2X6gwt3MMkoajel80JFWcdc0HCouwDsV1mVJ3SQdwl/bQU0zd8HI6KebvUP95QTwbQLLK/RQ==}
+
+ '@ledgerhq/devices@8.10.0':
+ resolution: {integrity: sha512-ytT66KI8MizFX6dGJKthOzPDw5uNRmmg+RaMta62jbFePKYqfXtYTp6Wc0ErTXaL8nFS3IujHENwKthPmsj6jw==}
+
+ '@ledgerhq/errors@6.29.0':
+ resolution: {integrity: sha512-mmDsGN662zd0XGKyjzSKkg+5o1/l9pvV1HkVHtbzaydvHAtRypghmVoWMY9XAQDLXiUBXGIsLal84NgmGeuKWA==}
+
+ '@ledgerhq/hw-app-trx@6.29.2':
+ resolution: {integrity: sha512-sLb5IiGf2Sqc64iUMcudt+YyJ/J68YhpupxAQDnEsyhDTrxxrn4ihRIxeYTYOSUwsSP/VNZaAuL+zqn3IqsA0w==}
+
+ '@ledgerhq/hw-transport-webhid@6.27.1':
+ resolution: {integrity: sha512-u74rBYlibpbyGblSn74fRs2pMM19gEAkYhfVibq0RE1GNFjxDMFC1n7Sb+93Jqmz8flyfB4UFJsxs8/l1tm2Kw==}
+
+ '@ledgerhq/hw-transport@6.27.1':
+ resolution: {integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==}
+
+ '@ledgerhq/hw-transport@6.32.0':
+ resolution: {integrity: sha512-bf2nxzDQ21DV/bsmExfWI0tatoVeoqhu/ePWalD/nPgPnTn/ZIDq7VBU+TY5p0JZaE87NQwmRUAjm6C1Exe61A==}
+
+ '@ledgerhq/logs@6.14.0':
+ resolution: {integrity: sha512-kJFu1+asWQmU9XlfR1RM3lYR76wuEoPyZvkI/CNjpft78BQr3+MMf3Nu77ABzcKFnhIcmAkOLlDQ6B8L6hDXHA==}
+
'@lerna/create@9.0.5':
resolution: {integrity: sha512-Gwd6ooSqXMdkdhiCGvHAfLRstj7W3ttr72WQB3Jf9HPP1A6mWtw0O80D0X+T/2hakqfe7lNLuKrEid4f7C0qbg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
@@ -4056,6 +4182,9 @@ packages:
'@lifi/sdk-provider-sui@4.0.0-alpha.20':
resolution: {integrity: sha512-BS0WeiY7+xXDSzzd4gaZbRs+sP5nOATV6ZIKDWLAkXV3ac6OdAJxcu/r7njYnMqXeENPwYrmr4a7/5C/vEV7Uw==}
+ '@lifi/sdk-provider-tron@4.0.0-alpha.21':
+ resolution: {integrity: sha512-gLRAEw7pxH+XSPlTgDYcB3LmrWs2jQNm242hjgMZjfqtLJ6L0v7Iu3i0YU3z8Ww/7M7LpVRXk1JlJp3gVrydBg==}
+
'@lifi/sdk@3.15.7':
resolution: {integrity: sha512-Rhptfhv10TnsluFgmE7XCsZ7uM2A9mwvq5iCNkwhQmBLAksiehbr8jz0CEyArKxijXQrdvCTGLxNrGIUMfvMjw==}
peerDependencies:
@@ -4066,6 +4195,9 @@ packages:
'@lifi/sdk@4.0.0-alpha.20':
resolution: {integrity: sha512-5GgUJCYyAM/+IatzKNoA87t5ywoZB7mi+TbJ+T78hjDRgXO0lI2TUWJGByLPVMOSvMWMZ5q4MkMot2xyF1yCfQ==}
+ '@lifi/sdk@4.0.0-alpha.21':
+ resolution: {integrity: sha512-60efpXgfuEB2Rm6RNHW6YJF7L9VG1vaW9mfQ7pxUzaw3UQZQIASNhEN3NAO5LHnAmaZZB3XI5fKkaDz9F4RczQ==}
+
'@lifi/types@17.65.0':
resolution: {integrity: sha512-2COF1WimbFiPv51x4T1lvXSs8sRB6CP0SzOTCt7xCwaaeMBLczuuJmF0r10pY9JPxdzbJtVMM83Za3uCslqlWA==}
@@ -4129,6 +4261,9 @@ packages:
peerDependencies:
'@types/react': 17 || 18 || 19
+ '@lit/reactive-element@1.6.3':
+ resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==}
+
'@lit/reactive-element@2.1.2':
resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==}
@@ -4173,6 +4308,10 @@ packages:
resolution: {integrity: sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==}
engines: {node: '>=16.0.0'}
+ '@metamask/multichain-api-client@0.11.0':
+ resolution: {integrity: sha512-htoO8TCMXLKl6gl4m8fB69f+pC4N6Q2hG9Zcchiypi39jasUUntDV7CTbZuzj39w7SRheR/sc6lZBA8FFb13Cg==}
+ engines: {node: ^18.20 || ^20.17 || >=22}
+
'@metamask/object-multiplex@2.1.0':
resolution: {integrity: sha512-4vKIiv0DQxljcXwfpnbsXcfa5glMj5Zg9mqn4xpIWqkv6uJ2ma5/GtUfLFSxhlxnR8asRMv8dDmWya1Tc1sDFA==}
engines: {node: ^16.20 || ^18.16 || >=20}
@@ -4260,18 +4399,28 @@ packages:
'@motionone/dom@10.12.0':
resolution: {integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==}
+ '@motionone/dom@10.18.0':
+ resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==}
+
'@motionone/easing@10.18.0':
resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==}
'@motionone/generators@10.18.0':
resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==}
+ '@motionone/svelte@10.16.4':
+ resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==}
+
'@motionone/types@10.17.1':
resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==}
'@motionone/utils@10.18.0':
resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==}
+ '@motionone/vue@10.16.4':
+ resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
+ deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
+
'@msgpack/msgpack@3.1.2':
resolution: {integrity: sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ==}
engines: {node: '>= 18'}
@@ -5374,8 +5523,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==}
@@ -6060,8 +6209,8 @@ packages:
'@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.8':
+ resolution: {integrity: sha512-wzJwL82/arVfeSP3BLr1oTy40XddjtEdrdgtJ4lLRBu06mP3q/8HGM6K0JRlQuTA3XB0pNJx2so/nmpY4xyOew==}
'@rollup/plugin-alias@6.0.0':
resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==}
@@ -6072,8 +6221,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
@@ -7473,15 +7622,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.3':
+ resolution: {integrity: sha512-5NOwAnEp+koHYaRkK5+biYiuOxnQe/7q8R7LLAJ5Ryk6hXoIimOv6gWimPxANwhCWg9spfRZCNswi8EQaidYBg==}
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
@@ -7496,14 +7645,114 @@ packages:
resolution: {integrity: sha512-zn3NhENOAX9ToQiX077UV2OH3aJKOvV2ZMNZZxZ3gDG3i3WqL8NfWfEgetEAfMN37/Mnt90PpotYgf7IyuoKqQ==}
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==}
'@thumbmarkjs/thumbmarkjs@0.16.0':
resolution: {integrity: sha512-NKyqCvP6DZKlRf6aGfnKS6Kntn2gnuBxa/ztstjy+oo1t23EHzQ54shtli0yV5WAtygmK1tti/uL2C2p/kW3HQ==}
+ deprecated: Please upgrade to v1
+
+ '@tootallnate/once@2.0.0':
+ resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
+ engines: {node: '>= 10'}
+
+ '@tronweb3/abstract-adapter-evm@1.0.3':
+ resolution: {integrity: sha512-vszprJz+TsP2imBvvVi5JhOZFoS3WM5TY4265K0O152rt7p2fXrEot40x/06hBEe1QcWupiituxVn4+TsH8TAg==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-abstract-adapter@1.1.10':
+ resolution: {integrity: sha512-gZExaEZwPfI9oI7qSi56p/5Zl/DEzo1JlcD3lQzz1cuz0rZmEFpIqDS2mhY4r/IwEPwilIU7lg7T8/RQDVk9gA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-binance-evm@1.1.1':
+ resolution: {integrity: sha512-oNXVUCl0n+oeV+At1IW2uenAuSmdQEFlCl/L9hFU86vX3C6a1hnudGyuIVEP7hthiHeX+FaOg2cMY9SDBngj2w==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-binance@1.0.2':
+ resolution: {integrity: sha512-NlU2DUn/eWdLYxyAybD5zwHZpl/cHPRA5O+j63MDiXpgou79tqkyXoRaG0/kPd9gJPEZfRvLTEAOZ1Y2PqDrKw==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-bitkeep@1.1.7':
+ resolution: {integrity: sha512-J557vdOZoZOSu4CDQO+WpaXcnmOSzHxURepnlpvhnCYHvY5cZhPKVTDI4CfxarMmryExxOXjnnomWMj6o/nY1A==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-bybit@1.0.2':
+ resolution: {integrity: sha512-9fu8ICb0UG0Xcb1rfzR1SMpFjEiyLNoQ9heDKfW/RgQAjSscVS9CFRavNusdekZeG4ypPfGXvPGWlyBee1IY5A==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-foxwallet@1.0.1':
+ resolution: {integrity: sha512-XRPyhY6gixXwzk9ipp5z6PxpjKWVuoIKhvNEuxPTQN8Z58OGOvii/dg6veS65Rqio+GRMVPI9sk+zCmLjF0ywA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-gatewallet@1.0.4':
+ resolution: {integrity: sha512-wTX2sTXyoR2DiwcAovg6XG5HGNdNkWy2I9MB53Csny6NvTbxDzeCWy64NEsKzxRCGMoe8Zs9JfTSVReJ6OdWtw==}
+ engines: {node: '>=18', pnpm: '>=9'}
+
+ '@tronweb3/tronwallet-adapter-guarda@1.0.0':
+ resolution: {integrity: sha512-FkHDxL40ano+WYOu7BWKogW1vfeeRd1LvIf55ni/GVeFL8EtJsb5yBEGR8lThcGbHz+Wjsa6a8uU6MyuNirZ1g==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-imtoken@1.0.3':
+ resolution: {integrity: sha512-Qoo8H3WePX+o6LPJ3AseveyFxqbokYGtTR0ez1CTYJyT2JKGq3llfFAGQgND++ahHWfcdYBzZXk9qa+KuQLopA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-ledger@1.1.12':
+ resolution: {integrity: sha512-yvO5S8zRgs/KNvJATUu6rc+yyhbWxz5ZQYNcln6FXMYSR25PIU9LkVNmJGTIrR6hRFnDTvyNTqduGqE+6+7ybA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-metamask-evm@1.0.0':
+ resolution: {integrity: sha512-h5+YPjvy15eSjV92SLTY+mfQ7EX9wLmcarPS09xEW9b2LUxoOVVSVcNECNFRcURRlOuWdclOI9Apq1yFMuFWHg==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-metamask-tron@1.0.1':
+ resolution: {integrity: sha512-1r/a0BOnLavVfM2QOjXCz4fLxu2aSP/AKOhuGPm8M31oROo+PNw8XtrS2xDTB9C/pAgUMMgYJTKpJ0KK0Ed+yg==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-okxwallet@1.0.7':
+ resolution: {integrity: sha512-XXPZfS/FZ4a48RCDuxXOGdfkvJyO1j72J1zHJ48326r1YubiHVKWSp6liAhedF2nEXVAQOYCSUtGzuOgbXrNYw==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-react-hooks@1.1.11':
+ resolution: {integrity: sha512-ED2zs3TCTA3wPAcfkt7cHXENwLH5ob41MRstJh8N4iqwSaB5Z7paadGwGxl1qkjvb5V4rbMRWdRBi17cnaqnVQ==}
+ engines: {node: '>=16', pnpm: '>=7'}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+
+ '@tronweb3/tronwallet-adapter-tokenpocket@1.0.8':
+ resolution: {integrity: sha512-TmkbAyB79MnZ/raivEtPH33gy2xXSbNxUJGUKDebBZ/TXQamesjS2NNfNqNmYsm66wvHSe3ITlvMhRuyAoNL+g==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-tomowallet@1.0.1':
+ resolution: {integrity: sha512-YTzdGc+WMP3moAvD/3XlPYEs1XJNi2EhURIT4vFfbRXcxdq7dm4rDziinZR07Nh7ULsIbZlHoGh8DTGvoXfOlw==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-tronlink-evm@1.1.0':
+ resolution: {integrity: sha512-TlHhIzo9wzuF8KO2yEqoqI4l7lpDGVzLxBOCbToTeF8ORO+JbOu103YRhC4rISYdHANxooChZVYFtyAjpkuT4Q==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-tronlink@1.1.13':
+ resolution: {integrity: sha512-Oq5L0FyBM+g49DCr0DYdSx8xuhiqIlKoBTPNVmCTSDoWnoZpIh0XE33Axm/4OUMO2NHFpQMvP3pFo7QIllOZ/w==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-trust@1.0.2':
+ resolution: {integrity: sha512-Bw1Gikor29BDzRN8lsCVk9ElviG9wRwR7egGHDYwEiwkFXb31qZXbMCFFSJvK4GZ5sQCCVWenPR6A2Te4t4WHA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapter-walletconnect@3.0.2':
+ resolution: {integrity: sha512-0xAXsDi/u1Zgi30wcxQ4w/VKgQuXW0b1m91mZX9fGvFLQZ4XkirV9l/Avl9Rzgqv9tmhMEBZ3qQ2pg1LmZDIGQ==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/tronwallet-adapters@1.2.21':
+ resolution: {integrity: sha512-KcoGAEkFFHz/hiDmC9kR8qDEc6QcTBO22ERp+lWaWwrVvjCRGSnbKETPHm2wJZL71T8BF1QDjCH/nq6a4tooAA==}
+ engines: {node: '>=16', pnpm: '>=7'}
+
+ '@tronweb3/walletconnect-tron@4.0.1':
+ resolution: {integrity: sha512-/JGhj7dgNaFHYy5ino7+az+QbFiTGgKkwzEXYkQtYZQJluCp/Ygw3GBE/Y0XpWvU+K6hNh5Rn1aMkuX3sL+xUQ==}
+ engines: {node: '>=18', pnpm: '>=7'}
'@ts-graphviz/adapter@2.0.6':
resolution: {integrity: sha512-kJ10lIMSWMJkLkkCG5gt927SnGZcBuG0s0HHswGzcHTgvtUe7yk5/3zTEr0bafzsodsOq5Gi6FhQeV775nC35Q==}
@@ -7645,6 +7894,9 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+ '@types/jsdom@20.0.1':
+ resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -7720,6 +7972,9 @@ packages:
'@types/stylis@4.2.7':
resolution: {integrity: sha512-VgDNokpBoKF+wrdvhAAfS55OMQpL6QRglwTwNC3kIgBrzZxA4WsFj+2eLfEA/uMUDzBcEhYmjSbwQakn/i3ajA==}
+ '@types/tough-cookie@4.0.5':
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -8066,17 +8321,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 +8350,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==}
@@ -8310,6 +8565,16 @@ packages:
'@walletconnect/logger@3.0.2':
resolution: {integrity: sha512-7wR3wAwJTOmX4gbcUZcFMov8fjftY05+5cO/d4cpDD8wDzJ+cIlKdYOXaXfxHLSYeDazMXIsxMYjHYVDfkx+nA==}
+ '@walletconnect/modal-core@2.6.2':
+ resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==}
+
+ '@walletconnect/modal-ui@2.6.2':
+ resolution: {integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==}
+
+ '@walletconnect/modal@2.6.2':
+ resolution: {integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==}
+ deprecated: Please follow the migration guide on https://docs.reown.com/appkit/upgrade/wcm
+
'@walletconnect/relay-api@1.0.11':
resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
@@ -8429,6 +8694,10 @@ packages:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
+ abab@2.0.6:
+ resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ deprecated: Use your platform's native atob() and btoa() methods instead
+
abbrev@3.0.1:
resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -8482,6 +8751,9 @@ packages:
resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
engines: {node: '>= 0.6'}
+ acorn-globals@7.0.1:
+ resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
+
acorn-import-attributes@1.9.5:
resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
@@ -8492,6 +8764,10 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-walk@8.3.5:
+ resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==}
+ engines: {node: '>=0.4.0'}
+
acorn@8.16.0:
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
engines: {node: '>=0.4.0'}
@@ -8503,6 +8779,10 @@ packages:
aes-js@4.0.0-beta.5:
resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==}
+ agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+
agent-base@7.1.4:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
@@ -8531,6 +8811,10 @@ packages:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
+ ansi-escapes@4.3.2:
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
+
ansi-escapes@7.3.0:
resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
@@ -8891,6 +9175,9 @@ packages:
resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==}
engines: {node: '>= 10.0.0'}
+ bignumber.js@9.1.2:
+ resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
+
bignumber.js@9.3.1:
resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
@@ -9165,6 +9452,10 @@ packages:
resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ char-regex@1.0.2:
+ resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+ engines: {node: '>=10'}
+
character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
@@ -9235,6 +9526,9 @@ packages:
citty@0.2.1:
resolution: {integrity: sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==}
+ cjs-module-lexer@1.4.3:
+ resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
+
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -9304,6 +9598,13 @@ packages:
resolution: {integrity: sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ co@4.6.0:
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+
+ collect-v8-coverage@1.0.3:
+ resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==}
+
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -9666,6 +9967,11 @@ packages:
create-hmac@1.1.7:
resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ create-jest@29.7.0:
+ resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
@@ -9729,8 +10035,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 +10047,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
@@ -9751,6 +10057,16 @@ packages:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+ cssom@0.3.8:
+ resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
+
+ cssom@0.5.0:
+ resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
+
+ cssstyle@2.3.0:
+ resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
+ engines: {node: '>=8'}
+
csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
@@ -9779,6 +10095,10 @@ packages:
resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
engines: {node: '>= 6'}
+ data-urls@3.0.2:
+ resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
+ engines: {node: '>=12'}
+
data-view-buffer@1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
@@ -9869,6 +10189,9 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
decode-named-character-reference@1.3.0:
resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
@@ -10046,6 +10369,10 @@ packages:
devalue@5.6.3:
resolution: {integrity: sha512-nc7XjUU/2Lb+SvEFVGcWLiKkzfw8+qHI7zn8WYXKkLMgfGSHbgCEaR6bJpev8Cm6Rmrb19Gfd/tZvGqx9is3wg==}
+ diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
diff@5.2.2:
resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==}
engines: {node: '>=0.3.1'}
@@ -10081,6 +10408,11 @@ packages:
domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ domexception@4.0.0:
+ resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
+ engines: {node: '>=12'}
+ deprecated: Use your platform's native DOMException instead
+
domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
@@ -10142,8 +10474,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:
@@ -10164,6 +10496,10 @@ packages:
elliptic@6.6.1:
resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
+ emittery@0.13.1:
+ resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
+ engines: {node: '>=12'}
+
emoji-regex@10.6.0:
resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
@@ -10209,6 +10545,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
entities@7.0.1:
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
engines: {node: '>=0.12'}
@@ -10459,8 +10799,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:
@@ -10556,6 +10896,10 @@ packages:
ethereum-cryptography@2.2.1:
resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
+ ethers@6.13.5:
+ resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==}
+ engines: {node: '>=14.0.0'}
+
ethers@6.16.0:
resolution: {integrity: sha512-U1wulmetNymijEhpSEQ7Ct/P/Jw9/e7R1j5XIbPRydgV2DjLVMsULDlNksq3RQnFgKoLlZf88ijYtWEXcPa07A==}
engines: {node: '>=14.0.0'}
@@ -10614,10 +10958,18 @@ packages:
resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
engines: {node: '>=6'}
+ exit@0.1.2:
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+ engines: {node: '>= 0.8.0'}
+
expect-type@1.3.0:
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
engines: {node: '>=12.0.0'}
+ expect@29.7.0:
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
exponential-backoff@3.1.3:
resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
@@ -10799,8 +11151,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==}
@@ -11112,6 +11464,9 @@ packages:
engines: {node: '>=0.6.0'}
hasBin: true
+ google-protobuf@3.21.4:
+ resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
+
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -11144,8 +11499,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==}
@@ -11269,10 +11624,17 @@ 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-encoding-sniffer@3.0.0:
+ resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
+ engines: {node: '>=12'}
+
+ html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+
html-parse-stringify@3.0.1:
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
@@ -11287,6 +11649,10 @@ packages:
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
+ http-proxy-agent@5.0.0:
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
+
http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
@@ -11298,6 +11664,10 @@ packages:
https-browserify@1.0.0:
resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
+ https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+
https-proxy-agent@7.0.6:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
@@ -11324,8 +11694,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.15:
+ resolution: {integrity: sha512-DW+vfwYtt+8lqpknhPGBfPL2P4SvtUv+KGDZAjfPrbnKAJkzVWGNRYw/rNkzxSzCBvnpiUnF5AgX7kL8hCg6uw==}
peerDependencies:
typescript: ^5
peerDependenciesMeta:
@@ -11391,6 +11761,11 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
import-meta-resolve@4.2.0:
resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
@@ -11568,6 +11943,10 @@ packages:
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
+ is-generator-fn@2.1.0:
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
+
is-generator-function@1.1.2:
resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
engines: {node: '>= 0.4'}
@@ -11651,6 +12030,9 @@ packages:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
+ is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -11795,6 +12177,22 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
+ istanbul-lib-instrument@6.0.3:
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-source-maps@4.0.1:
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
+
+ istanbul-reports@3.2.0:
+ resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
+ engines: {node: '>=8'}
+
iterator.prototype@1.1.5:
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
engines: {node: '>= 0.4'}
@@ -11823,10 +12221,61 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ jest-changed-files@29.7.0:
+ resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-circus@29.7.0:
+ resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-cli@29.7.0:
+ resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
+ jest-config@29.7.0:
+ resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ ts-node:
+ optional: true
+
+ jest-diff@29.7.0:
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-diff@30.2.0:
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-docblock@29.7.0:
+ resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-each@29.7.0:
+ resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-environment-jsdom@29.7.0:
+ resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
jest-environment-node@29.7.0:
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11839,6 +12288,14 @@ packages:
resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-leak-detector@29.7.0:
+ resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-matcher-utils@29.7.0:
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-message-util@29.7.0:
resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11847,10 +12304,39 @@ packages:
resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-pnp-resolver@1.2.3:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+
jest-regex-util@29.6.3:
resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-resolve-dependencies@29.7.0:
+ resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-resolve@29.7.0:
+ resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-runner@29.7.0:
+ resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-runtime@29.7.0:
+ resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-snapshot@29.7.0:
+ resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-util@29.7.0:
resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11859,10 +12345,24 @@ packages:
resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-watcher@29.7.0:
+ resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
jest-worker@29.7.0:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest@29.7.0:
+ resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
jiti@2.6.1:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
@@ -11870,8 +12370,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==}
@@ -11904,6 +12404,15 @@ packages:
jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
+ jsdom@20.0.3:
+ resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
jsesc@3.0.2:
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
@@ -12014,8 +12523,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:
@@ -12090,12 +12599,21 @@ packages:
resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
engines: {node: '>=20.0.0'}
+ lit-element@3.3.3:
+ resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==}
+
lit-element@4.2.2:
resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==}
+ lit-html@2.8.0:
+ resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==}
+
lit-html@3.3.2:
resolution: {integrity: sha512-Qy9hU88zcmaxBXcc10ZpdK7cOLXvXpRoBxERdtqV9QOrfpMZZ6pSYP91LhpPtap3sFMUiL7Tw2RImbe0Al2/kw==}
+ lit@2.8.0:
+ resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
+
lit@3.3.0:
resolution: {integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==}
@@ -12726,6 +13244,9 @@ packages:
resolution: {integrity: sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==}
engines: {node: '>= 0.8.0'}
+ motion@10.16.2:
+ resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
+
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -13053,6 +13574,9 @@ packages:
'@types/node':
optional: true
+ nwsapi@2.2.23:
+ resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
+
nx@22.5.4:
resolution: {integrity: sha512-L8wL7uCjnmpyvq4r2mN9s+oriUE4lY+mX9VgOpjj0ucRd5nzaEaBQppVs0zQGkbKC0BnHS8PGtnAglspd5Gh1Q==}
hasBin: true
@@ -13402,6 +13926,9 @@ packages:
parse-url@8.1.0:
resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -13661,20 +14188,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 +14248,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 +14266,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 +14343,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 +14367,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 +14383,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
@@ -13889,6 +14416,9 @@ packages:
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
engines: {node: ^10 || ^12 || >=14}
+ preact@10.23.0:
+ resolution: {integrity: sha512-Pox0jeY4q6PGkFB5AsXni+zHxxx/sAYFIFZzukW4nIpoJLRziRX0xC4WjZENlkSrDQvqVgZcaZzZ/NL8/A+H/w==}
+
preact@10.24.2:
resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
@@ -14004,12 +14534,18 @@ packages:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
+ proxy-compare@2.5.1:
+ resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==}
+
proxy-compare@3.0.1:
resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==}
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ psl@1.15.0:
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
+
public-encrypt@4.0.3:
resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
@@ -14032,6 +14568,9 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
+ pure-rand@6.1.0:
+ resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
+
q@1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
@@ -14040,8 +14579,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:
@@ -14083,6 +14622,9 @@ packages:
engines: {node: '>=0.4.x'}
deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+ querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
@@ -14170,8 +14712,8 @@ packages:
react-native:
optional: true
- react-i18next@16.5.5:
- resolution: {integrity: sha512-5Z35e2JMALNR16FK/LDNQoAatQTVuO/4m4uHrIzewOPXIyf75gAHzuNLSWwmj5lRDJxDvXRJDECThkxWSAReng==}
+ react-i18next@16.5.6:
+ resolution: {integrity: sha512-Ua7V2/efA88ido7KyK51fb8Ki8M/sRfW8LR/rZ/9ZKr2luhuTI7kwYZN5agT1rWG7aYm5G0RYE/6JR8KJoCMDw==}
peerDependencies:
i18next: '>= 25.6.2'
react: '>= 16.8.0'
@@ -14424,6 +14966,9 @@ packages:
regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+
regexp.prototype.flags@1.5.4:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
@@ -14503,6 +15048,9 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+
resize-observer-polyfill@1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
@@ -14613,6 +15161,10 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ rxjs@6.6.7:
+ resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+ engines: {npm: '>=2.0.0'}
+
rxjs@7.8.2:
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
@@ -14660,6 +15212,10 @@ packages:
resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==}
engines: {node: '>=11.0.0'}
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
scheduler@0.27.0:
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
@@ -14680,11 +15236,21 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
semver@7.7.2:
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
semver@7.7.4:
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
engines: {node: '>=10'}
@@ -14705,14 +15271,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:
@@ -14893,6 +15459,9 @@ packages:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
+ source-map-support@0.5.13:
+ resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
+
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
@@ -14944,8 +15513,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
@@ -15047,6 +15616,10 @@ packages:
string-hash@1.1.3:
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
+ string-length@4.0.2:
+ resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+ engines: {node: '>=10'}
+
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -15203,8 +15776,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 +15825,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:
@@ -15306,6 +15879,9 @@ packages:
engines: {node: '>=16'}
hasBin: true
+ symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+
system-architecture@0.1.0:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
@@ -15336,8 +15912,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==}
+ tar@7.5.11:
+ resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==}
engines: {node: '>=18'}
tar@7.5.8:
@@ -15471,9 +16047,17 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
+
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ tr46@3.0.0:
+ resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
+ engines: {node: '>=12'}
+
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -15493,6 +16077,9 @@ packages:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
+ tronweb@6.2.2:
+ resolution: {integrity: sha512-jRBf4+7fJ0HUVzveBi0tE21r3EygCNtbYE92T38Sxlwr/x320W2vz+dvGLOIpp4kW/CvJ4HLvtnb6U30A0V2eA==}
+
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
@@ -15578,6 +16165,10 @@ packages:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
+ type-fest@0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+
type-fest@0.4.1:
resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==}
engines: {node: '>=6'}
@@ -15669,6 +16260,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'}
@@ -15759,6 +16354,10 @@ packages:
universal-user-agent@6.0.1:
resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
+ universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+
universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -15889,6 +16488,9 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+
url@0.11.0:
resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==}
@@ -15955,6 +16557,10 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ v8-to-istanbul@9.3.0:
+ resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+ engines: {node: '>=10.12.0'}
+
valibot@0.42.1:
resolution: {integrity: sha512-3keXV29Ar5b//Hqi4MbSdV7lfVp6zuYLZuA9V1PvQUsXqogr+u5lvLPLk3A4f74VUXDnf/JfWMN6sB+koJ/FFw==}
peerDependencies:
@@ -15990,6 +16596,22 @@ packages:
resolution: {integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ validator@13.15.23:
+ resolution: {integrity: sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==}
+ engines: {node: '>= 0.10'}
+
+ valtio@1.11.2:
+ resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
+ engines: {node: '>=12.20.0'}
+ peerDependencies:
+ '@types/react': '>=16.8'
+ react: '>=16.8'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+
valtio@2.1.7:
resolution: {integrity: sha512-DwJhCDpujuQuKdJ2H84VbTjEJJteaSmqsuUltsfbfdbotVfNeTE4K/qc/Wi57I9x8/2ed4JNdjEna7O6PfavRg==}
engines: {node: '>=12.20.0'}
@@ -16331,14 +16953,18 @@ 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:
typescript:
optional: true
+ w3c-xmlserializer@4.0.0:
+ resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
+ engines: {node: '>=14'}
+
wagmi@2.19.5:
resolution: {integrity: sha512-RQUfKMv6U+EcSNNGiPbdkDtJwtuFxZWLmvDiQmjjBgkuPulUwDJsKhi7gjynzJdsx2yDqhHCXkKsbbfbIsHfcQ==}
peerDependencies:
@@ -16395,12 +17021,29 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
+ whatwg-encoding@2.0.0:
+ resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
+ engines: {node: '>=12'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
+
whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
+ whatwg-mimetype@3.0.0:
+ resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
+ engines: {node: '>=12'}
+
+ whatwg-url@11.0.0:
+ resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
+ engines: {node: '>=12'}
+
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -16591,6 +17234,13 @@ packages:
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
engines: {node: '>=18'}
+ xml-name-validator@4.0.0:
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
+
+ xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+
xmlhttprequest-ssl@2.1.2:
resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==}
engines: {node: '>=0.4.0'}
@@ -17024,6 +17674,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/runtime@7.26.10':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
'@babel/runtime@7.28.6': {}
'@babel/template@7.28.6':
@@ -17071,7 +17725,7 @@ 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
@@ -17095,7 +17749,7 @@ 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
@@ -17117,6 +17771,8 @@ snapshots:
- utf-8-validate
- zod
+ '@bcoe/v8-coverage@0.2.3': {}
+
'@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))':
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))
@@ -17161,6 +17817,24 @@ snapshots:
- typescript
- use-sync-external-store
+ '@binance/w3w-types@1.1.4':
+ dependencies:
+ eventemitter3: 5.0.4
+
+ '@binance/w3w-utils@1.1.6':
+ dependencies:
+ '@binance/w3w-types': 1.1.4
+ eventemitter3: 5.0.4
+ hash.js: 1.1.7
+ js-base64: 3.7.8
+
+ '@binance/w3w-utils@1.1.8':
+ dependencies:
+ '@binance/w3w-types': 1.1.4
+ eventemitter3: 5.0.4
+ hash.js: 1.1.7
+ js-base64: 3.7.8
+
'@biomejs/biome@2.4.6':
optionalDependencies:
'@biomejs/cli-darwin-arm64': 2.4.6
@@ -17235,7 +17909,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,7 +17918,7 @@ 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)
@@ -17926,7 +18600,7 @@ snapshots:
'@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
+ '@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)':
@@ -18694,14 +19368,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 +19405,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 +19421,7 @@ snapshots:
'@eslint/js@8.57.1': {}
- '@eslint/js@9.39.3': {}
+ '@eslint/js@9.39.4': {}
'@eslint/object-schema@2.1.7': {}
@@ -19054,23 +19728,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.0
- '@hpke/common@1.9.0': {}
+ '@hpke/common@1.10.0': {}
- '@hpke/core@1.8.0':
+ '@hpke/core@1.9.0':
dependencies:
- '@hpke/common': 1.9.0
+ '@hpke/common': 1.10.0
- '@hpke/dhkem-x25519@1.7.0':
+ '@hpke/dhkem-x25519@1.8.0':
dependencies:
- '@hpke/common': 1.9.0
+ '@hpke/common': 1.10.0
- '@hpke/dhkem-x448@1.7.0':
+ '@hpke/dhkem-x448@1.8.0':
dependencies:
- '@hpke/common': 1.9.0
+ '@hpke/common': 1.10.0
'@humanfs/core@0.19.1': {}
@@ -19423,6 +20097,50 @@ snapshots:
'@istanbuljs/schema@0.1.3': {}
+ '@jest/console@29.7.0':
+ dependencies:
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ chalk: 4.1.2
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ slash: 3.0.0
+
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)':
+ dependencies:
+ '@jest/console': 29.7.0
+ '@jest/reporters': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ ci-info: 3.9.0
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-changed-files: 29.7.0
+ jest-config: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ jest-haste-map: 29.7.0
+ jest-message-util: 29.7.0
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-resolve-dependencies: 29.7.0
+ jest-runner: 29.7.0
+ jest-runtime: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ jest-watcher: 29.7.0
+ micromatch: 4.0.8
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ strip-ansi: 6.0.1
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
'@jest/create-cache-key-function@29.7.0':
dependencies:
'@jest/types': 29.6.3
@@ -19436,6 +20154,17 @@ snapshots:
'@types/node': 25.3.5
jest-mock: 29.7.0
+ '@jest/expect-utils@29.7.0':
+ dependencies:
+ jest-get-type: 29.6.3
+
+ '@jest/expect@29.7.0':
+ dependencies:
+ expect: 29.7.0
+ jest-snapshot: 29.7.0
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/fake-timers@29.7.0':
dependencies:
'@jest/types': 29.6.3
@@ -19447,6 +20176,44 @@ snapshots:
'@jest/get-type@30.1.0': {}
+ '@jest/globals@29.7.0':
+ dependencies:
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/types': 29.6.3
+ jest-mock: 29.7.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@jest/reporters@29.7.0':
+ dependencies:
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/node': 25.3.5
+ chalk: 4.1.2
+ collect-v8-coverage: 1.0.3
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 6.0.3
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.2.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ jest-worker: 29.7.0
+ slash: 3.0.0
+ string-length: 4.0.2
+ strip-ansi: 6.0.1
+ v8-to-istanbul: 9.3.0
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/schemas@29.6.3':
dependencies:
'@sinclair/typebox': 0.27.10
@@ -19455,6 +20222,26 @@ snapshots:
dependencies:
'@sinclair/typebox': 0.34.48
+ '@jest/source-map@29.6.3':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+
+ '@jest/test-result@29.7.0':
+ dependencies:
+ '@jest/console': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.3
+
+ '@jest/test-sequencer@29.7.0':
+ dependencies:
+ '@jest/test-result': 29.7.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ slash: 3.0.0
+
'@jest/transform@29.7.0':
dependencies:
'@babel/core': 7.29.0
@@ -19518,6 +20305,48 @@ snapshots:
'@kwsites/promise-deferred@1.1.1': {}
+ '@ledgerhq/devices@6.27.1':
+ dependencies:
+ '@ledgerhq/errors': 6.29.0
+ '@ledgerhq/logs': 6.14.0
+ rxjs: 6.6.7
+ semver: 7.7.4
+
+ '@ledgerhq/devices@8.10.0':
+ dependencies:
+ '@ledgerhq/errors': 6.29.0
+ '@ledgerhq/logs': 6.14.0
+ rxjs: 7.8.2
+ semver: 7.7.3
+
+ '@ledgerhq/errors@6.29.0': {}
+
+ '@ledgerhq/hw-app-trx@6.29.2':
+ dependencies:
+ '@ledgerhq/hw-transport': 6.32.0
+
+ '@ledgerhq/hw-transport-webhid@6.27.1':
+ dependencies:
+ '@ledgerhq/devices': 6.27.1
+ '@ledgerhq/errors': 6.29.0
+ '@ledgerhq/hw-transport': 6.27.1
+ '@ledgerhq/logs': 6.14.0
+
+ '@ledgerhq/hw-transport@6.27.1':
+ dependencies:
+ '@ledgerhq/devices': 6.27.1
+ '@ledgerhq/errors': 6.29.0
+ events: 3.3.0
+
+ '@ledgerhq/hw-transport@6.32.0':
+ dependencies:
+ '@ledgerhq/devices': 8.10.0
+ '@ledgerhq/errors': 6.29.0
+ '@ledgerhq/logs': 6.14.0
+ events: 3.3.0
+
+ '@ledgerhq/logs@6.14.0': {}
+
'@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)':
dependencies:
'@npmcli/arborist': 9.1.6
@@ -19649,6 +20478,18 @@ snapshots:
- utf-8-validate
- zod
+ '@lifi/sdk-provider-tron@4.0.0-alpha.21(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.21(bufferutil@4.1.0)(typescript@5.9.3)(utf-8-validate@6.0.6)(zod@4.3.6)
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ tronweb: 6.2.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - typescript
+ - 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)':
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))
@@ -19684,6 +20525,15 @@ snapshots:
- utf-8-validate
- zod
+ '@lifi/sdk@4.0.0-alpha.21(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:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
'@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)
@@ -19710,11 +20560,11 @@ snapshots:
'@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.15(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.6(i18next@25.8.15(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)
@@ -19752,11 +20602,11 @@ snapshots:
'@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.15(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.6(i18next@25.8.15(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)
@@ -19809,12 +20659,12 @@ 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.15(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.6(i18next@25.8.15(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)
@@ -19858,12 +20708,12 @@ 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.15(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.6(i18next@25.8.15(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)
@@ -19898,6 +20748,10 @@ snapshots:
dependencies:
'@types/react': 19.2.14
+ '@lit/reactive-element@1.6.3':
+ dependencies:
+ '@lit-labs/ssr-dom-shim': 1.5.1
+
'@lit/reactive-element@2.1.2':
dependencies:
'@lit-labs/ssr-dom-shim': 1.5.1
@@ -19914,7 +20768,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
@@ -19998,6 +20852,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@metamask/multichain-api-client@0.11.0': {}
+
'@metamask/object-multiplex@2.1.0':
dependencies:
once: 1.4.0
@@ -20046,14 +20902,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 +20928,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
@@ -20188,6 +21044,15 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.8.1
+ '@motionone/dom@10.18.0':
+ dependencies:
+ '@motionone/animation': 10.18.0
+ '@motionone/generators': 10.18.0
+ '@motionone/types': 10.17.1
+ '@motionone/utils': 10.18.0
+ hey-listen: 1.0.8
+ tslib: 2.8.1
+
'@motionone/easing@10.18.0':
dependencies:
'@motionone/utils': 10.18.0
@@ -20199,6 +21064,11 @@ snapshots:
'@motionone/utils': 10.18.0
tslib: 2.8.1
+ '@motionone/svelte@10.16.4':
+ dependencies:
+ '@motionone/dom': 10.18.0
+ tslib: 2.8.1
+
'@motionone/types@10.17.1': {}
'@motionone/utils@10.18.0':
@@ -20207,6 +21077,11 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.8.1
+ '@motionone/vue@10.16.4':
+ dependencies:
+ '@motionone/dom': 10.18.0
+ tslib: 2.8.1
+
'@msgpack/msgpack@3.1.2': {}
'@msgpack/msgpack@3.1.3': {}
@@ -20502,7 +21377,7 @@ 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
@@ -20510,7 +21385,7 @@ snapshots:
'@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
@@ -20756,7 +21631,7 @@ snapshots:
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 +21644,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 +21671,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 +21682,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':
@@ -20833,7 +21708,7 @@ snapshots:
json-parse-even-better-errors: 5.0.0
pacote: 21.4.0
proc-log: 6.1.0
- semver: 7.7.2
+ semver: 7.7.4
transitivePeerDependencies:
- supports-color
@@ -20864,7 +21739,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':
@@ -20921,7 +21796,7 @@ 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
tinyexec: 1.0.2
ufo: 1.6.3
@@ -20955,12 +21830,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@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.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-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))
+ '@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.30(typescript@5.9.3))
'@vue/devtools-kit': 7.7.9
birpc: 2.9.0
consola: 3.4.2
@@ -20987,7 +21862,7 @@ snapshots:
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-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.30(typescript@5.9.3))
which: 5.0.0
ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)
transitivePeerDependencies:
@@ -21051,7 +21926,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 +21941,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.3.5)(eslint@9.39.4(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.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.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.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.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.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
@@ -21098,8 +21973,8 @@ snapshots:
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-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.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.30(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
transitivePeerDependencies:
- '@biomejs/biome'
@@ -21133,7 +22008,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
@@ -21448,11 +22323,11 @@ 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)':
dependencies:
- '@preact/signals-core': 1.13.0
+ '@preact/signals-core': 1.14.0
preact: 10.28.4
'@privy-io/api-base@1.7.0':
@@ -22720,13 +23595,13 @@ snapshots:
'@rolldown/pluginutils@1.0.0-rc.3': {}
- '@rolldown/pluginutils@1.0.0-rc.7': {}
+ '@rolldown/pluginutils@1.0.0-rc.8': {}
'@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
@@ -22945,7 +23820,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
@@ -24426,10 +25301,10 @@ 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.3(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/react-store': 0.9.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@tanstack/router-core': 1.166.2
isbot: 5.1.35
react: 19.2.4
@@ -24437,9 +25312,9 @@ snapshots:
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)
@@ -24453,19 +25328,361 @@ snapshots:
'@tanstack/router-core@1.166.2':
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': {}
'@thumbmarkjs/thumbmarkjs@0.16.0': {}
+ '@tootallnate/once@2.0.0': {}
+
+ '@tronweb3/abstract-adapter-evm@1.0.3(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ eventemitter3: 4.0.7
+ jest: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ jest-environment-jsdom: 29.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - bufferutil
+ - canvas
+ - node-notifier
+ - supports-color
+ - ts-node
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-abstract-adapter@1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ eventemitter3: 4.0.7
+ tronweb: 6.2.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-binance-evm@1.1.1(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@binance/w3w-utils': 1.1.8
+ '@tronweb3/abstract-adapter-evm': 1.0.3(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - bufferutil
+ - canvas
+ - node-notifier
+ - supports-color
+ - ts-node
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-binance@1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@binance/w3w-utils': 1.1.6
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-bitkeep@1.1.7(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-bybit@1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-foxwallet@1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-gatewallet@1.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-guarda@1.0.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-imtoken@1.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-ledger@1.1.12(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@ledgerhq/hw-app-trx': 6.29.2
+ '@ledgerhq/hw-transport': 6.27.1
+ '@ledgerhq/hw-transport-webhid': 6.27.1
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ buffer: 6.0.3
+ eventemitter3: 5.0.1
+ preact: 10.23.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-metamask-evm@1.0.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/abstract-adapter-evm': 1.0.3(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - bufferutil
+ - canvas
+ - node-notifier
+ - supports-color
+ - ts-node
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-metamask-tron@1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@metamask/multichain-api-client': 0.11.0
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-okxwallet@1.0.7(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-react-hooks@1.1.11(bufferutil@4.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-tokenpocket@1.0.8(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-tomowallet@1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-tronlink-evm@1.1.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/abstract-adapter-evm': 1.0.3(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - bufferutil
+ - canvas
+ - node-notifier
+ - supports-color
+ - ts-node
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-tronlink@1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-trust@1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@tronweb3/tronwallet-adapter-walletconnect@3.0.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))(@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)(utf-8-validate@6.0.6)(zod@4.3.6)':
+ dependencies:
+ '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/walletconnect-tron': 4.0.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)(utf-8-validate@6.0.6)(zod@4.3.6)
+ '@walletconnect/modal': 2.6.2(@types/react@19.2.14)(react@19.2.4)
+ '@walletconnect/types': 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))(db0@0.3.4)(ioredis@5.10.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'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@tronweb3/tronwallet-adapters@1.2.21(@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/node@25.3.5)(@types/react@19.2.14)(babel-plugin-macros@3.1.0)(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)(utf-8-validate@6.0.6)(zod@4.3.6)':
+ dependencies:
+ '@tronweb3/tronwallet-adapter-binance': 1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-binance-evm': 1.1.1(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-bitkeep': 1.1.7(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-bybit': 1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-foxwallet': 1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-gatewallet': 1.0.4(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-guarda': 1.0.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-imtoken': 1.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-ledger': 1.1.12(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-metamask-evm': 1.0.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-metamask-tron': 1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-okxwallet': 1.0.7(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tokenpocket': 1.0.8(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tomowallet': 1.0.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-tronlink-evm': 1.1.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-trust': 1.0.2(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ '@tronweb3/tronwallet-adapter-walletconnect': 3.0.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))(@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)(utf-8-validate@6.0.6)(zod@4.3.6)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/node'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - babel-plugin-macros
+ - bufferutil
+ - canvas
+ - db0
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - node-notifier
+ - react
+ - supports-color
+ - ts-node
+ - typescript
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@tronweb3/walletconnect-tron@4.0.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)(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/sign-client': 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))(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/universal-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))(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.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))(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'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
'@ts-graphviz/adapter@2.0.6':
dependencies:
'@ts-graphviz/common': 2.1.5
@@ -24537,7 +25754,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
@@ -24684,6 +25901,12 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
+ '@types/jsdom@20.0.1':
+ dependencies:
+ '@types/node': 25.3.5
+ '@types/tough-cookie': 4.0.5
+ parse5: 7.3.0
+
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
@@ -24748,6 +25971,8 @@ snapshots:
'@types/stylis@4.2.7': {}
+ '@types/tough-cookie@4.0.5': {}
+
'@types/trusted-types@2.0.7': {}
'@types/unist@2.0.11': {}
@@ -24784,15 +26009,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.56.1(@typescript-eslint/parser@8.56.1(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/parser': 8.56.1(eslint@9.39.4(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/type-utils': 8.56.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.56.1
- eslint: 9.39.3(jiti@2.6.1)
+ 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)
@@ -24812,14 +26037,14 @@ snapshots:
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.56.1(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
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
@@ -24854,13 +26079,13 @@ 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.56.1(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/utils': 8.56.1(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:
@@ -24894,13 +26119,13 @@ snapshots:
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.56.1(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))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(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: 9.39.4(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -24912,11 +26137,11 @@ snapshots:
'@ungap/structured-clone@1.3.0': {}
- '@unhead/vue@2.1.10(vue@3.5.29(typescript@5.9.3))':
+ '@unhead/vue@2.1.10(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)
+ vue: 3.5.30(typescript@5.9.3)
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
optional: true
@@ -25101,39 +26326,39 @@ snapshots:
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-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.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.8
'@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)
+ 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.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.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.8
'@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)
+ 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.3.5)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.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)
+ 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.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.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)
+ vue: 3.5.30(typescript@5.9.3)
'@vitest/expect@4.0.18':
dependencies:
@@ -25186,15 +26411,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 +26435,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 +26451,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 +26464,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,43 +26475,43 @@ 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@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.30(typescript@5.9.3))':
dependencies:
'@vue/devtools-kit': 7.7.9
'@vue/devtools-shared': 7.7.9
@@ -25294,7 +26519,7 @@ snapshots:
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)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- vite
@@ -25315,36 +26540,36 @@ 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)':
dependencies:
@@ -25973,6 +27198,31 @@ snapshots:
'@walletconnect/safe-json': 1.0.2
pino: 10.0.0
+ '@walletconnect/modal-core@2.6.2(@types/react@19.2.14)(react@19.2.4)':
+ dependencies:
+ valtio: 1.11.2(@types/react@19.2.14)(react@19.2.4)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
+ '@walletconnect/modal-ui@2.6.2(@types/react@19.2.14)(react@19.2.4)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@19.2.14)(react@19.2.4)
+ lit: 2.8.0
+ motion: 10.16.2
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
+ '@walletconnect/modal@2.6.2(@types/react@19.2.14)(react@19.2.4)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@19.2.14)(react@19.2.4)
+ '@walletconnect/modal-ui': 2.6.2(@types/react@19.2.14)(react@19.2.4)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/relay-api@1.0.11':
dependencies:
'@walletconnect/jsonrpc-types': 1.0.4
@@ -26653,6 +27903,8 @@ snapshots:
jsonparse: 1.3.1
through: 2.3.8
+ abab@2.0.6: {}
+
abbrev@3.0.1: {}
abbrev@4.0.0: {}
@@ -26686,6 +27938,11 @@ snapshots:
mime-types: 3.0.2
negotiator: 1.0.0
+ acorn-globals@7.0.1:
+ dependencies:
+ acorn: 8.16.0
+ acorn-walk: 8.3.5
+
acorn-import-attributes@1.9.5(acorn@8.16.0):
dependencies:
acorn: 8.16.0
@@ -26694,12 +27951,22 @@ snapshots:
dependencies:
acorn: 8.16.0
+ acorn-walk@8.3.5:
+ dependencies:
+ acorn: 8.16.0
+
acorn@8.16.0: {}
add-stream@1.0.0: {}
aes-js@4.0.0-beta.5: {}
+ agent-base@6.0.2:
+ dependencies:
+ debug: 4.4.3(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
+
agent-base@7.1.4: {}
agentkeepalive@4.6.0:
@@ -26731,6 +27998,10 @@ snapshots:
ansi-colors@4.1.3: {}
+ ansi-escapes@4.3.2:
+ dependencies:
+ type-fest: 0.21.3
+
ansi-escapes@7.3.0:
dependencies:
environment: 1.1.0
@@ -27156,6 +28427,8 @@ snapshots:
dependencies:
bindings: 1.5.0
+ bignumber.js@9.1.2: {}
+
bignumber.js@9.3.1: {}
bin-links@5.0.0:
@@ -27543,6 +28816,8 @@ snapshots:
chalk@5.6.2: {}
+ char-regex@1.0.2: {}
+
character-entities-html4@2.1.0: {}
character-entities-legacy@3.0.0: {}
@@ -27619,6 +28894,8 @@ snapshots:
citty@0.2.1: {}
+ cjs-module-lexer@1.4.3: {}
+
clean-stack@2.2.0: {}
cli-cursor@3.1.0:
@@ -27678,6 +28955,10 @@ snapshots:
cmd-shim@7.0.0: {}
+ co@4.6.0: {}
+
+ collect-v8-coverage@1.0.3: {}
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -27932,7 +29213,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:
@@ -28113,6 +29394,21 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.12
+ create-jest@29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ jest-util: 29.7.0
+ prompts: 2.4.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
create-require@1.1.1: {}
croner@9.1.0: {}
@@ -28192,47 +29488,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
@@ -28240,11 +29536,19 @@ snapshots:
dependencies:
css-tree: 2.2.1
+ cssom@0.3.8: {}
+
+ cssom@0.5.0: {}
+
+ cssstyle@2.3.0:
+ dependencies:
+ cssom: 0.3.8
+
csstype@3.2.3: {}
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:
@@ -28258,6 +29562,12 @@ snapshots:
data-uri-to-buffer@3.0.1: {}
+ data-urls@3.0.2:
+ dependencies:
+ abab: 2.0.6
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
+
data-view-buffer@1.0.2:
dependencies:
call-bound: 1.0.4
@@ -28313,6 +29623,8 @@ snapshots:
decamelize@1.2.0: {}
+ decimal.js@10.6.0: {}
+
decode-named-character-reference@1.3.0:
dependencies:
character-entities: 2.0.2
@@ -28454,7 +29766,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
@@ -28466,6 +29778,8 @@ snapshots:
devalue@5.6.3: {}
+ diff-sequences@29.6.3: {}
+
diff@5.2.2: {}
diff@8.0.3: {}
@@ -28501,6 +29815,10 @@ snapshots:
domelementtype@2.3.0: {}
+ domexception@4.0.0:
+ dependencies:
+ webidl-conversions: 7.0.0
+
domhandler@5.0.3:
dependencies:
domelementtype: 2.3.0
@@ -28566,7 +29884,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
@@ -28597,6 +29915,8 @@ snapshots:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
+ emittery@0.13.1: {}
+
emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
@@ -28642,6 +29962,8 @@ snapshots:
entities@4.5.0: {}
+ entities@6.0.1: {}
+
entities@7.0.1: {}
env-paths@2.2.1: {}
@@ -29023,20 +30345,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.4.26(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:
@@ -29119,15 +30441,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
@@ -29267,6 +30589,19 @@ snapshots:
'@scure/bip32': 1.4.0
'@scure/bip39': 1.3.0
+ ethers@6.13.5(bufferutil@4.1.0)(utf-8-validate@6.0.6):
+ dependencies:
+ '@adraffy/ens-normalize': 1.10.1
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@types/node': 22.7.5
+ aes-js: 4.0.0-beta.5
+ tslib: 2.7.0
+ ws: 8.17.1(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
ethers@6.16.0(bufferutil@4.1.0)(utf-8-validate@6.0.6):
dependencies:
'@adraffy/ens-normalize': 1.10.1
@@ -29356,8 +30691,18 @@ snapshots:
exit-hook@2.2.1: {}
+ exit@0.1.2: {}
+
expect-type@1.3.0: {}
+ expect@29.7.0:
+ dependencies:
+ '@jest/expect-utils': 29.7.0
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+
exponential-backoff@3.1.3: {}
express@4.22.1:
@@ -29402,7 +30747,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:
@@ -29561,18 +30906,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: {}
@@ -29808,7 +31153,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:
@@ -29904,6 +31249,8 @@ snapshots:
dependencies:
minimist: 1.2.8
+ google-protobuf@3.21.4: {}
+
gopd@1.2.0: {}
gql.tada@1.9.0(graphql@16.13.1)(typescript@5.9.3):
@@ -29941,7 +31288,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
@@ -30087,13 +31434,19 @@ 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.0
+ '@hpke/core': 1.9.0
+ '@hpke/dhkem-x25519': 1.8.0
+ '@hpke/dhkem-x448': 1.8.0
+
+ html-encoding-sniffer@3.0.0:
+ dependencies:
+ whatwg-encoding: 2.0.0
+
+ html-escaper@2.0.2: {}
html-parse-stringify@3.0.1:
dependencies:
@@ -30117,6 +31470,14 @@ snapshots:
statuses: 2.0.2
toidentifier: 1.0.1
+ http-proxy-agent@5.0.0:
+ dependencies:
+ '@tootallnate/once': 2.0.0
+ agent-base: 6.0.2
+ debug: 4.4.3(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
+
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.4
@@ -30128,6 +31489,13 @@ snapshots:
https-browserify@1.0.0: {}
+ https-proxy-agent@5.0.1:
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.4.3(supports-color@5.5.0)
+ transitivePeerDependencies:
+ - supports-color
+
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.4
@@ -30151,7 +31519,7 @@ snapshots:
dependencies:
'@babel/runtime': 7.28.6
- i18next@25.8.14(typescript@5.9.3):
+ i18next@25.8.15(typescript@5.9.3):
dependencies:
'@babel/runtime': 7.28.6
optionalDependencies:
@@ -30206,6 +31574,11 @@ snapshots:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
+ import-local@3.2.0:
+ dependencies:
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
+
import-meta-resolve@4.2.0: {}
impound@1.1.2:
@@ -30240,7 +31613,7 @@ 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
@@ -30384,6 +31757,8 @@ snapshots:
dependencies:
get-east-asian-width: 1.5.0
+ is-generator-fn@2.1.0: {}
+
is-generator-function@1.1.2:
dependencies:
call-bound: 1.0.4
@@ -30445,6 +31820,8 @@ snapshots:
is-plain-obj@4.1.0: {}
+ is-potential-custom-element-name@1.0.1: {}
+
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.8
@@ -30580,6 +31957,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ istanbul-lib-instrument@6.0.3:
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/parser': 7.29.0
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.2
+ semver: 7.7.4
+ transitivePeerDependencies:
+ - supports-color
+
+ istanbul-lib-report@3.0.1:
+ dependencies:
+ istanbul-lib-coverage: 3.2.2
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+
+ istanbul-lib-source-maps@4.0.1:
+ dependencies:
+ debug: 4.4.3(supports-color@5.5.0)
+ istanbul-lib-coverage: 3.2.2
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+
+ istanbul-reports@3.2.0:
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+
iterator.prototype@1.1.5:
dependencies:
define-data-property: 1.1.4
@@ -30631,6 +32037,94 @@ snapshots:
- bufferutil
- utf-8-validate
+ jest-changed-files@29.7.0:
+ dependencies:
+ execa: 5.1.1
+ jest-util: 29.7.0
+ p-limit: 3.1.0
+
+ jest-circus@29.7.0(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ chalk: 4.1.2
+ co: 4.6.0
+ dedent: 1.7.2(babel-plugin-macros@3.1.0)
+ is-generator-fn: 2.1.0
+ jest-each: 29.7.0
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-runtime: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
+ p-limit: 3.1.0
+ pretty-format: 29.7.0
+ pure-rand: 6.1.0
+ slash: 3.0.0
+ stack-utils: 2.0.6
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+
+ jest-cli@29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ create-jest: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ exit: 0.1.2
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
+ jest-config@29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@babel/core': 7.29.0
+ '@jest/test-sequencer': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@7.29.0)
+ chalk: 4.1.2
+ ci-info: 3.9.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
+ jest-environment-node: 29.7.0
+ jest-get-type: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-runner: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ micromatch: 4.0.8
+ parse-json: 5.2.0
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ strip-json-comments: 3.1.1
+ optionalDependencies:
+ '@types/node': 25.3.5
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+
+ jest-diff@29.7.0:
+ dependencies:
+ chalk: 4.1.2
+ diff-sequences: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+
jest-diff@30.2.0:
dependencies:
'@jest/diff-sequences': 30.0.1
@@ -30638,6 +32132,33 @@ snapshots:
chalk: 4.1.2
pretty-format: 30.2.0
+ jest-docblock@29.7.0:
+ dependencies:
+ detect-newline: 3.1.0
+
+ jest-each@29.7.0:
+ dependencies:
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ jest-get-type: 29.6.3
+ jest-util: 29.7.0
+ pretty-format: 29.7.0
+
+ jest-environment-jsdom@29.7.0(bufferutil@4.1.0)(utf-8-validate@6.0.6):
+ dependencies:
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/jsdom': 20.0.1
+ '@types/node': 25.3.5
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
+ jsdom: 20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
@@ -30665,6 +32186,18 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ jest-leak-detector@29.7.0:
+ dependencies:
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+
+ jest-matcher-utils@29.7.0:
+ dependencies:
+ chalk: 4.1.2
+ jest-diff: 29.7.0
+ jest-get-type: 29.6.3
+ pretty-format: 29.7.0
+
jest-message-util@29.7.0:
dependencies:
'@babel/code-frame': 7.29.0
@@ -30683,8 +32216,109 @@ snapshots:
'@types/node': 25.3.5
jest-util: 29.7.0
+ jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
+ optionalDependencies:
+ jest-resolve: 29.7.0
+
jest-regex-util@29.6.3: {}
+ jest-resolve-dependencies@29.7.0:
+ dependencies:
+ jest-regex-util: 29.6.3
+ jest-snapshot: 29.7.0
+ transitivePeerDependencies:
+ - supports-color
+
+ jest-resolve@29.7.0:
+ dependencies:
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ resolve: 1.22.11
+ resolve.exports: 2.0.3
+ slash: 3.0.0
+
+ jest-runner@29.7.0:
+ dependencies:
+ '@jest/console': 29.7.0
+ '@jest/environment': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ chalk: 4.1.2
+ emittery: 0.13.1
+ graceful-fs: 4.2.11
+ jest-docblock: 29.7.0
+ jest-environment-node: 29.7.0
+ jest-haste-map: 29.7.0
+ jest-leak-detector: 29.7.0
+ jest-message-util: 29.7.0
+ jest-resolve: 29.7.0
+ jest-runtime: 29.7.0
+ jest-util: 29.7.0
+ jest-watcher: 29.7.0
+ jest-worker: 29.7.0
+ p-limit: 3.1.0
+ source-map-support: 0.5.13
+ transitivePeerDependencies:
+ - supports-color
+
+ jest-runtime@29.7.0:
+ dependencies:
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/globals': 29.7.0
+ '@jest/source-map': 29.6.3
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ chalk: 4.1.2
+ cjs-module-lexer: 1.4.3
+ collect-v8-coverage: 1.0.3
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ jest-message-util: 29.7.0
+ jest-mock: 29.7.0
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
+ slash: 3.0.0
+ strip-bom: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ jest-snapshot@29.7.0:
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
+ '@babel/types': 7.29.0
+ '@jest/expect-utils': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0)
+ chalk: 4.1.2
+ expect: 29.7.0
+ graceful-fs: 4.2.11
+ jest-diff: 29.7.0
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ natural-compare: 1.4.0
+ pretty-format: 29.7.0
+ semver: 7.7.4
+ transitivePeerDependencies:
+ - supports-color
+
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
@@ -30703,6 +32337,17 @@ snapshots:
leven: 3.1.0
pretty-format: 29.7.0
+ jest-watcher@29.7.0:
+ dependencies:
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 25.3.5
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ emittery: 0.13.1
+ jest-util: 29.7.0
+ string-length: 4.0.2
+
jest-worker@29.7.0:
dependencies:
'@types/node': 25.3.5
@@ -30710,11 +32355,23 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
+ jest@29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
+ '@jest/types': 29.6.3
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@25.3.5)(babel-plugin-macros@3.1.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
jiti@2.6.1: {}
jose@4.15.9: {}
- jose@6.2.0: {}
+ jose@6.2.1: {}
joycon@3.1.1: {}
@@ -30739,6 +32396,39 @@ snapshots:
jsc-safe-url@0.2.4: {}
+ jsdom@20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6):
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.16.0
+ acorn-globals: 7.0.1
+ cssom: 0.5.0
+ cssstyle: 2.3.0
+ data-urls: 3.0.2
+ decimal.js: 10.6.0
+ domexception: 4.0.0
+ escodegen: 2.1.0
+ form-data: 4.0.5
+ html-encoding-sniffer: 3.0.0
+ http-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.23
+ parse5: 7.3.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.4
+ w3c-xmlserializer: 4.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 2.0.0
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
+ ws: 8.19.0(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ xml-name-validator: 4.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -30825,14 +32515,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.3.5)(typescript@5.9.3):
dependencies:
'@nodelib/fs.walk': 1.2.8
'@types/node': 25.3.5
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 +32529,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: {}
@@ -30967,7 +32658,7 @@ snapshots:
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:
@@ -31007,7 +32698,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
@@ -31027,16 +32718,32 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.2
+ lit-element@3.3.3:
+ dependencies:
+ '@lit-labs/ssr-dom-shim': 1.5.1
+ '@lit/reactive-element': 1.6.3
+ lit-html: 2.8.0
+
lit-element@4.2.2:
dependencies:
'@lit-labs/ssr-dom-shim': 1.5.1
'@lit/reactive-element': 2.1.2
lit-html: 3.3.2
+ lit-html@2.8.0:
+ dependencies:
+ '@types/trusted-types': 2.0.7
+
lit-html@3.3.2:
dependencies:
'@types/trusted-types': 2.0.7
+ lit@2.8.0:
+ dependencies:
+ '@lit/reactive-element': 1.6.3
+ lit-element: 3.3.3
+ lit-html: 2.8.0
+
lit@3.3.0:
dependencies:
'@lit/reactive-element': 2.1.2
@@ -31210,7 +32917,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.4
make-fetch-happen@15.0.2:
dependencies:
@@ -32000,6 +33707,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ motion@10.16.2:
+ dependencies:
+ '@motionone/animation': 10.18.0
+ '@motionone/dom': 10.18.0
+ '@motionone/svelte': 10.16.4
+ '@motionone/types': 10.17.1
+ '@motionone/utils': 10.18.0
+ '@motionone/vue': 10.16.4
+
mri@1.2.0: {}
mrmime@1.0.1: {}
@@ -32124,7 +33840,7 @@ snapshots:
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)
@@ -32151,7 +33867,7 @@ snapshots:
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
@@ -32254,7 +33970,7 @@ snapshots:
make-fetch-happen: 15.0.2
nopt: 9.0.0
proc-log: 6.1.0
- semver: 7.7.2
+ semver: 7.7.4
tar: 7.5.8
tinyglobby: 0.2.12
which: 6.0.1
@@ -32322,7 +34038,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 +34064,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 +34087,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 +34107,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 +34160,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.3.5)(@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)(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):
dependencies:
'@nuxt/cli': 3.33.1(@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@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.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.3.5)(eslint@9.39.4(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.30(typescript@5.9.3))(yaml@2.8.2)
+ '@unhead/vue': 2.1.10(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
@@ -32468,7 +34184,7 @@ snapshots:
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
@@ -32500,13 +34216,13 @@ 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
@@ -32570,6 +34286,8 @@ snapshots:
- xml2js
- yaml
+ nwsapi@2.2.23: {}
+
nx@22.5.4(@swc/core@1.15.18(@swc/helpers@0.5.19)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
@@ -32598,7 +34316,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
@@ -32818,7 +34536,7 @@ snapshots:
'@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
@@ -32847,7 +34565,7 @@ snapshots:
'@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
@@ -33103,6 +34821,10 @@ snapshots:
dependencies:
parse-path: 7.1.0
+ parse5@7.3.0:
+ dependencies:
+ entities: 6.0.1
+
parseurl@1.3.3: {}
path-browserify@1.0.1: {}
@@ -33366,7 +35088,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 +35096,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 +35134,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 +35156,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 +35231,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 +35253,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 +35269,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
@@ -33585,6 +35307,8 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ preact@10.23.0: {}
+
preact@10.24.2: {}
preact@10.28.4: {}
@@ -33690,10 +35414,16 @@ snapshots:
forwarded: 0.2.0
ipaddr.js: 1.9.1
+ proxy-compare@2.5.1: {}
+
proxy-compare@3.0.1: {}
proxy-from-env@1.1.0: {}
+ psl@1.15.0:
+ dependencies:
+ punycode: 2.3.1
+
public-encrypt@4.0.3:
dependencies:
bn.js: 4.12.3
@@ -33725,9 +35455,11 @@ snapshots:
punycode@2.3.1: {}
+ pure-rand@6.1.0: {}
+
q@1.5.1: {}
- qr@0.5.4: {}
+ qr@0.5.5: {}
qrcode@1.5.1:
dependencies:
@@ -33770,6 +35502,8 @@ snapshots:
querystring@0.2.0: {}
+ querystringify@2.2.0: {}
+
queue-microtask@1.2.3: {}
queue@6.0.2:
@@ -33867,11 +35601,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.6(i18next@25.8.15(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.15(typescript@5.9.3)
react: 19.2.4
use-sync-external-store: 1.4.0(react@19.2.4)
optionalDependencies:
@@ -34161,6 +35895,8 @@ snapshots:
regenerator-runtime@0.13.11: {}
+ regenerator-runtime@0.14.1: {}
+
regexp.prototype.flags@1.5.4:
dependencies:
call-bind: 1.0.8
@@ -34229,6 +35965,8 @@ snapshots:
requirejs@2.3.8: {}
+ requires-port@1.0.0: {}
+
resize-observer-polyfill@1.5.1: {}
resolve-cwd@3.0.0:
@@ -34357,6 +36095,10 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
+ rxjs@6.6.7:
+ dependencies:
+ tslib: 1.14.1
+
rxjs@7.8.2:
dependencies:
tslib: 2.8.1
@@ -34418,6 +36160,10 @@ snapshots:
sax@1.5.0: {}
+ saxes@6.0.0:
+ dependencies:
+ xmlchars: 2.2.0
+
scheduler@0.27.0: {}
scule@1.3.0: {}
@@ -34430,8 +36176,12 @@ snapshots:
semver@6.3.1: {}
+ semver@7.7.1: {}
+
semver@7.7.2: {}
+ semver@7.7.3: {}
+
semver@7.7.4: {}
send@0.19.2:
@@ -34474,11 +36224,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:
@@ -34759,6 +36509,11 @@ snapshots:
source-map-js@1.2.1: {}
+ source-map-support@0.5.13:
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+
source-map-support@0.5.21:
dependencies:
buffer-from: 1.1.2
@@ -34802,7 +36557,7 @@ snapshots:
sprintf-js@1.0.3: {}
- srvx@0.11.8: {}
+ srvx@0.11.9: {}
ssri@10.0.6:
dependencies:
@@ -34907,6 +36662,11 @@ snapshots:
string-hash@1.1.3: {}
+ string-length@4.0.2:
+ dependencies:
+ char-regex: 1.0.2
+ strip-ansi: 6.0.1
+
string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
@@ -35095,7 +36855,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,7 +36893,7 @@ 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.7)(typescript@5.9.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
chokidar: 4.0.3
@@ -35183,6 +36943,8 @@ snapshots:
picocolors: 1.1.1
sax: 1.5.0
+ symbol-tree@3.2.4: {}
+
system-architecture@0.1.0: {}
tabbable@6.4.0: {}
@@ -35226,7 +36988,7 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- tar@7.5.10:
+ tar@7.5.11:
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
@@ -35363,8 +37125,19 @@ snapshots:
totalist@3.0.1: {}
+ tough-cookie@4.1.4:
+ dependencies:
+ psl: 1.15.0
+ punycode: 2.3.1
+ universalify: 0.2.0
+ url-parse: 1.5.10
+
tr46@0.0.3: {}
+ tr46@3.0.0:
+ dependencies:
+ punycode: 2.3.1
+
tree-kill@1.2.2: {}
treeify@1.1.0: {}
@@ -35375,6 +37148,22 @@ snapshots:
trim-newlines@3.0.1: {}
+ tronweb@6.2.2(bufferutil@4.1.0)(utf-8-validate@6.0.6):
+ dependencies:
+ '@babel/runtime': 7.26.10
+ axios: 1.13.5
+ bignumber.js: 9.1.2
+ ethereum-cryptography: 2.2.1
+ ethers: 6.13.5(bufferutil@4.1.0)(utf-8-validate@6.0.6)
+ eventemitter3: 5.0.1
+ google-protobuf: 3.21.4
+ semver: 7.7.1
+ validator: 13.15.23
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
trough@2.2.0: {}
ts-api-utils@2.4.0(typescript@5.9.3):
@@ -35450,6 +37239,8 @@ snapshots:
type-fest@0.20.2: {}
+ type-fest@0.21.3: {}
+
type-fest@0.4.1: {}
type-fest@0.6.0: {}
@@ -35506,13 +37297,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.56.1(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/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(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.56.1(eslint@9.39.4(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/utils': 8.56.1(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 +37331,8 @@ snapshots:
ultrahtml@1.6.0: {}
+ unbash@2.2.0: {}
+
unbox-primitive@1.1.0:
dependencies:
call-bound: 1.0.4
@@ -35657,6 +37450,8 @@ snapshots:
universal-user-agent@6.0.1: {}
+ universalify@0.2.0: {}
+
universalify@2.0.1: {}
unpipe@1.0.0: {}
@@ -35671,10 +37466,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 +37484,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 +37536,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
@@ -35788,6 +37583,11 @@ snapshots:
dependencies:
punycode: 2.3.1
+ url-parse@1.5.10:
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+
url@0.11.0:
dependencies:
punycode: 1.3.2
@@ -35848,6 +37648,12 @@ snapshots:
kleur: 4.1.5
sade: 1.8.1
+ v8-to-istanbul@9.3.0:
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/istanbul-lib-coverage': 2.0.6
+ convert-source-map: 2.0.0
+
valibot@0.42.1(typescript@5.9.3):
optionalDependencies:
typescript: 5.9.3
@@ -35869,6 +37675,16 @@ snapshots:
validate-npm-package-name@6.0.2: {}
+ validator@13.15.23: {}
+
+ valtio@1.11.2(@types/react@19.2.14)(react@19.2.4):
+ dependencies:
+ proxy-compare: 2.5.1
+ use-sync-external-store: 1.4.0(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.14
+ react: 19.2.4
+
valtio@2.1.7(@types/react@19.2.14)(react@19.2.4):
dependencies:
proxy-compare: 3.0.1
@@ -36020,7 +37836,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.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)):
dependencies:
'@babel/code-frame': 7.29.0
chokidar: 4.0.3
@@ -36034,7 +37850,7 @@ snapshots:
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
@@ -36079,7 +37895,7 @@ snapshots:
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@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.30(typescript@5.9.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.8
@@ -36087,7 +37903,7 @@ snapshots:
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)
+ 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)):
dependencies:
@@ -36146,7 +37962,7 @@ snapshots:
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)
- 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):
+ vitest@4.0.18(@types/node@25.3.5)(jiti@2.6.1)(jsdom@20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6))(terser@5.46.0)(tsx@4.21.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))
@@ -36170,6 +37986,7 @@ snapshots:
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 25.3.5
+ jsdom: 20.0.3(bufferutil@4.1.0)(utf-8-validate@6.0.6)
transitivePeerDependencies:
- jiti
- less
@@ -36197,10 +38014,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,16 +38025,20 @@ 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
+ w3c-xmlserializer@4.0.0:
+ dependencies:
+ xml-name-validator: 4.0.0
+
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):
dependencies:
'@tanstack/react-query': 5.90.21(react@19.2.4)
@@ -36323,10 +38144,23 @@ snapshots:
webidl-conversions@3.0.1: {}
+ webidl-conversions@7.0.0: {}
+
webpack-virtual-modules@0.6.2: {}
+ whatwg-encoding@2.0.0:
+ dependencies:
+ iconv-lite: 0.6.3
+
whatwg-fetch@3.6.20: {}
+ whatwg-mimetype@3.0.0: {}
+
+ whatwg-url@11.0.0:
+ dependencies:
+ tr46: 3.0.0
+ webidl-conversions: 7.0.0
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -36509,6 +38343,10 @@ snapshots:
dependencies:
is-wsl: 3.1.1
+ xml-name-validator@4.0.0: {}
+
+ xmlchars@2.2.0: {}
+
xmlhttprequest-ssl@2.1.2: {}
xtend@4.0.2: {}