diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2015629..8edaa47 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -110,6 +110,7 @@ jobs:
needs: [lint-and-typecheck]
env:
NEXT_PUBLIC_ALCHEMY_API_KEY: ${{ secrets.NEXT_PUBLIC_ALCHEMY_API_KEY }}
+ NEXT_PUBLIC_PRIVY_APP_ID: ${{ secrets.NEXT_PUBLIC_PRIVY_APP_ID }}
steps:
- name: Checkout
uses: actions/checkout@v4
diff --git a/packages/erc7984example/.env.example b/packages/erc7984example/.env.example
index bd7a7e2..07e1f0d 100644
--- a/packages/erc7984example/.env.example
+++ b/packages/erc7984example/.env.example
@@ -10,4 +10,6 @@
# You'll need to prefix the variables names with NEXT_PUBLIC_ if you want to access them on the client side.
# More info: https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables
NEXT_PUBLIC_ALCHEMY_API_KEY=""
-NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=""
\ No newline at end of file
+
+# Privy App ID - Get yours at https://dashboard.privy.io
+NEXT_PUBLIC_PRIVY_APP_ID=""
\ No newline at end of file
diff --git a/packages/erc7984example/app/_components/ERC7984Demo.tsx b/packages/erc7984example/app/_components/ERC7984Demo.tsx
index c0eecbd..7bd7aa9 100644
--- a/packages/erc7984example/app/_components/ERC7984Demo.tsx
+++ b/packages/erc7984example/app/_components/ERC7984Demo.tsx
@@ -5,9 +5,9 @@ import { FHEBenchmark } from "./FHEBenchmark";
import { ethers } from "ethers";
import { useFhevm } from "fhevm-sdk";
import { useAccount } from "wagmi";
-import { RainbowKitCustomConnectButton } from "~~/components/helper/RainbowKitCustomConnectButton";
+import { PrivyConnectButton } from "~~/components/helper/PrivyConnectButton";
import { useERC7984Wagmi } from "~~/hooks/erc7984/useERC7984Wagmi";
-import { useDeployedContractInfo } from "~~/hooks/helper";
+import { useDeployedContractInfo, useIsSmartWallet } from "~~/hooks/helper";
import type { AllowedChainIds } from "~~/utils/helper/networks";
import { notification } from "~~/utils/helper/notification";
@@ -18,6 +18,7 @@ import { notification } from "~~/utils/helper/notification";
*/
export const ERC7984Demo = () => {
const { isConnected, chain, address } = useAccount();
+ const { isSmartWallet } = useIsSmartWallet();
const chainId = chain?.id;
@@ -214,7 +215,7 @@ export const ERC7984Demo = () => {
Connect your wallet to use the ERC7984 confidential token demo.
@@ -231,6 +232,27 @@ export const ERC7984Demo = () => {
+ {/* Smart Wallet Warning */}
+ {isSmartWallet && (
+
+
+
⚠️
+
+
Smart Wallet Detected
+
+ You're using a smart contract wallet (like Coinbase Smart Wallet or Safe). FHE balance decryption
+ is not currently supported with smart wallets due to signature format
+ incompatibilities.
+
+
+ Workaround: Connect with a regular wallet (EOA) like MetaMask. Transfers will still
+ work normally.
+
+
+
+
+ )}
+
{/* Balance Handle Display */}
💰 Confidential Balance
@@ -279,16 +301,18 @@ export const ERC7984Demo = () => {
- {erc7984.canDecrypt
- ? "🔓 Decrypt Balance"
- : erc7984.isDecrypted
- ? `✅ Decrypted: ${erc7984.clear}`
- : erc7984.isDecrypting
- ? "⏳ Decrypting..."
- : "❌ Nothing to decrypt"}
+ {isSmartWallet
+ ? "🚫 Decrypt unavailable (Smart Wallet)"
+ : erc7984.canDecrypt
+ ? "🔓 Decrypt Balance"
+ : erc7984.isDecrypted
+ ? `✅ Decrypted: ${erc7984.clear}`
+ : erc7984.isDecrypting
+ ? "⏳ Decrypting..."
+ : "❌ Nothing to decrypt"}
diff --git a/packages/erc7984example/app/layout.tsx b/packages/erc7984example/app/layout.tsx
index 3191aa5..3b8cd5b 100644
--- a/packages/erc7984example/app/layout.tsx
+++ b/packages/erc7984example/app/layout.tsx
@@ -1,5 +1,4 @@
import Script from "next/script";
-import "@rainbow-me/rainbowkit/styles.css";
import { DappWrapperWithProviders } from "~~/components/DappWrapperWithProviders";
import { ThemeProvider } from "~~/components/ThemeProvider";
import "~~/styles/globals.css";
@@ -13,11 +12,9 @@ export const metadata = getMetadata({
const DappWrapper = ({ children }: { children: React.ReactNode }) => {
return (
-
-
-
+
-
+
{children}
diff --git a/packages/erc7984example/app/providers.tsx b/packages/erc7984example/app/providers.tsx
new file mode 100644
index 0000000..fe18b30
--- /dev/null
+++ b/packages/erc7984example/app/providers.tsx
@@ -0,0 +1,90 @@
+"use client";
+
+import { type ReactNode } from "react";
+import { PrivyProvider } from "@privy-io/react-auth";
+import { WagmiProvider as PrivyWagmiProvider, createConfig } from "@privy-io/wagmi";
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
+import { sepolia } from "viem/chains";
+import { createConfig as createWagmiConfig, http } from "wagmi";
+import { WagmiProvider as StandardWagmiProvider } from "wagmi";
+import scaffoldConfig from "~~/scaffold.config";
+
+type Props = {
+ children: ReactNode;
+};
+
+const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ refetchOnWindowFocus: false,
+ },
+ },
+});
+
+// Get Privy App ID from environment
+const PRIVY_APP_ID = process.env.NEXT_PUBLIC_PRIVY_APP_ID ?? "";
+
+if (!PRIVY_APP_ID && typeof window !== "undefined") {
+ console.warn("NEXT_PUBLIC_PRIVY_APP_ID is not set. Wallet connection will not work.");
+}
+
+const { alchemyApiKey } = scaffoldConfig;
+
+// Use Sepolia as the primary chain (Privy doesn't work well with local hardhat)
+const activeChain = sepolia;
+
+// Build RPC URL
+const rpcUrl = alchemyApiKey
+ ? `https://eth-sepolia.g.alchemy.com/v2/${alchemyApiKey}`
+ : "https://ethereum-sepolia-rpc.publicnode.com";
+
+// Create Wagmi config using Privy's createConfig (for when Privy is configured)
+export const wagmiConfig = createConfig({
+ chains: [activeChain] as const,
+ transports: {
+ [activeChain.id]: http(rpcUrl),
+ } as Record
>,
+});
+
+// Create standard Wagmi config (for fallback when Privy is not configured)
+const standardWagmiConfig = createWagmiConfig({
+ chains: [activeChain],
+ transports: {
+ [activeChain.id]: http(rpcUrl),
+ },
+});
+
+export function Providers({ children }: Props) {
+ if (!PRIVY_APP_ID) {
+ // Fallback for when Privy is not configured - use standard wagmi provider
+ return (
+
+ {children}
+
+ );
+ }
+
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/packages/erc7984example/components/DappWrapperWithProviders.tsx b/packages/erc7984example/components/DappWrapperWithProviders.tsx
index 1c4b817..d88c96f 100644
--- a/packages/erc7984example/components/DappWrapperWithProviders.tsx
+++ b/packages/erc7984example/components/DappWrapperWithProviders.tsx
@@ -1,51 +1,22 @@
"use client";
-import { useEffect, useState } from "react";
-import { RainbowKitProvider, darkTheme, lightTheme } from "@rainbow-me/rainbowkit";
-import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { InMemoryStorageProvider } from "fhevm-sdk";
import { AppProgressBar as ProgressBar } from "next-nprogress-bar";
-import { useTheme } from "next-themes";
import { Toaster } from "react-hot-toast";
-import { WagmiProvider } from "wagmi";
+import { Providers } from "~~/app/providers";
import { Header } from "~~/components/Header";
-import { BlockieAvatar } from "~~/components/helper";
-import { wagmiConfig } from "~~/services/web3/wagmiConfig";
-
-export const queryClient = new QueryClient({
- defaultOptions: {
- queries: {
- refetchOnWindowFocus: false,
- },
- },
-});
export const DappWrapperWithProviders = ({ children }: { children: React.ReactNode }) => {
- const { resolvedTheme } = useTheme();
- const isDarkMode = resolvedTheme === "dark";
- const [mounted, setMounted] = useState(false);
-
- useEffect(() => {
- setMounted(true);
- }, []);
-
return (
-
-
-
-
-
-
-
- {children}
-
-
-
-
-
-
+
+
+
+
+
+ {children}
+
+
+
+
);
};
diff --git a/packages/erc7984example/components/Header.tsx b/packages/erc7984example/components/Header.tsx
index b67d5d5..de981c8 100644
--- a/packages/erc7984example/components/Header.tsx
+++ b/packages/erc7984example/components/Header.tsx
@@ -3,7 +3,7 @@
import React, { useRef } from "react";
import Image from "next/image";
import Link from "next/link";
-import { RainbowKitCustomConnectButton } from "~~/components/helper";
+import { PrivyConnectButton } from "~~/components/helper/PrivyConnectButton";
import { useOutsideClick } from "~~/hooks/helper";
/**
@@ -33,7 +33,7 @@ export const Header = () => {
{/* Connect Button */}
);
diff --git a/packages/erc7984example/components/helper/BlockieAvatar.tsx b/packages/erc7984example/components/helper/BlockieAvatar.tsx
index 46f47b5..1ea5dc0 100644
--- a/packages/erc7984example/components/helper/BlockieAvatar.tsx
+++ b/packages/erc7984example/components/helper/BlockieAvatar.tsx
@@ -1,10 +1,15 @@
"use client";
-import { AvatarComponent } from "@rainbow-me/rainbowkit";
import { blo } from "blo";
-// Custom Avatar for RainbowKit
-export const BlockieAvatar: AvatarComponent = ({ address, ensImage, size }) => (
+type BlockieAvatarProps = {
+ address: string;
+ ensImage?: string | null;
+ size: number;
+};
+
+// Custom Avatar component
+export const BlockieAvatar = ({ address, ensImage, size }: BlockieAvatarProps) => (
// Don't want to use nextJS Image here (and adding remote patterns for the URL)
// eslint-disable-next-line @next/next/no-img-element
{
+ const { address, isConnected, chain } = useAccount();
+ const { targetNetwork } = useTargetNetwork();
+
+ const blockExplorerAddressLink = address ? getBlockExplorerAddressLink(targetNetwork, address) : undefined;
+
+ // If Privy is not configured, show disabled button
+ if (!PRIVY_APP_ID) {
+ return (
+
+ Privy Not Configured
+
+ );
+ }
+
+ // Connected - show balance and address dropdown
+ if (isConnected && address) {
+ // Wrong network
+ if (chain && chain.id !== targetNetwork.id) {
+ return ;
+ }
+
+ return (
+ <>
+
+
+ {chain?.name || targetNetwork.name}
+
+
+ >
+ );
+ }
+
+ // Not connected - show connect button using Privy
+ return ;
+};
+
+/**
+ * Inner component that uses usePrivy hook
+ */
+const PrivyConnectButtonInner = () => {
+ const { connectWallet, ready } = usePrivy();
+
+ if (!ready) {
+ return (
+
+ Loading...
+
+ );
+ }
+
+ return (
+ connectWallet()}
+ type="button"
+ >
+ Connect Wallet
+
+ );
+};
+
+export default PrivyConnectButtonClient;
diff --git a/packages/erc7984example/components/helper/RainbowKitCustomConnectButton/WrongNetworkDropdown.tsx b/packages/erc7984example/components/helper/PrivyConnectButton/WrongNetworkDropdown.tsx
similarity index 100%
rename from packages/erc7984example/components/helper/RainbowKitCustomConnectButton/WrongNetworkDropdown.tsx
rename to packages/erc7984example/components/helper/PrivyConnectButton/WrongNetworkDropdown.tsx
diff --git a/packages/erc7984example/components/helper/PrivyConnectButton/index.tsx b/packages/erc7984example/components/helper/PrivyConnectButton/index.tsx
new file mode 100644
index 0000000..c948d5a
--- /dev/null
+++ b/packages/erc7984example/components/helper/PrivyConnectButton/index.tsx
@@ -0,0 +1,20 @@
+"use client";
+
+import dynamic from "next/dynamic";
+
+// Dynamically import the actual component with SSR disabled to avoid hydration issues
+const PrivyConnectButtonClient = dynamic(() => import("./PrivyConnectButtonClient"), {
+ ssr: false,
+ loading: () => (
+
+ Loading...
+
+ ),
+});
+
+/**
+ * Privy Connect Button wrapper - uses dynamic import with ssr: false
+ */
+export const PrivyConnectButton = () => {
+ return ;
+};
diff --git a/packages/erc7984example/components/helper/RainbowKitCustomConnectButton/index.tsx b/packages/erc7984example/components/helper/RainbowKitCustomConnectButton/index.tsx
deleted file mode 100644
index 41099bb..0000000
--- a/packages/erc7984example/components/helper/RainbowKitCustomConnectButton/index.tsx
+++ /dev/null
@@ -1,65 +0,0 @@
-"use client";
-
-// @refresh reset
-import { Balance } from "../Balance";
-import { AddressInfoDropdown } from "./AddressInfoDropdown";
-import { WrongNetworkDropdown } from "./WrongNetworkDropdown";
-import { ConnectButton } from "@rainbow-me/rainbowkit";
-import { Address } from "viem";
-import { useTargetNetwork } from "~~/hooks/helper/useTargetNetwork";
-import { getBlockExplorerAddressLink } from "~~/utils/helper";
-
-/**
- * Custom Wagmi Connect Button (watch balance + custom design)
- */
-export const RainbowKitCustomConnectButton = () => {
- const { targetNetwork } = useTargetNetwork();
-
- return (
-
- {({ account, chain, openConnectModal, mounted }) => {
- const connected = mounted && account && chain;
- const blockExplorerAddressLink = account
- ? getBlockExplorerAddressLink(targetNetwork, account.address)
- : undefined;
-
- return (
- <>
- {(() => {
- if (!connected) {
- return (
-
- Connect Wallet
-
- );
- }
-
- if (chain.unsupported || chain.id !== targetNetwork.id) {
- return ;
- }
-
- return (
- <>
-
-
- {chain.name}
-
-
- >
- );
- })()}
- >
- );
- }}
-
- );
-};
diff --git a/packages/erc7984example/components/helper/index.tsx b/packages/erc7984example/components/helper/index.tsx
index 7ffe5e8..57e972c 100644
--- a/packages/erc7984example/components/helper/index.tsx
+++ b/packages/erc7984example/components/helper/index.tsx
@@ -1,3 +1,3 @@
export * from "./Balance";
export * from "./BlockieAvatar";
-export * from "./RainbowKitCustomConnectButton";
+export * from "./PrivyConnectButton";
diff --git a/packages/erc7984example/contracts/deployedContracts.ts b/packages/erc7984example/contracts/deployedContracts.ts
index 3d55c2c..2d3cfcc 100644
--- a/packages/erc7984example/contracts/deployedContracts.ts
+++ b/packages/erc7984example/contracts/deployedContracts.ts
@@ -7,7 +7,7 @@ import { GenericContractsDeclaration } from "~~/utils/helper/contract";
const deployedContracts = {
31337: {
Airdrop: {
- address: "0xaa79c20a43C74bD77c392Ca0e71E032FeF2C908A",
+ address: "0x380ee13b0039852314fFF513821729B052D06a71",
abi: [
{
inputs: [],
@@ -188,10 +188,10 @@ const deployedContracts = {
renounceOwnership: "@openzeppelin/contracts/access/Ownable.sol",
transferOwnership: "@openzeppelin/contracts/access/Ownable.sol",
},
- deployedOnBlock: 9,
+ deployedOnBlock: 4,
},
ERC7984Example: {
- address: "0xab9E69656210f333c3164A86372d013C646bf0eC",
+ address: "0xc1b7223f08F52fbfA263c27674AE577911c3b20e",
abi: [
{
inputs: [
@@ -1053,12 +1053,12 @@ const deployedContracts = {
renounceOwnership: "@openzeppelin/contracts/access/Ownable2Step.sol",
transferOwnership: "@openzeppelin/contracts/access/Ownable2Step.sol",
},
- deployedOnBlock: 8,
+ deployedOnBlock: 3,
},
},
11155111: {
Airdrop: {
- address: "0x2f4233a77888379Cd1eFa450CdE921692Ba1e23A",
+ address: "0x61A6F364A2623CC7117ae84D9aB4e0963Bf62ce3",
abi: [
{
inputs: [],
@@ -1126,6 +1126,19 @@ const deployedContracts = {
name: "OwnershipTransferred",
type: "event",
},
+ {
+ inputs: [],
+ name: "AIRDROP_AMOUNT",
+ outputs: [
+ {
+ internalType: "uint64",
+ name: "",
+ type: "uint64",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
{
inputs: [
{
@@ -1239,10 +1252,10 @@ const deployedContracts = {
renounceOwnership: "@openzeppelin/contracts/access/Ownable.sol",
transferOwnership: "@openzeppelin/contracts/access/Ownable.sol",
},
- deployedOnBlock: 10003094,
+ deployedOnBlock: 10092104,
},
ERC7984Example: {
- address: "0x8D253197C72382C7E4eB31DCA4812D708ED3cA44",
+ address: "0x94167129172A35ab093B44b8b96213DDbc3cD387",
abi: [
{
inputs: [
@@ -2104,7 +2117,7 @@ const deployedContracts = {
renounceOwnership: "@openzeppelin/contracts/access/Ownable2Step.sol",
transferOwnership: "@openzeppelin/contracts/access/Ownable2Step.sol",
},
- deployedOnBlock: 10003093,
+ deployedOnBlock: 10092096,
},
},
} as const;
diff --git a/packages/erc7984example/hooks/erc7984/useERC7984Wagmi.tsx b/packages/erc7984example/hooks/erc7984/useERC7984Wagmi.tsx
index 8a0b6e4..c8e257a 100644
--- a/packages/erc7984example/hooks/erc7984/useERC7984Wagmi.tsx
+++ b/packages/erc7984example/hooks/erc7984/useERC7984Wagmi.tsx
@@ -63,8 +63,9 @@ export const useERC7984Wagmi = (parameters: {
abi: (hasContract ? ((erc7984 as ERC7984Info).abi as any) : undefined) as any,
functionName: "confidentialBalanceOf" as const,
args: [address as `0x${string}`],
+ chainId: chainId,
query: {
- enabled: Boolean(hasContract && hasProvider && address),
+ enabled: Boolean(hasContract && hasProvider && address && chainId),
refetchOnWindowFocus: false,
},
});
@@ -89,6 +90,7 @@ export const useERC7984Wagmi = (parameters: {
isDecrypting,
message: decMsg,
results,
+ error: decryptError,
} = useFHEDecrypt({
instance,
ethersSigner: ethersSigner as any,
@@ -101,6 +103,14 @@ export const useERC7984Wagmi = (parameters: {
if (decMsg) setMessage(decMsg);
}, [decMsg]);
+ // Log decryption errors for debugging
+ useEffect(() => {
+ if (decryptError) {
+ console.error("[useERC7984Wagmi] Decryption error:", decryptError);
+ setMessage(`Decryption error: ${decryptError}`);
+ }
+ }, [decryptError]);
+
const clearBalance = useMemo(() => {
if (!balanceHandle) return undefined;
if (balanceHandle === ethers.ZeroHash) return { handle: balanceHandle, clear: BigInt(0) } as const;
@@ -189,6 +199,7 @@ export const useERC7984Wagmi = (parameters: {
isDecrypting,
isRefreshing,
isProcessing,
+ decryptError,
// Wagmi-specific values
chainId,
accounts,
diff --git a/packages/erc7984example/hooks/helper/index.ts b/packages/erc7984example/hooks/helper/index.ts
index 3e77825..cadfec6 100644
--- a/packages/erc7984example/hooks/helper/index.ts
+++ b/packages/erc7984example/hooks/helper/index.ts
@@ -2,3 +2,4 @@ export * from "./useDeployedContractInfo";
export * from "./useOutsideClick";
export * from "./useTargetNetwork";
export * from "./useSelectedNetwork";
+export * from "./useIsSmartWallet";
diff --git a/packages/erc7984example/hooks/helper/useIsSmartWallet.ts b/packages/erc7984example/hooks/helper/useIsSmartWallet.ts
new file mode 100644
index 0000000..6cd7488
--- /dev/null
+++ b/packages/erc7984example/hooks/helper/useIsSmartWallet.ts
@@ -0,0 +1,55 @@
+"use client";
+
+import { useEffect, useState } from "react";
+import { useAccount, usePublicClient } from "wagmi";
+
+/**
+ * Hook to detect if the connected wallet is a smart contract wallet (e.g., Coinbase Smart Wallet, Safe, etc.)
+ *
+ * Smart wallets produce EIP-1271 signatures which are incompatible with some services
+ * that expect standard 65-byte ECDSA signatures (like Zama's FHE relayer).
+ */
+export const useIsSmartWallet = () => {
+ const [isSmartWallet, setIsSmartWallet] = useState(false);
+ const [isChecking, setIsChecking] = useState(false);
+ const [isMounted, setIsMounted] = useState(false);
+
+ // Only access wagmi hooks after mount to avoid SSR issues
+ useEffect(() => {
+ setIsMounted(true);
+ }, []);
+
+ // These hooks are safe to call but we only use their values after mount
+ const { address, isConnected } = useAccount();
+ const publicClient = usePublicClient();
+
+ useEffect(() => {
+ // Don't run during SSR or before mount
+ if (!isMounted) return;
+
+ async function checkSmartWallet() {
+ if (!address || !isConnected || !publicClient) {
+ setIsSmartWallet(false);
+ return;
+ }
+
+ setIsChecking(true);
+ try {
+ // Check if the address has contract code
+ const code = await publicClient.getCode({ address });
+ // If code exists and is not empty (0x), it's a smart wallet
+ const isSmart = Boolean(code && code !== "0x" && code.length > 2);
+ setIsSmartWallet(isSmart);
+ } catch (error) {
+ console.error("[useIsSmartWallet] Error checking wallet type:", error);
+ setIsSmartWallet(false);
+ } finally {
+ setIsChecking(false);
+ }
+ }
+
+ checkSmartWallet();
+ }, [isMounted, address, isConnected, publicClient]);
+
+ return { isSmartWallet, isChecking };
+};
diff --git a/packages/erc7984example/next.config.ts b/packages/erc7984example/next.config.ts
index b62b995..3d98cf6 100644
--- a/packages/erc7984example/next.config.ts
+++ b/packages/erc7984example/next.config.ts
@@ -6,24 +6,6 @@ const nextConfig: NextConfig = {
serverExternalPackages: ["pino", "thread-stream", "pino-pretty"],
// Empty turbopack config - Turbopack handles Node.js fallbacks automatically
turbopack: {},
- // Enable cross-origin isolation for SharedArrayBuffer (required for FHEVM multi-threading)
- async headers() {
- return [
- {
- source: "/(.*)",
- headers: [
- {
- key: "Cross-Origin-Opener-Policy",
- value: "same-origin",
- },
- {
- key: "Cross-Origin-Embedder-Policy",
- value: "require-corp",
- },
- ],
- },
- ];
- },
// Configure webpack fallbacks for client-side (these packages shouldn't be bundled for browser)
webpack: (config, { isServer }) => {
if (!isServer) {
diff --git a/packages/erc7984example/package.json b/packages/erc7984example/package.json
index 1c89251..f2016bc 100644
--- a/packages/erc7984example/package.json
+++ b/packages/erc7984example/package.json
@@ -16,13 +16,13 @@
"dependencies": {
"fhevm-sdk": "workspace:*",
"@heroicons/react": "~2.1.5",
- "@rainbow-me/rainbowkit": "2.2.8",
+ "@privy-io/react-auth": "^3.8.1",
+ "@privy-io/wagmi": "^2.1.0",
"@tanstack/react-query": "~5.59.20",
"@uniswap/sdk-core": "~5.8.5",
"@uniswap/v2-sdk": "~4.6.2",
- "@zama-fhe/relayer-sdk": "0.4.0-2",
+ "@zama-fhe/relayer-sdk": "0.4.0-4",
"blo": "~1.2.0",
- "burner-connector": "0.0.18",
"daisyui": "5.0.9",
"ethers": "^6.15.0",
"idb": "^8.0.3",
@@ -35,8 +35,8 @@
"react-dom": "^19.0.3",
"react-hot-toast": "~2.4.1",
"usehooks-ts": "~3.1.1",
- "viem": "2.34.0",
- "wagmi": "2.16.4",
+ "viem": "~2.41.2",
+ "wagmi": "^2.19.5",
"zustand": "~5.0.8"
},
"devDependencies": {
diff --git a/packages/erc7984example/scaffold.config.ts b/packages/erc7984example/scaffold.config.ts
index 5f88933..e285de2 100644
--- a/packages/erc7984example/scaffold.config.ts
+++ b/packages/erc7984example/scaffold.config.ts
@@ -5,19 +5,13 @@ export type BaseConfig = {
pollingInterval: number;
alchemyApiKey: string;
rpcOverrides?: Record;
- walletConnectProjectId: string;
- onlyLocalBurnerWallet: boolean;
};
export type ScaffoldConfig = BaseConfig;
const rawAlchemyKey = process.env.NEXT_PUBLIC_ALCHEMY_API_KEY;
-if (!rawAlchemyKey) {
- if (process.env.NODE_ENV === "production") {
- throw new Error("Environment variable NEXT_PUBLIC_ALCHEMY_API_KEY is required in production.");
- } else {
- console.warn("NEXT_PUBLIC_ALCHEMY_API_KEY is not set. Falling back to public RPCs.");
- }
+if (!rawAlchemyKey && typeof window !== "undefined") {
+ console.warn("NEXT_PUBLIC_ALCHEMY_API_KEY is not set. Falling back to public RPCs.");
}
const isProduction = process.env.NODE_ENV === "production";
@@ -41,12 +35,6 @@ const scaffoldConfig = {
// Example:
// [chains.mainnet.id]: "https://mainnet.rpc.buidlguidl.com",
},
- // This is ours WalletConnect's default project ID.
- // You can get your own at https://cloud.walletconnect.com
- // It's recommended to store it in an env variable:
- // .env.local for local testing, and in the Vercel/system env config for live apps.
- walletConnectProjectId: process.env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID || "3a8170812b534d0ff9d794f19a901d64",
- onlyLocalBurnerWallet: true,
} as const satisfies ScaffoldConfig;
export default scaffoldConfig;
diff --git a/packages/erc7984example/services/web3/wagmiConfig.tsx b/packages/erc7984example/services/web3/wagmiConfig.tsx
deleted file mode 100644
index 23592ac..0000000
--- a/packages/erc7984example/services/web3/wagmiConfig.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-import { wagmiConnectors } from "./wagmiConnectors";
-import { Chain, createClient, fallback, http } from "viem";
-import { hardhat, mainnet } from "viem/chains";
-import { createConfig } from "wagmi";
-import scaffoldConfig, { ScaffoldConfig } from "~~/scaffold.config";
-import { getAlchemyHttpUrl } from "~~/utils/helper";
-
-const { targetNetworks } = scaffoldConfig;
-
-// We always want to have mainnet enabled (ENS resolution, ETH price, etc). But only once.
-export const enabledChains = targetNetworks.find((network: Chain) => network.id === 1)
- ? targetNetworks
- : ([...targetNetworks, mainnet] as const);
-
-export const wagmiConfig = createConfig({
- chains: enabledChains,
- connectors: wagmiConnectors(),
- ssr: true,
- client: ({ chain }) => {
- let rpcFallbacks = [http()];
- const rpcOverrideUrl = (scaffoldConfig.rpcOverrides as ScaffoldConfig["rpcOverrides"])?.[chain.id];
- if (rpcOverrideUrl) {
- rpcFallbacks = [http(rpcOverrideUrl), http()];
- } else {
- const alchemyHttpUrl = getAlchemyHttpUrl(chain.id);
- if (alchemyHttpUrl) {
- rpcFallbacks = [http(alchemyHttpUrl), http()];
- }
- }
- return createClient({
- chain,
- transport: fallback(rpcFallbacks, {
- // Retry config to make hardhat optional when not running
- rank: chain.id === (hardhat as Chain).id ? false : true,
- }),
- ...(chain.id !== (hardhat as Chain).id ? { pollingInterval: scaffoldConfig.pollingInterval } : {}),
- });
- },
-});
diff --git a/packages/erc7984example/services/web3/wagmiConnectors.tsx b/packages/erc7984example/services/web3/wagmiConnectors.tsx
deleted file mode 100644
index c75c065..0000000
--- a/packages/erc7984example/services/web3/wagmiConnectors.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import { connectorsForWallets } from "@rainbow-me/rainbowkit";
-import {
- ledgerWallet,
- metaMaskWallet,
- rainbowWallet,
- safeWallet,
- walletConnectWallet,
-} from "@rainbow-me/rainbowkit/wallets";
-import { rainbowkitBurnerWallet } from "burner-connector";
-import * as chains from "viem/chains";
-import scaffoldConfig from "~~/scaffold.config";
-
-const { onlyLocalBurnerWallet, targetNetworks } = scaffoldConfig;
-
-const wallets = [
- metaMaskWallet,
- walletConnectWallet,
- ledgerWallet,
- rainbowWallet,
- safeWallet,
- ...(!targetNetworks.some(network => network.id !== (chains.hardhat as chains.Chain).id) || !onlyLocalBurnerWallet
- ? [rainbowkitBurnerWallet]
- : []),
-];
-
-/**
- * wagmi connectors for the wagmi context
- */
-export const wagmiConnectors = () => {
- // Only create connectors on client-side to avoid SSR issues
- // TODO: update when https://github.com/rainbow-me/rainbowkit/issues/2476 is resolved
- if (typeof window === "undefined") {
- return [];
- }
-
- return connectorsForWallets(
- [
- {
- groupName: "Supported Wallets",
- wallets,
- },
- ],
-
- {
- appName: "helper-2",
- projectId: scaffoldConfig.walletConnectProjectId,
- },
- );
-};
diff --git a/packages/erc7984example/styles/globals.css b/packages/erc7984example/styles/globals.css
index 08d23b0..9b6d386 100644
--- a/packages/erc7984example/styles/globals.css
+++ b/packages/erc7984example/styles/globals.css
@@ -9,13 +9,13 @@
--animate-pulse-fast: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
/* Updated color palette */
- --glass-yellow-primary: #FFD208;
- --glass-yellow-secondary: #A38025;
- --glass-yellow-dark: #A38025;
- --glass-bg-light: #F4F4F4;
- --glass-bg-medium: #E8E8E8;
- --glass-bg-dark: #D9D9D9;
- --glass-border: #2D2D2D;
+ --glass-yellow-primary: #ffd208;
+ --glass-yellow-secondary: #a38025;
+ --glass-yellow-dark: #a38025;
+ --glass-bg-light: #f4f4f4;
+ --glass-bg-medium: #e8e8e8;
+ --glass-bg-dark: #d9d9d9;
+ --glass-border: #2d2d2d;
--glass-shadow: 0 0 0 0 transparent;
--glass-shadow-lg: 0 0 0 0 transparent;
}
@@ -29,22 +29,22 @@
@plugin "daisyui/theme" {
name: "light";
- --color-primary: #FFD208;
- --color-primary-content: #2D2D2D;
- --color-secondary: #A38025;
- --color-secondary-content: #F4F4F4;
- --color-accent: #FFD208;
- --color-accent-content: #2D2D2D;
- --color-neutral: #2D2D2D;
- --color-neutral-content: #F4F4F4;
- --color-base-100: #FFF7EC;
- --color-base-200: #F4F4F4;
- --color-base-300: #E8E8E8;
- --color-base-content: #2D2D2D;
- --color-info: #FFD208;
- --color-success: #A38025;
- --color-warning: #A38025;
- --color-error: #2D2D2D;
+ --color-primary: #ffd208;
+ --color-primary-content: #2d2d2d;
+ --color-secondary: #a38025;
+ --color-secondary-content: #f4f4f4;
+ --color-accent: #ffd208;
+ --color-accent-content: #2d2d2d;
+ --color-neutral: #2d2d2d;
+ --color-neutral-content: #f4f4f4;
+ --color-base-100: #fff7ec;
+ --color-base-200: #f4f4f4;
+ --color-base-300: #e8e8e8;
+ --color-base-content: #2d2d2d;
+ --color-info: #ffd208;
+ --color-success: #a38025;
+ --color-warning: #a38025;
+ --color-error: #2d2d2d;
--radius-field: 0;
--radius-box: 0;
@@ -54,22 +54,22 @@
@plugin "daisyui/theme" {
name: "dark";
- --color-primary: #FFD208;
- --color-primary-content: #2D2D2D;
- --color-secondary: #A38025;
- --color-secondary-content: #F4F4F4;
- --color-accent: #FFD208;
- --color-accent-content: #2D2D2D;
- --color-neutral: #F4F4F4;
- --color-neutral-content: #2D2D2D;
- --color-base-100: #2D2D2D;
- --color-base-200: #2D2D2D;
- --color-base-300: #2D2D2D;
- --color-base-content: #F4F4F4;
- --color-info: #FFD208;
- --color-success: #A38025;
- --color-warning: #A38025;
- --color-error: #2D2D2D;
+ --color-primary: #ffd208;
+ --color-primary-content: #2d2d2d;
+ --color-secondary: #a38025;
+ --color-secondary-content: #f4f4f4;
+ --color-accent: #ffd208;
+ --color-accent-content: #2d2d2d;
+ --color-neutral: #f4f4f4;
+ --color-neutral-content: #2d2d2d;
+ --color-base-100: #2d2d2d;
+ --color-base-200: #2d2d2d;
+ --color-base-300: #2d2d2d;
+ --color-base-content: #f4f4f4;
+ --color-info: #ffd208;
+ --color-success: #a38025;
+ --color-warning: #a38025;
+ --color-error: #2d2d2d;
--radius-field: 0;
--radius-box: 0;
@@ -101,15 +101,23 @@
body {
min-height: 100vh;
- font-family: "Telegraf", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- background: #F4F4F4;
+ font-family:
+ "Telegraf",
+ -apple-system,
+ BlinkMacSystemFont,
+ "Segoe UI",
+ Roboto,
+ "Helvetica Neue",
+ Arial,
+ sans-serif;
+ background: #f4f4f4;
position: relative;
overflow-x: hidden;
}
[data-theme="dark"] body,
body:where([data-theme="dark"], [data-theme="dark"] *) {
- background: #2D2D2D;
+ background: #2d2d2d;
}
h1,
@@ -123,7 +131,6 @@
}
}
-
:root,
[data-theme] {
background: transparent;
@@ -149,29 +156,29 @@
/* Updated card and button styles */
.glass-card {
- background: #F4F4F4;
- border: 1px solid #2D2D2D;
+ background: #f4f4f4;
+ border: 1px solid #2d2d2d;
box-shadow: none;
border-radius: 0;
}
.glass-card-strong {
- background: #E8E8E8;
- border: 1px solid #2D2D2D;
+ background: #e8e8e8;
+ border: 1px solid #2d2d2d;
box-shadow: none;
border-radius: 0;
}
.glass-button {
- background: #FFD208;
- border: 1px solid #2D2D2D;
+ background: #ffd208;
+ border: 1px solid #2d2d2d;
box-shadow: none;
border-radius: 0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-button:hover:not(:disabled) {
- background: #A38025;
+ background: #a38025;
transform: none;
box-shadow: none;
}
@@ -181,15 +188,15 @@
}
.glass-input {
- background: #F4F4F4;
- border: 1px solid #2D2D2D;
+ background: #f4f4f4;
+ border: 1px solid #2d2d2d;
border-radius: 0;
transition: all 0.2s ease;
}
.glass-input:focus {
- background: #F4F4F4;
- border-color: #FFD208;
+ background: #f4f4f4;
+ border-color: #ffd208;
outline: none;
box-shadow: none;
}
diff --git a/packages/erc7984example/tsconfig.json b/packages/erc7984example/tsconfig.json
index d5cfdd3..2518c4e 100644
--- a/packages/erc7984example/tsconfig.json
+++ b/packages/erc7984example/tsconfig.json
@@ -2,11 +2,7 @@
"compilerOptions": {
"typeRoots": ["./node_modules/@types"],
"target": "ES2017",
- "lib": [
- "dom",
- "dom.iterable",
- "esnext"
- ],
+ "lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -20,9 +16,7 @@
"jsx": "react-jsx",
"incremental": true,
"paths": {
- "~~/*": [
- "./*"
- ]
+ "~~/*": ["./*"]
},
"plugins": [
{
@@ -39,7 +33,5 @@
"**/*.mts",
".next/dev/dev/types/**/*.ts"
],
- "exclude": [
- "node_modules"
- ]
+ "exclude": ["node_modules"]
}
diff --git a/packages/fhevm-sdk/src/FhevmDecryptionSignature.ts b/packages/fhevm-sdk/src/FhevmDecryptionSignature.ts
index 2457501..1c35c24 100644
--- a/packages/fhevm-sdk/src/FhevmDecryptionSignature.ts
+++ b/packages/fhevm-sdk/src/FhevmDecryptionSignature.ts
@@ -276,14 +276,22 @@ export class FhevmDecryptionSignature {
);
if (cached) {
+ console.log("[FhevmDecryptionSignature] Using cached signature");
+ console.log("[FhevmDecryptionSignature] Cached privateKey length:", cached.privateKey?.length);
+ console.log("[FhevmDecryptionSignature] Cached privateKey prefix:", cached.privateKey?.substring(0, 20));
return cached;
}
+ console.log("[FhevmDecryptionSignature] Generating new keypair...");
const { publicKey, privateKey } = keyPair ?? (instance as any).generateKeypair();
+ console.log("[FhevmDecryptionSignature] Generated privateKey length:", privateKey?.length);
+ console.log("[FhevmDecryptionSignature] Generated privateKey prefix:", privateKey?.substring(0, 20));
+ console.log("[FhevmDecryptionSignature] Generated publicKey length:", publicKey?.length);
const sig = await FhevmDecryptionSignature.new(instance, contractAddresses, publicKey, privateKey, signer);
if (!sig) {
+ console.error("[FhevmDecryptionSignature] Failed to create signature");
return null;
}
diff --git a/packages/fhevm-sdk/src/fhevmTypes.ts b/packages/fhevm-sdk/src/fhevmTypes.ts
index f115633..ddd5f1b 100644
--- a/packages/fhevm-sdk/src/fhevmTypes.ts
+++ b/packages/fhevm-sdk/src/fhevmTypes.ts
@@ -1,7 +1,7 @@
import type { FhevmInstance as _FhevmInstance } from "@zama-fhe/relayer-sdk/bundle";
import type { HandleContractPair as _HandleContractPair } from "@zama-fhe/relayer-sdk/bundle";
import type { UserDecryptResults as _UserDecryptResults } from "@zama-fhe/relayer-sdk/bundle";
-import type { FhevmInstanceConfig as _FhevmInstanceConfig } from "@zama-fhe/relayer-sdk/web";
+import type { FhevmInstanceConfig as _FhevmInstanceConfig } from "@zama-fhe/relayer-sdk/bundle";
export type FhevmInstance = _FhevmInstance;
export type FhevmInstanceConfig = _FhevmInstanceConfig;
diff --git a/packages/fhevm-sdk/src/internal/constants.ts b/packages/fhevm-sdk/src/internal/constants.ts
index ec6bb5c..745632e 100644
--- a/packages/fhevm-sdk/src/internal/constants.ts
+++ b/packages/fhevm-sdk/src/internal/constants.ts
@@ -1,2 +1,2 @@
export const SDK_CDN_URL =
- "https://cdn.zama.org/relayer-sdk-js/0.4.0-2/relayer-sdk-js.umd.cjs";
+ "https://cdn.zama.org/relayer-sdk-js/0.4.0-4/relayer-sdk-js.umd.cjs";
diff --git a/packages/fhevm-sdk/src/internal/fhevm.ts b/packages/fhevm-sdk/src/internal/fhevm.ts
index e65360b..be1808d 100644
--- a/packages/fhevm-sdk/src/internal/fhevm.ts
+++ b/packages/fhevm-sdk/src/internal/fhevm.ts
@@ -298,6 +298,7 @@ export const createFhevmInstance = async (parameters: {
network: providerOrUrl,
publicKey: pub.publicKey,
publicParams: pub.publicParams,
+ relayerRouteVersion: 2
};
// notify that state === "creating"
diff --git a/packages/fhevm-sdk/src/react/useFHEDecrypt.ts b/packages/fhevm-sdk/src/react/useFHEDecrypt.ts
index 886a75a..745712d 100644
--- a/packages/fhevm-sdk/src/react/useFHEDecrypt.ts
+++ b/packages/fhevm-sdk/src/react/useFHEDecrypt.ts
@@ -62,6 +62,23 @@ export const useFHEDecrypt = (params: {
const uniqueAddresses = Array.from(new Set(thisRequests.map(r => r.contractAddress)));
console.log("[useFHEDecrypt] Unique addresses:", uniqueAddresses);
+ // Debug: test generateKeypair directly
+ console.log("[useFHEDecrypt] Testing generateKeypair directly...");
+ try {
+ const testKeypair = (instance as any).generateKeypair();
+ console.log("[useFHEDecrypt] Direct generateKeypair result:", {
+ hasPublicKey: !!testKeypair?.publicKey,
+ hasPrivateKey: !!testKeypair?.privateKey,
+ publicKeyLength: testKeypair?.publicKey?.length,
+ privateKeyLength: testKeypair?.privateKey?.length,
+ publicKeyType: typeof testKeypair?.publicKey,
+ privateKeyType: typeof testKeypair?.privateKey,
+ privateKeyPrefix: testKeypair?.privateKey?.substring?.(0, 50),
+ });
+ } catch (kpErr) {
+ console.error("[useFHEDecrypt] generateKeypair failed:", kpErr);
+ }
+
const sig: FhevmDecryptionSignature | null = await FhevmDecryptionSignature.loadOrSign(
instance,
uniqueAddresses as `0x${string}`[],
@@ -84,7 +101,20 @@ export const useFHEDecrypt = (params: {
setMessage("Call FHEVM userDecrypt...");
const mutableReqs = thisRequests.map(r => ({ handle: r.handle, contractAddress: r.contractAddress }));
- console.log("[useFHEDecrypt] Calling userDecrypt with:", mutableReqs);
+
+ // Detailed logging of all parameters
+ console.log("[useFHEDecrypt] ====== DECRYPT PARAMETERS ======");
+ console.log("[useFHEDecrypt] requests:", JSON.stringify(mutableReqs));
+ console.log("[useFHEDecrypt] sig object keys:", Object.keys(sig));
+ console.log("[useFHEDecrypt] sig.privateKey:", sig.privateKey);
+ console.log("[useFHEDecrypt] sig.publicKey:", sig.publicKey);
+ console.log("[useFHEDecrypt] sig.signature:", sig.signature?.substring(0, 50) + "...");
+ console.log("[useFHEDecrypt] sig.contractAddresses:", sig.contractAddresses);
+ console.log("[useFHEDecrypt] sig.userAddress:", sig.userAddress);
+ console.log("[useFHEDecrypt] sig.startTimestamp:", sig.startTimestamp);
+ console.log("[useFHEDecrypt] sig.durationDays:", sig.durationDays);
+ console.log("[useFHEDecrypt] ================================");
+
let res: Record = {};
try {
res = await instance.userDecrypt(
@@ -99,6 +129,7 @@ export const useFHEDecrypt = (params: {
);
} catch (e) {
console.error("[useFHEDecrypt] userDecrypt FAILED:", e);
+ console.error("[useFHEDecrypt] Full error object:", JSON.stringify(e, Object.getOwnPropertyNames(e)));
const err = e as unknown as { name?: string; message?: string };
const code = err && typeof err === "object" && "name" in (err as any) ? (err as any).name : "DECRYPT_ERROR";
const msg = err && typeof err === "object" && "message" in (err as any) ? (err as any).message : "Decryption failed";
diff --git a/packages/hardhat/contracts/airdrop/Airdrop.sol b/packages/hardhat/contracts/airdrop/Airdrop.sol
index 8902511..960d42a 100644
--- a/packages/hardhat/contracts/airdrop/Airdrop.sol
+++ b/packages/hardhat/contracts/airdrop/Airdrop.sol
@@ -3,18 +3,20 @@ pragma solidity ^0.8.24;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
-import {IERC7984} from "openzeppelin-confidential-contracts/contracts/interfaces/IERC7984.sol";
-import {FHE, euint16, euint32, euint64, euint128, ebool, externalEuint64} from "@fhevm/solidity/lib/FHE.sol";
import {ZamaEthereumConfig} from "@fhevm/solidity/config/ZamaConfig.sol";
+interface IERC7984Mintable {
+ function mint(address to, uint64 amount) external;
+}
+
/// @title Airdrop
/// @notice Airdrop contract for confidential tokens
contract Airdrop is ZamaEthereumConfig, Ownable, ReentrancyGuard {
// mapping(user => token => claimed)
mapping(address => mapping(address => bool)) public alreadyClaimed;
- // Fixed airdrop amount per token (encrypted)
- euint64 private immutable AIRDROP_AMOUNT;
+ // Fixed airdrop amount: 100 tokens with 6 decimals
+ uint64 public constant AIRDROP_AMOUNT = 100_000_000;
error AlreadyClaimed();
error InvalidToken();
@@ -27,11 +29,7 @@ contract Airdrop is ZamaEthereumConfig, Ownable, ReentrancyGuard {
// ---------------------------------------------------------------------
// Constructor
// ---------------------------------------------------------------------
- constructor() Ownable(msg.sender) {
- // Set airdrop amount to 100 tokens (with 6 decimals = 100_000_000)
- AIRDROP_AMOUNT = FHE.asEuint64(100_000_000);
- FHE.allowThis(AIRDROP_AMOUNT);
- }
+ constructor() Ownable(msg.sender) {}
function claim(address _token) external nonReentrant onlyNotClaimed(_token) {
if (_token == address(0)) revert InvalidToken();
@@ -39,11 +37,8 @@ contract Airdrop is ZamaEthereumConfig, Ownable, ReentrancyGuard {
// Mark as claimed for this specific token
alreadyClaimed[msg.sender][_token] = true;
- // Allow the token contract to access the encrypted amount
- FHE.allow(AIRDROP_AMOUNT, _token);
-
- // Transfer fixed amount (100 tokens)
- IERC7984(_token).confidentialTransfer(msg.sender, AIRDROP_AMOUNT);
+ // Mint tokens directly to the user
+ IERC7984Mintable(_token).mint(msg.sender, AIRDROP_AMOUNT);
}
// View function to check if user has claimed for a specific token
diff --git a/packages/hardhat/contracts/openzeppelin-confidential-contracts/ERC7984Example.sol b/packages/hardhat/contracts/openzeppelin-confidential-contracts/ERC7984Example.sol
index 18c580e..72ee63e 100644
--- a/packages/hardhat/contracts/openzeppelin-confidential-contracts/ERC7984Example.sol
+++ b/packages/hardhat/contracts/openzeppelin-confidential-contracts/ERC7984Example.sol
@@ -26,7 +26,7 @@ contract ERC7984Example is ZamaEthereumConfig, ERC7984, Ownable2Step {
/// @notice Mints new tokens by taking a plaintext amount
/// @param to Address to mint tokens to
/// @param amount Plaintext amount to mint
- function mint(address to, uint64 amount) external onlyOwner {
+ function mint(address to, uint64 amount) external {
_mint(to, FHE.asEuint64(amount));
}
diff --git a/packages/hardhat/deploy/deploy.ts b/packages/hardhat/deploy/deploy.ts
index fde3ef7..23f7071 100644
--- a/packages/hardhat/deploy/deploy.ts
+++ b/packages/hardhat/deploy/deploy.ts
@@ -26,5 +26,5 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
console.log(`Airdrop contract: `, deployedAirdrop.address);
};
export default func;
-func.id = "deploy_erc7984"; // id required to prevent reexecution
+func.id = "deploy_erc7984_v2"; // id required to prevent reexecution
func.tags = ["ERC7984Example", "Airdrop"];
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e25b7ad..bb5c40a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -33,9 +33,12 @@ importers:
'@heroicons/react':
specifier: ~2.1.5
version: 2.1.5(react@19.0.3)
- '@rainbow-me/rainbowkit':
- specifier: 2.2.8
- version: 2.2.8(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76))
+ '@privy-io/react-auth':
+ specifier: ^3.8.1
+ version: 3.11.0(@solana-program/system@0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana-program/token@0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(@solana/sysvars@5.4.0(typescript@5.8.3))(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@privy-io/wagmi':
+ specifier: ^2.1.0
+ version: 2.1.3(e598bd721631442b2db6c0e91743da3b)
'@tanstack/react-query':
specifier: ~5.59.20
version: 5.59.20(react@19.0.3)
@@ -46,14 +49,11 @@ importers:
specifier: ~4.6.2
version: 4.6.2
'@zama-fhe/relayer-sdk':
- specifier: 0.4.0-2
- version: 0.4.0-2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: 0.4.0-4
+ version: 0.4.0-4(bufferutil@4.0.9)(utf-8-validate@5.0.10)
blo:
specifier: ~1.2.0
version: 1.2.0
- burner-connector:
- specifier: 0.0.18
- version: 0.0.18(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
daisyui:
specifier: 5.0.9
version: 5.0.9
@@ -94,11 +94,11 @@ importers:
specifier: ~3.1.1
version: 3.1.1(react@19.0.3)
viem:
- specifier: 2.34.0
- version: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ specifier: ~2.41.2
+ version: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
wagmi:
- specifier: 2.16.4
- version: 2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
+ specifier: ^2.19.5
+ version: 2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)
zustand:
specifier: ~5.0.8
version: 5.0.8(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
@@ -120,7 +120,7 @@ importers:
version: 19.0.14
abitype:
specifier: 1.0.6
- version: 1.0.6(typescript@5.8.3)(zod@3.25.76)
+ version: 1.0.6(typescript@5.8.3)(zod@4.3.5)
autoprefixer:
specifier: ~10.4.21
version: 10.4.22(postcss@8.4.49)
@@ -220,7 +220,7 @@ importers:
version: 0.0.4
openzeppelin-confidential-contracts:
specifier: git+https://github.com/OpenZeppelin/openzeppelin-confidential-contracts.git#master
- version: https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/89e9be7cf87aa4eda72ad9548044cb53aca20b9f
+ version: https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/7defe3e7521cb164a90e72b2fe80f578de1d691b
devDependencies:
'@fhevm/hardhat-plugin':
specifier: ^0.3.0-4
@@ -414,6 +414,9 @@ packages:
'@base-org/account@1.1.1':
resolution: {integrity: sha512-IfVJPrDPhHfqXRDb89472hXkpvJuQQR7FDI9isLPHEqSYt/45whIoBxSPgZ0ssTt379VhQo4+87PWI1DoLSfAQ==}
+ '@base-org/account@2.4.0':
+ resolution: {integrity: sha512-A4Umpi8B9/pqR78D1Yoze4xHyQaujioVRqqO3d6xuDFw9VRtjg6tK3bPlwE0aW+nVH/ntllCpPa2PbI8Rnjcug==}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -426,9 +429,15 @@ packages:
'@chainsafe/netmask@2.0.0':
resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==}
+ '@coinbase/cdp-sdk@1.43.1':
+ resolution: {integrity: sha512-3eXP24p5q68agRgu8grGlF+ASidf3xYSDQtdRuDOFCMZafbqANsjl/JxLwYDmUenRodhxBBJgYJ65nOALP58tA==}
+
'@coinbase/wallet-sdk@3.9.3':
resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==}
+ '@coinbase/wallet-sdk@4.3.2':
+ resolution: {integrity: sha512-hOLA2YONq8Z9n8f6oVP6N//FEEHOen7nq+adG/cReol6juFTHUelVN5GnA5zTIxiLFMDcrhDwwgCA6Tdb5jubw==}
+
'@coinbase/wallet-sdk@4.3.6':
resolution: {integrity: sha512-4q8BNG1ViL4mSAAvPAtpwlOs1gpC+67eQtgIwNvT3xyeyFFd+guwkc8bcX5rTmQhXpqnhzC4f0obACbP9CqMSA==}
@@ -507,8 +516,14 @@ packages:
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
- '@emotion/hash@0.9.2':
- resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+ '@emotion/is-prop-valid@1.4.0':
+ resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==}
+
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
+
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
@@ -856,11 +871,48 @@ packages:
resolution: {integrity: sha512-Gq8n0sABinDzIZoV9mf0zOxFiDMRqAnv62VEIt502QKEPVoFw8wUtNrl53SjWSEe7GpoIUKuHOrqhyiWSPlzww==}
engines: {node: '>=20.0.0'}
- '@gemini-wallet/core@0.2.0':
- resolution: {integrity: sha512-vv9aozWnKrrPWQ3vIFcWk7yta4hQW1Ie0fsNNPeXnjAxkbXr2hqMagEptLuMxpEP2W3mnRu05VDNKzcvAuuZDw==}
+ '@floating-ui/core@1.7.3':
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
+
+ '@floating-ui/dom@1.7.4':
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
+
+ '@floating-ui/react-dom@2.1.6':
+ resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/react@0.26.28':
+ resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+
+ '@gemini-wallet/core@0.3.2':
+ resolution: {integrity: sha512-Z4aHi3ECFf5oWYWM3F1rW83GJfB9OvhBYPTmb5q+VyK3uvzvS48lwo+jwh2eOoCRWEuT/crpb9Vwp2QaS5JqgQ==}
peerDependencies:
viem: '>=2.0.0'
+ '@hcaptcha/loader@2.3.0':
+ resolution: {integrity: sha512-i4lnNxKBe+COf3R1nFZEWaZoHIoJjvDgWqvcNrdZq8ehoSNMN6KVZ56dcQ02qKie2h3+BkbkwlJA9DOIuLlK/g==}
+
+ '@hcaptcha/react-hcaptcha@1.17.4':
+ resolution: {integrity: sha512-rIvgesG1N7SS9sAYYHFoWm+nXqRrxq7RcA9z2pKkDWV+S1GdfmrTNYA1aPyVWVe3eowphTCwyDJvl97Swwy0mw==}
+ peerDependencies:
+ react: '>= 16.3.0'
+ react-dom: '>= 16.3.0'
+
+ '@headlessui/react@2.2.9':
+ resolution: {integrity: sha512-Mb+Un58gwBn0/yWZfyrCh0TJyurtT+dETj7YHleylHk5od3dv2XqETPGWMyQ5/7sYN7oWdyM1u9MvC0OC8UmzQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^18 || ^19 || ^19.0.0-rc
+
'@heroicons/react@2.1.5':
resolution: {integrity: sha512-FuzFN+BsHa+7OxbvAERtgBTNeZpUjgM/MIizfVkSCL2/edriN0Hx/DWRCR//aPYwO5QX/YlgLGXk+E3PcfZwjA==}
peerDependencies:
@@ -1151,6 +1203,11 @@ packages:
'@lit-labs/ssr-dom-shim@1.4.0':
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
+ '@lit/react@1.0.8':
+ resolution: {integrity: sha512-p2+YcF+JE67SRX3mMlJ1TKCSTsgyOVdAwd/nxp3NuV1+Cb6MWALbN6nT7Ld4tpmYofcE5kcaSY1YBB9erY+6fw==}
+ peerDependencies:
+ '@types/react': 17 || 18 || 19
+
'@lit/reactive-element@2.1.1':
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
@@ -1158,6 +1215,12 @@ packages:
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
+ '@marsidev/react-turnstile@1.4.1':
+ resolution: {integrity: sha512-1jE0IjvB8z+q1NFRs3149gXzXwIzXQWqQjn9fmAr13BiE3RYLWck5Me6flHYE90shW5L12Jkm6R1peS1OnA9oQ==}
+ peerDependencies:
+ react: ^17.0.2 || ^18.0.0 || ^19.0
+ react-dom: ^17.0.2 || ^18.0.0 || ^19.0
+
'@metamask/abi-utils@2.0.4':
resolution: {integrity: sha512-StnIgUB75x7a7AgUhiaUZDpCsqGp7VkNnZh2XivXkJ6mPkE83U8ARGQj5MbRis7VJY8BC5V1AbB1fjdh0hupPQ==}
engines: {node: '>=16.0.0'}
@@ -1204,8 +1267,11 @@ packages:
resolution: {integrity: sha512-5yb2gMI1BDm0JybZezeoX/3XhPDOtTbcFvpTXM9kxsoZjPZFh4XciqRbpD6N86HYZqWDhEaKUDuOyR0sQHEjMA==}
engines: {node: '>=12.0.0'}
- '@metamask/sdk-communication-layer@0.32.0':
- resolution: {integrity: sha512-dmj/KFjMi1fsdZGIOtbhxdg3amxhKL/A5BqSU4uh/SyDKPub/OT+x5pX8bGjpTL1WPWY/Q0OIlvFyX3VWnT06Q==}
+ '@metamask/sdk-analytics@0.0.5':
+ resolution: {integrity: sha512-fDah+keS1RjSUlC8GmYXvx6Y26s3Ax1U9hGpWb6GSY5SAdmTSIqp2CvYy6yW0WgLhnYhW+6xERuD0eVqV63QIQ==}
+
+ '@metamask/sdk-communication-layer@0.33.1':
+ resolution: {integrity: sha512-0bI9hkysxcfbZ/lk0T2+aKVo1j0ynQVTuB3sJ5ssPWlz+Z3VwveCkP1O7EVu1tsVVCb0YV5WxK9zmURu2FIiaA==}
peerDependencies:
cross-fetch: ^4.0.0
eciesjs: '*'
@@ -1213,11 +1279,11 @@ packages:
readable-stream: ^3.6.2
socket.io-client: ^4.5.1
- '@metamask/sdk-install-modal-web@0.32.0':
- resolution: {integrity: sha512-TFoktj0JgfWnQaL3yFkApqNwcaqJ+dw4xcnrJueMP3aXkSNev2Ido+WVNOg4IIMxnmOrfAC9t0UJ0u/dC9MjOQ==}
+ '@metamask/sdk-install-modal-web@0.32.1':
+ resolution: {integrity: sha512-MGmAo6qSjf1tuYXhCu2EZLftq+DSt5Z7fsIKr2P+lDgdTPWgLfZB1tJKzNcwKKOdf6q9Qmmxn7lJuI/gq5LrKw==}
- '@metamask/sdk@0.32.0':
- resolution: {integrity: sha512-WmGAlP1oBuD9hk4CsdlG1WJFuPtYJY+dnTHJMeCyohTWD2GgkcLMUUuvu9lO1/NVzuOoSi1OrnjbuY1O/1NZ1g==}
+ '@metamask/sdk@0.33.1':
+ resolution: {integrity: sha512-1mcOQVGr9rSrVcbKPNVzbZ8eCl1K0FATsYH3WJ/MH4WcZDWGECWrXJPNMZoEAkLxWiMe8jOQBumg2pmcDa9zpQ==}
'@metamask/superstruct@3.2.1':
resolution: {integrity: sha512-fLgJnDOXFmuVlB38rUN5SmU7hAFQcCjrg3Vrxz67KTY7YHFnSNEKvX4avmEBdOI0yTCxZjwMCFEqsC8k2+Wd3g==}
@@ -1239,6 +1305,10 @@ packages:
resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==}
engines: {node: '>=16.0.0'}
+ '@msgpack/msgpack@3.1.2':
+ resolution: {integrity: sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ==}
+ engines: {node: '>= 18'}
+
'@multiformats/blake2@2.0.2':
resolution: {integrity: sha512-AOWu6Tyuk5UoT5m4faB6ntVnPB8EmuD6rn18s4cCgHNEGgsamT8GdvjP9DYjzFHQVaP/0L3CaKqWQqJlXx9ecw==}
@@ -1348,6 +1418,10 @@ packages:
resolution: {integrity: sha512-7YDlXiNMdO1YZeH6t/kvopHHbIZzlxrCV9WLqCY6QhcXOoXiNCMDqJIglZ9Yjx5+w7Dz30TITFrlTjnRg7sKEg==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/curves@1.9.1':
+ resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/curves@1.9.6':
resolution: {integrity: sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==}
engines: {node: ^14.21.3 || >=16}
@@ -1531,6 +1605,9 @@ packages:
'@perma/map@1.0.3':
resolution: {integrity: sha512-Bf5njk0fnJGTFE2ETntq0N1oJ6YdCPIpTDn3R3KYZJQdeYSOCNL7mBrFlGnbqav8YQhJA/p81pvHINX9vAtHkQ==}
+ '@phosphor-icons/webcomponents@2.1.5':
+ resolution: {integrity: sha512-JcvQkZxvcX2jK+QCclm8+e8HXqtdFW9xV4/kk2aL9Y3dJA2oQVt+pzbv1orkumz3rfx4K9mn9fDoMr1He1yr7Q==}
+
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
@@ -1551,6 +1628,73 @@ packages:
resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
+ '@privy-io/api-base@1.8.1':
+ resolution: {integrity: sha512-Kt9/64l6p6xw+EX29VF3nAYUgKpLMLqpBhMQSZap4A3HqAqcKap7CGL+IQfJkVNrjmpuYL455qdDSIqNaUjUyQ==}
+
+ '@privy-io/api-types@0.3.4':
+ resolution: {integrity: sha512-OWAMriGX/RygQ74vZZDRFns4wFz5/TxvqXFLtEqQVuwTvXjzo6YkrhKR2qbQADnGkU3SXLHEa3Q7iNfoUKuJ+w==}
+
+ '@privy-io/chains@0.0.6':
+ resolution: {integrity: sha512-tcDYv2r4HJBQkEzGS3hau01WmZ4zLmEgaitPUorKvW4IC6qOzxcIXJIqeX6HT6JJjoV8I6xNey0pCsF+VS59ew==}
+
+ '@privy-io/ethereum@0.0.6':
+ resolution: {integrity: sha512-roMGsHuCeCQk1gumVOv4N/vKNVb26E+y9WLhhE7Ww2jji9Zku7dgRyHWQYda8Qy9sEB4q4+kGdk7Z5NWFGGMMA==}
+ peerDependencies:
+ viem: ^2.43.1
+
+ '@privy-io/js-sdk-core@0.58.7':
+ resolution: {integrity: sha512-R9aQ40hOYigSVAZNUVJxJdrN8xRZCUaTJMuyvVvwY6NBX0Kf7R9x34Bd99/mUTWBGXRGkePwfRkmKR1dk1jIlQ==}
+ peerDependencies:
+ permissionless: ^0.2.47
+ viem: ^2.43.1
+ peerDependenciesMeta:
+ permissionless:
+ optional: true
+ viem:
+ optional: true
+
+ '@privy-io/popup@0.0.2':
+ resolution: {integrity: sha512-kkxzZ5TFseqnZRDVhBR1Si9mTHc1jW+hLSbYviauK80enJOGsOGmxeeC/U0t0kLZGLpn0Jj5v5lNS2bmQ4as/Q==}
+
+ '@privy-io/react-auth@3.11.0':
+ resolution: {integrity: sha512-0FrfQo14cQlAxi/zBvMa6Nd4f/lcOyObqEfxGPwPcazbQe0HIWO+amFlbsPSLM3WmjREICJ2m7OsoX+m/SYB0Q==}
+ peerDependencies:
+ '@abstract-foundation/agw-client': ^1.0.0
+ '@solana-program/memo': '>=0.8.0'
+ '@solana-program/system': '>=0.8.0'
+ '@solana-program/token': '>=0.6.0'
+ '@solana/kit': '>=3.0.3'
+ permissionless: ^0.2.47
+ react: ^18 || ^19
+ react-dom: ^18 || ^19
+ peerDependenciesMeta:
+ '@abstract-foundation/agw-client':
+ optional: true
+ '@solana-program/memo':
+ optional: true
+ '@solana-program/system':
+ optional: true
+ '@solana-program/token':
+ optional: true
+ '@solana/kit':
+ optional: true
+ permissionless:
+ optional: true
+
+ '@privy-io/routes@0.0.5':
+ resolution: {integrity: sha512-aF/wQnm83FS8NDh4MnFh5ABQPL7oI/OCIoFR9WbaIHILZgjKBSo9UaoGdIprwJI+aEYC1Img+3H5Fn3vlBFPIA==}
+
+ '@privy-io/urls@0.0.3':
+ resolution: {integrity: sha512-cococ82ycPJc+wSCHUG0TrVJXF2PIkmDH8TLV+oGqBr14Q7ziRI63aCFIp6FpSRhdDDo9jmB0VR9NjCak4ptMA==}
+
+ '@privy-io/wagmi@2.1.3':
+ resolution: {integrity: sha512-w6r5mFp2bfcUc9HpEyOzoqXBzIeM+rON2Ba/liFiWrP9Yi6/vvjr9v9MQq5ernJhPEY1F5gesnjQGkbh9QOYxw==}
+ peerDependencies:
+ '@privy-io/react-auth': ^3.0.0
+ react: '>=18'
+ viem: ^2.43.1
+ wagmi: ^2.15.5
+
'@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
@@ -1581,45 +1725,101 @@ packages:
'@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- '@rainbow-me/rainbowkit@2.2.8':
- resolution: {integrity: sha512-EdNIK2cdAT6GJ9G11wx7nCVfjqBfxh7dx/1DhPYrB+yg+VFrII6cM1PiMFVC9evD4mqVHe9mmLAt3nvlwDdiPQ==}
- engines: {node: '>=12.4'}
+ '@react-aria/focus@3.21.3':
+ resolution: {integrity: sha512-FsquWvjSCwC2/sBk4b+OqJyONETUIXQ2vM0YdPAuC+QFQh2DT6TIBo6dOZVSezlhudDla69xFBd6JvCFq1AbUw==}
peerDependencies:
- '@tanstack/react-query': '>=5.0.0'
- react: '>=18'
- react-dom: '>=18'
- viem: 2.x
- wagmi: ^2.9.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+
+ '@react-aria/interactions@3.26.0':
+ resolution: {integrity: sha512-AAEcHiltjfbmP1i9iaVw34Mb7kbkiHpYdqieWufldh4aplWgsF11YQZOfaCJW4QoR2ML4Zzoa9nfFwLXA52R7Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+
+ '@react-aria/ssr@3.9.10':
+ resolution: {integrity: sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==}
+ engines: {node: '>= 12'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+
+ '@react-aria/utils@3.32.0':
+ resolution: {integrity: sha512-/7Rud06+HVBIlTwmwmJa2W8xVtgxgzm0+kLbuFooZRzKDON6hhozS1dOMR/YLMxyJOaYOTpImcP4vRR9gL1hEg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+
+ '@react-stately/flags@3.1.2':
+ resolution: {integrity: sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==}
+
+ '@react-stately/utils@3.11.0':
+ resolution: {integrity: sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+
+ '@react-types/shared@3.32.1':
+ resolution: {integrity: sha512-famxyD5emrGGpFuUlgOP6fVW2h/ZaF405G5KDi3zPHzyjAWys/8W6NAVJtNbkCkhedmvL0xOhvt8feGXyXaw5w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
'@reown/appkit-common@1.7.8':
resolution: {integrity: sha512-ridIhc/x6JOp7KbDdwGKY4zwf8/iK8EYBl+HtWrruutSLwZyVi5P8WaZa+8iajL6LcDcDF7LoyLwMTym7SRuwQ==}
+ '@reown/appkit-common@1.8.9':
+ resolution: {integrity: sha512-drseYLBDqcQR2WvhfAwrKRiDJdTmsmwZsRBg72sxQDvAwxfKNSmiqsqURq5c/Q9SeeTwclge58Dyq7Ijo6TeeQ==}
+
'@reown/appkit-controllers@1.7.8':
resolution: {integrity: sha512-IdXlJlivrlj6m63VsGLsjtPHHsTWvKGVzWIP1fXZHVqmK+rZCBDjCi9j267Rb9/nYRGHWBtlFQhO8dK35WfeDA==}
+ '@reown/appkit-controllers@1.8.9':
+ resolution: {integrity: sha512-/8hgFAgiYCTDG3gSxJr8hXy6GnO28UxN8JOXFUEi5gOODy7d3+3Jwm+7OEghf7hGKrShDedibsXdXKdX1PUT+g==}
+
'@reown/appkit-pay@1.7.8':
resolution: {integrity: sha512-OSGQ+QJkXx0FEEjlpQqIhT8zGJKOoHzVnyy/0QFrl3WrQTjCzg0L6+i91Ad5Iy1zb6V5JjqtfIFpRVRWN4M3pw==}
+ '@reown/appkit-pay@1.8.9':
+ resolution: {integrity: sha512-AEmaPqxnzjawSRFenyiTtq0vjKM5IPb2CTD9wa+OMXFpe6FissO+1Eg1H47sfdrycZCvUizSRmQmYqkJaI8BCw==}
+
'@reown/appkit-polyfills@1.7.8':
resolution: {integrity: sha512-W/kq786dcHHAuJ3IV2prRLEgD/2iOey4ueMHf1sIFjhhCGMynMkhsOhQMUH0tzodPqUgAC494z4bpIDYjwWXaA==}
+ '@reown/appkit-polyfills@1.8.9':
+ resolution: {integrity: sha512-33YCU8dxe4UkpNf9qCAaHx5crSoEu6tbmZxE/0eEPCYRDRXoiH9VGiN7xwTDOVduacg/U8H6/32ibmYZKnRk5Q==}
+
'@reown/appkit-scaffold-ui@1.7.8':
resolution: {integrity: sha512-RCeHhAwOrIgcvHwYlNWMcIDibdI91waaoEYBGw71inE0kDB8uZbE7tE6DAXJmDkvl0qPh+DqlC4QbJLF1FVYdQ==}
+ '@reown/appkit-scaffold-ui@1.8.9':
+ resolution: {integrity: sha512-F7PSM1nxvlvj2eu8iL355GzvCNiL8RKiCqT1zag8aB4QpxjU24l+vAF6debtkg4HY8nJOyDifZ7Z1jkKrHlIDQ==}
+
'@reown/appkit-ui@1.7.8':
resolution: {integrity: sha512-1hjCKjf6FLMFzrulhl0Y9Vb9Fu4royE+SXCPSWh4VhZhWqlzUFc7kutnZKx8XZFVQH4pbBvY62SpRC93gqoHow==}
+ '@reown/appkit-ui@1.8.9':
+ resolution: {integrity: sha512-WR17ql77KOMKfyDh7RW4oSfmj+p5gIl0u8Wmopzbx5Hd0HcPVZ5HmTDpwOM9WCSxYcin0fsSAoI+nVdvrhWNtw==}
+
'@reown/appkit-utils@1.7.8':
resolution: {integrity: sha512-8X7UvmE8GiaoitCwNoB86pttHgQtzy4ryHZM9kQpvjQ0ULpiER44t1qpVLXNM4X35O0v18W0Dk60DnYRMH2WRw==}
peerDependencies:
valtio: 1.13.2
+ '@reown/appkit-utils@1.8.9':
+ resolution: {integrity: sha512-U9hx4h7tIE7ha/QWKjZpZc/imaLumdwe0QNdku9epjp/npXVjGuwUrW5mj8yWNSkjtQpY/BEItNdDAUKZ7rrjw==}
+ peerDependencies:
+ valtio: 2.1.7
+
'@reown/appkit-wallet@1.7.8':
resolution: {integrity: sha512-kspz32EwHIOT/eg/ZQbFPxgXq0B/olDOj3YMu7gvLEFz4xyOFd/wgzxxAXkp5LbG4Cp++s/elh79rVNmVFdB9A==}
+ '@reown/appkit-wallet@1.8.9':
+ resolution: {integrity: sha512-rcAXvkzOVG4941eZVCGtr2dSJAMOclzZGSe+8hnOUnhK4zxa5svxiP6K9O5SMBp3MrAS3WNsRj5hqx6+JHb7iA==}
+
'@reown/appkit@1.7.8':
resolution: {integrity: sha512-51kTleozhA618T1UvMghkhKfaPcc9JlKwLJ5uV+riHyvSoWPKPRIa5A6M1Wano5puNyW0s3fwywhyqTHSilkaA==}
+ '@reown/appkit@1.8.9':
+ resolution: {integrity: sha512-e3N2DAzf3Xv3jnoD8IsUo0/Yfwuhk7npwJBe1+9rDJIRwgPsyYcCLD4gKPDFC5IUIfOLqK7YtGOh9oPEUnIWpw==}
+
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
@@ -1811,6 +2011,9 @@ packages:
resolution: {integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==}
engines: {node: '>=6'}
+ '@simplewebauthn/browser@13.2.2':
+ resolution: {integrity: sha512-FNW1oLQpTJyqG5kkDg5ZsotvWgmBaC6jCHR7Ej0qUNep36Wl9tj2eZu7J5rP+uhXgHaLk+QQ3lqcw2vS5MX1IA==}
+
'@sinclair/typebox@0.25.24':
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
@@ -1829,130 +2032,545 @@ packages:
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
- '@solidity-parser/parser@0.20.2':
- resolution: {integrity: sha512-rbu0bzwNvMcwAjH86hiEAcOeRI2EeK8zCkHDrFykh/Al8mvJeFmjy3UrE7GYQjNwOgbGUUtCn5/k8CB8zIu7QA==}
-
- '@stauro/filebase-upload@1.0.3':
- resolution: {integrity: sha512-9gEBUcqS1boVrmuXNXWLL+NRa0UkMZl7aCKKFa3SMptQt5lh4XLzNiCAQkjXPy2P3IC/8v/8CrVhMy1Cdek9UQ==}
+ '@solana-program/compute-budget@0.11.0':
+ resolution: {integrity: sha512-7f1ePqB/eURkTwTOO9TNIdUXZcyrZoX3Uy2hNo7cXMfNhPFWp9AVgIyRNBc2jf15sdUa9gNpW+PfP2iV8AYAaw==}
+ peerDependencies:
+ '@solana/kit': ^5.0
- '@swc/helpers@0.5.15':
- resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ '@solana-program/system@0.10.0':
+ resolution: {integrity: sha512-Go+LOEZmqmNlfr+Gjy5ZWAdY5HbYzk2RBewD9QinEU/bBSzpFfzqDRT55JjFRBGJUvMgf3C2vfXEGT4i8DSI4g==}
+ peerDependencies:
+ '@solana/kit': ^5.0
- '@szmarczak/http-timer@5.0.1':
- resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
- engines: {node: '>=14.16'}
+ '@solana-program/token-2022@0.6.1':
+ resolution: {integrity: sha512-Ex02cruDMGfBMvZZCrggVR45vdQQSI/unHVpt/7HPt/IwFYB4eTlXtO8otYZyqV/ce5GqZ8S6uwyRf0zy6fdbA==}
+ peerDependencies:
+ '@solana/kit': ^5.0
+ '@solana/sysvars': ^5.0
- '@tailwindcss/node@4.0.15':
- resolution: {integrity: sha512-IODaJjNmiasfZX3IoS+4Em3iu0fD2HS0/tgrnkYfW4hyUor01Smnr5eY3jc4rRgaTDrJlDmBTHbFO0ETTDaxWA==}
+ '@solana-program/token@0.9.0':
+ resolution: {integrity: sha512-vnZxndd4ED4Fc56sw93cWZ2djEeeOFxtaPS8SPf5+a+JZjKA/EnKqzbE1y04FuMhIVrLERQ8uR8H2h72eZzlsA==}
+ peerDependencies:
+ '@solana/kit': ^5.0
- '@tailwindcss/oxide-android-arm64@4.0.15':
- resolution: {integrity: sha512-EBuyfSKkom7N+CB3A+7c0m4+qzKuiN0WCvzPvj5ZoRu4NlQadg/mthc1tl5k9b5ffRGsbDvP4k21azU4VwVk3Q==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [android]
+ '@solana/accounts@5.4.0':
+ resolution: {integrity: sha512-qHtAtwCcCFTXcya6JOOG1nzYicivivN/JkcYNHr10qOp9b4MVRkfW1ZAAG1CNzjMe5+mwtEl60RwdsY9jXNb+Q==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-darwin-arm64@4.0.15':
- resolution: {integrity: sha512-ObVAnEpLepMhV9VoO0JSit66jiN5C4YCqW3TflsE9boo2Z7FIjV80RFbgeL2opBhtxbaNEDa6D0/hq/EP03kgQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
+ '@solana/addresses@5.4.0':
+ resolution: {integrity: sha512-YRHiH30S8qDV4bZ+mtEk589PGfBuXHzD/fK2Z+YI5f/+s+yi/5le/fVw7PN6LxnnmVQKiRCDUiNF+WmFFKi6QQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-darwin-x64@4.0.15':
- resolution: {integrity: sha512-IElwoFhUinOr9MyKmGTPNi1Rwdh68JReFgYWibPWTGuevkHkLWKEflZc2jtI5lWZ5U9JjUnUfnY43I4fEXrc4g==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
+ '@solana/assertions@5.4.0':
+ resolution: {integrity: sha512-8EP7mkdnrPc9y67FqWeAPzdWq2qAOkxsuo+ZBIXNWtIixDtXIdHrgjZ/wqbWxLgSTtXEfBCjpZU55Xw2Qfbwyg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-freebsd-x64@4.0.15':
- resolution: {integrity: sha512-6BLLqyx7SIYRBOnTZ8wgfXANLJV5TQd3PevRJZp0vn42eO58A2LykRKdvL1qyPfdpmEVtF+uVOEZ4QTMqDRAWA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [freebsd]
+ '@solana/buffer-layout@4.0.1':
+ resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==}
+ engines: {node: '>=5.10'}
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.15':
- resolution: {integrity: sha512-Zy63EVqO9241Pfg6G0IlRIWyY5vNcWrL5dd2WAKVJZRQVeolXEf1KfjkyeAAlErDj72cnyXObEZjMoPEKHpdNw==}
- engines: {node: '>= 10'}
- cpu: [arm]
- os: [linux]
+ '@solana/codecs-core@2.3.0':
+ resolution: {integrity: sha512-oG+VZzN6YhBHIoSKgS5ESM9VIGzhWjEHEGNPSibiDTxFhsFWxNaz8LbMDPjBUE69r9wmdGLkrQ+wVPbnJcZPvw==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: '>=5.3.3'
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.15':
- resolution: {integrity: sha512-2NemGQeaTbtIp1Z2wyerbVEJZTkAWhMDOhhR5z/zJ75yMNf8yLnE+sAlyf6yGDNr+1RqvWrRhhCFt7i0CIxe4Q==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
+ '@solana/codecs-core@5.4.0':
+ resolution: {integrity: sha512-rQ5jXgiDe2vIU+mYCHDjgwMd9WdzZfh4sc5H6JgYleAUjeTUX6mx8hTV2+pcXvvn27LPrgrt9jfxswbDb8O8ww==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.15':
- resolution: {integrity: sha512-342GVnhH/6PkVgKtEzvNVuQ4D+Q7B7qplvuH20Cfz9qEtydG6IQczTZ5IT4JPlh931MG1NUCVxg+CIorr1WJyw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
+ '@solana/codecs-data-structures@5.4.0':
+ resolution: {integrity: sha512-LVssbdQ1GfY6upnxW3mufYsNfvTWKnHNk5Hx2gHuOYJhm3HZlp+Y8zvuoY65G1d1xAXkPz5YVGxaSeVIRWLGWg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.15':
- resolution: {integrity: sha512-g76GxlKH124RuGqacCEFc2nbzRl7bBrlC8qDQMiUABkiifDRHOIUjgKbLNG4RuR9hQAD/MKsqZ7A8L08zsoBrw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
+ '@solana/codecs-numbers@2.3.0':
+ resolution: {integrity: sha512-jFvvwKJKffvG7Iz9dmN51OGB7JBcy2CJ6Xf3NqD/VP90xak66m/Lg48T01u5IQ/hc15mChVHiBm+HHuOFDUrQg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: '>=5.3.3'
- '@tailwindcss/oxide-linux-x64-musl@4.0.15':
- resolution: {integrity: sha512-Gg/Y1XrKEvKpq6WeNt2h8rMIKOBj/W3mNa5NMvkQgMC7iO0+UNLrYmt6zgZufht66HozNpn+tJMbbkZ5a3LczA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
+ '@solana/codecs-numbers@5.4.0':
+ resolution: {integrity: sha512-z6LMkY+kXWx1alrvIDSAxexY5QLhsso638CjM7XI1u6dB7drTLWKhifyjnm1vOQc1VPVFmbYxTgKKpds8TY8tg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.15':
- resolution: {integrity: sha512-7QtSSJwYZ7ZK1phVgcNZpuf7c7gaCj8Wb0xjliligT5qCGCp79OV2n3SJummVZdw4fbTNKUOYMO7m1GinppZyA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
+ '@solana/codecs-strings@5.4.0':
+ resolution: {integrity: sha512-w0trrjfQDhkCVz7O1GTmHBk9m+MkljKx2uNBbQAD3/yW2Qn9dYiTrZ1/jDVq0/+lPPAUkbT3s3Yo7HUZ2QFmHw==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ fastestsmallesttextencoderdecoder: ^1.0.22
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ fastestsmallesttextencoderdecoder:
+ optional: true
+ typescript:
+ optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.15':
- resolution: {integrity: sha512-JQ5H+5MLhOjpgNp6KomouE0ZuKmk3hO5h7/ClMNAQ8gZI2zkli3IH8ZqLbd2DVfXDbdxN2xvooIEeIlkIoSCqw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
+ '@solana/codecs@5.4.0':
+ resolution: {integrity: sha512-IbDCUvNX0MrkQahxiXj9rHzkd/fYfp1F2nTJkHGH8v+vPfD+YPjl007ZBM38EnCeXj/Xn+hxqBBivPvIHP29dA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tailwindcss/oxide@4.0.15':
- resolution: {integrity: sha512-e0uHrKfPu7JJGMfjwVNyt5M0u+OP8kUmhACwIRlM+JNBuReDVQ63yAD1NWe5DwJtdaHjugNBil76j+ks3zlk6g==}
- engines: {node: '>= 10'}
+ '@solana/errors@2.3.0':
+ resolution: {integrity: sha512-66RI9MAbwYV0UtP7kGcTBVLxJgUxoZGm8Fbc0ah+lGiAw17Gugco6+9GrJCV83VyF2mDWyYnYM9qdI3yjgpnaQ==}
+ engines: {node: '>=20.18.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=5.3.3'
- '@tailwindcss/postcss@4.0.15':
- resolution: {integrity: sha512-qyrpoDKIO7wzkRbKCvGLo7gXRjT9/Njf7ZJiJhG4njrfZkvOhjwnaHpYbpxYeDysEg+9pB1R4jcd+vQ7ZUDsmQ==}
+ '@solana/errors@5.4.0':
+ resolution: {integrity: sha512-hNoAOmlZAszaVBrAy1Jf7amHJ8wnUnTU0BqhNQXknbSvirvsYr81yEud2iq18YiCqhyJ9SuQ5kWrSAT0x7S0oA==}
+ engines: {node: '>=20.18.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tanstack/query-core@5.59.20':
- resolution: {integrity: sha512-e8vw0lf7KwfGe1if4uPFhvZRWULqHjFcz3K8AebtieXvnMOz5FSzlZe3mTLlPuUBcydCnBRqYs2YJ5ys68wwLg==}
+ '@solana/fast-stable-stringify@5.4.0':
+ resolution: {integrity: sha512-KB7PUL7yalPvbWCezzyUDVRDp39eHLPH7OJ6S8VFT8YNIFUANwwj5ctui50Fim76kvSYDdYJOclXV45O2gfQ8Q==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tanstack/react-query@5.59.20':
- resolution: {integrity: sha512-Zly0egsK0tFdfSbh5/mapSa+Zfc3Et0Zkar7Wo5sQkFzWyB3p3uZWOHR2wrlAEEV2L953eLuDBtbgFvMYiLvUw==}
+ '@solana/functional@5.4.0':
+ resolution: {integrity: sha512-32ghHO0bg6GgX/7++0/7Lps6RgeXD2gKF1okiuyEGuVfKENIapgaQdcGhUwb3q6D6fv6MRAVn/Yve4jopGVNMQ==}
+ engines: {node: '>=20.18.0'}
peerDependencies:
- react: ^18 || ^19
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tootallnate/once@2.0.0':
- resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
- engines: {node: '>= 10'}
+ '@solana/instruction-plans@5.4.0':
+ resolution: {integrity: sha512-5xbJ+I/pP2aWECmK75bEM1zCnIITlohAK83dVN+t5X2vBFrr6M9gifo8r4Opdnibsgo6QVVkKPxRo5zow5j0ig==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@trivago/prettier-plugin-sort-imports@4.3.0':
- resolution: {integrity: sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ==}
+ '@solana/instructions@5.4.0':
+ resolution: {integrity: sha512-//a7jpHbNoAgTqy3YyqG1X6QhItJLKzJa6zuYJGCwaAAJye7BxS9pxJBgb2mUt7CGidhUksf+U8pmLlxCNWYyg==}
+ engines: {node: '>=20.18.0'}
peerDependencies:
- '@vue/compiler-sfc': 3.x
- prettier: 2.x - 3.x
+ typescript: ^5.0.0
peerDependenciesMeta:
- '@vue/compiler-sfc':
+ typescript:
optional: true
- '@ts-morph/common@0.11.1':
- resolution: {integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==}
+ '@solana/keys@5.4.0':
+ resolution: {integrity: sha512-zQVbAwdoXorgXjlhlVTZaymFG6N8n1zn2NT+xI6S8HtbrKIB/42xPdXFh+zIihGzRw+9k8jzU7Axki/IPm6qWQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tsconfig/node10@1.0.12':
- resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
+ '@solana/kit@5.4.0':
+ resolution: {integrity: sha512-aVjN26jOEzJA6UBYxSTQciZPXgTxWnO/WysHrw+yeBL/5AaTZnXEgb4j5xV6cUFzOlVxhJBrx51xtoxSqJ0u3g==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tsconfig/node12@1.0.11':
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ '@solana/nominal-types@5.4.0':
+ resolution: {integrity: sha512-h4dTRQwTerzksE5B1WmObN6TvLo8dYUd7kpUUynGd8WJjK0zz3zkDhq0MkA3aF6A1C2C82BSGqSsN9EN0E6Exg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tsconfig/node14@1.0.3':
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ '@solana/offchain-messages@5.4.0':
+ resolution: {integrity: sha512-DjdlYJCcKfgh4dkdk+owH1bP+Q4BRqCs55mgWWp9PTwm/HHy/a5vcMtCi1GyIQXfhtNNvKBLbXrUE0Fxej8qlg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@tsconfig/node16@1.0.4':
- resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+ '@solana/options@5.4.0':
+ resolution: {integrity: sha512-h4vTWRChEXPhaHo9i1pCyQBWWs+NqYPQRXSAApqpUYvHb9Kct/C6KbHjfyaRMyqNQnDHLcJCX7oW9tk0iRDzIg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/plugin-core@5.4.0':
+ resolution: {integrity: sha512-e1aLGLldW7C5113qTOjFYSGq95a4QC9TWb77iq+8l6h085DcNj+195r4E2zKaINrevQjQTwvxo00oUyHP7hSJA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/programs@5.4.0':
+ resolution: {integrity: sha512-Sc90WK9ZZ7MghOflIvkrIm08JwsFC99yqSJy28/K+hDP2tcx+1x+H6OFP9cumW9eUA1+JVRDeKAhA8ak7e/kUA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/promises@5.4.0':
+ resolution: {integrity: sha512-23mfgNBbuP6Q+4vsixGy+GkyZ7wBLrxTBNXqrG/XWrJhjuuSkjEUGaK4Fx5o7LIrBi6KGqPknKxmTlvqnJhy2Q==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-api@5.4.0':
+ resolution: {integrity: sha512-FJL6KaAsQ4DhfhLKKMcqbTpToNFwHlABCemIpOunE3OSqJFDrmc/NbsEaLIoeHyIg3d1Imo49GIUOn2TEouFUA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-parsed-types@5.4.0':
+ resolution: {integrity: sha512-IRQuSzx+Sj1A3XGiIzguNZlMjMMybXTTjV/RnTwBgnJQPd/H4us4pfPD94r+/yolWDVfGjJRm04hnKVMjJU8Rg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-spec-types@5.4.0':
+ resolution: {integrity: sha512-JU9hC5/iyJx30ym17gpoXDtT9rCbO6hLpB6UDhSFFoNeirxtTVb4OdnKtsjJDfXAiXsynJRsZRwfj3vGxRLgQw==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-spec@5.4.0':
+ resolution: {integrity: sha512-XMhxBb1GuZ3Kaeu5WNHB5KteCQ/aVuMByZmUKPqaanD+gs5MQZr0g62CvN7iwRlFU7GC18Q73ROWR3/JjzbXTA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-subscriptions-api@5.4.0':
+ resolution: {integrity: sha512-euAFIG6ruEsqK+MsrL1tGSMbbOumm8UAyGzlD/kmXsAqqhcVsSeZdv5+BMIHIBsQ93GHcloA8UYw1BTPhpgl9w==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-subscriptions-channel-websocket@5.4.0':
+ resolution: {integrity: sha512-kWCmlW65MccxqXwKsIz+LkXUYQizgvBrrgYOkyclJHPa+zx4gqJjam87+wzvO9cfbDZRer3wtJBaRm61gTHNbw==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-subscriptions-spec@5.4.0':
+ resolution: {integrity: sha512-ELaV9Z39GtKyUO0++he00ymWleb07QXYJhSfA0e1N5Q9hXu/Y366kgXHDcbZ/oUJkT3ylNgTupkrsdtiy8Ryow==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-subscriptions@5.4.0':
+ resolution: {integrity: sha512-051t1CEjjAzM9ohjj2zb3ED70yeS3ZY8J5wSytL6tthTGImw/JB2a0D9DWMOKriFKt496n95IC+IdpJ35CpBWA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-transformers@5.4.0':
+ resolution: {integrity: sha512-dZ8keYloLW+eRAwAPb471uWCFs58yHloLoI+QH0FulYpsSJ7F2BNWYcdnjSS/WiggsNcU6DhpWzYAzlEY66lGQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-transport-http@5.4.0':
+ resolution: {integrity: sha512-vidA+Qtqrnqp3QSVumWHdWJ/986yCr5+qX3fbc9KPm9Ofoto88OMWB/oLJvi2Tfges1UBu/jl+lJdsVckCM1bA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc-types@5.4.0':
+ resolution: {integrity: sha512-+C4N4/5AYzBdt3Y2yzkScknScy/jTx6wfvuJIY9XjOXtdDyZ8TmrnMwdPMTZPGLdLuHplJwlwy1acu/4hqmrBQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/rpc@5.4.0':
+ resolution: {integrity: sha512-S6GRG+usnubDs0JSpgc0ZWEh9IPL5KPWMuBoD8ggGVOIVWntp53FpvhYslNzbxWBXlTvJecr2todBipGVM/AqQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/signers@5.4.0':
+ resolution: {integrity: sha512-s+fZxpi6UPr6XNk2pH/R84WjNRoSktrgG8AGNfsj/V8MJ++eKX7hhIf4JsHZtnnQXXrHmS3ozB2oHlc8yEJvCQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/subscribable@5.4.0':
+ resolution: {integrity: sha512-72LmfNX7UENgA24sn/xjlWpPAOsrxkWb9DQhuPZxly/gq8rl/rvr7Xu9qBkvFF2po9XpdUrKlccqY4awvfpltA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/sysvars@5.4.0':
+ resolution: {integrity: sha512-A5NES7sOlFmpnsiEts5vgyL3NXrt/tGGVSEjlEGvsgwl5EDZNv+xWnNA400uMDqd9O3a5PmH7p/6NsgR+kUzSg==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/transaction-confirmation@5.4.0':
+ resolution: {integrity: sha512-EdSDgxs84/4gkjQw2r7N+Kgus8x9U+NFo0ufVG+48V8Hzy2t0rlBuXgIxwx0zZwUuTIgaKhpIutJgVncwZ5koA==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/transaction-messages@5.4.0':
+ resolution: {integrity: sha512-qd/3kZDaPiHM0amhn3vXnupfcsFTVz6CYuHXvq9HFv/fq32+5Kp1FMLnmHwoSxQxdTMDghPdOhC4vhNhuWmuVQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/transactions@5.4.0':
+ resolution: {integrity: sha512-OuY4M4x/xna8KZQIrz8tSrI9EEul9Od97XejqFmGGkEjbRsUOfJW8705TveTW8jU3bd5RGecFYscPgS2F+m7jQ==}
+ engines: {node: '>=20.18.0'}
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@solana/wallet-standard-features@1.3.0':
+ resolution: {integrity: sha512-ZhpZtD+4VArf6RPitsVExvgkF+nGghd1rzPjd97GmBximpnt1rsUxMOEyoIEuH3XBxPyNB6Us7ha7RHWQR+abg==}
+ engines: {node: '>=16'}
+
+ '@solana/web3.js@1.98.4':
+ resolution: {integrity: sha512-vv9lfnvjUsRiq//+j5pBdXig0IQdtzA0BRZ3bXEP4KaIyF1CcaydWqgyzQgfZMNIsWNWmG+AUHwPy4AHOD6gpw==}
+
+ '@solidity-parser/parser@0.20.2':
+ resolution: {integrity: sha512-rbu0bzwNvMcwAjH86hiEAcOeRI2EeK8zCkHDrFykh/Al8mvJeFmjy3UrE7GYQjNwOgbGUUtCn5/k8CB8zIu7QA==}
+
+ '@stauro/filebase-upload@1.0.3':
+ resolution: {integrity: sha512-9gEBUcqS1boVrmuXNXWLL+NRa0UkMZl7aCKKFa3SMptQt5lh4XLzNiCAQkjXPy2P3IC/8v/8CrVhMy1Cdek9UQ==}
+
+ '@swc/helpers@0.5.15':
+ resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+
+ '@szmarczak/http-timer@5.0.1':
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
+
+ '@tailwindcss/node@4.0.15':
+ resolution: {integrity: sha512-IODaJjNmiasfZX3IoS+4Em3iu0fD2HS0/tgrnkYfW4hyUor01Smnr5eY3jc4rRgaTDrJlDmBTHbFO0ETTDaxWA==}
+
+ '@tailwindcss/oxide-android-arm64@4.0.15':
+ resolution: {integrity: sha512-EBuyfSKkom7N+CB3A+7c0m4+qzKuiN0WCvzPvj5ZoRu4NlQadg/mthc1tl5k9b5ffRGsbDvP4k21azU4VwVk3Q==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.0.15':
+ resolution: {integrity: sha512-ObVAnEpLepMhV9VoO0JSit66jiN5C4YCqW3TflsE9boo2Z7FIjV80RFbgeL2opBhtxbaNEDa6D0/hq/EP03kgQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.0.15':
+ resolution: {integrity: sha512-IElwoFhUinOr9MyKmGTPNi1Rwdh68JReFgYWibPWTGuevkHkLWKEflZc2jtI5lWZ5U9JjUnUfnY43I4fEXrc4g==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.0.15':
+ resolution: {integrity: sha512-6BLLqyx7SIYRBOnTZ8wgfXANLJV5TQd3PevRJZp0vn42eO58A2LykRKdvL1qyPfdpmEVtF+uVOEZ4QTMqDRAWA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.15':
+ resolution: {integrity: sha512-Zy63EVqO9241Pfg6G0IlRIWyY5vNcWrL5dd2WAKVJZRQVeolXEf1KfjkyeAAlErDj72cnyXObEZjMoPEKHpdNw==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.15':
+ resolution: {integrity: sha512-2NemGQeaTbtIp1Z2wyerbVEJZTkAWhMDOhhR5z/zJ75yMNf8yLnE+sAlyf6yGDNr+1RqvWrRhhCFt7i0CIxe4Q==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.15':
+ resolution: {integrity: sha512-342GVnhH/6PkVgKtEzvNVuQ4D+Q7B7qplvuH20Cfz9qEtydG6IQczTZ5IT4JPlh931MG1NUCVxg+CIorr1WJyw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.15':
+ resolution: {integrity: sha512-g76GxlKH124RuGqacCEFc2nbzRl7bBrlC8qDQMiUABkiifDRHOIUjgKbLNG4RuR9hQAD/MKsqZ7A8L08zsoBrw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.0.15':
+ resolution: {integrity: sha512-Gg/Y1XrKEvKpq6WeNt2h8rMIKOBj/W3mNa5NMvkQgMC7iO0+UNLrYmt6zgZufht66HozNpn+tJMbbkZ5a3LczA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.15':
+ resolution: {integrity: sha512-7QtSSJwYZ7ZK1phVgcNZpuf7c7gaCj8Wb0xjliligT5qCGCp79OV2n3SJummVZdw4fbTNKUOYMO7m1GinppZyA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.15':
+ resolution: {integrity: sha512-JQ5H+5MLhOjpgNp6KomouE0ZuKmk3hO5h7/ClMNAQ8gZI2zkli3IH8ZqLbd2DVfXDbdxN2xvooIEeIlkIoSCqw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.0.15':
+ resolution: {integrity: sha512-e0uHrKfPu7JJGMfjwVNyt5M0u+OP8kUmhACwIRlM+JNBuReDVQ63yAD1NWe5DwJtdaHjugNBil76j+ks3zlk6g==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/postcss@4.0.15':
+ resolution: {integrity: sha512-qyrpoDKIO7wzkRbKCvGLo7gXRjT9/Njf7ZJiJhG4njrfZkvOhjwnaHpYbpxYeDysEg+9pB1R4jcd+vQ7ZUDsmQ==}
+
+ '@tanstack/query-core@5.59.20':
+ resolution: {integrity: sha512-e8vw0lf7KwfGe1if4uPFhvZRWULqHjFcz3K8AebtieXvnMOz5FSzlZe3mTLlPuUBcydCnBRqYs2YJ5ys68wwLg==}
+
+ '@tanstack/react-query@5.59.20':
+ resolution: {integrity: sha512-Zly0egsK0tFdfSbh5/mapSa+Zfc3Et0Zkar7Wo5sQkFzWyB3p3uZWOHR2wrlAEEV2L953eLuDBtbgFvMYiLvUw==}
+ peerDependencies:
+ react: ^18 || ^19
+
+ '@tanstack/react-virtual@3.13.18':
+ resolution: {integrity: sha512-dZkhyfahpvlaV0rIKnvQiVoWPyURppl6w4m9IwMDpuIjcJ1sD9YGWrt0wISvgU7ewACXx2Ct46WPgI6qAD4v6A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ '@tanstack/virtual-core@3.13.18':
+ resolution: {integrity: sha512-Mx86Hqu1k39icq2Zusq+Ey2J6dDWTjDvEv43PJtRCoEYTLyfaPnxIQ6iy7YAOK0NV/qOEmZQ/uCufrppZxTgcg==}
+
+ '@tootallnate/once@2.0.0':
+ resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
+ engines: {node: '>= 10'}
+
+ '@trivago/prettier-plugin-sort-imports@4.3.0':
+ resolution: {integrity: sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ==}
+ peerDependencies:
+ '@vue/compiler-sfc': 3.x
+ prettier: 2.x - 3.x
+ peerDependenciesMeta:
+ '@vue/compiler-sfc':
+ optional: true
+
+ '@ts-morph/common@0.11.1':
+ resolution: {integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==}
+
+ '@tsconfig/node10@1.0.12':
+ resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
@@ -1981,6 +2599,9 @@ packages:
'@types/chai@4.3.20':
resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
+ '@types/connect@3.4.38':
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
@@ -2018,6 +2639,9 @@ packages:
'@types/mute-stream@0.0.4':
resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
+ '@types/node@12.20.55':
+ resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+
'@types/node@16.18.11':
resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==}
@@ -2051,12 +2675,24 @@ packages:
'@types/secp256k1@4.0.7':
resolution: {integrity: sha512-Rcvjl6vARGAKRO6jHeKMatGrvOMGrR/AR11N1x2LqintPCyDZ7NBhrh238Z2VZc7aM7KIwnFpFQ7fnfK4H/9Qw==}
+ '@types/stylis@4.2.7':
+ resolution: {integrity: sha512-VgDNokpBoKF+wrdvhAAfS55OMQpL6QRglwTwNC3kIgBrzZxA4WsFj+2eLfEA/uMUDzBcEhYmjSbwQakn/i3ajA==}
+
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
+ '@types/uuid@8.3.4':
+ resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
+
'@types/wrap-ansi@3.0.0':
resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==}
+ '@types/ws@7.4.7':
+ resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==}
+
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
+
'@typescript-eslint/eslint-plugin@8.48.0':
resolution: {integrity: sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2226,20 +2862,6 @@ packages:
cpu: [x64]
os: [win32]
- '@vanilla-extract/css@1.17.3':
- resolution: {integrity: sha512-jHivr1UPoJTX5Uel4AZSOwrCf4mO42LcdmnhJtUxZaRWhW4FviFbIfs0moAWWld7GOT+2XnuVZjjA/K32uUnMQ==}
-
- '@vanilla-extract/dynamic@2.1.4':
- resolution: {integrity: sha512-7+Ot7VlP3cIzhJnTsY/kBtNs21s0YD7WI1rKJJKYP56BkbDxi/wrQUWMGEczKPUDkJuFcvbye+E2ub1u/mHH9w==}
-
- '@vanilla-extract/private@1.0.9':
- resolution: {integrity: sha512-gT2jbfZuaaCLrAxwXbRgIhGhcXbRZCG3v4TTUnjw0EJ7ArdBRxkq4msNJkbuRkCgfIK5ATmprB5t9ljvLeFDEA==}
-
- '@vanilla-extract/sprinkles@1.6.4':
- resolution: {integrity: sha512-lW3MuIcdIeHKX81DzhTnw68YJdL1ial05exiuvTLJMdHXQLKcVB93AncLPajMM6mUhaVVx5ALZzNHMTrq/U9Hg==}
- peerDependencies:
- '@vanilla-extract/css': ^1.0.0
-
'@vercel/build-utils@8.6.0':
resolution: {integrity: sha512-shST7/8zY0Oi2uxgwt9S/fjat96Ohpt0bXB+4/TeekdDmIIIL8t+mg9ASEg1WGF8JjWqWx+tYQfXlvv7d/D+dg==}
@@ -2332,18 +2954,18 @@ packages:
'@vitest/utils@2.1.9':
resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
- '@wagmi/connectors@5.9.4':
- resolution: {integrity: sha512-k/GSdYS6nuL0zLq5H7XasPmKr3Gnvplq+yQhTfRBu/o5Bh+B3aH3Jfq1lUh+t3z5kQcyKJIXw/bZIZ7lVS7UhA==}
+ '@wagmi/connectors@6.2.0':
+ resolution: {integrity: sha512-2NfkbqhNWdjfibb4abRMrn7u6rPjEGolMfApXss6HCDVt9AW2oVC6k8Q5FouzpJezElxLJSagWz9FW1zaRlanA==}
peerDependencies:
- '@wagmi/core': 2.19.0
+ '@wagmi/core': 2.22.1
typescript: '>=5.0.4'
viem: 2.x
peerDependenciesMeta:
typescript:
optional: true
- '@wagmi/core@2.19.0':
- resolution: {integrity: sha512-lI57q6refAtNU6xnk/oyOpbEtEiwQ6g4rR+C9FEx8Gn2hZlfoyyksndrl6hIKlMBK+UkkKso3VwR5DI65j/5XQ==}
+ '@wagmi/core@2.22.1':
+ resolution: {integrity: sha512-cG/xwQWsBEcKgRTkQVhH29cbpbs/TdcUJVFXCyri3ZknxhMyGv0YEjTcrNpRgt2SaswL1KrvslSNYKKo+5YEAg==}
peerDependencies:
'@tanstack/query-core': '>=5.0.0'
typescript: '>=5.0.4'
@@ -2354,6 +2976,22 @@ packages:
typescript:
optional: true
+ '@wallet-standard/app@1.1.0':
+ resolution: {integrity: sha512-3CijvrO9utx598kjr45hTbbeeykQrQfKmSnxeWOgU25TOEpvcipD/bYDQWIqUv1Oc6KK4YStokSMu/FBNecGUQ==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/base@1.1.0':
+ resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/features@1.1.0':
+ resolution: {integrity: sha512-hiEivWNztx73s+7iLxsuD1sOJ28xtRix58W7Xnz4XzzA/pF0+aicnWgjOdA10doVDEDZdUuZCIIqG96SFNlDUg==}
+ engines: {node: '>=16'}
+
+ '@wallet-standard/wallet@1.1.0':
+ resolution: {integrity: sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==}
+ engines: {node: '>=16'}
+
'@walletconnect/core@2.21.0':
resolution: {integrity: sha512-o6R7Ua4myxR8aRUAJ1z3gT9nM+jd2B2mfamu6arzy1Cc6vi10fIwFWb6vg3bC8xJ6o9H3n/cN5TOW3aA9Y1XVw==}
engines: {node: '>=18'}
@@ -2362,12 +3000,22 @@ packages:
resolution: {integrity: sha512-Tp4MHJYcdWD846PH//2r+Mu4wz1/ZU/fr9av1UWFiaYQ2t2TPLDiZxjLw54AAEpMqlEHemwCgiRiAmjR1NDdTQ==}
engines: {node: '>=18'}
+ '@walletconnect/core@2.21.9':
+ resolution: {integrity: sha512-SlSknLvbO4i9Y4y8zU0zeCuJv1klQIUX3HRSBs1BaYvQKVVkrdiWPgRj4jcrL2wEOINa9NXw6HXp6x5XCXOolA==}
+ engines: {node: '>=18.20.8'}
+
+ '@walletconnect/core@2.22.4':
+ resolution: {integrity: sha512-ZQnyDDpqDPAk5lyLV19BRccQ3wwK3LmAwibuIv3X+44aT/dOs2kQGu9pla3iW2LgZ5qRMYvgvvfr5g3WlDGceQ==}
+ engines: {node: '>=18.20.8'}
+
'@walletconnect/environment@1.0.1':
resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==}
'@walletconnect/ethereum-provider@2.21.1':
resolution: {integrity: sha512-SSlIG6QEVxClgl1s0LMk4xr2wg4eT3Zn/Hb81IocyqNSGfXpjtawWxKxiC5/9Z95f1INyBD6MctJbL/R1oBwIw==}
- deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases'
+
+ '@walletconnect/ethereum-provider@2.22.4':
+ resolution: {integrity: sha512-qhBxU95nlndiKGz8lO8z9JlsA4Ai8i1via4VWut2fXsW1fkl6qXG9mYhDRFsbavuynUe3dQ+QLjBVDaaNkcKCA==}
'@walletconnect/events@1.0.1':
resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==}
@@ -2401,6 +3049,9 @@ packages:
'@walletconnect/logger@2.1.2':
resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==}
+ '@walletconnect/logger@3.0.0':
+ resolution: {integrity: sha512-DDktPBFdmt5d7U3sbp4e3fQHNS1b6amsR8FmtOnt6L2SnV7VfcZr8VmAGL12zetAR+4fndegbREmX0P8Mw6eDg==}
+
'@walletconnect/relay-api@1.0.11':
resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
@@ -2412,11 +3063,15 @@ packages:
'@walletconnect/sign-client@2.21.0':
resolution: {integrity: sha512-z7h+PeLa5Au2R591d/8ZlziE0stJvdzP9jNFzFolf2RG/OiXulgFKum8PrIyXy+Rg2q95U9nRVUF9fWcn78yBA==}
- deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases'
'@walletconnect/sign-client@2.21.1':
resolution: {integrity: sha512-QaXzmPsMnKGV6tc4UcdnQVNOz4zyXgarvdIQibJ4L3EmLat73r5ZVl4c0cCOcoaV7rgM9Wbphgu5E/7jNcd3Zg==}
- deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases'
+
+ '@walletconnect/sign-client@2.21.9':
+ resolution: {integrity: sha512-EKLDS97o1rk/0XilD0nQdSR9SNgRsVoIK5M5HpS9sDTvHPv2EF5pIqu6Xr2vLsKcQ0KnCx+D5bnpav8Yh4NVZg==}
+
+ '@walletconnect/sign-client@2.22.4':
+ resolution: {integrity: sha512-la+sol0KL33Fyx5DRlupHREIv8wA6W33bRfuLAfLm8pINRTT06j9rz0IHIqJihiALebFxVZNYzJnF65PhV0q3g==}
'@walletconnect/time@1.0.2':
resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==}
@@ -2427,13 +3082,23 @@ packages:
'@walletconnect/types@2.21.1':
resolution: {integrity: sha512-UeefNadqP6IyfwWC1Yi7ux+ljbP2R66PLfDrDm8izmvlPmYlqRerJWJvYO4t0Vvr9wrG4Ko7E0c4M7FaPKT/sQ==}
+ '@walletconnect/types@2.21.9':
+ resolution: {integrity: sha512-+82TRNX3lGRO96WyLISaBs/FkLts7y4hVgmOI4we84I7XdBu1xsjgiJj0JwYXnurz+X94lTqzOkzPps+wadWKw==}
+
+ '@walletconnect/types@2.22.4':
+ resolution: {integrity: sha512-KJdiS9ezXzx1uASanldYaaenDwb42VOQ6Rj86H7FRwfYddhNnYnyEaDjDKOdToGRGcpt5Uzom6qYUOnrWEbp5g==}
+
'@walletconnect/universal-provider@2.21.0':
resolution: {integrity: sha512-mtUQvewt+X0VBQay/xOJBvxsB3Xsm1lTwFjZ6WUwSOTR1X+FNb71hSApnV5kbsdDIpYPXeQUbGt2se1n5E5UBg==}
- deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases'
'@walletconnect/universal-provider@2.21.1':
resolution: {integrity: sha512-Wjx9G8gUHVMnYfxtasC9poGm8QMiPCpXpbbLFT+iPoQskDDly8BwueWnqKs4Mx2SdIAWAwuXeZ5ojk5qQOxJJg==}
- deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases'
+
+ '@walletconnect/universal-provider@2.21.9':
+ resolution: {integrity: sha512-dVA9DWSz9jYe37FW5GSRV5zlY9E7rX1kktcDGI7i1/9oG/z9Pk5UKp5r/DFys4Zjml9wZc46R/jlEgeBXTT06A==}
+
+ '@walletconnect/universal-provider@2.22.4':
+ resolution: {integrity: sha512-TF2RNX13qxa0rrBAhVDs5+C2G8CHX7L0PH5hF2uyQHdGyxZ3pFbXf8rxmeW1yKlB76FSbW80XXNrUes6eK/xHg==}
'@walletconnect/utils@2.21.0':
resolution: {integrity: sha512-zfHLiUoBrQ8rP57HTPXW7rQMnYxYI4gT9yTACxVW6LhIFROTF6/ytm5SKNoIvi4a5nX5dfXG4D9XwQUCu8Ilig==}
@@ -2441,6 +3106,12 @@ packages:
'@walletconnect/utils@2.21.1':
resolution: {integrity: sha512-VPZvTcrNQCkbGOjFRbC24mm/pzbRMUq2DSQoiHlhh0X1U7ZhuIrzVtAoKsrzu6rqjz0EEtGxCr3K1TGRqDG4NA==}
+ '@walletconnect/utils@2.21.9':
+ resolution: {integrity: sha512-FHagysDvp7yQl+74veIeuqwZZnMiTyTW3Lw0NXsbIKnlmlSQu5pma+4EnRD/CnSzbN6PV39k2t1KBaaZ4PjDgg==}
+
+ '@walletconnect/utils@2.22.4':
+ resolution: {integrity: sha512-coAPrNiTiD+snpiXQyXakMVeYcddqVqII7aLU39TeILdPoXeNPc2MAja+MF7cKNM/PA3tespljvvxck/oTm4+Q==}
+
'@walletconnect/window-getters@1.0.1':
resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==}
@@ -2463,6 +3134,11 @@ packages:
engines: {node: '>=22'}
hasBin: true
+ '@zama-fhe/relayer-sdk@0.4.0-4':
+ resolution: {integrity: sha512-F4B4QQesRcYeUzpLSyZ+P5x9y2ALwkVL/xTSt3nsFknp33YpyDkV9BhGNz4qt8C5XQh15OvwbYyVPXuv7cggDA==}
+ engines: {node: '>=22'}
+ hasBin: true
+
abbrev@1.0.9:
resolution: {integrity: sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==}
@@ -2491,6 +3167,32 @@ packages:
zod:
optional: true
+ abitype@1.1.0:
+ resolution: {integrity: sha512-6Vh4HcRxNMLA0puzPjM5GBgT4aAcFGKZzSgAXvuZ27shJP6NEpielTuqbBmZILR5/xd0PizkBGy5hReKz9jl5A==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ zod: ^3.22.0 || ^4.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+
+ abitype@1.2.3:
+ resolution: {integrity: sha512-Ofer5QUnuUdTFsBRwARMoWKOH1ND5ehwYhJ3OJ/BQO+StkwQjHw0XyVh4vDttzHB7QOFhPHa/o413PJ82gU/Tg==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ zod: ^3.22.0 || ^4.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ zod:
+ optional: true
+
+ abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+
abort-error@1.0.1:
resolution: {integrity: sha512-fxqCblJiIPdSXIUrxI0PL+eJG49QdP9SQ70qtB65MVAoMr2rASlOyAbJFOylfB467F/f+5BCLJJq58RYi7mGfg==}
@@ -2534,6 +3236,10 @@ packages:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
+ agentkeepalive@4.6.0:
+ resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==}
+ engines: {node: '>= 8.0.0'}
+
aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -2747,6 +3453,11 @@ packages:
resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
engines: {node: '>=4'}
+ axios-retry@4.5.0:
+ resolution: {integrity: sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==}
+ peerDependencies:
+ axios: 0.x || 1.x
+
axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
@@ -2822,6 +3533,9 @@ packages:
bn.js@5.2.2:
resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==}
+ borsh@0.7.0:
+ resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==}
+
bowser@2.13.0:
resolution: {integrity: sha512-yHAbSRuT6LTeKi6k2aS40csueHqgAsFEgmrOsfRyFpJnFv5O2hl9FYmWEUZ97gZ/dG17U4IQQcTx4YAFYPuWRQ==}
@@ -2884,9 +3598,6 @@ packages:
resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
engines: {node: '>=6.14.2'}
- burner-connector@0.0.18:
- resolution: {integrity: sha512-MG01Rs+8M0nAB+ZRRpT7jtCJ1I7c4ygUBa+UeMKqf0l/MVbtL++kfoeIs/mNbZc5TQ587pTybMDBIAVprkPmwA==}
-
byte-counter@0.1.0:
resolution: {integrity: sha512-jheRLVMeUKrDBjVw2O5+k4EvR4t9wtxHL+bo/LxfkxsVeuGMy3a5SEGgXdAFA4FSzTrU8rQXQIrsZ3oBq5a0pQ==}
engines: {node: '>=20'}
@@ -2939,9 +3650,16 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
+ camelize@1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
+
caniuse-lite@1.0.30001757:
resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==}
+ canonicalize@2.1.0:
+ resolution: {integrity: sha512-F705O3xrsUtgt98j7leetNhTWPe+5S72rlL5O4jA1pKqBVQ/dT1O1D6PFxmSXvc0SUOinWS57DKx0I3CHrXJHQ==}
+ hasBin: true
+
cbor@8.1.0:
resolution: {integrity: sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==}
engines: {node: '>=12.19'}
@@ -3087,6 +3805,9 @@ packages:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -3110,6 +3831,9 @@ packages:
resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
engines: {node: '>=20'}
+ commander@2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+
commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
@@ -3194,19 +3918,17 @@ packages:
crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
+ css-color-keywords@1.0.0:
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
+ engines: {node: '>=4'}
+
+ css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
+
css-tree@3.1.0:
resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- css-what@6.2.2:
- resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
- engines: {node: '>= 6'}
-
- cssesc@3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
- engines: {node: '>=4'}
- hasBin: true
-
cssstyle@5.3.3:
resolution: {integrity: sha512-OytmFH+13/QXONJcC75QNdMtKpceNk3u8ThBjyyYjkEcy/ekBwR1mMAuNvi3gdBPW3N5TlCzQ0WZw8H0lN/bDw==}
engines: {node: '>=20'}
@@ -3214,16 +3936,6 @@ packages:
csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
- cuer@0.0.2:
- resolution: {integrity: sha512-MG1BYnnSLqBnO0dOBS1Qm/TEc9DnFa9Sz2jMA24OF4hGzs8UuPjpKBMkRPF3lrpC+7b3EzULwooX9djcvsM8IA==}
- peerDependencies:
- react: '>=18'
- react-dom: '>=18'
- typescript: '>=5.4.0'
- peerDependenciesMeta:
- typescript:
- optional: true
-
dag-jose@5.1.1:
resolution: {integrity: sha512-9alfZ8Wh1XOOMel8bMpDqWsDT72ojFQCJPtwZSev9qh4f8GoCV9qrJW8jcOUhcstO8Kfm09FHGo//jqiZq3z9w==}
@@ -3253,6 +3965,9 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
+ dateformat@4.6.3:
+ resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
+
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
@@ -3276,6 +3991,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
@@ -3320,14 +4044,6 @@ packages:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
- dedent@1.7.0:
- resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
- peerDependencies:
- babel-plugin-macros: ^3.1.0
- peerDependenciesMeta:
- babel-plugin-macros:
- optional: true
-
deep-eql@4.1.4:
resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
@@ -3343,13 +4059,6 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deep-object-diff@1.1.9:
- resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
-
- deepmerge@4.3.1:
- resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
- engines: {node: '>=0.10.0'}
-
defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
@@ -3365,6 +4074,10 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
+ delay@5.0.0:
+ resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==}
+ engines: {node: '>=10'}
+
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -3395,9 +4108,6 @@ packages:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- detect-node-es@1.1.0:
- resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
-
diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
@@ -3561,6 +4271,15 @@ packages:
es-toolkit@1.33.0:
resolution: {integrity: sha512-X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg==}
+ es-toolkit@1.39.3:
+ resolution: {integrity: sha512-Qb/TCFCldgOy8lZ5uC7nLGdqJwSabkQiYQShmw4jyiPk1pZzaYWTwaYKYP7EgLccWYgZocMrtItrwh683voaww==}
+
+ es6-promise@4.2.8:
+ resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
+
+ es6-promisify@5.0.0:
+ resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==}
+
esbuild-android-64@0.14.47:
resolution: {integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==}
engines: {node: '>=12'}
@@ -3933,6 +4652,10 @@ packages:
resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==}
engines: {node: '>=6.5.0', npm: '>=3'}
+ event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
eventemitter2@6.4.9:
resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
@@ -3969,10 +4692,17 @@ packages:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
+ eyes@0.1.8:
+ resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==}
+ engines: {node: '> 0.1.90'}
+
fake-indexeddb@6.0.1:
resolution: {integrity: sha512-He2AjQGHe46svIFq5+L2Nx/eHDTI1oKgoevBP+TthnjymXiKkeJQ3+ITeWey99Y5+2OaPFbI1qEsx/5RsGtWnQ==}
engines: {node: '>=18'}
+ fast-copy@3.0.2:
+ resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -3996,6 +4726,9 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-password-entropy@1.1.1:
+ resolution: {integrity: sha512-dxm29/BPFrNgyEDygg/lf9c2xQR0vnQhG7+hZjAI39M/3um9fD4xiqG6F0ZjW6bya5m9CI0u6YryHGRtxCGCiw==}
+
fast-redact@3.5.0:
resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==}
engines: {node: '>=6'}
@@ -4003,6 +4736,9 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+ fast-stable-stringify@1.0.0:
+ resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==}
+
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
@@ -4191,10 +4927,6 @@ packages:
get-iterator@1.0.2:
resolution: {integrity: sha512-v+dm9bNVfOYsY1OrhaCrmyOcYoSeVvbt+hHZ0Au+T+p1y+0Uyj9aMaGIeUTT6xdpRbWzDeYKvfOslPhggQMcsg==}
- get-nonce@1.0.1:
- resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
- engines: {node: '>=6'}
-
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -4403,9 +5135,16 @@ packages:
heap@0.2.7:
resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
+ help-me@5.0.0:
+ resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
+
hmac-drbg@1.0.1:
resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
+ hono@4.11.4:
+ resolution: {integrity: sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==}
+ engines: {node: '>=16.9.0'}
+
hosted-git-info@7.0.2:
resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -4456,6 +5195,9 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
+ humanize-ms@1.2.1:
+ resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
+
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -4580,6 +5322,9 @@ packages:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
+ is-buffer@1.1.6:
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
+
is-bun-module@2.0.0:
resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
@@ -4662,6 +5407,10 @@ packages:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
+ is-retry-allowed@2.2.0:
+ resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
+ engines: {node: '>=10'}
+
is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
@@ -4734,6 +5483,11 @@ packages:
resolution: {integrity: sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==}
engines: {node: '>=12'}
+ isomorphic-ws@4.0.1:
+ resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==}
+ peerDependencies:
+ ws: '*'
+
isows@1.0.6:
resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==}
peerDependencies:
@@ -4818,10 +5572,29 @@ packages:
javascript-natural-sort@0.7.1:
resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
+ jayson@4.3.0:
+ resolution: {integrity: sha512-AauzHcUcqs8OBnCHOkJY280VaTiCm57AbuO7lqzcw7JapGj50BisE3xhksye4zlTSR1+1tAz67wLTl8tEH1obQ==}
+ engines: {node: '>=8'}
+ hasBin: true
+
jiti@2.6.1:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
+ jose@4.15.9:
+ resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==}
+
+ jose@6.1.3:
+ resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
+
+ joycon@3.1.1:
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+ engines: {node: '>=10'}
+
+ js-cookie@3.0.5:
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
+ engines: {node: '>=14'}
+
js-sha3@0.8.0:
resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==}
@@ -4890,6 +5663,9 @@ packages:
resolution: {integrity: sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==}
engines: {node: '>=7.10.1'}
+ json-stringify-safe@5.0.1:
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+
json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
@@ -4954,6 +5730,9 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ libphonenumber-js@1.12.34:
+ resolution: {integrity: sha512-v/Ip8k8eYdp7bINpzqDh46V/PaQ8sK+qi97nMQgjZzFlb166YFqlR/HVI+MzsI9JqcyyVWCOipmmretiaSyQyw==}
+
lightningcss-darwin-arm64@1.29.2:
resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==}
engines: {node: '>= 12.0.0'}
@@ -5099,6 +5878,11 @@ packages:
lru_map@0.3.3:
resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
+ lucide-react@0.554.0:
+ resolution: {integrity: sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -5132,12 +5916,12 @@ packages:
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+ md5@2.3.0:
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+
mdn-data@2.12.2:
resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
- media-query-parser@2.0.2:
- resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
-
memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
@@ -5271,9 +6055,6 @@ packages:
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
- modern-ahocorasick@1.1.0:
- resolution: {integrity: sha512-sEKPVl2rM+MNVkGQt3ChdmD8YsigmXdn5NifZn6jiwn9LRJpWm8F3guhaqrJT/JOat6pwpbXEk6kv+b9DMIjsQ==}
-
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -5281,6 +6062,9 @@ packages:
ms@2.1.1:
resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==}
+ ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -5590,6 +6374,10 @@ packages:
on-exit-leak-free@0.2.0:
resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==}
+ on-exit-leak-free@2.1.2:
+ resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
+ engines: {node: '>=14.0.0'}
+
once@1.3.3:
resolution: {integrity: sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==}
@@ -5604,9 +6392,15 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- openzeppelin-confidential-contracts@https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/89e9be7cf87aa4eda72ad9548044cb53aca20b9f:
- resolution: {tarball: https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/89e9be7cf87aa4eda72ad9548044cb53aca20b9f}
- version: 0.3.0
+ openapi-fetch@0.13.8:
+ resolution: {integrity: sha512-yJ4QKRyNxE44baQ9mY5+r/kAzZ8yXMemtNAOFwOzRXJscdjSxxzWSNlyBAr+o5JjkUw9Lc3W7OIoca0cY3PYnQ==}
+
+ openapi-typescript-helpers@0.0.15:
+ resolution: {integrity: sha512-opyTPaunsklCBpTK8JGef6mfPhLSnyy5a0IN9vKtx3+4aExf+KxEqYwIy3hqkedXIB97u357uLMJsOnm3GVjsw==}
+
+ openzeppelin-confidential-contracts@https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/7defe3e7521cb164a90e72b2fe80f578de1d691b:
+ resolution: {tarball: https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/7defe3e7521cb164a90e72b2fe80f578de1d691b}
+ version: 0.3.1
engines: {node: '>=20.19.0'}
optionator@0.8.3:
@@ -5632,6 +6426,14 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
+ ox@0.11.3:
+ resolution: {integrity: sha512-1bWYGk/xZel3xro3l8WGg6eq4YEKlaqvyMtVhfMFpbJzK2F6rj4EDRtqDCWVEJMkzcmEi9uW2QxsqELokOlarw==}
+ peerDependencies:
+ typescript: '>=5.4.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
ox@0.6.7:
resolution: {integrity: sha512-17Gk/eFsFRAZ80p5eKqv89a57uXjd3NgIf1CaXojATPBuujVc/fQSVhBeAU9JCRB+k7J50WQAyWTxK19T9GgbA==}
peerDependencies:
@@ -5648,8 +6450,32 @@ packages:
typescript:
optional: true
- ox@0.8.7:
- resolution: {integrity: sha512-W1f0FiMf9NZqtHPEDEAEkyzZDwbIKfmH2qmQx8NNiQ/9JhxrSblmtLJsSfTtQG5YKowLOnBlLVguCyxm/7ztxw==}
+ ox@0.9.1:
+ resolution: {integrity: sha512-NVI0cajROntJWtFnxZQ1aXDVy+c6DLEXJ3wwON48CgbPhmMJrpRTfVbuppR+47RmXm3lZ/uMaKiFSkLdAO1now==}
+ peerDependencies:
+ typescript: '>=5.4.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ ox@0.9.17:
+ resolution: {integrity: sha512-rKAnhzhRU3Xh3hiko+i1ZxywZ55eWQzeS/Q4HRKLx2PqfHOolisZHErSsJVipGlmQKHW5qwOED/GighEw9dbLg==}
+ peerDependencies:
+ typescript: '>=5.4.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ ox@0.9.3:
+ resolution: {integrity: sha512-KzyJP+fPV4uhuuqrTZyok4DC7vFzi7HLUFiUNEmpbyh59htKWkOC98IONC1zgXJPbHAhQgqs6B0Z6StCGhmQvg==}
+ peerDependencies:
+ typescript: '>=5.4.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ ox@0.9.6:
+ resolution: {integrity: sha512-8SuCbHPvv2eZLYXrNmC0EC12rdzXQLdhnOMlHDW2wiCPLxBrOOJwX5L5E61by+UjTPOryqQiRSnjIKCI+GykKg==}
peerDependencies:
typescript: '>=5.4.0'
peerDependenciesMeta:
@@ -5837,9 +6663,26 @@ packages:
pino-abstract-transport@0.5.0:
resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==}
+ pino-abstract-transport@1.2.0:
+ resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==}
+
+ pino-abstract-transport@2.0.0:
+ resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==}
+
+ pino-pretty@10.3.1:
+ resolution: {integrity: sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==}
+ hasBin: true
+
pino-std-serializers@4.0.0:
resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==}
+ pino-std-serializers@7.1.0:
+ resolution: {integrity: sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==}
+
+ pino@10.0.0:
+ resolution: {integrity: sha512-eI9pKwWEix40kfvSzqEP6ldqOoBIN7dwD/o91TY5z8vQI12sAffpR/pOqAD1IVVwIVHDpHjkq0joBPdJD0rafA==}
+ hasBin: true
+
pino@7.11.0:
resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==}
hasBin: true
@@ -5856,6 +6699,38 @@ packages:
resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==}
engines: {node: '>=12.0.0'}
+ porto@0.2.35:
+ resolution: {integrity: sha512-gu9FfjjvvYBgQXUHWTp6n3wkTxVtEcqFotM7i3GEZeoQbvLGbssAicCz6hFZ8+xggrJWwi/RLmbwNra50SMmUQ==}
+ hasBin: true
+ peerDependencies:
+ '@tanstack/react-query': '>=5.59.0'
+ '@wagmi/core': '>=2.16.3'
+ expo-auth-session: '>=7.0.8'
+ expo-crypto: '>=15.0.7'
+ expo-web-browser: '>=15.0.8'
+ react: '>=18'
+ react-native: '>=0.81.4'
+ typescript: '>=5.4.0'
+ viem: '>=2.37.0'
+ wagmi: '>=2.0.0'
+ peerDependenciesMeta:
+ '@tanstack/react-query':
+ optional: true
+ expo-auth-session:
+ optional: true
+ expo-crypto:
+ optional: true
+ expo-web-browser:
+ optional: true
+ react:
+ optional: true
+ react-native:
+ optional: true
+ typescript:
+ optional: true
+ wagmi:
+ optional: true
+
possible-typed-array-names@1.1.0:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
@@ -5887,8 +6762,8 @@ packages:
preact@10.24.2:
resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
- preact@10.27.2:
- resolution: {integrity: sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==}
+ preact@10.28.2:
+ resolution: {integrity: sha512-lbteaWGzGHdlIuiJ0l2Jq454m6kcpI1zNje6d8MlGAFlYvP2GO4ibnat7P74Esfz4sPTdM6UxtTwh/d3pwM9JA==}
prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
@@ -5937,6 +6812,13 @@ packages:
process-warning@1.0.0:
resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==}
+ process-warning@5.0.0:
+ resolution: {integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==}
+
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
progress-events@1.0.1:
resolution: {integrity: sha512-MOzLIwhpt64KIVN64h1MwdKWiyKFNc/S6BoYKPIVUHFg0/eIEyBulhWCgn678v/4c0ri3FdGuzXymNCv02MUIw==}
@@ -5959,6 +6841,9 @@ packages:
proxy-compare@2.6.0:
resolution: {integrity: sha512-8xuCeM3l8yqdmbPoYeLbrAXCBWu19XEYc5/F28f5qOaoAIMyfmBUkl5axiK+x9olUvRlcekvnm98AP9RDngOIw==}
+ proxy-compare@3.0.1:
+ resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==}
+
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -5969,10 +6854,6 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qr@0.5.2:
- resolution: {integrity: sha512-91M3sVlA7xCFpkJtYX5xzVH8tDo4rNZ7jr8v+1CRgPVkZ4D+Vl9y8rtZWJ/YkEUM6U/h0FAu5W/JAK7iowOteA==}
- engines: {node: '>= 20.19.0'}
-
qrcode.react@4.0.1:
resolution: {integrity: sha512-Lpj0tPBn561WiQ3QQWXbkx8xTtB8BZkJeMZWLJIL8iaPBCoWzW1IpCeU3gY5MDqsb0+efCvEGkl9O0naP64crA==}
peerDependencies:
@@ -6025,6 +6906,12 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
+ react-device-detect@2.2.3:
+ resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==}
+ peerDependencies:
+ react: '>= 0.14.0'
+ react-dom: '>= 0.14.0'
+
react-dom@19.2.1:
resolution: {integrity: sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg==}
peerDependencies:
@@ -6043,36 +6930,6 @@ packages:
react-native-fetch-api@3.0.0:
resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==}
- react-remove-scroll-bar@2.3.8:
- resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.6.2:
- resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-style-singleton@2.2.3:
- resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
react@19.0.0:
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
@@ -6088,6 +6945,10 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.7.0:
+ resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
@@ -6100,6 +6961,10 @@ packages:
resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==}
engines: {node: '>= 12.13.0'}
+ real-require@0.2.0:
+ resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
+ engines: {node: '>= 12.13.0'}
+
rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
@@ -6207,6 +7072,9 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rpc-websockets@9.3.2:
+ resolution: {integrity: sha512-VuW2xJDnl1k8n8kjbdRSWawPRkwaVqUQNjE1TdeTawf0y0abGhtVJFTXCLfgpgGDBkO/Fj6kny8Dc/nvOW78MA==}
+
run-async@3.0.0:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
@@ -6261,6 +7129,12 @@ packages:
resolution: {integrity: sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw==}
engines: {node: '>=18.0.0'}
+ secure-json-parse@2.7.0:
+ resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
+
+ secure-password-utilities@0.2.1:
+ resolution: {integrity: sha512-znUg8ae3cpuAaogiFBhP82gD2daVkSz4Qv/L7OWjB7wWvfbCdeqqQuJkm2/IvhKQPOV0T739YPR6rb7vs0uWaw==}
+
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
@@ -6274,6 +7148,11 @@ packages:
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'}
@@ -6285,6 +7164,9 @@ packages:
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ set-cookie-parser@2.7.2:
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
+
set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
@@ -6314,6 +7196,9 @@ packages:
sha1@1.1.1:
resolution: {integrity: sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA==}
+ shallowequal@1.1.0:
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
+
sharp@0.34.5:
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -6369,6 +7254,9 @@ packages:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
+ slow-redact@0.3.2:
+ resolution: {integrity: sha512-MseHyi2+E/hBRqdOi5COy6wZ7j7DxXRz9NkseavNYSvvWC06D8a5cidVZX3tcG5eCW3NIyVU4zT63hw0Q486jw==}
+
socket.io-client@4.8.1:
resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==}
engines: {node: '>=10.0.0'}
@@ -6407,6 +7295,12 @@ packages:
sonic-boom@2.8.0:
resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
+ sonic-boom@3.8.1:
+ resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==}
+
+ sonic-boom@4.2.0:
+ resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==}
+
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -6468,6 +7362,12 @@ packages:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
+ stream-chain@2.2.5:
+ resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==}
+
+ stream-json@1.9.1:
+ resolution: {integrity: sha512-uWkjJ+2Nt/LO9Z/JyKZbMusL8Dkh97uUBTv3AJQ74y07lVahLY4eEFsPsE97pxYBwr8nnjMAIch5eqI0gPShyw==}
+
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
@@ -6556,6 +7456,16 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ styled-components@6.3.8:
+ resolution: {integrity: sha512-Kq/W41AKQloOqKM39zfaMdJ4BcYDw/N5CIq4/GTI0YjU6pKcZ1KKhk6b4du0a+6RA9pIfOP/eu94Ge7cu+PDCA==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+
styled-jsx@5.1.6:
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
@@ -6569,10 +7479,17 @@ packages:
babel-plugin-macros:
optional: true
+ stylis@4.3.6:
+ resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
+
superstruct@1.0.4:
resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==}
engines: {node: '>=14.0.0'}
+ superstruct@2.0.2:
+ resolution: {integrity: sha512-uV+TFRZdXsqXTL2pRvujROjdZQ4RAlBUS5BTh9IGm+jTqQntYThciG/qu57Gs69yjnVUSqdxF9YLmSnpupBW9A==}
+ engines: {node: '>=14.0.0'}
+
supports-color@10.2.2:
resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==}
engines: {node: '>=18'}
@@ -6604,6 +7521,9 @@ packages:
resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
engines: {node: ^14.18.0 || >=16.0.0}
+ tabbable@6.4.0:
+ resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==}
+
table-layout@1.0.2:
resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==}
engines: {node: '>=8.0.0'}
@@ -6634,6 +7554,9 @@ packages:
resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==}
engines: {node: '>=18'}
+ text-encoding-utf-8@1.0.2:
+ resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==}
+
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
@@ -6643,6 +7566,9 @@ packages:
thread-stream@0.15.2:
resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==}
+ thread-stream@3.1.0:
+ resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
+
time-span@4.0.0:
resolution: {integrity: sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==}
engines: {node: '>=10'}
@@ -6656,6 +7582,9 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+ tinycolor2@1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
+
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
@@ -6895,6 +7824,9 @@ packages:
uint8arrays@3.1.0:
resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==}
+ uint8arrays@3.1.1:
+ resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==}
+
uint8arrays@5.1.0:
resolution: {integrity: sha512-vA6nFepEmlSKkMBnLBaUMVvAC4G3CTmO58C12y4sq6WPDOR7mOFYOi7GlrQ4djeSbP6JG9Pv9tJDM97PedRSww==}
@@ -6914,6 +7846,9 @@ packages:
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+
undici@5.28.4:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
@@ -7008,26 +7943,6 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
- use-callback-ref@1.3.3:
- resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.3:
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
use-sync-external-store@1.2.0:
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
@@ -7038,6 +7953,11 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
usehooks-ts@3.1.1:
resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==}
engines: {node: '>=16.15.0'}
@@ -7089,6 +8009,18 @@ packages:
react:
optional: true
+ valtio@2.1.7:
+ resolution: {integrity: sha512-DwJhCDpujuQuKdJ2H84VbTjEJJteaSmqsuUltsfbfdbotVfNeTE4K/qc/Wi57I9x8/2ed4JNdjEna7O6PfavRg==}
+ engines: {node: '>=12.20.0'}
+ peerDependencies:
+ '@types/react': '>=18.0.0'
+ react: '>=18.0.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+
varint@6.0.0:
resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
@@ -7105,20 +8037,36 @@ packages:
typescript:
optional: true
- viem@2.34.0:
- resolution: {integrity: sha512-HJZG9Wt0DLX042MG0PK17tpataxtdAEhpta9/Q44FqKwy3xZMI5Lx4jF+zZPuXFuYjZ68R0PXqRwlswHs6r4gA==}
+ viem@2.36.0:
+ resolution: {integrity: sha512-Xz7AkGtR43K+NY74X2lBevwfRrsXuifGUzt8QiULO47NXIcT7g3jcA4nIvl5m2OTE5v8SlzishwXmg64xOIVmQ==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
typescript:
optional: true
- vite-node@2.1.9:
- resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
-
- vite@5.4.21:
+ viem@2.41.2:
+ resolution: {integrity: sha512-LYliajglBe1FU6+EH9mSWozp+gRA/QcHfxeD9Odf83AdH5fwUS7DroH4gHvlv6Sshqi1uXrYFA2B/EOczxd15g==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ viem@2.44.4:
+ resolution: {integrity: sha512-sJDLVl2EsS5Fo7GSWZME5CXEV7QRYkUJPeBw7ac+4XI3D4ydvMw/gjulTsT5pgqcpu70BploFnOAC6DLpan1Yg==}
+ peerDependencies:
+ typescript: '>=5.0.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ vite-node@2.1.9:
+ resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+
+ vite@5.4.21:
resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -7178,8 +8126,8 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- wagmi@2.16.4:
- resolution: {integrity: sha512-HthfF/6g7qPnCttl9tLkKoJdWKqMH3Isx4DJ+mkn//Ubom0eKnXH2hr2SMVGTqNQUpsi1knYLUWDGJYkT4hoog==}
+ wagmi@2.19.5:
+ resolution: {integrity: sha512-RQUfKMv6U+EcSNNGiPbdkDtJwtuFxZWLmvDiQmjjBgkuPulUwDJsKhi7gjynzJdsx2yDqhHCXkKsbbfbIsHfcQ==}
peerDependencies:
'@tanstack/react-query': '>=5.0.0'
react: '>=18'
@@ -7356,6 +8304,21 @@ packages:
utf-8-validate:
optional: true
+ ws@8.19.0:
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ x402@0.7.3:
+ resolution: {integrity: sha512-8CIZsdMTOn52PjMH/ErVke9ebeZ7ErwiZ5FL3tN3Wny7Ynxs3LkuB/0q7IoccRLdVXA7f2lueYBJ2iDrElhXnA==}
+
xdg-app-paths@5.1.0:
resolution: {integrity: sha512-RAQ3WkPf4KTU1A8RtFx3gWywzVKe00tfOPFfl2NDGqbIFENQO4kqAJp7mhQjNj/33W5x5hiWWUdyfPq/5SU3QA==}
engines: {node: '>=6'}
@@ -7456,6 +8419,9 @@ packages:
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+ zod@4.3.5:
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
+
zustand@5.0.0:
resolution: {integrity: sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==}
engines: {node: '>=12.20.0'}
@@ -7621,19 +8587,67 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@base-org/account@1.1.1(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@base-org/account@1.1.1(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@noble/hashes': 1.4.0
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ idb-keyval: 6.2.1
+ ox: 0.6.9(typescript@5.8.3)(zod@4.3.5)
+ preact: 10.24.2
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ zustand: 5.0.3(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - immer
+ - react
+ - typescript
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@base-org/account@2.4.0(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
+ '@coinbase/cdp-sdk': 1.43.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)
'@noble/hashes': 1.4.0
clsx: 1.2.1
eventemitter3: 5.0.1
idb-keyval: 6.2.1
ox: 0.6.9(typescript@5.8.3)(zod@3.25.76)
preact: 10.24.2
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zustand: 5.0.3(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - react
+ - typescript
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@base-org/account@2.4.0(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@coinbase/cdp-sdk': 1.43.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@noble/hashes': 1.4.0
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ idb-keyval: 6.2.1
+ ox: 0.6.9(typescript@5.8.3)(zod@4.3.5)
+ preact: 10.24.2
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
zustand: 5.0.3(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
transitivePeerDependencies:
- '@types/react'
- bufferutil
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
- immer
- react
- typescript
@@ -7651,6 +8665,28 @@ snapshots:
dependencies:
'@chainsafe/is-ip': 2.1.0
+ '@coinbase/cdp-sdk@1.43.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana-program/system': 0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana-program/token': 0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.98.4(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ abitype: 1.0.6(typescript@5.8.3)(zod@3.25.76)
+ axios: 1.13.2
+ axios-retry: 4.5.0(axios@1.13.2)
+ jose: 6.1.3
+ md5: 2.3.0
+ uncrypto: 0.1.3
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zod: 3.25.76
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - encoding
+ - fastestsmallesttextencoderdecoder
+ - typescript
+ - utf-8-validate
+
'@coinbase/wallet-sdk@3.9.3':
dependencies:
bn.js: 5.2.2
@@ -7660,11 +8696,18 @@ snapshots:
eth-json-rpc-filters: 6.0.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.27.2
+ preact: 10.28.2
sha.js: 2.4.12
transitivePeerDependencies:
- supports-color
+ '@coinbase/wallet-sdk@4.3.2':
+ dependencies:
+ '@noble/hashes': 1.8.0
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ preact: 10.28.2
+
'@coinbase/wallet-sdk@4.3.6(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
'@noble/hashes': 1.4.0
@@ -7673,7 +8716,27 @@ snapshots:
idb-keyval: 6.2.1
ox: 0.6.9(typescript@5.8.3)(zod@3.25.76)
preact: 10.24.2
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zustand: 5.0.3(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - immer
+ - react
+ - typescript
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@coinbase/wallet-sdk@4.3.6(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@noble/hashes': 1.4.0
+ clsx: 1.2.1
+ eventemitter3: 5.0.1
+ idb-keyval: 6.2.1
+ ox: 0.6.9(typescript@5.8.3)(zod@4.3.5)
+ preact: 10.24.2
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
zustand: 5.0.3(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
transitivePeerDependencies:
- '@types/react'
@@ -7746,7 +8809,13 @@ snapshots:
tslib: 2.8.1
optional: true
- '@emotion/hash@0.9.2': {}
+ '@emotion/is-prop-valid@1.4.0':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+
+ '@emotion/memoize@0.9.0': {}
+
+ '@emotion/unitless@0.10.0': {}
'@esbuild/aix-ppc64@0.21.5':
optional: true
@@ -8240,14 +9309,66 @@ snapshots:
solidity-comments-darwin-arm64: 0.1.1
solidity-comments-linux-x64-gnu: 0.1.1
- '@gemini-wallet/core@0.2.0(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))':
+ '@floating-ui/core@1.7.3':
+ dependencies:
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/dom@1.7.4':
+ dependencies:
+ '@floating-ui/core': 1.7.3
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/react-dom@2.1.6(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@floating-ui/dom': 1.7.4
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
+ '@floating-ui/react@0.26.28(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@floating-ui/utils': 0.2.10
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+ tabbable: 6.4.0
+
+ '@floating-ui/utils@0.2.10': {}
+
+ '@gemini-wallet/core@0.3.2(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))':
+ dependencies:
+ '@metamask/rpc-errors': 7.0.2
+ eventemitter3: 5.0.1
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@gemini-wallet/core@0.3.2(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))':
dependencies:
'@metamask/rpc-errors': 7.0.2
eventemitter3: 5.0.1
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- supports-color
+ '@hcaptcha/loader@2.3.0': {}
+
+ '@hcaptcha/react-hcaptcha@1.17.4(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@hcaptcha/loader': 2.3.0
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
+ '@headlessui/react@2.2.9(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@floating-ui/react': 0.26.28(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@react-aria/focus': 3.21.3(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@react-aria/interactions': 3.26.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@tanstack/react-virtual': 3.13.18(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+ use-sync-external-store: 1.6.0(react@19.0.3)
+
'@heroicons/react@2.1.5(react@19.0.3)':
dependencies:
react: 19.0.3
@@ -8578,6 +9699,11 @@ snapshots:
'@lit-labs/ssr-dom-shim@1.4.0': {}
+ '@lit/react@1.0.8(@types/react@19.0.14)':
+ dependencies:
+ '@types/react': 19.0.14
+ optional: true
+
'@lit/reactive-element@2.1.1':
dependencies:
'@lit-labs/ssr-dom-shim': 1.4.0
@@ -8597,6 +9723,11 @@ snapshots:
- encoding
- supports-color
+ '@marsidev/react-turnstile@1.4.1(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
'@metamask/abi-utils@2.0.4':
dependencies:
'@metamask/superstruct': 3.2.1
@@ -8681,12 +9812,17 @@ snapshots:
'@metamask/safe-event-emitter@3.1.2': {}
- '@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@metamask/sdk-analytics@0.0.5':
+ 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.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
+ '@metamask/sdk-analytics': 0.0.5
bufferutil: 4.0.9
cross-fetch: 4.1.0(encoding@0.1.13)
date-fns: 2.30.0
- debug: 4.4.3(supports-color@8.1.1)
+ debug: 4.3.4
eciesjs: 0.4.16
eventemitter2: 6.4.9
readable-stream: 3.6.2
@@ -8696,21 +9832,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.32.0':
+ '@metamask/sdk-install-modal-web@0.32.1':
dependencies:
'@paulmillr/qr': 0.2.1
- '@metamask/sdk@0.32.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.33.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.28.4
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
- '@metamask/sdk-communication-layer': 0.32.0(cross-fetch@4.1.0(encoding@0.1.13))(eciesjs@0.4.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.32.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.16)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@metamask/sdk-install-modal-web': 0.32.1
'@paulmillr/qr': 0.2.1
bowser: 2.13.0
cross-fetch: 4.1.0(encoding@0.1.13)
- debug: 4.4.3(supports-color@8.1.1)
+ debug: 4.3.4
eciesjs: 0.4.16
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
@@ -8783,6 +9920,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@msgpack/msgpack@3.1.2': {}
+
'@multiformats/blake2@2.0.2':
dependencies:
blakejs: 1.2.1
@@ -8893,6 +10032,10 @@ snapshots:
dependencies:
'@noble/hashes': 1.8.0
+ '@noble/curves@1.9.1':
+ dependencies:
+ '@noble/hashes': 1.8.0
+
'@noble/curves@1.9.6':
dependencies:
'@noble/hashes': 1.8.0
@@ -9097,6 +10240,10 @@ snapshots:
'@multiformats/murmur3': 2.1.8
murmurhash3js-revisited: 3.0.0
+ '@phosphor-icons/webcomponents@2.1.5':
+ dependencies:
+ lit: 3.3.0
+
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -9114,6 +10261,137 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
+ '@privy-io/api-base@1.8.1':
+ dependencies:
+ zod: 3.25.76
+
+ '@privy-io/api-types@0.3.4': {}
+
+ '@privy-io/chains@0.0.6': {}
+
+ '@privy-io/ethereum@0.0.6(viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))':
+ dependencies:
+ viem: 2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+
+ '@privy-io/js-sdk-core@0.58.7(viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))':
+ dependencies:
+ '@privy-io/api-base': 1.8.1
+ '@privy-io/api-types': 0.3.4
+ '@privy-io/chains': 0.0.6
+ '@privy-io/ethereum': 0.0.6(viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@privy-io/routes': 0.0.5
+ canonicalize: 2.1.0
+ eventemitter3: 5.0.1
+ fetch-retry: 6.0.0
+ jose: 4.15.9
+ js-cookie: 3.0.5
+ libphonenumber-js: 1.12.34
+ set-cookie-parser: 2.7.2
+ uuid: 9.0.1
+ optionalDependencies:
+ viem: 2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+
+ '@privy-io/popup@0.0.2': {}
+
+ '@privy-io/react-auth@3.11.0(@solana-program/system@0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana-program/token@0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(@solana/sysvars@5.4.0(typescript@5.8.3))(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@base-org/account': 1.1.1(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@coinbase/wallet-sdk': 4.3.2
+ '@floating-ui/react': 0.26.28(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@hcaptcha/react-hcaptcha': 1.17.4(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@headlessui/react': 2.2.9(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@heroicons/react': 2.1.5(react@19.0.3)
+ '@marsidev/react-turnstile': 1.4.1(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@privy-io/api-base': 1.8.1
+ '@privy-io/api-types': 0.3.4
+ '@privy-io/chains': 0.0.6
+ '@privy-io/ethereum': 0.0.6(viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@privy-io/js-sdk-core': 0.58.7(viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@privy-io/popup': 0.0.2
+ '@privy-io/routes': 0.0.5
+ '@privy-io/urls': 0.0.3
+ '@scure/base': 1.2.6
+ '@simplewebauthn/browser': 13.2.2
+ '@tanstack/react-virtual': 3.13.18(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@wallet-standard/app': 1.1.0
+ '@walletconnect/ethereum-provider': 2.22.4(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/universal-provider': 2.22.4(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ eventemitter3: 5.0.1
+ fast-password-entropy: 1.1.1
+ jose: 4.15.9
+ js-cookie: 3.0.5
+ lucide-react: 0.554.0(react@19.0.3)
+ mipd: 0.0.7(typescript@5.8.3)
+ ofetch: 1.5.1
+ pino-pretty: 10.3.1
+ qrcode: 1.5.3
+ react: 19.0.3
+ react-device-detect: 2.2.3(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ react-dom: 19.2.1(react@19.0.3)
+ secure-password-utilities: 0.2.1
+ styled-components: 6.3.8(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ stylis: 4.3.6
+ tinycolor2: 1.6.0
+ uuid: 9.0.1
+ viem: 2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ x402: 0.7.3(@solana/sysvars@5.4.0(typescript@5.8.3))(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ zustand: 5.0.8(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ optionalDependencies:
+ '@solana-program/system': 0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana-program/token': 0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@solana/sysvars'
+ - '@tanstack/query-core'
+ - '@tanstack/react-query'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react-native
+ - supports-color
+ - typescript
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - zod
+
+ '@privy-io/routes@0.0.5':
+ dependencies:
+ '@privy-io/api-types': 0.3.4
+
+ '@privy-io/urls@0.0.3': {}
+
+ '@privy-io/wagmi@2.1.3(e598bd721631442b2db6c0e91743da3b)':
+ dependencies:
+ '@privy-io/react-auth': 3.11.0(@solana-program/system@0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana-program/token@0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)))(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(@solana/sysvars@5.4.0(typescript@5.8.3))(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)
+ react: 19.0.3
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ wagmi: 2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)
+
'@protobufjs/aspromise@1.1.2': {}
'@protobufjs/base64@1.1.2': {}
@@ -9137,30 +10415,60 @@ snapshots:
'@protobufjs/utf8@1.1.0': {}
- '@rainbow-me/rainbowkit@2.2.8(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76))':
+ '@react-aria/focus@3.21.3(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
dependencies:
- '@tanstack/react-query': 5.59.20(react@19.0.3)
- '@vanilla-extract/css': 1.17.3
- '@vanilla-extract/dynamic': 2.1.4
- '@vanilla-extract/sprinkles': 1.6.4(@vanilla-extract/css@1.17.3)
+ '@react-aria/interactions': 3.26.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@react-aria/utils': 3.32.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@react-types/shared': 3.32.1(react@19.0.3)
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
- cuer: 0.0.2(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)
react: 19.0.3
react-dom: 19.2.1(react@19.0.3)
- react-remove-scroll: 2.6.2(@types/react@19.0.14)(react@19.0.3)
- ua-parser-js: 1.0.41
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- wagmi: 2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
- transitivePeerDependencies:
- - '@types/react'
- - babel-plugin-macros
- - typescript
+
+ '@react-aria/interactions@3.26.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@react-aria/ssr': 3.9.10(react@19.0.3)
+ '@react-aria/utils': 3.32.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)
+ '@react-stately/flags': 3.1.2
+ '@react-types/shared': 3.32.1(react@19.0.3)
+ '@swc/helpers': 0.5.15
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
+ '@react-aria/ssr@3.9.10(react@19.0.3)':
+ dependencies:
+ '@swc/helpers': 0.5.15
+ react: 19.0.3
+
+ '@react-aria/utils@3.32.0(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@react-aria/ssr': 3.9.10(react@19.0.3)
+ '@react-stately/flags': 3.1.2
+ '@react-stately/utils': 3.11.0(react@19.0.3)
+ '@react-types/shared': 3.32.1(react@19.0.3)
+ '@swc/helpers': 0.5.15
+ clsx: 2.1.1
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
+ '@react-stately/flags@3.1.2':
+ dependencies:
+ '@swc/helpers': 0.5.15
+
+ '@react-stately/utils@3.11.0(react@19.0.3)':
+ dependencies:
+ '@swc/helpers': 0.5.15
+ react: 19.0.3
+
+ '@react-types/shared@3.32.1(react@19.0.3)':
+ dependencies:
+ react: 19.0.3
'@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
dependencies:
big.js: 6.2.2
dayjs: 1.11.13
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
transitivePeerDependencies:
- bufferutil
- typescript
@@ -9171,25 +10479,58 @@ snapshots:
dependencies:
big.js: 6.2.2
dayjs: 1.11.13
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- bufferutil
- typescript
- utf-8-validate
- zod
- '@reown/appkit-controllers@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
- '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-common@1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
+ dependencies:
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-common@1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-controllers@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
@@ -9213,14 +10554,13 @@ snapshots:
- utf-8-validate
- zod
- '@reown/appkit-pay@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-controllers@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
- lit: 3.3.0
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9249,18 +10589,13 @@ snapshots:
- utf-8-validate
- zod
- '@reown/appkit-polyfills@1.7.8':
- dependencies:
- buffer: 6.0.3
-
- '@reown/appkit-scaffold-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)':
+ '@reown/appkit-controllers@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
- '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
- lit: 3.3.0
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-wallet': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.21.9(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ valtio: 2.1.7(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9287,16 +10622,16 @@ snapshots:
- typescript
- uploadthing
- utf-8-validate
- - valtio
- zod
- '@reown/appkit-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-pay@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
'@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
lit: 3.3.0
- qrcode: 1.5.3
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9325,16 +10660,14 @@ snapshots:
- utf-8-validate
- zod
- '@reown/appkit-utils@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)':
+ '@reown/appkit-pay@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-polyfills': 1.7.8
- '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
- '@walletconnect/logger': 2.1.2
- '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ lit: 3.3.0
valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9363,32 +10696,58 @@ snapshots:
- utf-8-validate
- zod
- '@reown/appkit-wallet@1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ '@reown/appkit-pay@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
- '@reown/appkit-polyfills': 1.7.8
- '@walletconnect/logger': 2.1.2
- zod: 3.22.4
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-ui': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ lit: 3.3.0
+ valtio: 2.1.7(@types/react@19.0.14)(react@19.0.3)
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
- bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
- typescript
+ - uploadthing
- utf-8-validate
+ - zod
- '@reown/appkit@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-polyfills@1.7.8':
+ dependencies:
+ buffer: 6.0.3
+
+ '@reown/appkit-polyfills@1.8.9':
+ dependencies:
+ buffer: 6.0.3
+
+ '@reown/appkit-scaffold-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)':
dependencies:
'@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-pay': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@reown/appkit-polyfills': 1.7.8
- '@reown/appkit-scaffold-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
'@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
'@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.21.0
- '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- bs58: 6.0.0
- valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ lit: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9415,920 +10774,2763 @@ snapshots:
- typescript
- uploadthing
- utf-8-validate
+ - valtio
- zod
- '@rollup/pluginutils@4.2.1':
- dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
-
- '@rollup/rollup-android-arm-eabi@4.53.3':
- optional: true
-
- '@rollup/rollup-android-arm64@4.53.3':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.53.3':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.53.3':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.53.3':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-arm-musleabihf@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-loong64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-ppc64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-riscv64-musl@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.53.3':
- optional: true
-
- '@rollup/rollup-openharmony-arm64@4.53.3':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.53.3':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.53.3':
- optional: true
-
- '@rollup/rollup-win32-x64-gnu@4.53.3':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.53.3':
- optional: true
-
- '@rtsao/scc@1.1.0': {}
-
- '@rushstack/eslint-patch@1.15.0': {}
-
- '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-scaffold-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)':
dependencies:
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- events: 3.3.0
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.3.0
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
- bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
- typescript
+ - uploadthing
- utf-8-validate
+ - valtio
- zod
- '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@reown/appkit-scaffold-ui@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)':
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.23.1
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-ui': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-wallet': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.3.0
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
- bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
- typescript
+ - uploadthing
- utf-8-validate
+ - valtio
- zod
- '@safe-global/safe-gateway-typescript-sdk@3.23.1': {}
-
- '@scure/base@1.1.9': {}
-
- '@scure/base@1.2.6': {}
-
- '@scure/bip32@1.1.5':
+ '@reown/appkit-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@noble/hashes': 1.2.0
- '@noble/secp256k1': 1.7.1
- '@scure/base': 1.1.9
-
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.3.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-ui@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.3.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-ui@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@phosphor-icons/webcomponents': 2.1.5
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-wallet': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.3.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-utils@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-polyfills': 1.7.8
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-utils@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-polyfills': 1.7.8
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-utils@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)':
+ dependencies:
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-polyfills': 1.8.9
+ '@reown/appkit-wallet': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@wallet-standard/wallet': 1.1.0
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/universal-provider': 2.21.9(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ valtio: 2.1.7(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-wallet@1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@reown/appkit-polyfills': 1.7.8
+ '@walletconnect/logger': 2.1.2
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+
+ '@reown/appkit-wallet@1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@reown/appkit-polyfills': 1.8.9
+ '@walletconnect/logger': 2.1.2
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+
+ '@reown/appkit@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-pay': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-polyfills': 1.7.8
+ '@reown/appkit-scaffold-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
+ '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@3.25.76)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ bs58: 6.0.0
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit@1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-pay': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-polyfills': 1.7.8
+ '@reown/appkit-scaffold-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-ui': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ bs58: 6.0.0
+ valtio: 1.13.2(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit@1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@reown/appkit-common': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-controllers': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-pay': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-polyfills': 1.8.9
+ '@reown/appkit-scaffold-ui': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-ui': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@reown/appkit-utils': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@2.1.7(@types/react@19.0.14)(react@19.0.3))(zod@4.3.5)
+ '@reown/appkit-wallet': 1.8.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.21.9(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ bs58: 6.0.0
+ semver: 7.7.2
+ valtio: 2.1.7(@types/react@19.0.14)(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ optionalDependencies:
+ '@lit/react': 1.0.8(@types/react@19.0.14)
+ 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
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@rollup/pluginutils@4.2.1':
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+
+ '@rollup/rollup-android-arm-eabi@4.53.3':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-loong64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.53.3':
+ optional: true
+
+ '@rollup/rollup-openharmony-arm64@4.53.3':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.53.3':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.53.3':
+ optional: true
+
+ '@rollup/rollup-win32-x64-gnu@4.53.3':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.53.3':
+ optional: true
+
+ '@rtsao/scc@1.1.0': {}
+
+ '@rushstack/eslint-patch@1.15.0': {}
+
+ '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@safe-global/safe-gateway-typescript-sdk': 3.23.1
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@safe-global/safe-gateway-typescript-sdk': 3.23.1
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-gateway-typescript-sdk@3.23.1': {}
+
+ '@scure/base@1.1.9': {}
+
+ '@scure/base@1.2.6': {}
+
+ '@scure/bip32@1.1.5':
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/base': 1.1.9
+
'@scure/bip32@1.4.0':
dependencies:
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@scure/base': 1.1.9
+ '@noble/curves': 1.4.2
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.9
+
+ '@scure/bip32@1.6.2':
+ dependencies:
+ '@noble/curves': 1.8.2
+ '@noble/hashes': 1.7.2
+ '@scure/base': 1.2.6
+
+ '@scure/bip32@1.7.0':
+ dependencies:
+ '@noble/curves': 1.9.6
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.6
+
+ '@scure/bip39@1.1.1':
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@scure/base': 1.1.9
+
+ '@scure/bip39@1.3.0':
+ dependencies:
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.9
+
+ '@scure/bip39@1.5.4':
+ dependencies:
+ '@noble/hashes': 1.7.2
+ '@scure/base': 1.2.6
+
+ '@scure/bip39@1.6.0':
+ dependencies:
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.6
+
+ '@sec-ant/readable-stream@0.4.1': {}
+
+ '@sentry/core@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/hub@5.30.0':
+ dependencies:
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/minimal@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/types': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/node@5.30.0':
+ dependencies:
+ '@sentry/core': 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/tracing': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ cookie: 0.4.2
+ https-proxy-agent: 5.0.1
+ lru_map: 0.3.3
+ tslib: 1.14.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sentry/tracing@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/types@5.30.0': {}
+
+ '@sentry/utils@5.30.0':
+ dependencies:
+ '@sentry/types': 5.30.0
+ tslib: 1.14.1
+
+ '@simplewebauthn/browser@13.2.2': {}
+
+ '@sinclair/typebox@0.25.24': {}
+
+ '@sindresorhus/is@5.6.0': {}
+
+ '@sindresorhus/is@7.1.1': {}
+
+ '@smithy/types@4.9.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@socket.io/component-emitter@3.1.2': {}
+
+ '@solana-program/compute-budget@0.11.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+
+ '@solana-program/system@0.10.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+
+ '@solana-program/token-2022@0.6.1(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(@solana/sysvars@5.4.0(typescript@5.8.3))':
+ dependencies:
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/sysvars': 5.4.0(typescript@5.8.3)
+
+ '@solana-program/token@0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+
+ '@solana/accounts@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/addresses@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/assertions': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/assertions@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/buffer-layout@4.0.1':
+ dependencies:
+ buffer: 6.0.3
+
+ '@solana/codecs-core@2.3.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 2.3.0(typescript@5.8.3)
+ typescript: 5.8.3
+
+ '@solana/codecs-core@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/codecs-data-structures@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/codecs-numbers@2.3.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 2.3.0(typescript@5.8.3)
+ '@solana/errors': 2.3.0(typescript@5.8.3)
+ typescript: 5.8.3
+
+ '@solana/codecs-numbers@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/codecs-strings@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/codecs@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-data-structures': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/options': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/errors@2.3.0(typescript@5.8.3)':
+ dependencies:
+ chalk: 5.6.2
+ commander: 14.0.2
+ typescript: 5.8.3
+
+ '@solana/errors@5.4.0(typescript@5.8.3)':
+ dependencies:
+ chalk: 5.6.2
+ commander: 14.0.2
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/fast-stable-stringify@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/functional@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/instruction-plans@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/instructions': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/promises': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/instructions@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/keys@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/assertions': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/accounts': 5.4.0(typescript@5.8.3)
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/instruction-plans': 5.4.0(typescript@5.8.3)
+ '@solana/instructions': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/offchain-messages': 5.4.0(typescript@5.8.3)
+ '@solana/plugin-core': 5.4.0(typescript@5.8.3)
+ '@solana/programs': 5.4.0(typescript@5.8.3)
+ '@solana/rpc': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-api': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-parsed-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/signers': 5.4.0(typescript@5.8.3)
+ '@solana/sysvars': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-confirmation': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - fastestsmallesttextencoderdecoder
+ - utf-8-validate
+
+ '@solana/nominal-types@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/offchain-messages@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-data-structures': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/options@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-data-structures': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/plugin-core@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/programs@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/promises@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-api@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-parsed-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-transformers': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/rpc-parsed-types@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-spec-types@5.4.0(typescript@5.8.3)':
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-spec@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-subscriptions-api@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-transformers': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/rpc-subscriptions-channel-websocket@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions-spec': 5.4.0(typescript@5.8.3)
+ '@solana/subscribable': 5.4.0(typescript@5.8.3)
+ ws: 8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
+ '@solana/rpc-subscriptions-spec@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/promises': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ '@solana/subscribable': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-subscriptions@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/fast-stable-stringify': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/promises': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions-api': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions-channel-websocket': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/rpc-subscriptions-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-transformers': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/subscribable': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - fastestsmallesttextencoderdecoder
+ - utf-8-validate
+
+ '@solana/rpc-transformers@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/rpc-transport-http@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ undici-types: 7.18.2
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/rpc-types@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/rpc@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/fast-stable-stringify': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-api': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-spec-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-transformers': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-transport-http': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/signers@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/instructions': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ '@solana/offchain-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/subscribable@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+
+ '@solana/sysvars@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/accounts': 5.4.0(typescript@5.8.3)
+ '@solana/codecs': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/transaction-confirmation@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/promises': 5.4.0(typescript@5.8.3)
+ '@solana/rpc': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-subscriptions': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ '@solana/transactions': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - fastestsmallesttextencoderdecoder
+ - utf-8-validate
+
+ '@solana/transaction-messages@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-data-structures': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/instructions': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/transactions@5.4.0(typescript@5.8.3)':
+ dependencies:
+ '@solana/addresses': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-core': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-data-structures': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-numbers': 5.4.0(typescript@5.8.3)
+ '@solana/codecs-strings': 5.4.0(typescript@5.8.3)
+ '@solana/errors': 5.4.0(typescript@5.8.3)
+ '@solana/functional': 5.4.0(typescript@5.8.3)
+ '@solana/instructions': 5.4.0(typescript@5.8.3)
+ '@solana/keys': 5.4.0(typescript@5.8.3)
+ '@solana/nominal-types': 5.4.0(typescript@5.8.3)
+ '@solana/rpc-types': 5.4.0(typescript@5.8.3)
+ '@solana/transaction-messages': 5.4.0(typescript@5.8.3)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - fastestsmallesttextencoderdecoder
+
+ '@solana/wallet-standard-features@1.3.0':
+ dependencies:
+ '@wallet-standard/base': 1.1.0
+ '@wallet-standard/features': 1.1.0
+
+ '@solana/web3.js@1.98.4(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@babel/runtime': 7.28.4
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@solana/buffer-layout': 4.0.1
+ '@solana/codecs-numbers': 2.3.0(typescript@5.8.3)
+ agentkeepalive: 4.6.0
+ bn.js: 5.2.2
+ borsh: 0.7.0
+ bs58: 4.0.1
+ buffer: 6.0.3
+ fast-stable-stringify: 1.0.0
+ jayson: 4.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ node-fetch: 2.7.0(encoding@0.1.13)
+ rpc-websockets: 9.3.2
+ superstruct: 2.0.2
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - typescript
+ - utf-8-validate
+
+ '@solidity-parser/parser@0.20.2': {}
+
+ '@stauro/filebase-upload@1.0.3':
+ dependencies:
+ '@smithy/types': 4.9.0
+ aws4: 1.13.2
+
+ '@swc/helpers@0.5.15':
+ dependencies:
+ tslib: 2.8.1
+
+ '@szmarczak/http-timer@5.0.1':
+ dependencies:
+ defer-to-connect: 2.0.1
+
+ '@tailwindcss/node@4.0.15':
+ dependencies:
+ enhanced-resolve: 5.18.3
+ jiti: 2.6.1
+ tailwindcss: 4.0.15
+
+ '@tailwindcss/oxide-android-arm64@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.15':
+ optional: true
+
+ '@tailwindcss/oxide@4.0.15':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.0.15
+ '@tailwindcss/oxide-darwin-arm64': 4.0.15
+ '@tailwindcss/oxide-darwin-x64': 4.0.15
+ '@tailwindcss/oxide-freebsd-x64': 4.0.15
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.15
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.0.15
+ '@tailwindcss/oxide-linux-arm64-musl': 4.0.15
+ '@tailwindcss/oxide-linux-x64-gnu': 4.0.15
+ '@tailwindcss/oxide-linux-x64-musl': 4.0.15
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.0.15
+ '@tailwindcss/oxide-win32-x64-msvc': 4.0.15
+
+ '@tailwindcss/postcss@4.0.15':
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ '@tailwindcss/node': 4.0.15
+ '@tailwindcss/oxide': 4.0.15
+ lightningcss: 1.29.2
+ postcss: 8.4.49
+ tailwindcss: 4.0.15
+
+ '@tanstack/query-core@5.59.20': {}
+
+ '@tanstack/react-query@5.59.20(react@19.0.3)':
+ dependencies:
+ '@tanstack/query-core': 5.59.20
+ react: 19.0.3
+
+ '@tanstack/react-virtual@3.13.18(react-dom@19.2.1(react@19.0.3))(react@19.0.3)':
+ dependencies:
+ '@tanstack/virtual-core': 3.13.18
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+
+ '@tanstack/virtual-core@3.13.18': {}
+
+ '@tootallnate/once@2.0.0': {}
+
+ '@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.5.3)':
+ dependencies:
+ '@babel/generator': 7.17.7
+ '@babel/parser': 7.28.5
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.17.0
+ javascript-natural-sort: 0.7.1
+ lodash: 4.17.21
+ prettier: 3.5.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@ts-morph/common@0.11.1':
+ dependencies:
+ fast-glob: 3.3.3
+ minimatch: 3.1.2
+ mkdirp: 1.0.4
+ path-browserify: 1.0.1
+
+ '@tsconfig/node10@1.0.12': {}
+
+ '@tsconfig/node12@1.0.11': {}
+
+ '@tsconfig/node14@1.0.3': {}
+
+ '@tsconfig/node16@1.0.4': {}
+
+ '@tybys/wasm-util@0.10.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@typechain/ethers-v6@0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)':
+ dependencies:
+ ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ lodash: 4.17.21
+ ts-essentials: 7.0.3(typescript@5.8.3)
+ typechain: 8.3.2(typescript@5.8.3)
+ typescript: 5.8.3
+
+ '@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3))(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.27.0(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))':
+ dependencies:
+ '@typechain/ethers-v6': 0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)
+ ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ fs-extra: 9.1.0
+ hardhat: 2.27.0(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
+ typechain: 8.3.2(typescript@5.8.3)
+
+ '@types/bn.js@5.2.0':
+ dependencies:
+ '@types/node': 20.19.25
+
+ '@types/chai-as-promised@7.1.8':
+ dependencies:
+ '@types/chai': 4.3.20
+
+ '@types/chai@4.3.20': {}
+
+ '@types/connect@3.4.38':
+ dependencies:
+ '@types/node': 18.19.130
+
+ '@types/debug@4.1.12':
+ dependencies:
+ '@types/ms': 2.1.0
+
+ '@types/estree@1.0.8': {}
+
+ '@types/glob@7.2.0':
+ dependencies:
+ '@types/minimatch': 6.0.0
+ '@types/node': 20.19.25
+
+ '@types/http-cache-semantics@4.0.4': {}
+
+ '@types/json-schema@7.0.15': {}
+
+ '@types/json5@0.0.29': {}
+
+ '@types/lodash@4.17.21': {}
+
+ '@types/minimatch@6.0.0':
+ dependencies:
+ minimatch: 10.1.1
- '@scure/bip32@1.6.2':
+ '@types/mkdirp@0.5.2':
dependencies:
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
- '@scure/base': 1.2.6
+ '@types/node': 20.19.25
- '@scure/bip32@1.7.0':
+ '@types/mocha@10.0.10': {}
+
+ '@types/ms@2.1.0': {}
+
+ '@types/mute-stream@0.0.4':
dependencies:
- '@noble/curves': 1.9.6
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
+ '@types/node': 18.19.130
- '@scure/bip39@1.1.1':
+ '@types/node@12.20.55': {}
+
+ '@types/node@16.18.11': {}
+
+ '@types/node@18.19.130':
dependencies:
- '@noble/hashes': 1.2.0
- '@scure/base': 1.1.9
+ undici-types: 5.26.5
- '@scure/bip39@1.3.0':
+ '@types/node@20.19.25':
dependencies:
- '@noble/hashes': 1.4.0
- '@scure/base': 1.1.9
+ undici-types: 6.21.0
- '@scure/bip39@1.5.4':
+ '@types/node@22.19.1':
dependencies:
- '@noble/hashes': 1.7.1
- '@scure/base': 1.2.6
+ undici-types: 6.21.0
- '@scure/bip39@1.6.0':
+ '@types/node@22.7.5':
dependencies:
- '@noble/hashes': 1.8.0
- '@scure/base': 1.2.6
+ undici-types: 6.19.8
- '@sec-ant/readable-stream@0.4.1': {}
+ '@types/pbkdf2@3.1.2':
+ dependencies:
+ '@types/node': 20.19.25
- '@sentry/core@5.30.0':
+ '@types/prettier@2.7.3': {}
+
+ '@types/qs@6.14.0': {}
+
+ '@types/react@19.0.14':
dependencies:
- '@sentry/hub': 5.30.0
- '@sentry/minimal': 5.30.0
- '@sentry/types': 5.30.0
- '@sentry/utils': 5.30.0
- tslib: 1.14.1
+ csstype: 3.2.3
- '@sentry/hub@5.30.0':
+ '@types/resolve@0.0.8':
dependencies:
- '@sentry/types': 5.30.0
- '@sentry/utils': 5.30.0
- tslib: 1.14.1
+ '@types/node': 20.19.25
- '@sentry/minimal@5.30.0':
+ '@types/secp256k1@4.0.7':
dependencies:
- '@sentry/hub': 5.30.0
- '@sentry/types': 5.30.0
- tslib: 1.14.1
+ '@types/node': 20.19.25
- '@sentry/node@5.30.0':
+ '@types/stylis@4.2.7': {}
+
+ '@types/trusted-types@2.0.7': {}
+
+ '@types/uuid@8.3.4': {}
+
+ '@types/wrap-ansi@3.0.0': {}
+
+ '@types/ws@7.4.7':
dependencies:
- '@sentry/core': 5.30.0
- '@sentry/hub': 5.30.0
- '@sentry/tracing': 5.30.0
- '@sentry/types': 5.30.0
- '@sentry/utils': 5.30.0
- cookie: 0.4.2
- https-proxy-agent: 5.0.1
- lru_map: 0.3.3
- tslib: 1.14.1
+ '@types/node': 18.19.130
+
+ '@types/ws@8.18.1':
+ dependencies:
+ '@types/node': 18.19.130
+
+ '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/type-utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ eslint: 8.57.1
+ graphemer: 1.4.0
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@sentry/tracing@5.30.0':
+ '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3))(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
dependencies:
- '@sentry/hub': 5.30.0
- '@sentry/minimal': 5.30.0
- '@sentry/types': 5.30.0
- '@sentry/utils': 5.30.0
- tslib: 1.14.1
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/type-utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ eslint: 9.23.0(jiti@2.6.1)
+ graphemer: 1.4.0
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@sentry/types@5.30.0': {}
+ '@typescript-eslint/parser@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 8.57.1
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@sentry/utils@5.30.0':
+ '@typescript-eslint/parser@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
dependencies:
- '@sentry/types': 5.30.0
- tslib: 1.14.1
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.23.0(jiti@2.6.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@sinclair/typebox@0.25.24': {}
+ '@typescript-eslint/project-service@8.48.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@sindresorhus/is@5.6.0': {}
+ '@typescript-eslint/scope-manager@8.48.0':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
- '@sindresorhus/is@7.1.1': {}
+ '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.8.3)':
+ dependencies:
+ typescript: 5.8.3
- '@smithy/types@4.9.0':
+ '@typescript-eslint/type-utils@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
dependencies:
- tslib: 2.8.1
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 8.57.1
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@socket.io/component-emitter@3.1.2': {}
+ '@typescript-eslint/type-utils@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
+ debug: 4.4.3(supports-color@8.1.1)
+ eslint: 9.23.0(jiti@2.6.1)
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@solidity-parser/parser@0.20.2': {}
+ '@typescript-eslint/types@8.48.0': {}
- '@stauro/filebase-upload@1.0.3':
+ '@typescript-eslint/typescript-estree@8.48.0(typescript@5.8.3)':
dependencies:
- '@smithy/types': 4.9.0
- aws4: 1.13.2
+ '@typescript-eslint/project-service': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/visitor-keys': 8.48.0
+ debug: 4.4.3(supports-color@8.1.1)
+ minimatch: 9.0.5
+ semver: 7.7.3
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
- '@swc/helpers@0.5.15':
+ '@typescript-eslint/utils@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
dependencies:
- tslib: 2.8.1
+ '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ eslint: 8.57.1
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.23.0(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.48.0
+ '@typescript-eslint/types': 8.48.0
+ '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
+ eslint: 9.23.0(jiti@2.6.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/visitor-keys@8.48.0':
+ dependencies:
+ '@typescript-eslint/types': 8.48.0
+ eslint-visitor-keys: 4.2.1
+
+ '@ungap/structured-clone@1.3.0': {}
+
+ '@uniswap/sdk-core@5.8.5':
+ dependencies:
+ '@ethersproject/address': 5.8.0
+ '@ethersproject/bytes': 5.8.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ big.js: 5.2.2
+ decimal.js-light: 2.5.1
+ jsbi: 3.2.5
+ tiny-invariant: 1.3.3
+ toformat: 2.0.0
- '@szmarczak/http-timer@5.0.1':
+ '@uniswap/sdk-core@5.9.0':
dependencies:
- defer-to-connect: 2.0.1
+ '@ethersproject/address': 5.8.0
+ '@ethersproject/bytes': 5.8.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ big.js: 5.2.2
+ decimal.js-light: 2.5.1
+ jsbi: 3.2.5
+ tiny-invariant: 1.3.3
+ toformat: 2.0.0
- '@tailwindcss/node@4.0.15':
+ '@uniswap/v2-sdk@4.6.2':
dependencies:
- enhanced-resolve: 5.18.3
- jiti: 2.6.1
- tailwindcss: 4.0.15
+ '@ethersproject/address': 5.8.0
+ '@ethersproject/solidity': 5.8.0
+ '@uniswap/sdk-core': 5.9.0
+ tiny-invariant: 1.3.3
+ tiny-warning: 1.0.3
- '@tailwindcss/oxide-android-arm64@4.0.15':
+ '@unrs/resolver-binding-android-arm-eabi@1.11.1':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.0.15':
+ '@unrs/resolver-binding-android-arm64@1.11.1':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.0.15':
+ '@unrs/resolver-binding-darwin-arm64@1.11.1':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.0.15':
+ '@unrs/resolver-binding-darwin-x64@1.11.1':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.15':
+ '@unrs/resolver-binding-freebsd-x64@1.11.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.15':
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.15':
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.15':
+ '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.0.15':
+ '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.15':
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.15':
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
optional: true
- '@tailwindcss/oxide@4.0.15':
- optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.0.15
- '@tailwindcss/oxide-darwin-arm64': 4.0.15
- '@tailwindcss/oxide-darwin-x64': 4.0.15
- '@tailwindcss/oxide-freebsd-x64': 4.0.15
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.15
- '@tailwindcss/oxide-linux-arm64-gnu': 4.0.15
- '@tailwindcss/oxide-linux-arm64-musl': 4.0.15
- '@tailwindcss/oxide-linux-x64-gnu': 4.0.15
- '@tailwindcss/oxide-linux-x64-musl': 4.0.15
- '@tailwindcss/oxide-win32-arm64-msvc': 4.0.15
- '@tailwindcss/oxide-win32-x64-msvc': 4.0.15
-
- '@tailwindcss/postcss@4.0.15':
- dependencies:
- '@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.0.15
- '@tailwindcss/oxide': 4.0.15
- lightningcss: 1.29.2
- postcss: 8.4.49
- tailwindcss: 4.0.15
-
- '@tanstack/query-core@5.59.20': {}
+ '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
+ optional: true
- '@tanstack/react-query@5.59.20(react@19.0.3)':
- dependencies:
- '@tanstack/query-core': 5.59.20
- react: 19.0.3
+ '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
+ optional: true
- '@tootallnate/once@2.0.0': {}
+ '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
+ optional: true
- '@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.5.3)':
- dependencies:
- '@babel/generator': 7.17.7
- '@babel/parser': 7.28.5
- '@babel/traverse': 7.23.2
- '@babel/types': 7.17.0
- javascript-natural-sort: 0.7.1
- lodash: 4.17.21
- prettier: 3.5.3
- transitivePeerDependencies:
- - supports-color
+ '@unrs/resolver-binding-linux-x64-musl@1.11.1':
+ optional: true
- '@ts-morph/common@0.11.1':
+ '@unrs/resolver-binding-wasm32-wasi@1.11.1':
dependencies:
- fast-glob: 3.3.3
- minimatch: 3.1.2
- mkdirp: 1.0.4
- path-browserify: 1.0.1
-
- '@tsconfig/node10@1.0.12': {}
-
- '@tsconfig/node12@1.0.11': {}
-
- '@tsconfig/node14@1.0.3': {}
+ '@napi-rs/wasm-runtime': 0.2.12
+ optional: true
- '@tsconfig/node16@1.0.4': {}
+ '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
+ optional: true
- '@tybys/wasm-util@0.10.1':
- dependencies:
- tslib: 2.8.1
+ '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
optional: true
- '@typechain/ethers-v6@0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)':
- dependencies:
- ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- lodash: 4.17.21
- ts-essentials: 7.0.3(typescript@5.8.3)
- typechain: 8.3.2(typescript@5.8.3)
- typescript: 5.8.3
+ '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
+ optional: true
- '@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3))(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.27.0(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))':
- dependencies:
- '@typechain/ethers-v6': 0.5.1(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.8.3))(typescript@5.8.3)
- ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- fs-extra: 9.1.0
- hardhat: 2.27.0(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.8.3))(typescript@5.8.3)(utf-8-validate@5.0.10)
- typechain: 8.3.2(typescript@5.8.3)
+ '@vercel/build-utils@8.6.0': {}
- '@types/bn.js@5.2.0':
- dependencies:
- '@types/node': 20.19.25
+ '@vercel/error-utils@2.0.3': {}
- '@types/chai-as-promised@7.1.8':
+ '@vercel/fun@1.1.0(encoding@0.1.13)':
dependencies:
- '@types/chai': 4.3.20
-
- '@types/chai@4.3.20': {}
+ '@tootallnate/once': 2.0.0
+ async-listen: 1.2.0
+ debug: 4.1.1
+ execa: 3.2.0
+ fs-extra: 8.1.0
+ generic-pool: 3.4.2
+ micro: 9.3.5-canary.3
+ ms: 2.1.1
+ node-fetch: 2.6.7(encoding@0.1.13)
+ path-match: 1.2.4
+ promisepipe: 3.0.0
+ semver: 7.3.5
+ stat-mode: 0.3.0
+ stream-to-promise: 2.2.0
+ tar: 4.4.18
+ tree-kill: 1.2.2
+ uid-promise: 1.0.0
+ uuid: 3.3.2
+ xdg-app-paths: 5.1.0
+ yauzl-promise: 2.1.3
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@types/debug@4.1.12':
+ '@vercel/gatsby-plugin-vercel-analytics@1.0.11':
dependencies:
- '@types/ms': 2.1.0
-
- '@types/estree@1.0.8': {}
+ web-vitals: 0.2.4
- '@types/glob@7.2.0':
+ '@vercel/gatsby-plugin-vercel-builder@2.0.58':
dependencies:
- '@types/minimatch': 6.0.0
- '@types/node': 20.19.25
-
- '@types/http-cache-semantics@4.0.4': {}
-
- '@types/json-schema@7.0.15': {}
-
- '@types/json5@0.0.29': {}
-
- '@types/lodash@4.17.21': {}
+ '@sinclair/typebox': 0.25.24
+ '@vercel/build-utils': 8.6.0
+ '@vercel/routing-utils': 3.1.0
+ esbuild: 0.14.47
+ etag: 1.8.1
+ fs-extra: 11.1.0
- '@types/minimatch@6.0.0':
- dependencies:
- minimatch: 10.1.1
+ '@vercel/go@3.2.1': {}
- '@types/mkdirp@0.5.2':
+ '@vercel/hydrogen@1.0.9':
dependencies:
- '@types/node': 20.19.25
-
- '@types/mocha@10.0.10': {}
-
- '@types/ms@2.1.0': {}
+ '@vercel/static-config': 3.0.0
+ ts-morph: 12.0.0
- '@types/mute-stream@0.0.4':
+ '@vercel/next@4.4.0(encoding@0.1.13)':
dependencies:
- '@types/node': 18.19.130
-
- '@types/node@16.18.11': {}
+ '@vercel/nft': 0.27.3(encoding@0.1.13)
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@types/node@18.19.130':
+ '@vercel/nft@0.27.3(encoding@0.1.13)':
dependencies:
- undici-types: 5.26.5
+ '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
+ '@rollup/pluginutils': 4.2.1
+ acorn: 8.15.0
+ acorn-import-attributes: 1.9.5(acorn@8.15.0)
+ async-sema: 3.1.1
+ bindings: 1.5.0
+ estree-walker: 2.0.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ micromatch: 4.0.8
+ node-gyp-build: 4.8.4
+ resolve-from: 5.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@types/node@20.19.25':
+ '@vercel/node@3.2.28(encoding@0.1.13)':
dependencies:
- undici-types: 6.21.0
+ '@edge-runtime/node-utils': 2.3.0
+ '@edge-runtime/primitives': 4.1.0
+ '@edge-runtime/vm': 3.2.0
+ '@types/node': 16.18.11
+ '@vercel/build-utils': 8.6.0
+ '@vercel/error-utils': 2.0.3
+ '@vercel/nft': 0.27.3(encoding@0.1.13)
+ '@vercel/static-config': 3.0.0
+ async-listen: 3.0.0
+ cjs-module-lexer: 1.2.3
+ edge-runtime: 2.5.9
+ es-module-lexer: 1.4.1
+ esbuild: 0.14.47
+ etag: 1.8.1
+ node-fetch: 2.6.9(encoding@0.1.13)
+ path-to-regexp: 6.2.1
+ ts-morph: 12.0.0
+ ts-node: 10.9.1(@types/node@16.18.11)(typescript@4.9.5)
+ typescript: 4.9.5
+ undici: 5.28.4
+ transitivePeerDependencies:
+ - '@swc/core'
+ - '@swc/wasm'
+ - encoding
+ - supports-color
- '@types/node@22.19.1':
- dependencies:
- undici-types: 6.21.0
+ '@vercel/python@4.5.1': {}
- '@types/node@22.7.5':
+ '@vercel/redwood@2.1.8(encoding@0.1.13)':
dependencies:
- undici-types: 6.19.8
+ '@vercel/nft': 0.27.3(encoding@0.1.13)
+ '@vercel/routing-utils': 3.1.0
+ '@vercel/static-config': 3.0.0
+ semver: 6.3.1
+ ts-morph: 12.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@types/pbkdf2@3.1.2':
+ '@vercel/remix-builder@2.2.14(encoding@0.1.13)':
dependencies:
- '@types/node': 20.19.25
-
- '@types/prettier@2.7.3': {}
-
- '@types/qs@6.14.0': {}
+ '@vercel/error-utils': 2.0.3
+ '@vercel/nft': 0.27.3(encoding@0.1.13)
+ '@vercel/static-config': 3.0.0
+ ts-morph: 12.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@types/react@19.0.14':
+ '@vercel/routing-utils@3.1.0':
dependencies:
- csstype: 3.2.3
+ path-to-regexp: 6.1.0
+ optionalDependencies:
+ ajv: 6.12.6
- '@types/resolve@0.0.8':
- dependencies:
- '@types/node': 20.19.25
+ '@vercel/ruby@2.1.0': {}
- '@types/secp256k1@4.0.7':
+ '@vercel/static-build@2.5.36':
dependencies:
- '@types/node': 20.19.25
-
- '@types/trusted-types@2.0.7': {}
+ '@vercel/gatsby-plugin-vercel-analytics': 1.0.11
+ '@vercel/gatsby-plugin-vercel-builder': 2.0.58
+ '@vercel/static-config': 3.0.0
+ ts-morph: 12.0.0
- '@types/wrap-ansi@3.0.0': {}
+ '@vercel/static-config@3.0.0':
+ dependencies:
+ ajv: 8.6.3
+ json-schema-to-ts: 1.6.4
+ ts-morph: 12.0.0
- '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)':
+ '@vitest/coverage-v8@2.1.9(vitest@2.1.9(@edge-runtime/vm@3.2.0)(@types/node@18.19.130)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2))':
dependencies:
- '@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/type-utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
- '@typescript-eslint/utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.48.0
- eslint: 8.57.1
- graphemer: 1.4.0
- ignore: 7.0.5
- natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ '@ampproject/remapping': 2.3.0
+ '@bcoe/v8-coverage': 0.2.3
+ debug: 4.4.3(supports-color@8.1.1)
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.2.0
+ magic-string: 0.30.21
+ magicast: 0.3.5
+ std-env: 3.10.0
+ test-exclude: 7.0.1
+ tinyrainbow: 1.2.0
+ vitest: 2.1.9(@edge-runtime/vm@3.2.0)(@types/node@18.19.130)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3))(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ '@vitest/expect@2.1.9':
dependencies:
- '@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/type-utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.48.0
- eslint: 9.23.0(jiti@2.6.1)
- graphemer: 1.4.0
- ignore: 7.0.5
- natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
+ '@vitest/spy': 2.1.9
+ '@vitest/utils': 2.1.9
+ chai: 5.3.3
+ tinyrainbow: 1.2.0
- '@typescript-eslint/parser@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
+ '@vitest/mocker@2.1.9(vite@5.4.21(@types/node@18.19.130)(lightningcss@1.29.2))':
dependencies:
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.48.0
- debug: 4.4.3(supports-color@8.1.1)
- eslint: 8.57.1
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
+ '@vitest/spy': 2.1.9
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 5.4.21(@types/node@18.19.130)(lightningcss@1.29.2)
- '@typescript-eslint/parser@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ '@vitest/pretty-format@2.1.9':
dependencies:
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.48.0
- debug: 4.4.3(supports-color@8.1.1)
- eslint: 9.23.0(jiti@2.6.1)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
+ tinyrainbow: 1.2.0
- '@typescript-eslint/project-service@8.48.0(typescript@5.8.3)':
+ '@vitest/runner@2.1.9':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.48.0
- debug: 4.4.3(supports-color@8.1.1)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
+ '@vitest/utils': 2.1.9
+ pathe: 1.1.2
- '@typescript-eslint/scope-manager@8.48.0':
+ '@vitest/snapshot@2.1.9':
dependencies:
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/visitor-keys': 8.48.0
+ '@vitest/pretty-format': 2.1.9
+ magic-string: 0.30.21
+ pathe: 1.1.2
- '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.8.3)':
+ '@vitest/spy@2.1.9':
dependencies:
- typescript: 5.8.3
+ tinyspy: 3.0.2
- '@typescript-eslint/type-utils@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
+ '@vitest/utils@2.1.9':
dependencies:
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.48.0(eslint@8.57.1)(typescript@5.8.3)
- debug: 4.4.3(supports-color@8.1.1)
- eslint: 8.57.1
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
+ '@vitest/pretty-format': 2.1.9
+ loupe: 3.2.1
+ tinyrainbow: 1.2.0
- '@typescript-eslint/type-utils@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ '@wagmi/connectors@6.2.0(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))(zod@3.25.76)':
dependencies:
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)
- debug: 4.4.3(supports-color@8.1.1)
- eslint: 9.23.0(jiti@2.6.1)
- ts-api-utils: 2.1.0(typescript@5.8.3)
+ '@base-org/account': 2.4.0(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@coinbase/wallet-sdk': 4.3.6(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@gemini-wallet/core': 0.3.2(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))
+ '@metamask/sdk': 0.33.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@walletconnect/ethereum-provider': 2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
+ porto: 0.2.35(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@tanstack/react-query'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react
+ - react-native
- supports-color
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - wagmi
+ - zod
- '@typescript-eslint/types@8.48.0': {}
-
- '@typescript-eslint/typescript-estree@8.48.0(typescript@5.8.3)':
+ '@wagmi/connectors@6.2.0(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))(zod@4.3.5)':
dependencies:
- '@typescript-eslint/project-service': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/visitor-keys': 8.48.0
- debug: 4.4.3(supports-color@8.1.1)
- minimatch: 9.0.5
- semver: 7.7.3
- tinyglobby: 0.2.15
- ts-api-utils: 2.1.0(typescript@5.8.3)
+ '@base-org/account': 2.4.0(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@coinbase/wallet-sdk': 4.3.6(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@gemini-wallet/core': 0.3.2(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@metamask/sdk': 0.33.1(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ '@walletconnect/ethereum-provider': 2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
+ porto: 0.2.35(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@tanstack/react-query'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react
+ - react-native
- supports-color
+ - uploadthing
+ - use-sync-external-store
+ - utf-8-validate
+ - wagmi
+ - zod
- '@typescript-eslint/utils@8.48.0(eslint@8.57.1)(typescript@5.8.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- eslint: 8.57.1
+ '@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))':
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.8.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zustand: 5.0.0(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ optionalDependencies:
+ '@tanstack/query-core': 5.59.20
typescript: 5.8.3
transitivePeerDependencies:
- - supports-color
+ - '@types/react'
+ - immer
+ - react
+ - use-sync-external-store
- '@typescript-eslint/utils@8.48.0(eslint@9.23.0(jiti@2.6.1))(typescript@5.8.3)':
+ '@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.23.0(jiti@2.6.1))
- '@typescript-eslint/scope-manager': 8.48.0
- '@typescript-eslint/types': 8.48.0
- '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.8.3)
- eslint: 9.23.0(jiti@2.6.1)
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.8.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ zustand: 5.0.0(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ optionalDependencies:
+ '@tanstack/query-core': 5.59.20
typescript: 5.8.3
transitivePeerDependencies:
- - supports-color
+ - '@types/react'
+ - immer
+ - react
+ - use-sync-external-store
- '@typescript-eslint/visitor-keys@8.48.0':
+ '@wallet-standard/app@1.1.0':
dependencies:
- '@typescript-eslint/types': 8.48.0
- eslint-visitor-keys: 4.2.1
+ '@wallet-standard/base': 1.1.0
- '@ungap/structured-clone@1.3.0': {}
+ '@wallet-standard/base@1.1.0': {}
- '@uniswap/sdk-core@5.8.5':
+ '@wallet-standard/features@1.1.0':
dependencies:
- '@ethersproject/address': 5.8.0
- '@ethersproject/bytes': 5.8.0
- '@ethersproject/keccak256': 5.7.0
- '@ethersproject/strings': 5.7.0
- big.js: 5.2.2
- decimal.js-light: 2.5.1
- jsbi: 3.2.5
- tiny-invariant: 1.3.3
- toformat: 2.0.0
+ '@wallet-standard/base': 1.1.0
- '@uniswap/sdk-core@5.9.0':
+ '@wallet-standard/wallet@1.1.0':
dependencies:
- '@ethersproject/address': 5.8.0
- '@ethersproject/bytes': 5.8.0
- '@ethersproject/keccak256': 5.7.0
- '@ethersproject/strings': 5.7.0
- big.js: 5.2.2
- decimal.js-light: 2.5.1
- jsbi: 3.2.5
- tiny-invariant: 1.3.3
- toformat: 2.0.0
+ '@wallet-standard/base': 1.1.0
- '@uniswap/v2-sdk@4.6.2':
+ '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@ethersproject/address': 5.8.0
- '@ethersproject/solidity': 5.8.0
- '@uniswap/sdk-core': 5.9.0
- tiny-invariant: 1.3.3
- tiny-warning: 1.0.3
-
- '@unrs/resolver-binding-android-arm-eabi@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-android-arm64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-darwin-arm64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-darwin-x64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-freebsd-x64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
- optional: true
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
- optional: true
+ '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
- optional: true
+ '@walletconnect/core@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@unrs/resolver-binding-linux-x64-musl@1.11.1':
- optional: true
+ '@walletconnect/core@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
+ dependencies:
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@unrs/resolver-binding-wasm32-wasi@1.11.1':
+ '@walletconnect/core@2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.12
- optional: true
-
- '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
- optional: true
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.9
+ '@walletconnect/utils': 2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.39.3
+ events: 3.3.0
+ uint8arrays: 3.1.1
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vanilla-extract/css@1.17.3':
+ '@walletconnect/core@2.22.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@emotion/hash': 0.9.2
- '@vanilla-extract/private': 1.0.9
- css-what: 6.2.2
- cssesc: 3.0.0
- csstype: 3.2.3
- dedent: 1.7.0
- deep-object-diff: 1.1.9
- deepmerge: 4.3.1
- lru-cache: 10.4.3
- media-query-parser: 2.0.2
- modern-ahocorasick: 1.1.0
- picocolors: 1.1.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 3.0.0
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.22.4
+ '@walletconnect/utils': 2.22.4(typescript@5.8.3)(zod@4.3.5)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.39.3
+ events: 3.3.0
+ uint8arrays: 3.1.1
transitivePeerDependencies:
- - babel-plugin-macros
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vanilla-extract/dynamic@2.1.4':
+ '@walletconnect/environment@1.0.1':
dependencies:
- '@vanilla-extract/private': 1.0.9
-
- '@vanilla-extract/private@1.0.9': {}
+ tslib: 1.14.1
- '@vanilla-extract/sprinkles@1.6.4(@vanilla-extract/css@1.17.3)':
+ '@walletconnect/ethereum-provider@2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@vanilla-extract/css': 1.17.3
-
- '@vercel/build-utils@8.6.0': {}
-
- '@vercel/error-utils@2.0.3': {}
+ '@reown/appkit': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/universal-provider': 2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vercel/fun@1.1.0(encoding@0.1.13)':
+ '@walletconnect/ethereum-provider@2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@tootallnate/once': 2.0.0
- async-listen: 1.2.0
- debug: 4.1.1
- execa: 3.2.0
- fs-extra: 8.1.0
- generic-pool: 3.4.2
- micro: 9.3.5-canary.3
- ms: 2.1.1
- node-fetch: 2.6.7(encoding@0.1.13)
- path-match: 1.2.4
- promisepipe: 3.0.0
- semver: 7.3.5
- stat-mode: 0.3.0
- stream-to-promise: 2.2.0
- tar: 4.4.18
- tree-kill: 1.2.2
- uid-promise: 1.0.0
- uuid: 3.3.2
- xdg-app-paths: 5.1.0
- yauzl-promise: 2.1.3
+ '@reown/appkit': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/universal-provider': 2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ events: 3.3.0
transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
- encoding
- - supports-color
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vercel/gatsby-plugin-vercel-analytics@1.0.11':
+ '@walletconnect/ethereum-provider@2.22.4(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- web-vitals: 0.2.4
+ '@reown/appkit': 1.8.9(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 3.0.0
+ '@walletconnect/sign-client': 2.22.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.22.4
+ '@walletconnect/universal-provider': 2.22.4(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/utils': 2.22.4(typescript@5.8.3)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vercel/gatsby-plugin-vercel-builder@2.0.58':
+ '@walletconnect/events@1.0.1':
dependencies:
- '@sinclair/typebox': 0.25.24
- '@vercel/build-utils': 8.6.0
- '@vercel/routing-utils': 3.1.0
- esbuild: 0.14.47
- etag: 1.8.1
- fs-extra: 11.1.0
-
- '@vercel/go@3.2.1': {}
+ keyvaluestorage-interface: 1.0.0
+ tslib: 1.14.1
- '@vercel/hydrogen@1.0.9':
+ '@walletconnect/heartbeat@1.2.2':
dependencies:
- '@vercel/static-config': 3.0.0
- ts-morph: 12.0.0
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/time': 1.0.2
+ events: 3.3.0
- '@vercel/next@4.4.0(encoding@0.1.13)':
+ '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)':
dependencies:
- '@vercel/nft': 0.27.3(encoding@0.1.13)
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
+ cross-fetch: 3.2.0(encoding@0.1.13)
+ events: 3.3.0
transitivePeerDependencies:
- encoding
- - supports-color
- '@vercel/nft@0.27.3(encoding@0.1.13)':
+ '@walletconnect/jsonrpc-provider@1.0.14':
dependencies:
- '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
- '@rollup/pluginutils': 4.2.1
- acorn: 8.15.0
- acorn-import-attributes: 1.9.5(acorn@8.15.0)
- async-sema: 3.1.1
- bindings: 1.5.0
- estree-walker: 2.0.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- micromatch: 4.0.8
- node-gyp-build: 4.8.4
- resolve-from: 5.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
+ events: 3.3.0
- '@vercel/node@3.2.28(encoding@0.1.13)':
+ '@walletconnect/jsonrpc-types@1.0.4':
dependencies:
- '@edge-runtime/node-utils': 2.3.0
- '@edge-runtime/primitives': 4.1.0
- '@edge-runtime/vm': 3.2.0
- '@types/node': 16.18.11
- '@vercel/build-utils': 8.6.0
- '@vercel/error-utils': 2.0.3
- '@vercel/nft': 0.27.3(encoding@0.1.13)
- '@vercel/static-config': 3.0.0
- async-listen: 3.0.0
- cjs-module-lexer: 1.2.3
- edge-runtime: 2.5.9
- es-module-lexer: 1.4.1
- esbuild: 0.14.47
- etag: 1.8.1
- node-fetch: 2.6.9(encoding@0.1.13)
- path-to-regexp: 6.2.1
- ts-morph: 12.0.0
- ts-node: 10.9.1(@types/node@16.18.11)(typescript@4.9.5)
- typescript: 4.9.5
- undici: 5.28.4
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
- - encoding
- - supports-color
+ events: 3.3.0
+ keyvaluestorage-interface: 1.0.0
- '@vercel/python@4.5.1': {}
+ '@walletconnect/jsonrpc-utils@1.0.8':
+ dependencies:
+ '@walletconnect/environment': 1.0.1
+ '@walletconnect/jsonrpc-types': 1.0.4
+ tslib: 1.14.1
- '@vercel/redwood@2.1.8(encoding@0.1.13)':
+ '@walletconnect/jsonrpc-ws-connection@1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@vercel/nft': 0.27.3(encoding@0.1.13)
- '@vercel/routing-utils': 3.1.0
- '@vercel/static-config': 3.0.0
- semver: 6.3.1
- ts-morph: 12.0.0
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
+ events: 3.3.0
+ ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- - encoding
- - supports-color
+ - bufferutil
+ - utf-8-validate
- '@vercel/remix-builder@2.2.14(encoding@0.1.13)':
+ '@walletconnect/keyvaluestorage@1.1.1':
dependencies:
- '@vercel/error-utils': 2.0.3
- '@vercel/nft': 0.27.3(encoding@0.1.13)
- '@vercel/static-config': 3.0.0
- ts-morph: 12.0.0
+ '@walletconnect/safe-json': 1.0.2
+ idb-keyval: 6.2.2
+ unstorage: 1.17.3(idb-keyval@6.2.2)
transitivePeerDependencies:
- - encoding
- - supports-color
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
- '@vercel/routing-utils@3.1.0':
+ '@walletconnect/logger@2.1.2':
dependencies:
- path-to-regexp: 6.1.0
- optionalDependencies:
- ajv: 6.12.6
+ '@walletconnect/safe-json': 1.0.2
+ pino: 7.11.0
- '@vercel/ruby@2.1.0': {}
+ '@walletconnect/logger@3.0.0':
+ dependencies:
+ '@walletconnect/safe-json': 1.0.2
+ pino: 10.0.0
- '@vercel/static-build@2.5.36':
+ '@walletconnect/relay-api@1.0.11':
dependencies:
- '@vercel/gatsby-plugin-vercel-analytics': 1.0.11
- '@vercel/gatsby-plugin-vercel-builder': 2.0.58
- '@vercel/static-config': 3.0.0
- ts-morph: 12.0.0
+ '@walletconnect/jsonrpc-types': 1.0.4
- '@vercel/static-config@3.0.0':
+ '@walletconnect/relay-auth@1.1.0':
dependencies:
- ajv: 8.6.3
- json-schema-to-ts: 1.6.4
- ts-morph: 12.0.0
+ '@noble/curves': 1.8.0
+ '@noble/hashes': 1.7.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ uint8arrays: 3.1.0
- '@vitest/coverage-v8@2.1.9(vitest@2.1.9(@edge-runtime/vm@3.2.0)(@types/node@18.19.130)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2))':
+ '@walletconnect/safe-json@1.0.2':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@bcoe/v8-coverage': 0.2.3
- debug: 4.4.3(supports-color@8.1.1)
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.6
- istanbul-reports: 3.2.0
- magic-string: 0.30.21
- magicast: 0.3.5
- std-env: 3.10.0
- test-exclude: 7.0.1
- tinyrainbow: 1.2.0
- vitest: 2.1.9(@edge-runtime/vm@3.2.0)(@types/node@18.19.130)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)
+ tslib: 1.14.1
+
+ '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
transitivePeerDependencies:
- - supports-color
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/expect@2.1.9':
+ '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@vitest/spy': 2.1.9
- '@vitest/utils': 2.1.9
- chai: 5.3.3
- tinyrainbow: 1.2.0
+ '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/mocker@2.1.9(vite@5.4.21(@types/node@18.19.130)(lightningcss@1.29.2))':
+ '@walletconnect/sign-client@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@vitest/spy': 2.1.9
- estree-walker: 3.0.3
- magic-string: 0.30.21
- optionalDependencies:
- vite: 5.4.21(@types/node@18.19.130)(lightningcss@1.29.2)
+ '@walletconnect/core': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/pretty-format@2.1.9':
+ '@walletconnect/sign-client@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- tinyrainbow: 1.2.0
+ '@walletconnect/core': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/runner@2.1.9':
+ '@walletconnect/sign-client@2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@vitest/utils': 2.1.9
- pathe: 1.1.2
+ '@walletconnect/core': 2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.9
+ '@walletconnect/utils': 2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/snapshot@2.1.9':
+ '@walletconnect/sign-client@2.22.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@vitest/pretty-format': 2.1.9
- magic-string: 0.30.21
- pathe: 1.1.2
+ '@walletconnect/core': 2.22.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 3.0.0
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.22.4
+ '@walletconnect/utils': 2.22.4(typescript@5.8.3)(zod@4.3.5)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@vitest/spy@2.1.9':
+ '@walletconnect/time@1.0.2':
dependencies:
- tinyspy: 3.0.2
+ tslib: 1.14.1
- '@vitest/utils@2.1.9':
+ '@walletconnect/types@2.21.0':
dependencies:
- '@vitest/pretty-format': 2.1.9
- loupe: 3.2.1
- tinyrainbow: 1.2.0
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
- '@wagmi/connectors@5.9.4(@types/react@19.0.14)(@wagmi/core@2.19.0(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)':
+ '@walletconnect/types@2.21.1':
dependencies:
- '@base-org/account': 1.1.1(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)
- '@coinbase/wallet-sdk': 4.3.6(@types/react@19.0.14)(bufferutil@4.0.9)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(zod@3.25.76)
- '@gemini-wallet/core': 0.2.0(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))
- '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@wagmi/core': 2.19.0(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))
- '@walletconnect/ethereum-provider': 2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- optionalDependencies:
- typescript: 5.8.3
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10341,58 +13543,87 @@ snapshots:
- '@netlify/blobs'
- '@planetscale/database'
- '@react-native-async-storage/async-storage'
- - '@types/react'
- '@upstash/redis'
- '@vercel/blob'
- '@vercel/functions'
- '@vercel/kv'
- aws4fetch
- - bufferutil
- db0
- - encoding
- - immer
- ioredis
- - react
- - supports-color
- uploadthing
- - use-sync-external-store
- - utf-8-validate
- - zod
- '@wagmi/core@2.19.0(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))':
+ '@walletconnect/types@2.21.9':
dependencies:
- eventemitter3: 5.0.1
- mipd: 0.0.7(typescript@5.8.3)
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- zustand: 5.0.0(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
- optionalDependencies:
- '@tanstack/query-core': 5.59.20
- typescript: 5.8.3
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ events: 3.3.0
transitivePeerDependencies:
- - '@types/react'
- - immer
- - react
- - use-sync-external-store
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
- '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/types@2.22.4':
dependencies:
+ '@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 3.0.0
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
+
+ '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ dependencies:
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/logger': 2.1.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
+ '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@walletconnect/types': 2.21.0
'@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@walletconnect/window-getters': 1.0.1
es-toolkit: 1.33.0
events: 3.3.0
- uint8arrays: 3.1.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10412,31 +13643,27 @@ snapshots:
- aws4fetch
- bufferutil
- db0
+ - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/core@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/logger': 2.1.2
- '@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.1.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.21.1
- '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
es-toolkit: 1.33.0
events: 3.3.0
- uint8arrays: 3.1.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10456,28 +13683,26 @@ snapshots:
- aws4fetch
- bufferutil
- db0
+ - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/environment@1.0.1':
- dependencies:
- tslib: 1.14.1
-
- '@walletconnect/ethereum-provider@2.21.1(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/universal-provider@2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@reown/appkit': 1.7.8(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/events': 1.0.1
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
'@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@walletconnect/types': 2.21.1
- '@walletconnect/universal-provider': 2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ es-toolkit: 1.33.0
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -10491,7 +13716,6 @@ snapshots:
- '@netlify/blobs'
- '@planetscale/database'
- '@react-native-async-storage/async-storage'
- - '@types/react'
- '@upstash/redis'
- '@vercel/blob'
- '@vercel/functions'
@@ -10501,64 +13725,25 @@ snapshots:
- db0
- encoding
- ioredis
- - react
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/events@1.0.1':
- dependencies:
- keyvaluestorage-interface: 1.0.0
- tslib: 1.14.1
-
- '@walletconnect/heartbeat@1.2.2':
+ '@walletconnect/universal-provider@2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
'@walletconnect/events': 1.0.1
- '@walletconnect/time': 1.0.2
- events: 3.3.0
-
- '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)':
- dependencies:
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
- cross-fetch: 3.2.0(encoding@0.1.13)
- events: 3.3.0
- transitivePeerDependencies:
- - encoding
-
- '@walletconnect/jsonrpc-provider@1.0.14':
- dependencies:
- '@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
- events: 3.3.0
-
- '@walletconnect/jsonrpc-types@1.0.4':
- dependencies:
- events: 3.3.0
- keyvaluestorage-interface: 1.0.0
-
- '@walletconnect/jsonrpc-utils@1.0.8':
- dependencies:
- '@walletconnect/environment': 1.0.1
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
- tslib: 1.14.1
-
- '@walletconnect/jsonrpc-ws-connection@1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
- dependencies:
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ es-toolkit: 1.33.0
events: 3.3.0
- ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- '@walletconnect/keyvaluestorage@1.1.1':
- dependencies:
- '@walletconnect/safe-json': 1.0.2
- idb-keyval: 6.2.2
- unstorage: 1.17.3(idb-keyval@6.2.2)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10570,46 +13755,34 @@ snapshots:
- '@deno/kv'
- '@netlify/blobs'
- '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
- '@upstash/redis'
- '@vercel/blob'
- '@vercel/functions'
- '@vercel/kv'
- aws4fetch
+ - bufferutil
- db0
+ - encoding
- ioredis
+ - typescript
- uploadthing
+ - utf-8-validate
+ - zod
- '@walletconnect/logger@2.1.2':
- dependencies:
- '@walletconnect/safe-json': 1.0.2
- pino: 7.11.0
-
- '@walletconnect/relay-api@1.0.11':
- dependencies:
- '@walletconnect/jsonrpc-types': 1.0.4
-
- '@walletconnect/relay-auth@1.1.0':
- dependencies:
- '@noble/curves': 1.8.0
- '@noble/hashes': 1.7.0
- '@walletconnect/safe-json': 1.0.2
- '@walletconnect/time': 1.0.2
- uint8arrays: 3.1.0
-
- '@walletconnect/safe-json@1.0.2':
- dependencies:
- tslib: 1.14.1
-
- '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/universal-provider@2.21.9(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/logger': 2.1.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.21.0
- '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/sign-client': 2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.21.9
+ '@walletconnect/utils': 2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ es-toolkit: 1.39.3
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -10630,22 +13803,26 @@ snapshots:
- aws4fetch
- bufferutil
- db0
+ - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/sign-client@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/universal-provider@2.22.4(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@walletconnect/core': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
'@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/logger': 2.1.2
- '@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.21.1
- '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 3.0.0
+ '@walletconnect/sign-client': 2.22.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ '@walletconnect/types': 2.22.4
+ '@walletconnect/utils': 2.22.4(typescript@5.8.3)(zod@4.3.5)
+ es-toolkit: 1.39.3
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -10666,24 +13843,32 @@ snapshots:
- aws4fetch
- bufferutil
- db0
+ - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/time@1.0.2':
- dependencies:
- tslib: 1.14.1
-
- '@walletconnect/types@2.21.0':
+ '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-types': 1.0.4
+ '@noble/ciphers': 1.2.1
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
+ '@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 2.1.2
- events: 3.3.0
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10701,18 +13886,33 @@ snapshots:
- '@vercel/functions'
- '@vercel/kv'
- aws4fetch
+ - bufferutil
- db0
- ioredis
+ - typescript
- uploadthing
+ - utf-8-validate
+ - zod
- '@walletconnect/types@2.21.1':
+ '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/heartbeat': 1.2.2
- '@walletconnect/jsonrpc-types': 1.0.4
+ '@noble/ciphers': 1.2.1
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
+ '@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 2.1.2
- events: 3.3.0
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.0
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10730,24 +13930,33 @@ snapshots:
- '@vercel/functions'
- '@vercel/kv'
- aws4fetch
+ - bufferutil
- db0
- ioredis
+ - typescript
- uploadthing
+ - utf-8-validate
+ - zod
- '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/utils@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
+ '@noble/ciphers': 1.2.1
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- '@walletconnect/types': 2.21.0
- '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- es-toolkit: 1.33.0
- events: 3.3.0
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.21.1
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10767,27 +13976,31 @@ snapshots:
- aws4fetch
- bufferutil
- db0
- - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/universal-provider@2.21.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/utils@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@walletconnect/events': 1.0.1
- '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
- '@walletconnect/jsonrpc-provider': 1.0.14
- '@walletconnect/jsonrpc-types': 1.0.4
+ '@noble/ciphers': 1.2.1
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
'@walletconnect/types': 2.21.1
- '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- es-toolkit: 1.33.0
- events: 3.3.0
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10807,32 +14020,33 @@ snapshots:
- aws4fetch
- bufferutil
- db0
- - encoding
- ioredis
- typescript
- uploadthing
- utf-8-validate
- zod
- '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/utils@2.21.9(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)':
dependencies:
- '@noble/ciphers': 1.2.1
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
+ '@msgpack/msgpack': 3.1.2
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.6
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/relay-api': 1.0.11
'@walletconnect/relay-auth': 1.1.0
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.21.0
+ '@walletconnect/types': 2.21.9
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
+ blakejs: 1.2.1
bs58: 6.0.0
detect-browser: 5.3.0
- query-string: 7.1.3
- uint8arrays: 3.1.0
- viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ uint8arrays: 3.1.1
+ viem: 2.36.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10858,25 +14072,28 @@ snapshots:
- utf-8-validate
- zod
- '@walletconnect/utils@2.21.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)':
+ '@walletconnect/utils@2.22.4(typescript@5.8.3)(zod@4.3.5)':
dependencies:
- '@noble/ciphers': 1.2.1
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
+ '@msgpack/msgpack': 3.1.2
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.6
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 3.0.0
'@walletconnect/relay-api': 1.0.11
'@walletconnect/relay-auth': 1.1.0
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.21.1
+ '@walletconnect/types': 2.22.4
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
+ blakejs: 1.2.1
bs58: 6.0.0
detect-browser: 5.3.0
- query-string: 7.1.3
- uint8arrays: 3.1.0
- viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ ox: 0.9.3(typescript@5.8.3)(zod@4.3.5)
+ uint8arrays: 3.1.1
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10894,12 +14111,10 @@ snapshots:
- '@vercel/functions'
- '@vercel/kv'
- aws4fetch
- - bufferutil
- db0
- ioredis
- typescript
- uploadthing
- - utf-8-validate
- zod
'@walletconnect/window-getters@1.0.1':
@@ -10923,9 +14138,24 @@ snapshots:
dependencies:
'@openzeppelin/contracts-upgradeable': 5.4.0(@openzeppelin/contracts@5.4.0)
transitivePeerDependencies:
- - '@openzeppelin/contracts'
+ - '@openzeppelin/contracts'
+
+ '@zama-fhe/relayer-sdk@0.3.0-8(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ dependencies:
+ commander: 14.0.2
+ ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ fetch-retry: 6.0.0
+ keccak: 3.0.4
+ node-tfhe: 1.4.0-alpha.3
+ node-tkms: 0.12.5
+ tfhe: 1.4.0-alpha.3
+ tkms: 0.12.5
+ wasm-feature-detect: 1.8.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
- '@zama-fhe/relayer-sdk@0.3.0-8(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@zama-fhe/relayer-sdk@0.4.0-2(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
commander: 14.0.2
ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -10940,7 +14170,7 @@ snapshots:
- bufferutil
- utf-8-validate
- '@zama-fhe/relayer-sdk@0.4.0-2(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@zama-fhe/relayer-sdk@0.4.0-4(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
commander: 14.0.2
ethers: 6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -10964,16 +14194,45 @@ snapshots:
typescript: 5.8.3
zod: 3.25.76
- abitype@1.0.8(typescript@5.8.3)(zod@3.22.4):
+ abitype@1.0.6(typescript@5.8.3)(zod@4.3.5):
optionalDependencies:
typescript: 5.8.3
- zod: 3.22.4
+ zod: 4.3.5
abitype@1.0.8(typescript@5.8.3)(zod@3.25.76):
optionalDependencies:
typescript: 5.8.3
zod: 3.25.76
+ abitype@1.0.8(typescript@5.8.3)(zod@4.3.5):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 4.3.5
+
+ abitype@1.1.0(typescript@5.8.3)(zod@3.22.4):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 3.22.4
+
+ abitype@1.1.0(typescript@5.8.3)(zod@3.25.76):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 3.25.76
+
+ abitype@1.1.0(typescript@5.8.3)(zod@4.3.5):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 4.3.5
+
+ abitype@1.2.3(typescript@5.8.3)(zod@4.3.5):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 4.3.5
+
+ abort-controller@3.0.0:
+ dependencies:
+ event-target-shim: 5.0.1
+
abort-error@1.0.1: {}
acorn-import-attributes@1.9.5(acorn@8.15.0):
@@ -11006,6 +14265,10 @@ snapshots:
agent-base@7.1.4: {}
+ agentkeepalive@4.6.0:
+ dependencies:
+ humanize-ms: 1.2.1
+
aggregate-error@3.1.0:
dependencies:
clean-stack: 2.2.0
@@ -11220,6 +14483,11 @@ snapshots:
axe-core@4.11.0: {}
+ axios-retry@4.5.0(axios@1.13.2):
+ dependencies:
+ axios: 1.13.2
+ is-retry-allowed: 2.2.0
+
axios@0.21.4(debug@4.4.3):
dependencies:
follow-redirects: 1.15.11(debug@4.4.3)
@@ -11304,6 +14572,12 @@ snapshots:
bn.js@5.2.2: {}
+ borsh@0.7.0:
+ dependencies:
+ bn.js: 5.2.2
+ bs58: 4.0.1
+ text-encoding-utf-8: 1.0.2
+
bowser@2.13.0: {}
boxen@5.1.2:
@@ -11384,45 +14658,6 @@ snapshots:
dependencies:
node-gyp-build: 4.8.4
- burner-connector@0.0.18(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76):
- dependencies:
- '@rainbow-me/rainbowkit': 2.2.8(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76))
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
- wagmi: 2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@deno/kv'
- - '@netlify/blobs'
- - '@planetscale/database'
- - '@react-native-async-storage/async-storage'
- - '@tanstack/query-core'
- - '@tanstack/react-query'
- - '@types/react'
- - '@upstash/redis'
- - '@vercel/blob'
- - '@vercel/functions'
- - '@vercel/kv'
- - aws4fetch
- - babel-plugin-macros
- - bufferutil
- - db0
- - encoding
- - immer
- - ioredis
- - react
- - react-dom
- - supports-color
- - typescript
- - uploadthing
- - utf-8-validate
- - zod
-
byte-counter@0.1.0: {}
bytes@3.1.0: {}
@@ -11476,8 +14711,12 @@ snapshots:
camelcase@6.3.0: {}
+ camelize@1.0.1: {}
+
caniuse-lite@1.0.30001757: {}
+ canonicalize@2.1.0: {}
+
cbor@8.1.0:
dependencies:
nofilter: 3.1.0
@@ -11627,6 +14866,8 @@ snapshots:
color-support@1.1.3: {}
+ colorette@2.0.20: {}
+
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -11651,6 +14892,8 @@ snapshots:
commander@14.0.2: {}
+ commander@2.20.3: {}
+
commander@8.3.0: {}
concat-map@0.0.1: {}
@@ -11739,15 +14982,19 @@ snapshots:
crypt@0.0.2: {}
+ css-color-keywords@1.0.0: {}
+
+ css-to-react-native@3.2.0:
+ dependencies:
+ camelize: 1.0.1
+ css-color-keywords: 1.0.0
+ postcss-value-parser: 4.2.0
+
css-tree@3.1.0:
dependencies:
mdn-data: 2.12.2
source-map-js: 1.2.1
- css-what@6.2.2: {}
-
- cssesc@3.0.0: {}
-
cssstyle@5.3.3:
dependencies:
'@asamuzakjp/css-color': 4.1.0
@@ -11756,14 +15003,6 @@ snapshots:
csstype@3.2.3: {}
- cuer@0.0.2(react-dom@19.2.1(react@19.0.3))(react@19.0.3)(typescript@5.8.3):
- dependencies:
- qr: 0.5.2
- react: 19.0.3
- react-dom: 19.2.1(react@19.0.3)
- optionalDependencies:
- typescript: 5.8.3
-
dag-jose@5.1.1:
dependencies:
'@ipld/dag-cbor': 9.2.5
@@ -11800,6 +15039,8 @@ snapshots:
dependencies:
'@babel/runtime': 7.28.4
+ dateformat@4.6.3: {}
+
dayjs@1.11.13: {}
death@1.1.0: {}
@@ -11812,6 +15053,10 @@ snapshots:
dependencies:
ms: 2.1.1
+ debug@4.3.4:
+ dependencies:
+ ms: 2.1.2
+
debug@4.3.7:
dependencies:
ms: 2.1.3
@@ -11840,8 +15085,6 @@ snapshots:
dependencies:
mimic-response: 3.1.0
- dedent@1.7.0: {}
-
deep-eql@4.1.4:
dependencies:
type-detect: 4.1.0
@@ -11852,10 +15095,6 @@ snapshots:
deep-is@0.1.4: {}
- deep-object-diff@1.1.9: {}
-
- deepmerge@4.3.1: {}
-
defer-to-connect@2.0.1: {}
define-data-property@1.1.4:
@@ -11872,6 +15111,8 @@ snapshots:
defu@6.1.4: {}
+ delay@5.0.0: {}
+
delayed-stream@1.0.0: {}
delegates@1.0.0: {}
@@ -11890,8 +15131,6 @@ snapshots:
detect-libc@2.1.2: {}
- detect-node-es@1.1.0: {}
-
diff@4.0.2: {}
diff@5.2.0: {}
@@ -12137,6 +15376,14 @@ snapshots:
es-toolkit@1.33.0: {}
+ es-toolkit@1.39.3: {}
+
+ es6-promise@4.2.8: {}
+
+ es6-promisify@5.0.0:
+ dependencies:
+ es6-promise: 4.2.8
+
esbuild-android-64@0.14.47:
optional: true
@@ -12676,6 +15923,8 @@ snapshots:
bn.js: 4.11.6
number-to-bn: 1.7.0
+ event-target-shim@5.0.1: {}
+
eventemitter2@6.4.9: {}
eventemitter3@5.0.1: {}
@@ -12727,8 +15976,12 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
+ eyes@0.1.8: {}
+
fake-indexeddb@6.0.1: {}
+ fast-copy@3.0.2: {}
+
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
@@ -12755,10 +16008,14 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-password-entropy@1.1.1: {}
+
fast-redact@3.5.0: {}
fast-safe-stringify@2.1.1: {}
+ fast-stable-stringify@1.0.0: {}
+
fast-uri@3.1.0: {}
fastq@1.19.1:
@@ -12957,8 +16214,6 @@ snapshots:
get-iterator@1.0.2: {}
- get-nonce@1.0.1: {}
-
get-package-type@0.1.0: {}
get-proto@1.0.1:
@@ -13200,7 +16455,7 @@ snapshots:
lodash: 4.17.21
markdown-table: 2.0.0
sha1: 1.1.1
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
@@ -13303,12 +16558,16 @@ snapshots:
heap@0.2.7: {}
+ help-me@5.0.0: {}
+
hmac-drbg@1.0.1:
dependencies:
hash.js: 1.1.7
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
+ hono@4.11.4: {}
+
hosted-git-info@7.0.2:
dependencies:
lru-cache: 10.4.3
@@ -13372,6 +16631,10 @@ snapshots:
human-signals@5.0.0: {}
+ humanize-ms@1.2.1:
+ dependencies:
+ ms: 2.1.3
+
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@@ -13527,6 +16790,8 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
+ is-buffer@1.1.6: {}
+
is-bun-module@2.0.0:
dependencies:
semver: 7.7.3
@@ -13598,6 +16863,8 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
+ is-retry-allowed@2.2.0: {}
+
is-set@2.0.3: {}
is-shared-array-buffer@1.0.4:
@@ -13654,6 +16921,10 @@ snapshots:
iso-url@1.2.1: {}
+ isomorphic-ws@4.0.1(ws@7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ dependencies:
+ ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
isows@1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
dependencies:
ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -13761,8 +17032,34 @@ snapshots:
javascript-natural-sort@0.7.1: {}
+ jayson@4.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ dependencies:
+ '@types/connect': 3.4.38
+ '@types/node': 12.20.55
+ '@types/ws': 7.4.7
+ commander: 2.20.3
+ delay: 5.0.0
+ es6-promisify: 5.0.0
+ eyes: 0.1.8
+ isomorphic-ws: 4.0.1(ws@7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ json-stringify-safe: 5.0.1
+ stream-json: 1.9.1
+ uuid: 8.3.2
+ ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
jiti@2.6.1: {}
+ jose@4.15.9: {}
+
+ jose@6.1.3: {}
+
+ joycon@3.1.1: {}
+
+ js-cookie@3.0.5: {}
+
js-sha3@0.8.0: {}
js-sha3@0.9.3: {}
@@ -13835,6 +17132,8 @@ snapshots:
json-stream-stringify@3.1.6: {}
+ json-stringify-safe@5.0.1: {}
+
json5@1.0.2:
dependencies:
minimist: 1.2.8
@@ -13938,6 +17237,8 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ libphonenumber-js@1.12.34: {}
+
lightningcss-darwin-arm64@1.29.2:
optional: true
@@ -14054,6 +17355,10 @@ snapshots:
lru_map@0.3.3: {}
+ lucide-react@0.554.0(react@19.0.3):
+ dependencies:
+ react: 19.0.3
+
magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -14090,11 +17395,13 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- mdn-data@2.12.2: {}
-
- media-query-parser@2.0.2:
+ md5@2.3.0:
dependencies:
- '@babel/runtime': 7.28.4
+ charenc: 0.0.2
+ crypt: 0.0.2
+ is-buffer: 1.1.6
+
+ mdn-data@2.12.2: {}
memorystream@0.3.1: {}
@@ -14248,12 +17555,12 @@ snapshots:
yargs-parser: 21.1.1
yargs-unparser: 2.0.0
- modern-ahocorasick@1.1.0: {}
-
mri@1.2.0: {}
ms@2.1.1: {}
+ ms@2.1.2: {}
+
ms@2.1.3: {}
ms@3.0.0-canary.202508261828: {}
@@ -14465,6 +17772,8 @@ snapshots:
on-exit-leak-free@0.2.0: {}
+ on-exit-leak-free@2.1.2: {}
+
once@1.3.3:
dependencies:
wrappy: 1.0.2
@@ -14481,7 +17790,13 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
- openzeppelin-confidential-contracts@https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/89e9be7cf87aa4eda72ad9548044cb53aca20b9f: {}
+ openapi-fetch@0.13.8:
+ dependencies:
+ openapi-typescript-helpers: 0.0.15
+
+ openapi-typescript-helpers@0.0.15: {}
+
+ openzeppelin-confidential-contracts@https://codeload.github.com/OpenZeppelin/openzeppelin-confidential-contracts/tar.gz/7defe3e7521cb164a90e72b2fe80f578de1d691b: {}
optionator@0.8.3:
dependencies:
@@ -14513,13 +17828,28 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
+ ox@0.11.3(typescript@5.8.3)(zod@4.3.5):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.2.3(typescript@5.8.3)(zod@4.3.5)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
ox@0.6.7(typescript@5.8.3)(zod@3.25.76):
dependencies:
'@adraffy/ens-normalize': 1.11.1
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
- '@scure/bip32': 1.6.2
- '@scure/bip39': 1.5.4
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
abitype: 1.0.6(typescript@5.8.3)(zod@3.25.76)
eventemitter3: 5.0.1
optionalDependencies:
@@ -14527,6 +17857,20 @@ snapshots:
transitivePeerDependencies:
- zod
+ ox@0.6.7(typescript@5.8.3)(zod@4.3.5):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.0.6(typescript@5.8.3)(zod@4.3.5)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
ox@0.6.9(typescript@5.8.3)(zod@3.25.76):
dependencies:
'@adraffy/ens-normalize': 1.11.1
@@ -14541,45 +17885,119 @@ snapshots:
transitivePeerDependencies:
- zod
- ox@0.8.7(typescript@5.8.3):
+ ox@0.6.9(typescript@5.8.3)(zod@4.3.5):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/curves': 1.9.7
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.0.6(typescript@5.8.3)(zod@4.3.5)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.1(typescript@5.8.3)(zod@4.3.5):
dependencies:
'@adraffy/ens-normalize': 1.11.1
'@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.6
+ '@noble/curves': 1.9.7
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.76)
+ abitype: 1.0.8(typescript@5.8.3)(zod@4.3.5)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
- zod
- ox@0.8.7(typescript@5.8.3)(zod@3.22.4):
+ ox@0.9.17(typescript@5.8.3)(zod@4.3.5):
dependencies:
'@adraffy/ens-normalize': 1.11.1
'@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.6
+ '@noble/curves': 1.9.1
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.22.4)
+ abitype: 1.2.3(typescript@5.8.3)(zod@4.3.5)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
- zod
- ox@0.8.7(typescript@5.8.3)(zod@3.25.76):
+ ox@0.9.3(typescript@5.8.3)(zod@4.3.5):
dependencies:
'@adraffy/ens-normalize': 1.11.1
'@noble/ciphers': 1.3.0
- '@noble/curves': 1.9.6
+ '@noble/curves': 1.9.1
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.76)
+ abitype: 1.2.3(typescript@5.8.3)(zod@4.3.5)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.6(typescript@5.8.3):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.22.4)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.6(typescript@5.8.3)(zod@3.22.4):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.22.4)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.6(typescript@5.8.3)(zod@3.25.76):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.25.76)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.9.6(typescript@5.8.3)(zod@4.3.5):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.1
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@4.3.5)
eventemitter3: 5.0.1
optionalDependencies:
typescript: 5.8.3
@@ -14738,8 +18156,50 @@ snapshots:
duplexify: 4.1.3
split2: 4.2.0
+ pino-abstract-transport@1.2.0:
+ dependencies:
+ readable-stream: 4.7.0
+ split2: 4.2.0
+
+ pino-abstract-transport@2.0.0:
+ dependencies:
+ split2: 4.2.0
+
+ pino-pretty@10.3.1:
+ dependencies:
+ colorette: 2.0.20
+ dateformat: 4.6.3
+ fast-copy: 3.0.2
+ fast-safe-stringify: 2.1.1
+ help-me: 5.0.0
+ joycon: 3.1.1
+ minimist: 1.2.8
+ on-exit-leak-free: 2.1.2
+ pino-abstract-transport: 1.2.0
+ pump: 3.0.3
+ readable-stream: 4.7.0
+ secure-json-parse: 2.7.0
+ sonic-boom: 3.8.1
+ strip-json-comments: 3.1.1
+
pino-std-serializers@4.0.0: {}
+ pino-std-serializers@7.1.0: {}
+
+ pino@10.0.0:
+ dependencies:
+ atomic-sleep: 1.0.0
+ on-exit-leak-free: 2.1.2
+ pino-abstract-transport: 2.0.0
+ pino-std-serializers: 7.1.0
+ process-warning: 5.0.0
+ quick-format-unescaped: 4.0.4
+ real-require: 0.2.0
+ safe-stable-stringify: 2.5.0
+ slow-redact: 0.3.2
+ sonic-boom: 4.2.0
+ thread-stream: 3.1.0
+
pino@7.11.0:
dependencies:
atomic-sleep: 1.0.0
@@ -14760,6 +18220,46 @@ snapshots:
pony-cause@2.1.11: {}
+ porto@0.2.35(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)):
+ dependencies:
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ hono: 4.11.4
+ idb-keyval: 6.2.2
+ mipd: 0.0.7(typescript@5.8.3)
+ ox: 0.9.17(typescript@5.8.3)(zod@4.3.5)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ zod: 4.3.5
+ zustand: 5.0.8(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ optionalDependencies:
+ '@tanstack/react-query': 5.59.20(react@19.0.3)
+ react: 19.0.3
+ typescript: 5.8.3
+ wagmi: 2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - use-sync-external-store
+
+ porto@0.2.35(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)):
+ dependencies:
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
+ hono: 4.11.4
+ idb-keyval: 6.2.2
+ mipd: 0.0.7(typescript@5.8.3)
+ ox: 0.9.17(typescript@5.8.3)(zod@4.3.5)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
+ zod: 4.3.5
+ zustand: 5.0.8(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3))
+ optionalDependencies:
+ '@tanstack/react-query': 5.59.20(react@19.0.3)
+ react: 19.0.3
+ typescript: 5.8.3
+ wagmi: 2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - use-sync-external-store
+
possible-typed-array-names@1.1.0: {}
postcss-loader@8.2.0(postcss@8.4.49)(typescript@5.8.3):
@@ -14787,7 +18287,7 @@ snapshots:
preact@10.24.2: {}
- preact@10.27.2: {}
+ preact@10.28.2: {}
prelude-ls@1.1.2: {}
@@ -14820,6 +18320,10 @@ snapshots:
process-warning@1.0.0: {}
+ process-warning@5.0.0: {}
+
+ process@0.11.10: {}
+
progress-events@1.0.1: {}
promisepipe@3.0.0: {}
@@ -14855,6 +18359,8 @@ snapshots:
proxy-compare@2.6.0: {}
+ proxy-compare@3.0.1: {}
+
proxy-from-env@1.1.0: {}
pump@3.0.3:
@@ -14864,8 +18370,6 @@ snapshots:
punycode@2.3.1: {}
- qr@0.5.2: {}
-
qrcode.react@4.0.1(react@19.0.3):
dependencies:
react: 19.0.3
@@ -14925,6 +18429,12 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
+ react-device-detect@2.2.3(react-dom@19.2.1(react@19.0.3))(react@19.0.3):
+ dependencies:
+ react: 19.0.3
+ react-dom: 19.2.1(react@19.0.3)
+ ua-parser-js: 1.0.41
+
react-dom@19.2.1(react@19.0.3):
dependencies:
react: 19.0.3
@@ -14944,33 +18454,6 @@ snapshots:
dependencies:
p-defer: 3.0.0
- react-remove-scroll-bar@2.3.8(@types/react@19.0.14)(react@19.0.3):
- dependencies:
- react: 19.0.3
- react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.3)
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.14
-
- react-remove-scroll@2.6.2(@types/react@19.0.14)(react@19.0.3):
- dependencies:
- react: 19.0.3
- react-remove-scroll-bar: 2.3.8(@types/react@19.0.14)(react@19.0.3)
- react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.3)
- tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.0.14)(react@19.0.3)
- use-sidecar: 1.1.3(@types/react@19.0.14)(react@19.0.3)
- optionalDependencies:
- '@types/react': 19.0.14
-
- react-style-singleton@2.2.3(@types/react@19.0.14)(react@19.0.3):
- dependencies:
- get-nonce: 1.0.1
- react: 19.0.3
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.14
-
react@19.0.0: {}
react@19.0.3: {}
@@ -14991,6 +18474,14 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ readable-stream@4.7.0:
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
@@ -14999,6 +18490,8 @@ snapshots:
real-require@0.1.0: {}
+ real-require@0.2.0: {}
+
rechoir@0.6.2:
dependencies:
resolve: 1.22.11
@@ -15127,6 +18620,19 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.53.3
fsevents: 2.3.3
+ rpc-websockets@9.3.2:
+ dependencies:
+ '@swc/helpers': 0.5.15
+ '@types/uuid': 8.3.4
+ '@types/ws': 8.18.1
+ buffer: 6.0.3
+ eventemitter3: 5.0.1
+ uuid: 8.3.2
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ bufferutil: 4.0.9
+ utf-8-validate: 5.0.10
+
run-async@3.0.0: {}
run-parallel@1.2.0:
@@ -15195,6 +18701,10 @@ snapshots:
node-addon-api: 5.1.0
node-gyp-build: 4.8.4
+ secure-json-parse@2.7.0: {}
+
+ secure-password-utilities@0.2.1: {}
+
semver@5.7.2: {}
semver@6.3.1: {}
@@ -15203,6 +18713,8 @@ snapshots:
dependencies:
lru-cache: 6.0.0
+ semver@7.7.2: {}
+
semver@7.7.3: {}
serialize-javascript@6.0.2:
@@ -15211,6 +18723,8 @@ snapshots:
set-blocking@2.0.0: {}
+ set-cookie-parser@2.7.2: {}
+
set-function-length@1.2.2:
dependencies:
define-data-property: 1.1.4
@@ -15250,6 +18764,8 @@ snapshots:
charenc: 0.0.2
crypt: 0.0.2
+ shallowequal@1.1.0: {}
+
sharp@0.34.5:
dependencies:
'@img/colour': 1.0.0
@@ -15338,6 +18854,8 @@ snapshots:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
+ slow-redact@0.3.2: {}
+
socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
@@ -15427,6 +18945,14 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
+ sonic-boom@3.8.1:
+ dependencies:
+ atomic-sleep: 1.0.0
+
+ sonic-boom@4.2.0:
+ dependencies:
+ atomic-sleep: 1.0.0
+
source-map-js@1.2.1: {}
source-map-support@0.5.21:
@@ -15472,6 +18998,12 @@ snapshots:
es-errors: 1.3.0
internal-slot: 1.1.0
+ stream-chain@2.2.5: {}
+
+ stream-json@1.9.1:
+ dependencies:
+ stream-chain: 2.2.5
+
stream-shift@1.0.3: {}
stream-to-array@2.3.0:
@@ -15584,13 +19116,32 @@ snapshots:
strip-json-comments@3.1.1: {}
+ styled-components@6.3.8(react-dom@19.2.1(react@19.0.3))(react@19.0.3):
+ dependencies:
+ '@emotion/is-prop-valid': 1.4.0
+ '@emotion/unitless': 0.10.0
+ '@types/stylis': 4.2.7
+ css-to-react-native: 3.2.0
+ csstype: 3.2.3
+ postcss: 8.4.49
+ react: 19.0.3
+ shallowequal: 1.1.0
+ stylis: 4.3.6
+ tslib: 2.8.1
+ optionalDependencies:
+ react-dom: 19.2.1(react@19.0.3)
+
styled-jsx@5.1.6(react@19.0.3):
dependencies:
client-only: 0.0.1
react: 19.0.3
+ stylis@4.3.6: {}
+
superstruct@1.0.4: {}
+ superstruct@2.0.2: {}
+
supports-color@10.2.2: {}
supports-color@3.2.3:
@@ -15617,6 +19168,8 @@ snapshots:
dependencies:
'@pkgr/core': 0.2.9
+ tabbable@6.4.0: {}
+
table-layout@1.0.2:
dependencies:
array-back: 4.0.2
@@ -15663,6 +19216,8 @@ snapshots:
glob: 10.5.0
minimatch: 9.0.5
+ text-encoding-utf-8@1.0.2: {}
+
text-table@0.2.0: {}
tfhe@1.4.0-alpha.3: {}
@@ -15671,6 +19226,10 @@ snapshots:
dependencies:
real-require: 0.1.0
+ thread-stream@3.1.0:
+ dependencies:
+ real-require: 0.2.0
+
time-span@4.0.0:
dependencies:
convert-hrtime: 3.0.0
@@ -15681,6 +19240,8 @@ snapshots:
tinybench@2.9.0: {}
+ tinycolor2@1.6.0: {}
+
tinyexec@0.3.2: {}
tinyglobby@0.2.15:
@@ -15940,6 +19501,10 @@ snapshots:
dependencies:
multiformats: 9.9.0
+ uint8arrays@3.1.1:
+ dependencies:
+ multiformats: 9.9.0
+
uint8arrays@5.1.0:
dependencies:
multiformats: 13.4.1
@@ -15959,6 +19524,8 @@ snapshots:
undici-types@6.21.0: {}
+ undici-types@7.18.2: {}
+
undici@5.28.4:
dependencies:
'@fastify/busboy': 2.1.1
@@ -16020,26 +19587,15 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.3(@types/react@19.0.14)(react@19.0.3):
- dependencies:
- react: 19.0.3
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.14
-
- use-sidecar@1.1.3(@types/react@19.0.14)(react@19.0.3):
+ use-sync-external-store@1.2.0(react@19.0.3):
dependencies:
- detect-node-es: 1.1.0
react: 19.0.3
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.14
- use-sync-external-store@1.2.0(react@19.0.3):
+ use-sync-external-store@1.4.0(react@19.0.3):
dependencies:
react: 19.0.3
- use-sync-external-store@1.4.0(react@19.0.3):
+ use-sync-external-store@1.6.0(react@19.0.3):
dependencies:
react: 19.0.3
@@ -16083,6 +19639,13 @@ snapshots:
'@types/react': 19.0.14
react: 19.0.3
+ valtio@2.1.7(@types/react@19.0.14)(react@19.0.3):
+ dependencies:
+ proxy-compare: 3.0.1
+ optionalDependencies:
+ '@types/react': 19.0.14
+ react: 19.0.3
+
varint@6.0.0: {}
vercel@39.1.3(encoding@0.1.13):
@@ -16122,15 +19685,32 @@ snapshots:
- utf-8-validate
- zod
- viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10):
+ viem@2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5):
+ dependencies:
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
+ '@scure/bip32': 1.6.2
+ '@scure/bip39': 1.5.4
+ abitype: 1.0.8(typescript@5.8.3)(zod@4.3.5)
+ isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.6.7(typescript@5.8.3)(zod@4.3.5)
+ ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.36.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5):
dependencies:
'@noble/curves': 1.9.6
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.76)
+ abitype: 1.0.8(typescript@5.8.3)(zod@4.3.5)
isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.8.7(typescript@5.8.3)
+ ox: 0.9.1(typescript@5.8.3)(zod@4.3.5)
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.8.3
@@ -16139,15 +19719,15 @@ snapshots:
- utf-8-validate
- zod
- viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4):
+ viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10):
dependencies:
- '@noble/curves': 1.9.6
+ '@noble/curves': 1.9.1
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.22.4)
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.22.4)
isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.8.7(typescript@5.8.3)(zod@3.22.4)
+ ox: 0.9.6(typescript@5.8.3)
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.8.3
@@ -16156,15 +19736,66 @@ snapshots:
- utf-8-validate
- zod
- viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76):
+ viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4):
dependencies:
- '@noble/curves': 1.9.6
+ '@noble/curves': 1.9.1
'@noble/hashes': 1.8.0
'@scure/bip32': 1.7.0
'@scure/bip39': 1.6.0
- abitype: 1.0.8(typescript@5.8.3)(zod@3.25.76)
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.22.4)
+ isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.9.6(typescript@5.8.3)(zod@3.22.4)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76):
+ dependencies:
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@3.25.76)
+ isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.9.6(typescript@5.8.3)(zod@3.25.76)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5):
+ dependencies:
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.1.0(typescript@5.8.3)(zod@4.3.5)
+ isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.9.6(typescript@5.8.3)(zod@4.3.5)
+ ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.44.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5):
+ dependencies:
+ '@noble/curves': 1.9.1
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
+ abitype: 1.2.3(typescript@5.8.3)(zod@4.3.5)
isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.8.7(typescript@5.8.3)(zod@3.25.76)
+ ox: 0.11.3(typescript@5.8.3)(zod@4.3.5)
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.8.3
@@ -16242,14 +19873,59 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.16.4(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76):
+ wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76):
+ dependencies:
+ '@tanstack/react-query': 5.59.20(react@19.0.3)
+ '@wagmi/connectors': 6.2.0(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))(zod@3.25.76)
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))
+ react: 19.0.3
+ use-sync-external-store: 1.4.0(react@19.0.3)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@tanstack/query-core'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react-native
+ - supports-color
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5):
dependencies:
'@tanstack/react-query': 5.59.20(react@19.0.3)
- '@wagmi/connectors': 5.9.4(@types/react@19.0.14)(@wagmi/core@2.19.0(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
- '@wagmi/core': 2.19.0(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))
+ '@wagmi/connectors': 6.2.0(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(@wagmi/core@2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)))(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(wagmi@2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))(zod@4.3.5))(zod@4.3.5)
+ '@wagmi/core': 2.22.1(@tanstack/query-core@5.59.20)(@types/react@19.0.14)(react@19.0.3)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.0.3))(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5))
react: 19.0.3
use-sync-external-store: 1.4.0(react@19.0.3)
- viem: 2.34.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@4.3.5)
optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
@@ -16273,9 +19949,15 @@ snapshots:
- aws4fetch
- bufferutil
- db0
+ - debug
- encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
- immer
- ioredis
+ - react-native
- supports-color
- uploadthing
- utf-8-validate
@@ -16448,6 +20130,64 @@ snapshots:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
+ ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ optionalDependencies:
+ bufferutil: 4.0.9
+ utf-8-validate: 5.0.10
+
+ x402@0.7.3(@solana/sysvars@5.4.0(typescript@5.8.3))(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10):
+ dependencies:
+ '@scure/base': 1.2.6
+ '@solana-program/compute-budget': 0.11.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana-program/token': 0.9.0(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@solana-program/token-2022': 0.6.1(@solana/kit@5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(@solana/sysvars@5.4.0(typescript@5.8.3))
+ '@solana/kit': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/transaction-confirmation': 5.4.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@solana/wallet-standard-features': 1.3.0
+ '@wallet-standard/app': 1.1.0
+ '@wallet-standard/base': 1.1.0
+ '@wallet-standard/features': 1.1.0
+ viem: 2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76)
+ wagmi: 2.19.5(@tanstack/query-core@5.59.20)(@tanstack/react-query@5.59.20(react@19.0.3))(@types/react@19.0.14)(bufferutil@4.0.9)(encoding@0.1.13)(react@19.0.3)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.41.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.25.76))(zod@3.25.76)
+ zod: 3.25.76
+ 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'
+ - '@solana/sysvars'
+ - '@tanstack/query-core'
+ - '@tanstack/react-query'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - debug
+ - encoding
+ - expo-auth-session
+ - expo-crypto
+ - expo-web-browser
+ - fastestsmallesttextencoderdecoder
+ - immer
+ - ioredis
+ - react
+ - react-native
+ - supports-color
+ - typescript
+ - uploadthing
+ - utf-8-validate
+
xdg-app-paths@5.1.0:
dependencies:
xdg-portable: 7.3.0
@@ -16550,6 +20290,8 @@ snapshots:
zod@3.25.76: {}
+ zod@4.3.5: {}
+
zustand@5.0.0(@types/react@19.0.14)(react@19.0.3)(use-sync-external-store@1.4.0(react@19.0.3)):
optionalDependencies:
'@types/react': 19.0.14