From 7670b256be9f770973227cc3f00ec4ebae21c605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 09:25:05 -0300 Subject: [PATCH 01/22] add example app demoing managed tx hook --- apps/wagmi-tx-manager-2/.gitignore | 35 + apps/wagmi-tx-manager-2/.npmrc | 1 + apps/wagmi-tx-manager-2/README.md | 1 + apps/wagmi-tx-manager-2/next.config.js | 100 + apps/wagmi-tx-manager-2/package.json | 39 + .../src/app/(components)/mintNft.tsx | 55 + apps/wagmi-tx-manager-2/src/app/globals.css | 21 + apps/wagmi-tx-manager-2/src/app/layout.tsx | 24 + apps/wagmi-tx-manager-2/src/app/manifest.json | 5 + apps/wagmi-tx-manager-2/src/app/page.tsx | 68 + apps/wagmi-tx-manager-2/src/app/providers.tsx | 19 + .../src/components/alert.tsx | 89 + .../src/context/Notifications.tsx | 96 + .../src/lib/useAutoConnect.ts | 20 + .../src/lib/useGnosisTransaction.ts | 115 + .../src/lib/useIsWalletContract.ts | 20 + .../src/lib/useManagedTransaction.ts | 84 + .../useWaitForTransactionReceiptWrapped.ts | 46 + apps/wagmi-tx-manager-2/src/utils/format.ts | 7 + .../src/utils/formatBalance.tsx | 7 + .../src/utils/helpers/formatTools.ts | 5 + apps/wagmi-tx-manager-2/src/utils/network.ts | 56 + apps/wagmi-tx-manager-2/src/utils/server.ts | 23 + apps/wagmi-tx-manager-2/src/utils/site.ts | 9 + apps/wagmi-tx-manager-2/src/utils/types.ts | 15 + apps/wagmi-tx-manager-2/src/utils/web3.ts | 25 + apps/wagmi-tx-manager-2/src/wagmi.ts | 23 + apps/wagmi-tx-manager-2/tsconfig.json | 27 + pnpm-lock.yaml | 19084 +++++++++++----- 29 files changed, 14708 insertions(+), 5411 deletions(-) create mode 100644 apps/wagmi-tx-manager-2/.gitignore create mode 100644 apps/wagmi-tx-manager-2/.npmrc create mode 100644 apps/wagmi-tx-manager-2/README.md create mode 100644 apps/wagmi-tx-manager-2/next.config.js create mode 100644 apps/wagmi-tx-manager-2/package.json create mode 100644 apps/wagmi-tx-manager-2/src/app/(components)/mintNft.tsx create mode 100644 apps/wagmi-tx-manager-2/src/app/globals.css create mode 100644 apps/wagmi-tx-manager-2/src/app/layout.tsx create mode 100644 apps/wagmi-tx-manager-2/src/app/manifest.json create mode 100644 apps/wagmi-tx-manager-2/src/app/page.tsx create mode 100644 apps/wagmi-tx-manager-2/src/app/providers.tsx create mode 100644 apps/wagmi-tx-manager-2/src/components/alert.tsx create mode 100644 apps/wagmi-tx-manager-2/src/context/Notifications.tsx create mode 100644 apps/wagmi-tx-manager-2/src/lib/useAutoConnect.ts create mode 100644 apps/wagmi-tx-manager-2/src/lib/useGnosisTransaction.ts create mode 100644 apps/wagmi-tx-manager-2/src/lib/useIsWalletContract.ts create mode 100644 apps/wagmi-tx-manager-2/src/lib/useManagedTransaction.ts create mode 100644 apps/wagmi-tx-manager-2/src/lib/useWaitForTransactionReceiptWrapped.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/format.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/formatBalance.tsx create mode 100644 apps/wagmi-tx-manager-2/src/utils/helpers/formatTools.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/network.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/server.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/site.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/types.ts create mode 100644 apps/wagmi-tx-manager-2/src/utils/web3.ts create mode 100644 apps/wagmi-tx-manager-2/src/wagmi.ts create mode 100644 apps/wagmi-tx-manager-2/tsconfig.json diff --git a/apps/wagmi-tx-manager-2/.gitignore b/apps/wagmi-tx-manager-2/.gitignore new file mode 100644 index 000000000..8f322f0d8 --- /dev/null +++ b/apps/wagmi-tx-manager-2/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/apps/wagmi-tx-manager-2/.npmrc b/apps/wagmi-tx-manager-2/.npmrc new file mode 100644 index 000000000..ca1e9d98b --- /dev/null +++ b/apps/wagmi-tx-manager-2/.npmrc @@ -0,0 +1 @@ +legacy-peer-deps = true \ No newline at end of file diff --git a/apps/wagmi-tx-manager-2/README.md b/apps/wagmi-tx-manager-2/README.md new file mode 100644 index 000000000..bd3aa7b7f --- /dev/null +++ b/apps/wagmi-tx-manager-2/README.md @@ -0,0 +1 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-wagmi`](https://github.com/wevm/wagmi/tree/main/packages/create-wagmi). diff --git a/apps/wagmi-tx-manager-2/next.config.js b/apps/wagmi-tx-manager-2/next.config.js new file mode 100644 index 000000000..267806c73 --- /dev/null +++ b/apps/wagmi-tx-manager-2/next.config.js @@ -0,0 +1,100 @@ +/* eslint-env node */ +// eslint-disable-next-line @typescript-eslint/no-var-requires + +/** @type {import('next').NextConfig} */ +const moduleExports = { + async headers() { + return [ + { + source: "/manifest.json", + headers: [ + { key: "Access-Control-Allow-Origin", value: "*" }, + { key: "Access-Control-Allow-Methods", value: "GET" }, + { + key: "Access-Control-Allow-Headers", + value: "X-Requested-With, content-type, Authorization", + }, + ], + }, + ]; + }, + reactStrictMode: true, + /** + * This configuration is following Rainbowkit Migration Guide to Viem + * 3. Ensure bundler and polyfill compatibility + * https://www.rainbowkit.com/docs/migration-guide + */ + webpack: (config) => { + config.resolve.fallback = { fs: false, net: false, tls: false }; + config.externals.push("pino-pretty", "lokijs", "encoding"); + return config; + }, + images: { + domains: [ + "assets.coingecko.com", + "raw.githubusercontent.com", + "assets-cdn.trustwallet.com", + "beethoven-assets.s3.eu-central-1.amazonaws.com", + "safe-transaction-assets.safe.global", + ], + remotePatterns: [ + { + protocol: "https", + hostname: "assets.coingecko.com", + port: "", + pathname: "/coins/images/**", + }, + { + protocol: "https", + hostname: "raw.githubusercontent.com", + port: "", + pathname: "/balancer/frontend-v2/**", + }, + { + protocol: "https", + hostname: "raw.githubusercontent.com", + port: "", + pathname: "/trustwallet/assets/**", + }, + { + protocol: "https", + hostname: "raw.githubusercontent.com", + port: "", + pathname: "/cowprotocol/token-lists/**", + }, + { + protocol: "https", + hostname: "raw.githubusercontent.com", + port: "", + pathname: "/centfinance/assets/**", + }, + { + protocol: "https", + hostname: "cdn.sanity.io", + port: "", + pathname: + "/images/r2mka0oi/production/bf37b9c7fb36c7d3c96d3d05b45c76d89072b777-1800x1800.png", + }, + { + protocol: "https", + hostname: "gnosis.mypinata.cloud", + port: "", + pathname: "/ipfs/**", + }, + { + protocol: "https", + hostname: "app.stakewise.io", + port: "", + pathname: "/static/images/currencies/**", + }, + { + protocol: "https", + hostname: "safe-transaction-assets.safe.global", + port: "", + pathname: "/tokens/logos/**", + }, + ], + }, +}; + +module.exports = moduleExports; diff --git a/apps/wagmi-tx-manager-2/package.json b/apps/wagmi-tx-manager-2/package.json new file mode 100644 index 000000000..8d4431e0d --- /dev/null +++ b/apps/wagmi-tx-manager-2/package.json @@ -0,0 +1,39 @@ +{ + "name": "wagmi-tx-manager-2", + "private": true, + "version": "0.0.0", + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@heroicons/react": "^2.1.3", + "@safe-global/safe-apps-sdk": "^9.0.0", + "@tanstack/react-query": "5.40.1", + "@types/react-toastify": "^4.1.0", + "@wagmi/core": "^1.4.12", + "abitype": "^1.0.2", + "dayjs": "^1.11.11", + "next": "14.2.3", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-toastify": "^10.0.5", + "viem": "latest", + "wagmi": "latest" + }, + "devDependencies": { + "@types/node": "^20.14.2", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@wagmi/cli": "latest", + "bufferutil": "^4.0.8", + "encoding": "^0.1.13", + "lokijs": "^1.5.12", + "pino-pretty": "^11.1.0", + "supports-color": "^9.4.0", + "typescript": "^5.4.5", + "utf-8-validate": "^6.0.4" + } +} diff --git a/apps/wagmi-tx-manager-2/src/app/(components)/mintNft.tsx b/apps/wagmi-tx-manager-2/src/app/(components)/mintNft.tsx new file mode 100644 index 000000000..511567902 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/(components)/mintNft.tsx @@ -0,0 +1,55 @@ +import * as React from "react"; +import { type BaseError } from "wagmi"; + +import { useManagedTransaction } from "@/lib/useManagedTransaction"; + +export const abi = [ + { + name: "mint", + type: "function", + stateMutability: "nonpayable", + inputs: [{ internalType: "uint32", name: "tokenId", type: "uint32" }], + outputs: [], + }, +] as const; + +export function MintNFT() { + const { hash, error, writeContract, status, safeHash } = + useManagedTransaction(); + + async function submit(e: React.FormEvent) { + e.preventDefault(); + const formData = new FormData(e.target as HTMLFormElement); + const tokenId = formData.get("tokenId") as string; + + writeContract({ + address: "0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2", + abi, + functionName: "mint", + args: [Number(tokenId)], + }); + } + + const isPending = status === "pending"; + const isConfirming = status === "confirming"; + const isConfirmed = status === "confirmed"; + + return ( +
+ + + {hash &&
Transaction Hash: {hash}
} + {isConfirming &&
Waiting for confirmation...
} + {isConfirmed &&
Transaction confirmed.
} + {error && ( +
Error: {(error as BaseError).shortMessage || error.message}
+ )} + + {safeHash &&
Safe Transaction Hash: {safeHash}
} + + {status &&
State: {status}
} +
+ ); +} diff --git a/apps/wagmi-tx-manager-2/src/app/globals.css b/apps/wagmi-tx-manager-2/src/app/globals.css new file mode 100644 index 000000000..0733a7ee6 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/globals.css @@ -0,0 +1,21 @@ +:root { + background-color: #181818; + color: rgba(255, 255, 255, 0.87); + color-scheme: light dark; + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; + font-synthesis: none; + font-weight: 400; + line-height: 1.5; + text-rendering: optimizeLegibility; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +@media (prefers-color-scheme: light) { + :root { + background-color: #f8f8f8; + color: #181818; + } +} diff --git a/apps/wagmi-tx-manager-2/src/app/layout.tsx b/apps/wagmi-tx-manager-2/src/app/layout.tsx new file mode 100644 index 000000000..08ab63560 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/layout.tsx @@ -0,0 +1,24 @@ +import "./globals.css"; + +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import { type ReactNode } from "react"; + +import { Providers } from "./providers"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Create Wagmi", + description: "Generated by create-wagmi", +}; + +export default function RootLayout(props: { children: ReactNode }) { + return ( + + + {props.children} + + + ); +} diff --git a/apps/wagmi-tx-manager-2/src/app/manifest.json b/apps/wagmi-tx-manager-2/src/app/manifest.json new file mode 100644 index 000000000..0f1bc0990 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/manifest.json @@ -0,0 +1,5 @@ +{ + "name": "TX Example", + "description": "UI to deploy and manage your CoW AMM", + "iconPath": "favicon.ico" +} diff --git a/apps/wagmi-tx-manager-2/src/app/page.tsx b/apps/wagmi-tx-manager-2/src/app/page.tsx new file mode 100644 index 000000000..a24918598 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/page.tsx @@ -0,0 +1,68 @@ +"use client"; +import { wagmiMintExampleAbi } from "abitype/abis"; +import React from "react"; +import { useAccount, useConnect, useDisconnect } from "wagmi"; + +import { MintNFT } from "./(components)/mintNft"; +import { useAutoConnect } from "@/lib/useAutoConnect"; + +function TransactionManager({ contractAddress, abi }) { + return ( +
+

contract: {contractAddress}

+

abi: {abi.length > 0 ? "present" : ""}

+
+ ); +} + +function App() { + const { address, status, chain } = useAccount(); + const { connect, connectors, error } = useConnect(); + const { disconnect } = useDisconnect(); + useAutoConnect(); + + return ( + <> +
+

Account

+
+ status: {status} +
+ address: {address} +
+ chainId: {chain?.id} +
+ {status === "connected" && ( + + )} +
+
+

Connect

+ {connectors.map((connector) => ( + + ))} +
{status}
+
{error?.message}
+
+ {status === "connected" && ( + <> + + + + )} + + ); +} + +export default App; diff --git a/apps/wagmi-tx-manager-2/src/app/providers.tsx b/apps/wagmi-tx-manager-2/src/app/providers.tsx new file mode 100644 index 000000000..c7f07d3c9 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/app/providers.tsx @@ -0,0 +1,19 @@ +"use client"; + +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { type ReactNode, useState } from "react"; +import { WagmiProvider } from "wagmi"; + +import { config } from "@/wagmi"; + +export function Providers(props: { children: ReactNode }) { + const [queryClient] = useState(() => new QueryClient()); + + return ( + + + {props.children} + + + ); +} diff --git a/apps/wagmi-tx-manager-2/src/components/alert.tsx b/apps/wagmi-tx-manager-2/src/components/alert.tsx new file mode 100644 index 000000000..91404074d --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/components/alert.tsx @@ -0,0 +1,89 @@ +import { + ArrowUpRightIcon, + CheckCircleIcon, + ExclamationCircleIcon, + ExclamationTriangleIcon, + InformationCircleIcon, +} from "@heroicons/react/24/outline"; +import dayjs from "dayjs"; +import relativeTime from "dayjs/plugin/relativeTime"; + +import { TruncateMiddle } from "@/utils/format"; +import { NotificationType } from "@/utils/types"; + +dayjs.extend(relativeTime); + +interface StatusProps { + className?: string; + type: NotificationType; +} + +interface Props { + className?: string; + type: NotificationType; + message: string; + href?: string; + timestamp?: number; + from?: string; +} + +export function StatusIcon(props: StatusProps) { + let className = "h-6 w-6"; + if (props.className) className += ` ${props.className}`; + + if (props.type === "info") { + className += " stroke-info"; + } + if (props.type === "success") { + className += " stroke-success"; + } + if (props.type === "warning") { + className += " stroke-warning"; + } + if (props.type === "error") { + className += " stroke-error"; + } + if (props.type === "success") + return ; + if (props.type === "warning") + return ; + if (props.type === "error") + return ; + + return ; +} + +export function Alert(props: Props) { + let className = `alert flex flex-row text-left`; + if (props.className) className += ` ${props.className}`; + return ( +
+
+ +
+ +
+

{props.message}

+
+ {dayjs(props.timestamp).fromNow()} + {props.from && ( + <> + · + + {props.from.startsWith("0x") + ? TruncateMiddle(props.from) + : props.from} + + + )} +
+
+ + {props.href && ( + + + + )} +
+ ); +} diff --git a/apps/wagmi-tx-manager-2/src/context/Notifications.tsx b/apps/wagmi-tx-manager-2/src/context/Notifications.tsx new file mode 100644 index 000000000..11c7f31e3 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/context/Notifications.tsx @@ -0,0 +1,96 @@ +"use client"; + +import "react-toastify/dist/ReactToastify.min.css"; + +import dayjs from "dayjs"; +import { + createContext, + PropsWithChildren, + useContext, + useEffect, + useState, +} from "react"; +import { toast, ToastContainer } from "react-toastify"; +import { useAccount } from "wagmi"; + +import { StatusIcon } from "@/components/alert"; +import { Notification } from "@/utils/types"; + +type NotificationOptions = Partial>; + +interface NotificationContext { + Add: (message: string, options?: NotificationOptions) => void; + Clear: () => void; + notifications: Notification[]; +} + +const defaultNotificationContext: NotificationContext = { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + Add: (_message: string, _options?: NotificationOptions) => {}, + Clear: () => {}, + notifications: [], +}; + +const NotificationContext = createContext(defaultNotificationContext); + +export const useNotifications = () => { + const context = useContext(NotificationContext); + if (!context) { + throw new Error( + "useNotifications must be used within a NotificationProvider" + ); + } + + return context; +}; + +export function NotificationProvider(props: PropsWithChildren) { + const [notifications, setNotifications] = useState([]); + const { address } = useAccount(); + + useEffect(() => { + const storedNotifications = localStorage?.getItem("notifications"); + if (storedNotifications) { + setNotifications(JSON.parse(storedNotifications)); + } + }, []); + + function Add(message: string, options?: NotificationOptions) { + const notification: Notification = { + message, + type: options?.type || "info", + timestamp: options?.timestamp || dayjs().valueOf(), + from: options?.from || address, + ...options, + }; + localStorage.setItem( + "notifications", + JSON.stringify([...notifications, notification]) + ); + setNotifications([...notifications, notification]); + toast(message, { + type: notification.type, + icon: , + }); + } + + function Clear() { + localStorage.removeItem("notifications"); + setNotifications([]); + } + + return ( + + {props.children} + + "flex relative bg-base-300 rounded-xl justify-between overflow-hidden p-2 mb-2" + } + bodyClassName={() => "flex text-sm gap-2 px-4 py-2"} + /> + + ); +} diff --git a/apps/wagmi-tx-manager-2/src/lib/useAutoConnect.ts b/apps/wagmi-tx-manager-2/src/lib/useAutoConnect.ts new file mode 100644 index 000000000..d7b0dd8b1 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/lib/useAutoConnect.ts @@ -0,0 +1,20 @@ +import { useEffect } from "react"; +import { useConnect } from "wagmi"; + +const AUTOCONNECTED_CONNECTOR_IDS = ["safe"]; + +function useAutoConnect() { + const { connect, connectors } = useConnect(); + + useEffect(() => { + AUTOCONNECTED_CONNECTOR_IDS.forEach((connector) => { + const connectorInstance = connectors.find((c) => c.id === connector); + + if (connectorInstance) { + connect({ connector: connectorInstance }); + } + }); + }, [connect, connectors]); +} + +export { useAutoConnect }; diff --git a/apps/wagmi-tx-manager-2/src/lib/useGnosisTransaction.ts b/apps/wagmi-tx-manager-2/src/lib/useGnosisTransaction.ts new file mode 100644 index 000000000..c97161c99 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/lib/useGnosisTransaction.ts @@ -0,0 +1,115 @@ +import { useEffect, useState } from "react"; +import { useAccount, useWatchContractEvent } from "wagmi"; +import SafeAppsSDK from "@safe-global/safe-apps-sdk"; +import { parseAbi } from "viem"; +import { useIsWalletContract } from "./useIsWalletContract"; +export type SafeStatus = + | "safe_idle" + | "safe_loading" + | "safe_awaiting_confirmations" + | "safe_awaiting_execution" + | "safe_failed" + | "safe_success" + | "safe_cancelled"; + +export const sdk = new SafeAppsSDK({ + allowedDomains: [/app.safe.global$/], + debug: true, +}); + +export const gnosisAbi = parseAbi([ + "event ExecutionSuccess(bytes32 txHash, uint256 payment)", +]); + +export const SAFE_STATUS_MAP = { + IDLE: "safe_idle", + AWAITING_CONFIRMATIONS: "safe_awaiting_confirmations", + AWAITING_EXECUTION: "safe_awaiting_execution", + CANCELLED: "safe_cancelled", + FAILED: "safe_failed", + SUCCESS: "safe_success", +} as const; + +export const useGnosisTransaction = ({ + safeHash, +}: { + safeHash: `0x${string}` | undefined; +}): { + data: any; + error: any; + status: SafeStatus; +} => { + const [gnosisStatus, setGnosisStatus] = useState("safe_idle"); + const [txHash, setTxHash] = useState(); + const { address } = useAccount(); + const { data: isWalletContract } = useIsWalletContract(address); + + async function loadGnosisQueuedTransactions(hash?: string) { + if (!hash) return setGnosisStatus("safe_idle"); + + const queued = await sdk.txs.getBySafeTxHash(hash); + + if (!queued) { + setGnosisStatus("safe_idle"); + return undefined; + } + + setGnosisStatus(SAFE_STATUS_MAP[queued.txStatus]); + setTxHash(queued.txHash); + } + + useEffect(() => { + if (!safeHash) { + return; + } + + loadGnosisQueuedTransactions(safeHash); + const interval = setInterval(() => { + loadGnosisQueuedTransactions(safeHash); + }, 1000); + + return () => clearInterval(interval); + }, [safeHash]); + + useWatchContractEvent({ + abi: gnosisAbi, + address, + // address: address, + eventName: "ExecutionSuccess", + onLogs: (logs) => { + logs.forEach((log) => { + if (log.args.txHash === safeHash) { + loadGnosisQueuedTransactions(safeHash); + } + }); + }, + }); + + if (!address) + return { + data: undefined, + error: undefined, + status: "safe_idle", + }; + + if (isWalletContract) + return { + data: undefined, + error: undefined, + status: "safe_idle", + }; + + if (!safeHash) { + return { + data: undefined, + error: undefined, + status: "safe_idle", + }; + } + + return { + data: txHash, + error: undefined, + status: gnosisStatus, + }; +}; diff --git a/apps/wagmi-tx-manager-2/src/lib/useIsWalletContract.ts b/apps/wagmi-tx-manager-2/src/lib/useIsWalletContract.ts new file mode 100644 index 000000000..14853b429 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/lib/useIsWalletContract.ts @@ -0,0 +1,20 @@ +import { Address } from "viem"; +import { usePublicClient } from "wagmi"; +import { useQuery } from "wagmi/query"; + +export const useIsWalletContract = (address: Address | undefined) => { + const publicClient = usePublicClient(); + + return useQuery({ + queryKey: ["isWalletContract", address], + queryFn: async () => { + if (!address) { + return undefined; + } + const bytecode = await publicClient.getBytecode({ + address, + }); + return bytecode !== undefined; + }, + }); +}; diff --git a/apps/wagmi-tx-manager-2/src/lib/useManagedTransaction.ts b/apps/wagmi-tx-manager-2/src/lib/useManagedTransaction.ts new file mode 100644 index 000000000..a9783438e --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/lib/useManagedTransaction.ts @@ -0,0 +1,84 @@ +import { useTransactionConfirmations, useWriteContract } from "wagmi"; +import { useWaitForTransactionReceiptWrapped } from "@/lib/useWaitForTransactionReceiptWrapped"; +import { useEffect, useMemo } from "react"; + +const CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX = 15; + +export function useManagedTransaction() { + const { + data, + error, + status: writeStatus, + writeContract, + } = useWriteContract(); + + const { + hash, + status: txReceiptStatus, + safeHash, + safeStatus, + } = useWaitForTransactionReceiptWrapped({ + hash: data, + }); + + const { + data: blockConfirmations, + status: blockConfirmationsStatus, + fetchStatus: blockConfirmationsFetchStatus, + refetch, + } = useTransactionConfirmations({ hash }); + + useEffect(() => { + if ( + txReceiptStatus === "success" && + blockConfirmationsStatus === "success" && + Number(blockConfirmations) <= CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX + ) { + const interval = setInterval(() => { + console.log("refetching"); + refetch(); + }, 1000); + + return () => clearInterval(interval); + } + }, [blockConfirmationsStatus, txReceiptStatus]); + + const STATE = useMemo( + () => ({ + idle: + writeStatus === "idle" && + (safeStatus ? safeStatus === "safe_idle" : true), + safeAwaitingConfirmations: safeStatus === "safe_awaiting_confirmations", + safeAwaitingExecution: safeStatus === "safe_awaiting_execution", + safeCancelled: safeStatus === "safe_cancelled", + pending: writeStatus === "pending", + confirming: writeStatus === "success" && txReceiptStatus === "pending", + confirmed: txReceiptStatus === "success", + final: + blockConfirmationsStatus === "success" && + Number(blockConfirmations) >= 1, + error: writeStatus === "error" || safeStatus === "safe_failed", + }), + [ + writeStatus, + safeStatus, + txReceiptStatus, + blockConfirmationsStatus, + blockConfirmations, + ] + ); + + const status = Object.entries(STATE).findLast( + ([, value]) => value === true + )?.[0]; + + console.log({ status, blockConfirmations, blockConfirmationsStatus }); + return { + status, + safeHash, + writeContract, + hash, + error, + blockConfirmations, + }; +} diff --git a/apps/wagmi-tx-manager-2/src/lib/useWaitForTransactionReceiptWrapped.ts b/apps/wagmi-tx-manager-2/src/lib/useWaitForTransactionReceiptWrapped.ts new file mode 100644 index 000000000..b5eac5a58 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/lib/useWaitForTransactionReceiptWrapped.ts @@ -0,0 +1,46 @@ +import { + useAccount, + // useQuery, + useWaitForTransactionReceipt, +} from "wagmi"; + +import { useIsWalletContract } from "./useIsWalletContract"; +import { useGnosisTransaction } from "./useGnosisTransaction"; + +export const useWaitForTransactionReceiptWrapped = ( + args: Parameters[0] +) => { + const { address } = useAccount(); + const { data: isWalletContract } = useIsWalletContract(address); + + const plain = useWaitForTransactionReceipt({ + ...args, + hash: isWalletContract === false ? args?.hash : undefined, + }); + + const gnosis = useGnosisTransaction({ + safeHash: args?.hash, + }); + + const gnosisData = useWaitForTransactionReceipt({ + ...args, + hash: gnosis.data, + }); + + if (isWalletContract) { + return { + hash: gnosis.data, + safeHash: args?.hash, + ...gnosisData, + safeStatus: gnosis.status, + status: gnosisData.status, + }; + } + + return { + ...plain, + hash: isWalletContract === false ? args?.hash : undefined, + safeHash: null, + safeStatus: null, + }; +}; diff --git a/apps/wagmi-tx-manager-2/src/utils/format.ts b/apps/wagmi-tx-manager-2/src/utils/format.ts new file mode 100644 index 000000000..0a7753fc1 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/format.ts @@ -0,0 +1,7 @@ +export function TruncateMiddle(text: string, length: number = 5) { + if (text?.length > length * 2 + 1) { + return `${text.substring(0, length)}...${text.substring(text.length - length, text.length)}` + } + + return text +} diff --git a/apps/wagmi-tx-manager-2/src/utils/formatBalance.tsx b/apps/wagmi-tx-manager-2/src/utils/formatBalance.tsx new file mode 100644 index 000000000..54875a4cf --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/formatBalance.tsx @@ -0,0 +1,7 @@ +'use client' +import { formatEther } from 'viem' + +export const formatBalance = (balance: bigint, toFixed?: number) => { + if (!balance) return undefined + return parseFloat(formatEther(balance, 'wei')).toFixed(toFixed ?? 4) +} diff --git a/apps/wagmi-tx-manager-2/src/utils/helpers/formatTools.ts b/apps/wagmi-tx-manager-2/src/utils/helpers/formatTools.ts new file mode 100644 index 000000000..68c809c0f --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/helpers/formatTools.ts @@ -0,0 +1,5 @@ +export function truncateAddress(address: string) { + if (!address) return '' + if (address.length <= 18) return address + return `${address.slice(0, 9)}...${address.slice(-9)}` +} diff --git a/apps/wagmi-tx-manager-2/src/utils/network.ts b/apps/wagmi-tx-manager-2/src/utils/network.ts new file mode 100644 index 000000000..14016a4be --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/network.ts @@ -0,0 +1,56 @@ +import { mainnet, arbitrum, base, linea, polygon, optimism, scroll } from 'viem/chains' +import { Chain, hardhat, sepolia } from 'viem/chains' + +let chains = [mainnet, arbitrum, base, linea, polygon, optimism, scroll] as [Chain, ...Chain[]] + +if (process.env.NODE_ENV !== 'production') chains.push(sepolia, hardhat) + +export const ETH_CHAINS = chains + +export const NETWORK_COLORS = { + ethereum: { + color: 'green', + bgVariant: 'bg-green-600', + }, + arbitrum: { + color: 'sky', + bgVariant: 'bg-sky-600', + }, + base: { + color: 'blue', + bgVariant: 'bg-blue-600', + }, + linea: { + color: 'slate', + bgVariant: 'bg-slate-600', + }, + polygon: { + color: 'purple', + bgVariant: 'bg-purple-600', + }, + optimism: { + color: 'red', + bgVariant: 'bg-red-600', + }, + scroll: { + color: 'amber', + bgVariant: 'bg-amber-600', + }, + other: { + color: 'gray', + bgVariant: 'bg-gray-600', + }, +} + +export function GetNetworkColor(chain?: string, type: 'color' | 'bgVariant' = 'color') { + chain = chain?.toLocaleLowerCase() + if (chain === 'ethereum' || chain === 'mainnet' || chain === 'homestead') return NETWORK_COLORS.ethereum[type] + if (chain?.includes('arbitrum')) return NETWORK_COLORS.arbitrum[type] + if (chain?.includes('base')) return NETWORK_COLORS.base[type] + if (chain?.includes('linea')) return NETWORK_COLORS.linea[type] + if (chain?.includes('polygon') || chain?.includes('matic')) return NETWORK_COLORS.polygon[type] + if (chain?.includes('optimism') || chain?.startsWith('op')) return NETWORK_COLORS.optimism[type] + if (chain?.includes('scroll')) return NETWORK_COLORS.scroll[type] + + return NETWORK_COLORS.other[type] +} diff --git a/apps/wagmi-tx-manager-2/src/utils/server.ts b/apps/wagmi-tx-manager-2/src/utils/server.ts new file mode 100644 index 000000000..a1038d7eb --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/server.ts @@ -0,0 +1,23 @@ +import { withIronSessionApiRoute } from 'iron-session/next' +import { NextApiHandler } from 'next' +import { SiweMessage } from 'siwe' +import { SITE_NAME } from './site' + +declare module 'iron-session' { + interface IronSessionData { + nonce: string + siwe: SiweMessage + } +} + +export function withSessionRoute(handler: NextApiHandler) { + return withIronSessionApiRoute(handler, SERVER_SESSION_SETTINGS) +} + +export const SERVER_SESSION_SETTINGS = { + cookieName: SITE_NAME, + password: process.env.SESSION_PASSWORD ?? 'UPDATE_TO_complex_password_at_least_32_characters_long', + cookieOptions: { + secure: process.env.NODE_ENV === 'production', + }, +} diff --git a/apps/wagmi-tx-manager-2/src/utils/site.ts b/apps/wagmi-tx-manager-2/src/utils/site.ts new file mode 100644 index 000000000..c2d33c5e6 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/site.ts @@ -0,0 +1,9 @@ +export const SITE_EMOJI = '⚡' +export const SITE_NAME = 'Nexth' +export const SITE_INFO = 'Quickly ship Web3 Apps' +export const SITE_DESCRIPTION = + 'A Next.js + Ethereum starter kit with Viem, Wagmi, Web3Modal, SIWE, Tailwind, daisyUI and more!' +export const SITE_URL = 'https://nexth.vercel.app' + +export const SOCIAL_TWITTER = 'wslyvh' +export const SOCIAL_GITHUB = 'wslyvh/nexth' diff --git a/apps/wagmi-tx-manager-2/src/utils/types.ts b/apps/wagmi-tx-manager-2/src/utils/types.ts new file mode 100644 index 000000000..9157ac502 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/types.ts @@ -0,0 +1,15 @@ +export interface State { + loading: boolean + data?: T + error?: string +} + +export type NotificationType = 'info' | 'success' | 'warning' | 'error' + +export interface Notification { + type: NotificationType + message: string + timestamp: number + from?: string + href?: string +} diff --git a/apps/wagmi-tx-manager-2/src/utils/web3.ts b/apps/wagmi-tx-manager-2/src/utils/web3.ts new file mode 100644 index 000000000..7d7f3c42a --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/utils/web3.ts @@ -0,0 +1,25 @@ +import { defaultWagmiConfig } from '@web3modal/wagmi/react/config' +import { cookieStorage, createStorage } from 'wagmi' +import { SITE_INFO, SITE_NAME, SITE_URL } from './site' +import { ETH_CHAINS } from './network' + +export const WALLETCONNECT_PROJECT_ID = process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID ?? '' +if (!WALLETCONNECT_PROJECT_ID) { + console.warn('You need to provide a NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID env variable') +} + +export const WALLETCONNECT_CONFIG = defaultWagmiConfig({ + projectId: WALLETCONNECT_PROJECT_ID, + chains: ETH_CHAINS, + metadata: { + name: SITE_NAME, + description: SITE_INFO, + url: SITE_URL, + icons: [], + }, + ssr: true, + enableEmail: true, + storage: createStorage({ + storage: cookieStorage, + }), +}) diff --git a/apps/wagmi-tx-manager-2/src/wagmi.ts b/apps/wagmi-tx-manager-2/src/wagmi.ts new file mode 100644 index 000000000..1b81dc722 --- /dev/null +++ b/apps/wagmi-tx-manager-2/src/wagmi.ts @@ -0,0 +1,23 @@ +import { createConfig, http } from "wagmi"; +import { mainnet, sepolia } from "wagmi/chains"; +import { coinbaseWallet, injected, safe } from "wagmi/connectors"; + +declare module "wagmi" { + interface Register { + config: typeof config; + } +} + +export const config = createConfig({ + chains: [sepolia], + connectors: [ + injected(), + safe({ + debug: true, + }), + ], + transports: { + [mainnet.id]: http(process.env.NEXT_PUBLIC_RPC_URL_MAINNET), + [sepolia.id]: http(process.env.NEXT_PUBLIC_RPC_URL_SEPOLIA), + }, +}); diff --git a/apps/wagmi-tx-manager-2/tsconfig.json b/apps/wagmi-tx-manager-2/tsconfig.json new file mode 100644 index 000000000..e59724b28 --- /dev/null +++ b/apps/wagmi-tx-manager-2/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3998260aa..dfe83afdc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,7 +105,7 @@ importers: version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@rainbow-me/rainbowkit': specifier: 1.3.1 - version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4)) '@sentry/nextjs': specifier: ^7.91.0 version: 7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) @@ -117,10 +117,10 @@ importers: version: 8.0.0 '@wagmi/cli': specifier: 1.5.2 - version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4)) '@wagmi/core': specifier: ^1.4.12 - version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -141,7 +141,7 @@ importers: version: 8.2.3(react@18.3.1) drizzle-orm: specifier: ^0.29.3 - version: 0.29.3(@opentelemetry/api@1.8.0)(@types/react@18.3.1)(better-sqlite3@8.7.0)(kysely@0.24.2)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1) + version: 0.29.3(@opentelemetry/api@1.8.0)(@types/react@18.3.1)(better-sqlite3@10.1.0)(kysely@0.26.3)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1) fathom-client: specifier: ^3.6.0 version: 3.6.0 @@ -195,10 +195,10 @@ importers: version: 1.3.1 viem: specifier: ^1.20.2 - version: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) wagmi: specifier: ^1.4.12 - version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) zod: specifier: ^3.22.4 version: 3.22.4 @@ -256,7 +256,7 @@ importers: version: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) jest-environment-jsdom: specifier: 29.7.0 - version: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 29.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) npm-run-all: specifier: ^4.1.5 version: 4.1.5 @@ -314,7 +314,7 @@ importers: dependencies: '@ponder/core': specifier: 0.4.31 - version: 0.4.31(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 0.4.31(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(terser@5.31.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) devDependencies: '@types/node': specifier: ^18.19.3 @@ -333,7 +333,7 @@ importers: version: 5.4.5 viem: specifier: ^1.19.15 - version: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + version: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) apps/cow-amm-deployer: dependencies: @@ -640,7 +640,7 @@ importers: version: 3.13.3 '@wagmi/cli': specifier: 1.5.2 - version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(wagmi@2.9.8(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@wagmi/core': specifier: ^1.4.12 version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) @@ -679,7 +679,7 @@ importers: version: 4.6.2 next: specifier: ^13.5.6 - version: 13.5.6(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 13.5.6(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 @@ -779,7 +779,7 @@ importers: version: 3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(typescript@5.4.5) typescript: specifier: 5.4.5 version: 5.4.5 @@ -788,7 +788,7 @@ importers: dependencies: '@ponder/core': specifier: 0.1.6 - version: 0.1.6(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 0.1.6(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(terser@5.31.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) devDependencies: '@types/node': specifier: ^18.11.18 @@ -807,7 +807,7 @@ importers: version: 5.4.5 viem: specifier: ^1.2.6 - version: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + version: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) apps/pool-metadata/contracts: devDependencies: @@ -831,7 +831,7 @@ importers: version: link:../../../packages/utils '@graphprotocol/graph-cli': specifier: 0.64.1 - version: 0.64.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 0.64.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10) '@graphprotocol/graph-ts': specifier: 0.32.0 version: 0.32.0 @@ -852,7 +852,138 @@ importers: version: 0.6.0 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) + version: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) + + apps/wagmi-tx-manager: + dependencies: + '@heroicons/react': + specifier: ^2.1.3 + version: 2.1.3(react@18.3.1) + '@tanstack/react-query': + specifier: 5.0.5 + version: 5.0.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@types/react-toastify': + specifier: ^4.1.0 + version: 4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + dayjs: + specifier: ^1.11.11 + version: 1.11.11 + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-toastify: + specifier: ^10.0.5 + version: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + viem: + specifier: latest + version: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + wagmi: + specifier: latest + version: 2.9.8(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + devDependencies: + '@biomejs/biome': + specifier: ^1.1.2 + version: 1.8.0 + '@types/react': + specifier: ^18.2.23 + version: 18.3.3 + '@types/react-dom': + specifier: ^18.2.8 + version: 18.3.0 + '@vitejs/plugin-react': + specifier: ^4.1.0 + version: 4.3.0(vite@4.5.3(@types/node@20.14.2)(terser@5.31.0)) + '@wagmi/cli': + specifier: latest + version: 2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10) + buffer: + specifier: ^6.0.3 + version: 6.0.3 + typescript: + specifier: ^5.2.2 + version: 5.4.5 + vite: + specifier: ^4.4.9 + version: 4.5.3(@types/node@20.14.2)(terser@5.31.0) + + apps/wagmi-tx-manager-2: + dependencies: + '@heroicons/react': + specifier: ^2.1.3 + version: 2.1.3(react@18.3.1) + '@safe-global/safe-apps-sdk': + specifier: ^9.0.0 + version: 9.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + '@tanstack/react-query': + specifier: 5.40.1 + version: 5.40.1(react@18.3.1) + '@types/react-toastify': + specifier: ^4.1.0 + version: 4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@wagmi/core': + specifier: ^1.4.12 + version: 1.4.12(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + abitype: + specifier: ^1.0.2 + version: 1.0.2(typescript@5.4.5)(zod@3.23.8) + dayjs: + specifier: ^1.11.11 + version: 1.11.11 + next: + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.6(supports-color@9.4.0))(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: + specifier: ^18.3.1 + version: 18.3.1 + react-dom: + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) + react-toastify: + specifier: ^10.0.5 + version: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + viem: + specifier: latest + version: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + wagmi: + specifier: latest + version: 2.9.8(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + devDependencies: + '@types/node': + specifier: ^20.14.2 + version: 20.14.2 + '@types/react': + specifier: ^18.3.3 + version: 18.3.3 + '@types/react-dom': + specifier: ^18.3.0 + version: 18.3.0 + '@wagmi/cli': + specifier: latest + version: 2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4) + bufferutil: + specifier: ^4.0.8 + version: 4.0.8 + encoding: + specifier: ^0.1.13 + version: 0.1.13 + lokijs: + specifier: ^1.5.12 + version: 1.5.12 + pino-pretty: + specifier: ^11.1.0 + version: 11.1.0 + supports-color: + specifier: ^9.4.0 + version: 9.4.0 + typescript: + specifier: ^5.4.5 + version: 5.4.5 + utf-8-validate: + specifier: ^6.0.4 + version: 6.0.4 packages/balancer-apr: dependencies: @@ -867,7 +998,7 @@ importers: version: 16.3.1 drizzle-orm: specifier: ^0.30.10 - version: 0.30.10(@opentelemetry/api@1.8.0)(@types/react@18.2.45)(better-sqlite3@8.7.0)(kysely@0.24.2)(pg@8.11.3)(postgres@3.4.4)(react@18.2.0) + version: 0.30.10(@opentelemetry/api@1.8.0)(@types/react@18.2.45)(better-sqlite3@10.1.0)(kysely@0.26.3)(pg@8.11.3)(postgres@3.4.4)(react@18.2.0) graphql-request: specifier: '>=6' version: 6.1.0(encoding@0.1.13)(graphql@16.8.1) @@ -894,7 +1025,7 @@ importers: version: 1.3.3 viem: specifier: ^2.10.9 - version: 2.10.9(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + version: 2.10.9(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) devDependencies: '@bleu/tsconfig': specifier: workspace:* @@ -958,7 +1089,7 @@ importers: version: 4.2.0(eslint@8.56.0) eslint-plugin-graphql: specifier: latest - version: 4.0.0(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 4.0.0(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) eslint-plugin-import: specifier: ^2.29.1 version: 2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) @@ -973,7 +1104,7 @@ importers: version: 10.0.0(eslint@8.56.0) eslint-plugin-tailwindcss: specifier: ^3.13.1 - version: 3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))) + version: 3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) prettier: specifier: ^3.1.1 version: 3.1.1 @@ -1004,7 +1135,7 @@ importers: version: link:../utils '@graphql-codegen/cli': specifier: 5.0.0 - version: 5.0.0(@parcel/watcher@2.3.0)(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 5.0.0(@parcel/watcher@2.3.0)(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4) '@graphql-codegen/client-preset': specifier: ^4.2.6 version: 4.2.6(encoding@0.1.13)(graphql@16.8.1) @@ -1077,7 +1208,7 @@ importers: version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5) tsuml2: specifier: ^0.14.0 version: 0.14.0 @@ -1101,7 +1232,7 @@ importers: version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) ts-jest: specifier: ^29.1.2 - version: 29.1.2(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.2(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5) packages: @@ -1162,14 +1293,26 @@ packages: resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.24.6': + resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.23.5': resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.24.6': + resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==} + engines: {node: '>=6.9.0'} + '@babel/core@7.23.6': resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==} engines: {node: '>=6.9.0'} + '@babel/core@7.24.6': + resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.2.0': resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==} @@ -1177,92 +1320,207 @@ packages: resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.24.6': + resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.24.6': + resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6': + resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==} + engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.23.6': resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.24.6': + resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.23.6': resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.24.6': + resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.24.6': + resolution: {integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.2': + resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-environment-visitor@7.22.20': resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} + '@babel/helper-environment-visitor@7.24.6': + resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==} + engines: {node: '>=6.9.0'} + '@babel/helper-function-name@7.23.0': resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} + '@babel/helper-function-name@7.24.6': + resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==} + engines: {node: '>=6.9.0'} + '@babel/helper-hoist-variables@7.22.5': resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} + '@babel/helper-hoist-variables@7.24.6': + resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==} + engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.23.0': resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.24.6': + resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.22.15': resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.6': + resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.24.6': + resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} + '@babel/helper-optimise-call-expression@7.24.6': + resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==} + engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.22.5': resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.24.6': + resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.24.6': + resolution: {integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.22.20': resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.24.6': + resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-simple-access@7.22.5': resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.24.6': + resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.24.6': + resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.22.6': resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.24.6': + resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.23.4': resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.24.6': + resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.6': + resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.24.6': + resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.24.6': + resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.23.6': resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.24.6': + resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.23.4': resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} engines: {node: '>=6.9.0'} + '@babel/highlight@7.24.6': + resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==} + engines: {node: '>=6.9.0'} + '@babel/parser@7.23.6': resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} engines: {node: '>=6.0.0'} @@ -1273,6 +1531,37 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6': + resolution: {integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6': + resolution: {integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6': + resolution: {integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6': + resolution: {integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-class-properties@7.18.6': resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -1280,6 +1569,33 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-default-from@7.24.6': + resolution: {integrity: sha512-qPPDbYs9j5IArMFqYi85QxatHURSzRyskKpIbjrVoVglDuGdhu1s7UTCmXvP/qR2aHa3EdJ8X3iZvQAHjmdHUw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-object-rest-spread@7.20.7': resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -1287,6 +1603,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -1302,18 +1638,58 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-default-from@7.24.6': + resolution: {integrity: sha512-Nzl7kZ4tjOM2LJpejBMPwZs7OJfc26++2HsMQuSrw6gxpqXGtZZ3Rj4Zt4Qm7vulMZL2gHIGGc2stnlQnHQCqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-flow@7.23.3': resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-flow@7.24.6': + resolution: {integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.23.3': resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.24.6': + resolution: {integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.24.6': + resolution: {integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -1330,6 +1706,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.24.6': + resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -1360,6 +1742,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-top-level-await@7.14.5': resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -1372,800 +1760,1236 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.23.3': - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} + '@babel/plugin-syntax-typescript@7.24.6': + resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.23.3': - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 - '@babel/plugin-transform-block-scoping@7.23.4': - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} + '@babel/plugin-transform-arrow-functions@7.23.3': + resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-classes@7.23.5': - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} + '@babel/plugin-transform-arrow-functions@7.24.6': + resolution: {integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.23.3': - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} + '@babel/plugin-transform-async-generator-functions@7.24.6': + resolution: {integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.23.3': - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + '@babel/plugin-transform-async-to-generator@7.24.6': + resolution: {integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-flow-strip-types@7.23.3': - resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} + '@babel/plugin-transform-block-scoped-functions@7.23.3': + resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.23.6': - resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} + '@babel/plugin-transform-block-scoped-functions@7.24.6': + resolution: {integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.23.3': - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + '@babel/plugin-transform-block-scoping@7.23.4': + resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.23.3': - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + '@babel/plugin-transform-block-scoping@7.24.6': + resolution: {integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.23.3': - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + '@babel/plugin-transform-class-properties@7.24.6': + resolution: {integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.23.3': - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + '@babel/plugin-transform-class-static-block@7.24.6': + resolution: {integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.12.0 - '@babel/plugin-transform-object-super@7.23.3': - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} + '@babel/plugin-transform-classes@7.23.5': + resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-parameters@7.23.3': - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} + '@babel/plugin-transform-classes@7.24.6': + resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.23.3': - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} + '@babel/plugin-transform-computed-properties@7.23.3': + resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-display-name@7.23.3': - resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} + '@babel/plugin-transform-computed-properties@7.24.6': + resolution: {integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx@7.23.4': - resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} - engines: {node: '>=6.9.0'} + '@babel/plugin-transform-destructuring@7.23.3': + resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.23.3': - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} + '@babel/plugin-transform-destructuring@7.24.6': + resolution: {integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.23.3': - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} + '@babel/plugin-transform-dotall-regex@7.24.6': + resolution: {integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.23.3': - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} + '@babel/plugin-transform-duplicate-keys@7.24.6': + resolution: {integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.23.6': - resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==} + '@babel/plugin-transform-dynamic-import@7.24.6': + resolution: {integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/runtime@7.24.0': - resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} + '@babel/plugin-transform-exponentiation-operator@7.24.6': + resolution: {integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/runtime@7.24.5': - resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} + '@babel/plugin-transform-export-namespace-from@7.24.6': + resolution: {integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/template@7.22.15': - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + '@babel/plugin-transform-flow-strip-types@7.23.3': + resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/traverse@7.23.6': - resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==} + '@babel/plugin-transform-flow-strip-types@7.24.6': + resolution: {integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@babel/types@7.23.6': - resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + '@babel/plugin-transform-for-of@7.23.6': + resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} engines: {node: '>=6.9.0'} - - '@balancer-labs/sor@4.1.1-beta.16': - resolution: {integrity: sha512-EKS7J78r5jKDsGqOs2gzIyhOqYyDAmrwp/nY2bSsfymNXSTr7g3YS418UJl1hSQMBEeN4N2MnH0neM1oJxHHoQ==} peerDependencies: - '@ethersproject/abi': ^5.4.1 - '@ethersproject/address': ^5.4.0 - '@ethersproject/bignumber': ^5.4.2 - '@ethersproject/constants': ^5.4.0 - '@ethersproject/contracts': ^5.4.1 - '@ethersproject/providers': ^5.4.4 + '@babel/core': ^7.0.0-0 - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@babel/plugin-transform-for-of@7.24.6': + resolution: {integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@bleu/ui@0.1.99': - resolution: {integrity: sha512-14Oao0RVFdV7QBXYMrZ3tbzug6Ycbe4aPqwwrNMJVtFW+yoq0AC1vyyJ93FKkLYR1pbkLVqB82kWrp+Nt3OELw==, tarball: https://npm.pkg.github.com/download/@bleu/ui/0.1.99/049f1b54e84f83786a4e6ce16be54b1a0b5cddaa} - engines: {node: '>=18.0.0'} + '@babel/plugin-transform-function-name@7.23.3': + resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + engines: {node: '>=6.9.0'} peerDependencies: - react: '>=18' - react-dom: '>=18' - react-hook-form: ^7.50.1 - react-router-dom: ^6.21.0 + '@babel/core': ^7.0.0-0 - '@chainsafe/is-ip@2.0.2': - resolution: {integrity: sha512-ndGqEMG1W5WkGagaqOZHpPU172AGdxr+LD15sv3WIUvT5oCFUrG1Y0CW/v2Egwj4JXEvSibaIIIqImsm98y1nA==} + '@babel/plugin-transform-function-name@7.24.6': + resolution: {integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@chainsafe/netmask@2.0.0': - resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==} + '@babel/plugin-transform-json-strings@7.24.6': + resolution: {integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@choojs/findup@0.2.1': - resolution: {integrity: sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==} - hasBin: true + '@babel/plugin-transform-literals@7.23.3': + resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@coinbase/wallet-sdk@3.7.2': - resolution: {integrity: sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ==} - engines: {node: '>= 10.0.0'} + '@babel/plugin-transform-literals@7.24.6': + resolution: {integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@commander-js/extra-typings@12.1.0': - resolution: {integrity: sha512-wf/lwQvWAA0goIghcb91dQYpkLBcyhOhQNqG/VgWhnKzgt+UOMvra7EX/2fv70arm5RW+PUHoQHHDa6/p77Eqg==} + '@babel/plugin-transform-logical-assignment-operators@7.24.6': + resolution: {integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==} + engines: {node: '>=6.9.0'} peerDependencies: - commander: ~12.1.0 + '@babel/core': ^7.0.0-0 - '@cspotcode/source-map-support@0.8.1': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + '@babel/plugin-transform-member-expression-literals@7.23.3': + resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@drizzle-team/studio@0.0.37': - resolution: {integrity: sha512-LZyAPGJBX43jsrVZh7+w1Jig/BC6PJx63ReHUYK+GRQYNY9UJNlPXmn1uC/LMRX+A7JwYM4Sr4Fg/hnJSqlfgA==} + '@babel/plugin-transform-member-expression-literals@7.24.6': + resolution: {integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@emnapi/runtime@1.2.0': - resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} + '@babel/plugin-transform-modules-amd@7.24.6': + resolution: {integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@emotion/hash@0.8.0': - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + '@babel/plugin-transform-modules-commonjs@7.23.3': + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2': - resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} - engines: {node: '>=10.0.0'} + '@babel/plugin-transform-modules-commonjs@7.24.6': + resolution: {integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==} + engines: {node: '>=6.9.0'} peerDependencies: - cosmiconfig: '>=6' + '@babel/core': ^7.0.0-0 - '@envelop/core@5.0.1': - resolution: {integrity: sha512-wxA8EyE1fPnlbP0nC/SFI7uU8wSNf4YjxZhAPu0P63QbgIvqHtHsH4L3/u+rsTruzhk3OvNRgQyLsMfaR9uzAQ==} - engines: {node: '>=18.0.0'} + '@babel/plugin-transform-modules-systemjs@7.24.6': + resolution: {integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@envelop/types@5.0.0': - resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} - engines: {node: '>=18.0.0'} + '@babel/plugin-transform-modules-umd@7.24.6': + resolution: {integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild-kit/core-utils@3.3.2': - resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} + '@babel/plugin-transform-named-capturing-groups-regex@7.24.6': + resolution: {integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 - '@esbuild-kit/esm-loader@2.6.5': - resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} + '@babel/plugin-transform-new-target@7.24.6': + resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/aix-ppc64@0.19.10': - resolution: {integrity: sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] + '@babel/plugin-transform-nullish-coalescing-operator@7.24.6': + resolution: {integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/aix-ppc64@0.20.2': - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] + '@babel/plugin-transform-numeric-separator@7.24.6': + resolution: {integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm64@0.16.17': - resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] + '@babel/plugin-transform-object-rest-spread@7.24.6': + resolution: {integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm64@0.18.20': - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] + '@babel/plugin-transform-object-super@7.23.3': + resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm64@0.19.10': - resolution: {integrity: sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] + '@babel/plugin-transform-object-super@7.24.6': + resolution: {integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm64@0.20.2': - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] + '@babel/plugin-transform-optional-catch-binding@7.24.6': + resolution: {integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm@0.16.17': - resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] + '@babel/plugin-transform-optional-chaining@7.24.6': + resolution: {integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm@0.18.20': - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] + '@babel/plugin-transform-parameters@7.23.3': + resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm@0.19.10': - resolution: {integrity: sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] + '@babel/plugin-transform-parameters@7.24.6': + resolution: {integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-arm@0.20.2': - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] + '@babel/plugin-transform-private-methods@7.24.6': + resolution: {integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-x64@0.16.17': - resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] + '@babel/plugin-transform-private-property-in-object@7.24.6': + resolution: {integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-x64@0.18.20': - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] + '@babel/plugin-transform-property-literals@7.23.3': + resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-x64@0.19.10': - resolution: {integrity: sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] + '@babel/plugin-transform-property-literals@7.24.6': + resolution: {integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/android-x64@0.20.2': - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] + '@babel/plugin-transform-react-display-name@7.23.3': + resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-arm64@0.16.17': - resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] + '@babel/plugin-transform-react-jsx-self@7.24.6': + resolution: {integrity: sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-arm64@0.18.20': - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] + '@babel/plugin-transform-react-jsx-source@7.24.6': + resolution: {integrity: sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-arm64@0.19.10': - resolution: {integrity: sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] + '@babel/plugin-transform-react-jsx@7.23.4': + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-arm64@0.20.2': - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] + '@babel/plugin-transform-regenerator@7.24.6': + resolution: {integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-x64@0.16.17': - resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] + '@babel/plugin-transform-reserved-words@7.24.6': + resolution: {integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-x64@0.18.20': - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] + '@babel/plugin-transform-runtime@7.24.6': + resolution: {integrity: sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-x64@0.19.10': - resolution: {integrity: sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] + '@babel/plugin-transform-shorthand-properties@7.23.3': + resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/darwin-x64@0.20.2': - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] + '@babel/plugin-transform-shorthand-properties@7.24.6': + resolution: {integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-arm64@0.16.17': - resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] + '@babel/plugin-transform-spread@7.23.3': + resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-arm64@0.18.20': - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] + '@babel/plugin-transform-spread@7.24.6': + resolution: {integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-arm64@0.19.10': - resolution: {integrity: sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] + '@babel/plugin-transform-sticky-regex@7.24.6': + resolution: {integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-arm64@0.20.2': - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] + '@babel/plugin-transform-template-literals@7.23.3': + resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-x64@0.16.17': - resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] + '@babel/plugin-transform-template-literals@7.24.6': + resolution: {integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-x64@0.18.20': - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] + '@babel/plugin-transform-typeof-symbol@7.24.6': + resolution: {integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-x64@0.19.10': - resolution: {integrity: sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] + '@babel/plugin-transform-typescript@7.24.6': + resolution: {integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/freebsd-x64@0.20.2': - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] + '@babel/plugin-transform-unicode-escapes@7.24.6': + resolution: {integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm64@0.16.17': - resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] + '@babel/plugin-transform-unicode-property-regex@7.24.6': + resolution: {integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm64@0.18.20': - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] + '@babel/plugin-transform-unicode-regex@7.24.6': + resolution: {integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm64@0.19.10': - resolution: {integrity: sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] + '@babel/plugin-transform-unicode-sets-regex@7.24.6': + resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 - '@esbuild/linux-arm64@0.20.2': - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] + '@babel/preset-env@7.24.6': + resolution: {integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm@0.16.17': - resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] + '@babel/preset-flow@7.24.6': + resolution: {integrity: sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm@0.18.20': - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - '@esbuild/linux-arm@0.19.10': - resolution: {integrity: sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] + '@babel/preset-typescript@7.24.6': + resolution: {integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-arm@0.20.2': - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] + '@babel/register@7.24.6': + resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - '@esbuild/linux-ia32@0.16.17': - resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@esbuild/linux-ia32@0.18.20': - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] + '@babel/runtime@7.23.6': + resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-ia32@0.19.10': - resolution: {integrity: sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] + '@babel/runtime@7.24.0': + resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-ia32@0.20.2': - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] + '@babel/runtime@7.24.5': + resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-loong64@0.16.17': - resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] + '@babel/template@7.22.15': + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-loong64@0.18.20': - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] + '@babel/template@7.24.6': + resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-loong64@0.19.10': - resolution: {integrity: sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] + '@babel/traverse@7.23.6': + resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-loong64@0.20.2': - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] + '@babel/traverse@7.24.6': + resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-mips64el@0.16.17': - resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] + '@babel/types@7.23.6': + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + engines: {node: '>=6.9.0'} - '@esbuild/linux-mips64el@0.18.20': - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} - cpu: [mips64el] + '@babel/types@7.24.6': + resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==} + engines: {node: '>=6.9.0'} + + '@balancer-labs/sor@4.1.1-beta.16': + resolution: {integrity: sha512-EKS7J78r5jKDsGqOs2gzIyhOqYyDAmrwp/nY2bSsfymNXSTr7g3YS418UJl1hSQMBEeN4N2MnH0neM1oJxHHoQ==} + peerDependencies: + '@ethersproject/abi': ^5.4.1 + '@ethersproject/address': ^5.4.0 + '@ethersproject/bignumber': ^5.4.2 + '@ethersproject/constants': ^5.4.0 + '@ethersproject/contracts': ^5.4.1 + '@ethersproject/providers': ^5.4.4 + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@biomejs/biome@1.8.0': + resolution: {integrity: sha512-34xcE2z8GWrIz1sCFEmlHT/+4d+SN7YOqqvzlAKXKvaWPRJ2/NUwxPbRsP01P9QODkQ5bvGvc9rpBihmP+7RJQ==} + engines: {node: '>=14.21.3'} + hasBin: true + + '@biomejs/cli-darwin-arm64@1.8.0': + resolution: {integrity: sha512-dBAYzfIJ1JmWigKlWourT3sJ3I60LZPjqNwwlsyFjiv5AV7vPeWlHVVIImV2BpINwNjZQhpXnwDfVnGS4vr7AA==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [darwin] + + '@biomejs/cli-darwin-x64@1.8.0': + resolution: {integrity: sha512-ZTTSD0bP0nn9UpRDGQrQNTILcYSj+IkxTYr3CAV64DWBDtQBomlk2oVKWzDaA1LOhpAsTh0giLCbPJaVk2jfMQ==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [darwin] + + '@biomejs/cli-linux-arm64-musl@1.8.0': + resolution: {integrity: sha512-+ee/pZWsvhDv6eRI00krRNSgAg8DKSxzOv3LUsCjto6N1VzqatTASeQv2HRfG1nitf79rRKM75LkMJbqEfiKww==} + engines: {node: '>=14.21.3'} + cpu: [arm64] os: [linux] - '@esbuild/linux-mips64el@0.19.10': - resolution: {integrity: sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==} - engines: {node: '>=12'} - cpu: [mips64el] + '@biomejs/cli-linux-arm64@1.8.0': + resolution: {integrity: sha512-cx725jTlJS6dskvJJwwCQaaMRBKE2Qss7ukzmx27Rn/DXRxz6tnnBix4FUGPf1uZfwrERkiJlbWM05JWzpvvXg==} + engines: {node: '>=14.21.3'} + cpu: [arm64] os: [linux] - '@esbuild/linux-mips64el@0.20.2': - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} - engines: {node: '>=12'} - cpu: [mips64el] + '@biomejs/cli-linux-x64-musl@1.8.0': + resolution: {integrity: sha512-VPA4ocrAOak50VYl8gOAVnjuFFDpIUolShntc/aWM0pZfSIMbRucxnrfUfp44EVwayxjK6ruJTR5xEWj93WvDA==} + engines: {node: '>=14.21.3'} + cpu: [x64] os: [linux] - '@esbuild/linux-ppc64@0.16.17': - resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} - engines: {node: '>=12'} - cpu: [ppc64] + '@biomejs/cli-linux-x64@1.8.0': + resolution: {integrity: sha512-cmgmhlD4QUxMhL1VdaNqnB81xBHb3R7huVNyYnPYzP+AykZ7XqJbPd1KcWAszNjUk2AHdx0aLKEBwCOWemxb2g==} + engines: {node: '>=14.21.3'} + cpu: [x64] os: [linux] - '@esbuild/linux-ppc64@0.18.20': - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + '@biomejs/cli-win32-arm64@1.8.0': + resolution: {integrity: sha512-J31spvlh39FfRHQacYXxJX9PvTCH/a8+2Jx9D1lxw+LSF0JybqZcw/4JrlFUWUl4kF3yv8AuYUK0sENScc3g9w==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [win32] + + '@biomejs/cli-win32-x64@1.8.0': + resolution: {integrity: sha512-uPHHvu76JC1zYe9zZDcOU9PAg+1MZmPuNgWkb5jljaDeATvzLFPB+0nuJTilf603LXL+E8IdPQAO61Wy2VuEJA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [win32] + + '@bleu/ui@0.1.99': + resolution: {integrity: sha512-14Oao0RVFdV7QBXYMrZ3tbzug6Ycbe4aPqwwrNMJVtFW+yoq0AC1vyyJ93FKkLYR1pbkLVqB82kWrp+Nt3OELw==, tarball: https://npm.pkg.github.com/download/@bleu/ui/0.1.99/049f1b54e84f83786a4e6ce16be54b1a0b5cddaa} + engines: {node: '>=18.0.0'} + peerDependencies: + react: '>=18' + react-dom: '>=18' + react-hook-form: ^7.50.1 + react-router-dom: ^6.21.0 + + '@chainsafe/is-ip@2.0.2': + resolution: {integrity: sha512-ndGqEMG1W5WkGagaqOZHpPU172AGdxr+LD15sv3WIUvT5oCFUrG1Y0CW/v2Egwj4JXEvSibaIIIqImsm98y1nA==} + + '@chainsafe/netmask@2.0.0': + resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==} + + '@choojs/findup@0.2.1': + resolution: {integrity: sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==} + hasBin: true + + '@coinbase/wallet-sdk@3.7.2': + resolution: {integrity: sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ==} + engines: {node: '>= 10.0.0'} + + '@coinbase/wallet-sdk@3.9.3': + resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} + + '@coinbase/wallet-sdk@4.0.2': + resolution: {integrity: sha512-WMUeFbtS0rn8zavjAmNhFWq1r3TV7E5KuSij1Sar0/XuOC+nhj96uqSlIApAHdhuScoKZBq39VYsAQCHzOC6/w==} + + '@commander-js/extra-typings@12.1.0': + resolution: {integrity: sha512-wf/lwQvWAA0goIghcb91dQYpkLBcyhOhQNqG/VgWhnKzgt+UOMvra7EX/2fv70arm5RW+PUHoQHHDa6/p77Eqg==} + peerDependencies: + commander: ~12.1.0 + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.19.10': - resolution: {integrity: sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==} + '@drizzle-team/studio@0.0.37': + resolution: {integrity: sha512-LZyAPGJBX43jsrVZh7+w1Jig/BC6PJx63ReHUYK+GRQYNY9UJNlPXmn1uC/LMRX+A7JwYM4Sr4Fg/hnJSqlfgA==} + + '@emnapi/runtime@1.2.0': + resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} + + '@emotion/hash@0.8.0': + resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + + '@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2': + resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} + engines: {node: '>=10.0.0'} + peerDependencies: + cosmiconfig: '>=6' + + '@envelop/core@5.0.1': + resolution: {integrity: sha512-wxA8EyE1fPnlbP0nC/SFI7uU8wSNf4YjxZhAPu0P63QbgIvqHtHsH4L3/u+rsTruzhk3OvNRgQyLsMfaR9uzAQ==} + engines: {node: '>=18.0.0'} + + '@envelop/types@5.0.0': + resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} + engines: {node: '>=18.0.0'} + + '@esbuild-kit/core-utils@3.3.2': + resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} + + '@esbuild-kit/esm-loader@2.6.5': + resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} + + '@esbuild/aix-ppc64@0.19.10': + resolution: {integrity: sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==} engines: {node: '>=12'} cpu: [ppc64] - os: [linux] + os: [aix] - '@esbuild/linux-ppc64@0.20.2': - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} + '@esbuild/aix-ppc64@0.20.2': + resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} engines: {node: '>=12'} cpu: [ppc64] - os: [linux] + os: [aix] - '@esbuild/linux-riscv64@0.16.17': - resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} + '@esbuild/android-arm64@0.16.17': + resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] + cpu: [arm64] + os: [android] - '@esbuild/linux-riscv64@0.18.20': - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] + cpu: [arm64] + os: [android] - '@esbuild/linux-riscv64@0.19.10': - resolution: {integrity: sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==} + '@esbuild/android-arm64@0.19.10': + resolution: {integrity: sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==} engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] + cpu: [arm64] + os: [android] - '@esbuild/linux-riscv64@0.20.2': - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} + '@esbuild/android-arm64@0.20.2': + resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] + cpu: [arm64] + os: [android] - '@esbuild/linux-s390x@0.16.17': - resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} + '@esbuild/android-arm@0.16.17': + resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} engines: {node: '>=12'} - cpu: [s390x] - os: [linux] + cpu: [arm] + os: [android] - '@esbuild/linux-s390x@0.18.20': - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} - cpu: [s390x] - os: [linux] + cpu: [arm] + os: [android] - '@esbuild/linux-s390x@0.19.10': - resolution: {integrity: sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==} + '@esbuild/android-arm@0.19.10': + resolution: {integrity: sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==} engines: {node: '>=12'} - cpu: [s390x] - os: [linux] + cpu: [arm] + os: [android] - '@esbuild/linux-s390x@0.20.2': - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} + '@esbuild/android-arm@0.20.2': + resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} engines: {node: '>=12'} - cpu: [s390x] - os: [linux] + cpu: [arm] + os: [android] - '@esbuild/linux-x64@0.16.17': - resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} + '@esbuild/android-x64@0.16.17': + resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} engines: {node: '>=12'} cpu: [x64] - os: [linux] + os: [android] - '@esbuild/linux-x64@0.18.20': - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} cpu: [x64] - os: [linux] + os: [android] - '@esbuild/linux-x64@0.19.10': - resolution: {integrity: sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==} + '@esbuild/android-x64@0.19.10': + resolution: {integrity: sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==} engines: {node: '>=12'} cpu: [x64] - os: [linux] + os: [android] - '@esbuild/linux-x64@0.20.2': - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} + '@esbuild/android-x64@0.20.2': + resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} engines: {node: '>=12'} cpu: [x64] - os: [linux] + os: [android] - '@esbuild/netbsd-x64@0.16.17': - resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} + '@esbuild/darwin-arm64@0.16.17': + resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] + cpu: [arm64] + os: [darwin] - '@esbuild/netbsd-x64@0.18.20': - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] + cpu: [arm64] + os: [darwin] - '@esbuild/netbsd-x64@0.19.10': - resolution: {integrity: sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] + '@esbuild/darwin-arm64@0.19.10': + resolution: {integrity: sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] - '@esbuild/netbsd-x64@0.20.2': - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} + '@esbuild/darwin-arm64@0.20.2': + resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] + cpu: [arm64] + os: [darwin] - '@esbuild/openbsd-x64@0.16.17': - resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} + '@esbuild/darwin-x64@0.16.17': + resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} engines: {node: '>=12'} cpu: [x64] - os: [openbsd] + os: [darwin] - '@esbuild/openbsd-x64@0.18.20': - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} cpu: [x64] - os: [openbsd] + os: [darwin] - '@esbuild/openbsd-x64@0.19.10': - resolution: {integrity: sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==} + '@esbuild/darwin-x64@0.19.10': + resolution: {integrity: sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==} engines: {node: '>=12'} cpu: [x64] - os: [openbsd] + os: [darwin] - '@esbuild/openbsd-x64@0.20.2': - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} + '@esbuild/darwin-x64@0.20.2': + resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} engines: {node: '>=12'} cpu: [x64] - os: [openbsd] + os: [darwin] - '@esbuild/sunos-x64@0.16.17': - resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} + '@esbuild/freebsd-arm64@0.16.17': + resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.19.10': + resolution: {integrity: sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.20.2': + resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.16.17': + resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} engines: {node: '>=12'} cpu: [x64] - os: [sunos] + os: [freebsd] - '@esbuild/sunos-x64@0.18.20': - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} cpu: [x64] - os: [sunos] + os: [freebsd] - '@esbuild/sunos-x64@0.19.10': - resolution: {integrity: sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==} + '@esbuild/freebsd-x64@0.19.10': + resolution: {integrity: sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==} engines: {node: '>=12'} cpu: [x64] - os: [sunos] + os: [freebsd] - '@esbuild/sunos-x64@0.20.2': - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} + '@esbuild/freebsd-x64@0.20.2': + resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} engines: {node: '>=12'} cpu: [x64] - os: [sunos] + os: [freebsd] - '@esbuild/win32-arm64@0.16.17': - resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} + '@esbuild/linux-arm64@0.16.17': + resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} engines: {node: '>=12'} cpu: [arm64] - os: [win32] + os: [linux] - '@esbuild/win32-arm64@0.18.20': - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} cpu: [arm64] - os: [win32] + os: [linux] - '@esbuild/win32-arm64@0.19.10': - resolution: {integrity: sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==} + '@esbuild/linux-arm64@0.19.10': + resolution: {integrity: sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==} engines: {node: '>=12'} cpu: [arm64] - os: [win32] + os: [linux] - '@esbuild/win32-arm64@0.20.2': - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} + '@esbuild/linux-arm64@0.20.2': + resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} engines: {node: '>=12'} cpu: [arm64] - os: [win32] + os: [linux] - '@esbuild/win32-ia32@0.16.17': - resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} + '@esbuild/linux-arm@0.16.17': + resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.19.10': + resolution: {integrity: sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.20.2': + resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.16.17': + resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} engines: {node: '>=12'} cpu: [ia32] - os: [win32] + os: [linux] - '@esbuild/win32-ia32@0.18.20': - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} cpu: [ia32] - os: [win32] + os: [linux] - '@esbuild/win32-ia32@0.19.10': - resolution: {integrity: sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==} + '@esbuild/linux-ia32@0.19.10': + resolution: {integrity: sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==} engines: {node: '>=12'} cpu: [ia32] - os: [win32] + os: [linux] - '@esbuild/win32-ia32@0.20.2': - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} + '@esbuild/linux-ia32@0.20.2': + resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} engines: {node: '>=12'} cpu: [ia32] - os: [win32] + os: [linux] - '@esbuild/win32-x64@0.16.17': - resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} + '@esbuild/linux-loong64@0.16.17': + resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} - cpu: [x64] - os: [win32] + cpu: [loong64] + os: [linux] - '@esbuild/win32-x64@0.18.20': - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} engines: {node: '>=12'} - cpu: [x64] - os: [win32] + cpu: [loong64] + os: [linux] - '@esbuild/win32-x64@0.19.10': - resolution: {integrity: sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==} + '@esbuild/linux-loong64@0.19.10': + resolution: {integrity: sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==} engines: {node: '>=12'} - cpu: [x64] - os: [win32] + cpu: [loong64] + os: [linux] - '@esbuild/win32-x64@0.20.2': - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} + '@esbuild/linux-loong64@0.20.2': + resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} engines: {node: '>=12'} - cpu: [x64] - os: [win32] + cpu: [loong64] + os: [linux] - '@escape.tech/graphql-armor-max-aliases@2.4.0': - resolution: {integrity: sha512-d4V9EgtPRG9HIoPHuanFNLHj1ENB1YkZi9FbiBiH88x5VahCjVpMXDgKQGkG6RUTOODU4XKp0/ZgaOq0pX5oEA==} - engines: {node: '>=18.0.0'} + '@esbuild/linux-mips64el@0.16.17': + resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] - '@escape.tech/graphql-armor-max-depth@2.3.0': - resolution: {integrity: sha512-EgqJU2yOaKaFeNDqMn18fIOI6UNjboWV950G9I39ebXyxsQmIaAx0Hs9hJoCBEHdLY9SCKWsEZFipHXqvaphdw==} - engines: {node: '>=18.0.0'} + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] - '@escape.tech/graphql-armor-max-tokens@2.4.0': - resolution: {integrity: sha512-apKQBcYc6vsrITR+uKGXTC9yWV4zUEP4usb5zO0vebYT6e4KLcS2gwIQOsDLCnD5IyU5sUOzHBWmkFyBPz5keQ==} - engines: {node: '>=18.0.0'} + '@esbuild/linux-mips64el@0.19.10': + resolution: {integrity: sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] - '@escape.tech/graphql-armor-types@0.6.0': - resolution: {integrity: sha512-Y3X6JgkB1N1MMaHNXaE2IeJWIs6wT4XcPvXM8PRWmT2DblZfY4NYiV1mh0GTInKdlnrEr5hquOR9XV+M3Da43w==} + '@esbuild/linux-mips64el@0.20.2': + resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] - '@eslint-community/eslint-utils@4.4.0': - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@esbuild/linux-ppc64@0.16.17': + resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] - '@eslint-community/regexpp@4.10.0': - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@esbuild/linux-ppc64@0.19.10': + resolution: {integrity: sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] - '@eslint/js@8.56.0': - resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@esbuild/linux-ppc64@0.20.2': + resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.16.17': + resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.19.10': + resolution: {integrity: sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.20.2': + resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.16.17': + resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.19.10': + resolution: {integrity: sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.20.2': + resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.16.17': + resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.19.10': + resolution: {integrity: sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.20.2': + resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.16.17': + resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.19.10': + resolution: {integrity: sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.20.2': + resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.16.17': + resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.19.10': + resolution: {integrity: sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.20.2': + resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.16.17': + resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.19.10': + resolution: {integrity: sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.20.2': + resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.16.17': + resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.19.10': + resolution: {integrity: sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.20.2': + resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.16.17': + resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.19.10': + resolution: {integrity: sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.20.2': + resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.16.17': + resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.19.10': + resolution: {integrity: sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.20.2': + resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@escape.tech/graphql-armor-max-aliases@2.4.0': + resolution: {integrity: sha512-d4V9EgtPRG9HIoPHuanFNLHj1ENB1YkZi9FbiBiH88x5VahCjVpMXDgKQGkG6RUTOODU4XKp0/ZgaOq0pX5oEA==} + engines: {node: '>=18.0.0'} + + '@escape.tech/graphql-armor-max-depth@2.3.0': + resolution: {integrity: sha512-EgqJU2yOaKaFeNDqMn18fIOI6UNjboWV950G9I39ebXyxsQmIaAx0Hs9hJoCBEHdLY9SCKWsEZFipHXqvaphdw==} + engines: {node: '>=18.0.0'} + + '@escape.tech/graphql-armor-max-tokens@2.4.0': + resolution: {integrity: sha512-apKQBcYc6vsrITR+uKGXTC9yWV4zUEP4usb5zO0vebYT6e4KLcS2gwIQOsDLCnD5IyU5sUOzHBWmkFyBPz5keQ==} + engines: {node: '>=18.0.0'} + + '@escape.tech/graphql-armor-types@0.6.0': + resolution: {integrity: sha512-Y3X6JgkB1N1MMaHNXaE2IeJWIs6wT4XcPvXM8PRWmT2DblZfY4NYiV1mh0GTInKdlnrEr5hquOR9XV+M3Da43w==} + + '@eslint-community/eslint-utils@4.4.0': + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.10.0': + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.56.0': + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} '@ethereumjs/common@2.6.5': resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==} + '@ethereumjs/common@3.2.0': + resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} + '@ethereumjs/rlp@4.0.1': resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} engines: {node: '>=14'} @@ -2174,6 +2998,10 @@ packages: '@ethereumjs/tx@3.5.2': resolution: {integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==} + '@ethereumjs/tx@4.2.0': + resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} + engines: {node: '>=14'} + '@ethereumjs/util@8.1.0': resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} engines: {node: '>=14'} @@ -2745,6 +3573,17 @@ packages: resolution: {integrity: sha512-w+liuBySifrstuHbFrHoHAEyVnDFVib+073q8AeAJ/qqJfvFvAwUPLLtNohR/WDVRgSasfXtl3dcNuVJWN+rjg==} engines: {node: '>=18.0.0'} + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@heroicons/react@2.1.3': + resolution: {integrity: sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==} + peerDependencies: + react: '>= 16' + '@hono/node-server@1.11.2': resolution: {integrity: sha512-JhX0nUC66GeDxpIdMKWDRMEwtQBa64CY907iAF1sYqb4m2p2PdSU7zkbnNhAZLg/6IjSlTuj6CF307JlBXVvpg==} engines: {node: '>=18.14.1'} @@ -2905,6 +3744,10 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} + '@isaacs/ttlcache@1.4.1': + resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} + engines: {node: '>=12'} + '@istanbuljs/load-nyc-config@1.1.0': resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -2926,6 +3769,10 @@ packages: node-notifier: optional: true + '@jest/create-cache-key-function@29.7.0': + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/environment@29.7.0': resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2979,6 +3826,10 @@ packages: resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==} engines: {node: '>= 6'} + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + '@jest/types@29.6.3': resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2987,6 +3838,10 @@ packages: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.1': resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} @@ -2995,12 +3850,22 @@ packages: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + '@jridgewell/sourcemap-codec@1.4.15': resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} '@jridgewell/trace-mapping@0.3.20': resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.9': resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} @@ -3083,13 +3948,88 @@ packages: '@mdn/browser-compat-data@5.5.1': resolution: {integrity: sha512-uKCxAlG5dqNEuCqGSAHa8cSFCZujnv0SRBOuMWMLiza4YK/eSiyNlMwXtWJSrRmeCT+33DBk1VUtAcZdSRdA+g==} + '@metamask/eth-json-rpc-provider@1.0.1': + resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==} + engines: {node: '>=14.0.0'} + + '@metamask/json-rpc-engine@7.3.3': + resolution: {integrity: sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-middleware-stream@6.0.2': + resolution: {integrity: sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q==} + engines: {node: '>=16.0.0'} + + '@metamask/object-multiplex@2.0.0': + resolution: {integrity: sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA==} + engines: {node: ^16.20 || ^18.16 || >=20} + + '@metamask/onboarding@1.0.1': + resolution: {integrity: sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==} + + '@metamask/providers@15.0.0': + resolution: {integrity: sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA==} + engines: {node: ^18.18 || >=20} + + '@metamask/rpc-errors@6.2.1': + resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==} + engines: {node: '>=16.0.0'} + '@metamask/safe-event-emitter@2.0.0': resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} + '@metamask/safe-event-emitter@3.1.1': + resolution: {integrity: sha512-ihb3B0T/wJm1eUuArYP4lCTSEoZsClHhuWyfo/kMX3m/odpqNcPfsz5O2A3NT7dXCAgWPGDQGPqygCpgeniKMw==} + engines: {node: '>=12.0.0'} + + '@metamask/sdk-communication-layer@0.20.2': + resolution: {integrity: sha512-TN+whYbCClFSkx52Ild1RcjoRyz8YZgwNvZeooIcZIvCfBM6U9W5273KGiY7WLc/oO4KKmFk17d7vMO4gNvhhw==} + peerDependencies: + cross-fetch: ^3.1.5 + eciesjs: ^0.3.16 + eventemitter2: ^6.4.7 + readable-stream: ^3.6.2 + socket.io-client: ^4.5.1 + + '@metamask/sdk-install-modal-web@0.20.2': + resolution: {integrity: sha512-0QiaZhV15AGdN1zU2jfTI32eC3YkwEpzDfR9+oiZ9bd2G72c6lYBhTsmDGUd01aP6A+bqJR5PjI8Wh2AWtoLeA==} + peerDependencies: + i18next: 22.5.1 + react: ^18.2.0 + react-dom: ^18.2.0 + react-i18next: ^13.2.2 + react-native: '*' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + react-native: + optional: true + + '@metamask/sdk@0.20.3': + resolution: {integrity: sha512-HZ9NwA+LxiXzuy0YWbWsuD4xejQtp85bhcCAf8UgpA/0dOyF3RS4dKDdBBXSyRgk3RWPjeJgHxioaH4CmBmiRA==} + peerDependencies: + react: ^18.2.0 + react-dom: ^18.2.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + '@metamask/utils@3.6.0': resolution: {integrity: sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==} engines: {node: '>=14.0.0'} + '@metamask/utils@5.0.2': + resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} + engines: {node: '>=14.0.0'} + + '@metamask/utils@8.4.0': + resolution: {integrity: sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg==} + engines: {node: '>=16.0.0'} + '@microsoft/fetch-event-source@2.0.1': resolution: {integrity: sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==} @@ -4365,6 +5305,104 @@ packages: viem: ~0.3.19 || ^1.0.0 wagmi: ~1.0.1 || ~1.1.0 || ~1.2.0 || ~1.3.0 || ~1.4.0 + '@react-native-community/cli-clean@13.6.8': + resolution: {integrity: sha512-B1uxlm1N4BQuWFvBL3yRl3LVvydjswsdbTi7tMrHMtSxfRio1p9HjcmDzlzKco09Y+8qBGgakm3jcMZGLbhXQQ==} + + '@react-native-community/cli-config@13.6.8': + resolution: {integrity: sha512-RabCkIsWdP4Ex/sf1uSP9qxc30utm+0uIJAjrZkNQynm7T4Lyqn/kT3LKm4yM6M0Qk61YxGguiaXF4601vAduw==} + + '@react-native-community/cli-debugger-ui@13.6.8': + resolution: {integrity: sha512-2cS+MX/Su6sVSjqpDftFOXbK7EuPg98xzsPkdPhkQnkZwvXqodK9CAMuDMbx3lBHHtrPrpMbBCpFmPN8iVOnlA==} + + '@react-native-community/cli-doctor@13.6.8': + resolution: {integrity: sha512-/3Vdy9J3hyiu0y3nd/CU3kBqPlTRxnLXg7V6jrA1jbTOlZAMyV9imEkrqEaGK0SMOyMhh9Pipf98Ozhk0Nl4QA==} + + '@react-native-community/cli-hermes@13.6.8': + resolution: {integrity: sha512-lZi/OBFuZUj5cLK94oEgtrtmxGoqeYVRcnHXl/R5c4put9PDl+qH2bEMlGZkFiw57ae3UZKr3TMk+1s4jh3FYQ==} + + '@react-native-community/cli-platform-android@13.6.8': + resolution: {integrity: sha512-vWrqeLRRTwp2kO33nbrAgbYn8HR2c2CpIfyVJY9Ckk7HGUSwDyxdcSu7YBvt2ShdfLZH0HctWFNXsgGrfg6BDw==} + + '@react-native-community/cli-platform-apple@13.6.8': + resolution: {integrity: sha512-1JPohnlXPqU44zns3ALEzIbH2cKRw6JtEDJERgLuEUbs2r2NeJgqDbKyZ7fTTO8o+pegDnn6+Rr7qGVVOuUzzg==} + + '@react-native-community/cli-platform-ios@13.6.8': + resolution: {integrity: sha512-/IIcIRM8qaoD7iZqsvtf6Qq1AwtChWYfB9sTn3mTiolZ5Zd5bXH37g+6liPfAICRkj2Ptq3iXmjrDVUQAxrOXw==} + + '@react-native-community/cli-server-api@13.6.8': + resolution: {integrity: sha512-Lx664oWTzpVfbKUTy+3GIX7e+Mt5Zn+zdkM4ehllNdik/lbB3tM9Nrg8PSvOfI+tTXs2w55+nIydLfH+0FqJVg==} + + '@react-native-community/cli-tools@13.6.8': + resolution: {integrity: sha512-1MYlae9EkbjC7DBYOGMH5xF9yDoeNYUKgEdDjL6WAUBoF2gtwiZPM6igLKi/+dhb5sCtC7fiLrLi0Oevdf+RmQ==} + + '@react-native-community/cli-types@13.6.8': + resolution: {integrity: sha512-C4mVByy0i+/NPuPhdMLBR7ubEVkjVS1VwoQu/BoG1crJFNE+167QXAzH01eFbXndsjZaMWmD4Gerx7TYc6lHfA==} + + '@react-native-community/cli@13.6.8': + resolution: {integrity: sha512-0lRdgLNaXixWY4BfFRl1J6Ao9Lapo2z+++iE7TD4GAbuxOWJSyFi+KUA8XNfSDyML4jFO02MZgyBPxAWdaminQ==} + engines: {node: '>=18'} + hasBin: true + + '@react-native/assets-registry@0.74.84': + resolution: {integrity: sha512-dzUhwyaX04QosWZ8zyaaNB/WYZIdeDN1lcpfQbqiOhZJShRH+FLTDVONE/dqlMQrP+EO7lDqF0RrlIt9lnOCQQ==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.74.84': + resolution: {integrity: sha512-UR4uiii5szIJA84mSC6GJOfYKDq7/ThyetOQT62+BBcyGeHVtHlNLNRzgaMeLqIQaT8Fq4pccMI+7QqLOMXzdw==} + engines: {node: '>=18'} + + '@react-native/babel-preset@0.74.84': + resolution: {integrity: sha512-WUfu6Y4aGuVdocQZvx33BJiQWFH6kRCHYbZfBn2psgFrSRLgQWEQrDCxqPFObNAVSayM0rNhp2FvI5K/Eyeqlg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/codegen@0.74.84': + resolution: {integrity: sha512-0hXlnu9i0o8v+gXKQi+x6T471L85kCDwW4WrJiYAeOheWrQdNNW6rC3g8+LL7HXAf7QcHGU/8/d57iYfdVK2BQ==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/community-cli-plugin@0.74.84': + resolution: {integrity: sha512-GBKE+1sUh86fS2XXV46gMCNHMc1KetshMbYJ0AhDhldpaILZHqRBX50mdVsiYVvkzp4QjM0nmYqefuJ9NVwicQ==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.74.84': + resolution: {integrity: sha512-YUEA03UNFbiYzHpYxlcS2D9+3eNT5YLGkl5yRg3nOSN6KbCc/OttGnNZme+tuSOJwjMN/vcvtDKYkTqjJw8U0A==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.74.84': + resolution: {integrity: sha512-veYw/WmyrAOQHUiIeULzn2duJQnXDPiKq2jZ/lcmDo6jsLirpp+Q73lx09TYgy/oVoPRuV0nfmU3x9B6EV/7qQ==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.74.84': + resolution: {integrity: sha512-wYWC5WWXqzCCe4PDogz9pNc4xH5ZamahW5XGSbrrYJ5V3walZ+7z43V6iEBJkZbLjj9YBcSttkXYGr1Xh4veAg==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.74.84': + resolution: {integrity: sha512-+PgxuUjBw9JVlz6m4ECsIJMLbDopnr4rpLmsG32hQaJrg0wMuvHtsgAY/J/aVCSG2GNUXexfjrnhc+O9yGOZXQ==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.74.84': + resolution: {integrity: sha512-YtVGq7jkgyUECv5yt4BOFbOXyW4ddUn8+dnwGGpJKdfhXYL5o5++AxNdE+2x+SZdkj3JUVekGKPwRabFECABaw==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/normalize-colors@0.74.84': + resolution: {integrity: sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A==} + + '@react-native/virtualized-lists@0.74.84': + resolution: {integrity: sha512-XcV+qdqt2WihaY4iRm/M1FdSy+18lecU9mRXNmy9YK8g9Th/8XbNtmmKI0qWBx3KxyuXMH/zd0ps05YTrX16kw==} + engines: {node: '>=18'} + peerDependencies: + '@types/react': ^18.2.6 + react: '*' + react-native: '*' + peerDependenciesMeta: + '@types/react': + optional: true + '@remix-run/router@1.16.1': resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} engines: {node: '>=14.0.0'} @@ -4375,6 +5413,10 @@ packages: '@rescript/std@9.0.0': resolution: {integrity: sha512-zGzFsgtZ44mgL4Xef2gOy1hrRVdrs9mcxCOOKZrIPsmbZW14yTkaF591GXxpQvjXiHtgZ/iA9qLyWH6oSReIxQ==} + '@rnx-kit/chromium-edge-launcher@1.0.0': + resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==} + engines: {node: '>=14.15'} + '@rollup/plugin-commonjs@24.0.0': resolution: {integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==} engines: {node: '>=14.0.0'} @@ -4497,6 +5539,9 @@ packages: '@safe-global/safe-apps-sdk@8.1.0': resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} + '@safe-global/safe-apps-sdk@9.0.0': + resolution: {integrity: sha512-fEqmQBU3JqTjORSl3XYrcaxdxkUqeeM39qsQjqCzzTHioN8DEfg3JCLq6EBoXzcKTVOYi8SPzLV7KJccdDw+4w==} + '@safe-global/safe-core-sdk-types@2.3.0': resolution: {integrity: sha512-dU0KkDV1KJNf11ajbUjWiSi4ygdyWfhk1M50lTJWUdCn1/2Bsb/hICM8LoEk6DCoFumxaoCet02SmYakXsW2CA==} @@ -4639,6 +5684,15 @@ packages: resolution: {integrity: sha512-x0PYIMWcsTauqxgl7vWUY6sANl+XGKtx7DCVnnY7aOIIlIna0jChTAPANTfA2QrK+VK+4I/4JxatCEZBnXh3Og==} engines: {node: '>= 8'} + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -4652,6 +5706,9 @@ packages: '@sinonjs/fake-timers@10.3.0': resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + '@solana/buffer-layout@4.0.1': resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} engines: {node: '>=5.10'} @@ -4736,6 +5793,12 @@ packages: '@tanstack/query-core@4.36.1': resolution: {integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==} + '@tanstack/query-core@5.0.5': + resolution: {integrity: sha512-MThCETMkHDHTnFZHp71L+SqTtD5d6XHftFCVR1xRJdWM3qGrlQ2VCXaj0SKVcyJej2e1Opa2c7iknu1llxCDNQ==} + + '@tanstack/query-core@5.40.0': + resolution: {integrity: sha512-eD8K8jsOIq0Z5u/QbvOmfvKKE/XC39jA7yv4hgpl/1SRiU+J8QCIwgM/mEHuunQsL87dcvnHqSVLmf9pD4CiaA==} + '@tanstack/query-persist-client-core@4.36.1': resolution: {integrity: sha512-eocgCeI7D7TRv1IUUBMfVwOI0wdSmMkBIbkKhqEdTrnUHUQEeOaYac8oeZk2cumAWJdycu6P/wB+WqGynTnzXg==} @@ -4759,6 +5822,23 @@ packages: react-native: optional: true + '@tanstack/react-query@5.0.5': + resolution: {integrity: sha512-ZG0Q4HZ0iuI8mWiZ2/MdVYPHbrmAVhMn7+gLOkxJh6zLIgCL4luSZlohzN5Xt4MjxfxxWioO1nemwpudaTsmQg==} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + + '@tanstack/react-query@5.40.1': + resolution: {integrity: sha512-gOcmu+gpFd2taHrrgMM9RemLYYEDYfsCqszxCC0xtx+csDa4R8t7Hr7SfWXQP13S2sF+mOxySo/+FNXJFYBqcA==} + peerDependencies: + react: ^18.0.0 + '@tanstack/react-table@8.17.3': resolution: {integrity: sha512-5gwg5SvPD3lNAXPuJJz1fOCEZYk9/GeBFH3w/hCgnfyszOIzwkwgp5I7Q4MJtn0WECp84b5STQUDdmvGi8m3nA==} engines: {node: '>=12'} @@ -4911,6 +5991,9 @@ packages: '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/dom-screen-wake-lock@1.0.3': + resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==} + '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} @@ -4986,6 +6069,9 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + '@types/node@10.17.60': resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} @@ -5004,6 +6090,9 @@ packages: '@types/node@20.12.7': resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} + '@types/node@20.14.2': + resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@8.10.66': resolution: {integrity: sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==} @@ -5034,6 +6123,10 @@ packages: '@types/react-redux@7.1.33': resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + '@types/react-toastify@4.1.0': + resolution: {integrity: sha512-u7Ie/7LHBsPVz/iJxi/WlRDS7Gh9csCJACTDXx+pSLuZCm94xpkwzhM3jV1L5ZxP/in0Gp2tFbJ91VrSGr1gyQ==} + deprecated: This is a stub types definition. react-toastify provides its own type definitions, so you do not need this installed. + '@types/react@18.2.45': resolution: {integrity: sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==} @@ -5079,6 +6172,9 @@ packages: '@types/yargs@13.0.12': resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==} + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + '@types/yargs@17.0.32': resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} @@ -5157,6 +6253,12 @@ packages: peerDependencies: '@vanilla-extract/css': ^1.0.0 + '@vitejs/plugin-react@4.3.0': + resolution: {integrity: sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 + '@volar/language-core@2.2.5': resolution: {integrity: sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==} @@ -5196,6 +6298,15 @@ packages: wagmi: optional: true + '@wagmi/cli@2.1.8': + resolution: {integrity: sha512-607a+1ZjeIThHpENuIUJkeFjyRroai4H5TcW8jBJPfKqkWTFRah1Co7h9eOfIZzLd9FyWK+YOHH1PL+Jea8Alg==} + hasBin: true + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + '@wagmi/connectors@3.1.10': resolution: {integrity: sha512-ZLJC1QaeiZarkF07Cr9mOlVjPO1Lf5TBx+JKBms2y5fUIXlKrxCfQgO/gDCureboI+Us2X3IRI659+XacSGpbA==} peerDependencies: @@ -5205,6 +6316,16 @@ packages: typescript: optional: true + '@wagmi/connectors@5.0.7': + resolution: {integrity: sha512-EoTtRKnUPhKpU/LFU7LU4iK8yNU/akU5vSgX+K21QXHi8ImhEEsd2nPEU5kfkWriGf+D/raD4gLZYsfppDRUaw==} + peerDependencies: + '@wagmi/core': 2.10.5 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + '@wagmi/core@1.4.12': resolution: {integrity: sha512-bLcYmmGgjtl3jAGo8X3Sm6oUwsdjbVxFMu9SWnwHdE4S9JdYeWM57dEhQgq8SYul2yQ7yY2/gimBf1Or0Ky3dQ==} peerDependencies: @@ -5214,9 +6335,24 @@ packages: typescript: optional: true + '@wagmi/core@2.10.5': + resolution: {integrity: sha512-BvqFEdJTTepOKtPnacq7oE8gUZ4llzdxmPSBEYePArd1dvP/e5gwwfS5/8VBcvDvGcoX4N0lw5A4NNOJKL0Q+A==} + peerDependencies: + '@tanstack/query-core': '>=5.0.0' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + '@tanstack/query-core': + optional: true + typescript: + optional: true + '@walletconnect/core@2.10.6': resolution: {integrity: sha512-Z4vh4ZdfcoQjgPEOxeuF9HUZCVLtV3MgRbS/awLIj/omDrFnOwlBhxi5Syr4Y8muVGC0ocRetQYHae0/gX5crQ==} + '@walletconnect/core@2.13.0': + resolution: {integrity: sha512-blDuZxQenjeXcVJvHxPznTNl6c/2DO4VNrFnus+qHmO6OtT5lZRowdMtlCaCNb1q0OxzgrmBDcTOCbFcCpio/g==} + '@walletconnect/crypto@1.0.3': resolution: {integrity: sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g==} @@ -5229,21 +6365,36 @@ packages: '@walletconnect/ethereum-provider@2.10.6': resolution: {integrity: sha512-bBQ+yUfxLv8VxNttgNKY7nED35gSVayO/BnLHbNKvyV1gpvSCla5mWB9MsXuQs70MK0g+/qtgRVSrOtdSubaNQ==} + '@walletconnect/ethereum-provider@2.13.0': + resolution: {integrity: sha512-dnpW8mmLpWl1AZUYGYZpaAfGw1HFkL0WSlhk5xekx3IJJKn4pLacX2QeIOo0iNkzNQxZfux1AK4Grl1DvtzZEA==} + '@walletconnect/events@1.0.1': resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} '@walletconnect/heartbeat@1.2.1': resolution: {integrity: sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==} + '@walletconnect/heartbeat@1.2.2': + resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + '@walletconnect/jsonrpc-http-connection@1.0.7': resolution: {integrity: sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==} + '@walletconnect/jsonrpc-http-connection@1.0.8': + resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==} + '@walletconnect/jsonrpc-provider@1.0.13': resolution: {integrity: sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==} + '@walletconnect/jsonrpc-provider@1.0.14': + resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} + '@walletconnect/jsonrpc-types@1.0.3': resolution: {integrity: sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==} + '@walletconnect/jsonrpc-types@1.0.4': + resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} + '@walletconnect/jsonrpc-utils@1.0.8': resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} @@ -5276,6 +6427,9 @@ packages: '@walletconnect/logger@2.0.1': resolution: {integrity: sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==} + '@walletconnect/logger@2.1.2': + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} + '@walletconnect/modal-core@2.6.2': resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==} @@ -5288,6 +6442,9 @@ packages: '@walletconnect/randombytes@1.0.3': resolution: {integrity: sha512-35lpzxcHFbTN3ABefC9W+uBpNZl1GC4Wpx0ed30gibfO/y9oLdy1NznbV96HARQKSBV9J9M/rrtIvf6a23jfYw==} + '@walletconnect/relay-api@1.0.10': + resolution: {integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==} + '@walletconnect/relay-api@1.0.9': resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} @@ -5300,6 +6457,9 @@ packages: '@walletconnect/sign-client@2.10.6': resolution: {integrity: sha512-EvUWjaZBQu2yKnH5/5F2qzbuiIuUN9ZgrNKgvXkw5z1Dq5RJCks0S9/MFlKH/ZSGqXnLl7uAzBXtoX4sMgbCMA==} + '@walletconnect/sign-client@2.13.0': + resolution: {integrity: sha512-En7KSvNUlQFx20IsYGsFgkNJ2lpvDvRsSFOT5PTdGskwCkUfOpB33SQJ6nCrN19gyoKPNvWg80Cy6MJI0TjNYA==} + '@walletconnect/time@1.0.2': resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} @@ -5309,15 +6469,24 @@ packages: '@walletconnect/types@2.10.6': resolution: {integrity: sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ==} + '@walletconnect/types@2.13.0': + resolution: {integrity: sha512-MWaVT0FkZwzYbD3tvk8F+2qpPlz1LUSWHuqbINUtMXnSzJtXN49Y99fR7FuBhNFtDalfuWsEK17GrNA+KnAsPQ==} + '@walletconnect/universal-provider@2.10.6': resolution: {integrity: sha512-CEivusqqoD31BhCTKp08DnrccfGjwD9MFjZs5BNRorDteRFE8zVm9LmP6DSiNJCw82ZajGlZThggLQ/BAATfwA==} + '@walletconnect/universal-provider@2.13.0': + resolution: {integrity: sha512-B5QvO8pnk5Bqn4aIt0OukGEQn2Auk9VbHfhQb9cGwgmSCd1GlprX/Qblu4gyT5+TjHMb1Gz5UssUaZWTWbDhBg==} + '@walletconnect/utils@2.10.2': resolution: {integrity: sha512-syxXRpc2yhSknMu3IfiBGobxOY7fLfLTJuw+ppKaeO6WUdZpIit3wfuGOcc0Ms3ZPFCrGfyGOoZsCvgdXtptRg==} '@walletconnect/utils@2.10.6': resolution: {integrity: sha512-oRsWWhN2+hi3aiDXrQEOfysz6FHQJGXLsNQPVt+WIBJplO6Szmdau9dbleD88u1iiT4GKPqE0R9FOYvvPm1H/w==} + '@walletconnect/utils@2.13.0': + resolution: {integrity: sha512-q1eDCsRHj5iLe7fF8RroGoPZpdo2CYMZzQSrw1iqL+2+GOeqapxxuJ1vaJkmDUkwgklfB22ufqG6KQnz78sD4w==} + '@walletconnect/window-getters@1.0.1': resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} @@ -5512,6 +6681,9 @@ packages: almost-equal@1.1.0: resolution: {integrity: sha512-0V/PkoculFl5+0Lp47JoxUcO0xSxhIBvm+BxHdD/OgXNmdRpRHCFnKVuUoWyS9EzQP+otSGv0m9Lb4yVkQBn2A==} + anser@1.4.10: + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -5524,6 +6696,9 @@ packages: resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==} engines: {node: '>=14.16'} + ansi-fragments@0.2.1: + resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + ansi-regex@4.1.1: resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} engines: {node: '>=6'} @@ -5571,6 +6746,9 @@ packages: app-module-path@2.2.0: resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==} + appdirsjs@1.2.7: + resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} + arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} @@ -5673,6 +6851,14 @@ packages: ast-types-flow@0.0.8: resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + ast-types@0.15.2: + resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + engines: {node: '>=4'} + + astral-regex@1.0.0: + resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} + engines: {node: '>=4'} + astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} @@ -5755,6 +6941,11 @@ packages: axobject-query@4.0.0: resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -5769,12 +6960,30 @@ packages: resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + babel-plugin-polyfill-corejs2@0.4.11: + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.10.4: + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.2: + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: resolution: {integrity: sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==} babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + babel-plugin-transform-flow-enums@0.0.2: + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + babel-preset-current-node-syntax@1.0.1: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -5812,9 +7021,6 @@ packages: better-sqlite3@10.1.0: resolution: {integrity: sha512-hqpHJaCfKEZFaAWdMh6crdzRWyzQzfP6Ih8TYI0vFn01a6ZTDSbJIMXN+6AMBaBOh99DzUy8l3PsV9R3qnJDng==} - better-sqlite3@8.7.0: - resolution: {integrity: sha512-99jZU4le+f3G6aIl6PmmV0cxUIWqKieHxsiF7G34CVFiE+/UabpYqkU0NJIkY/96mQKikHeBjtR27vFfs5JpEw==} - better-sqlite3@9.6.0: resolution: {integrity: sha512-yR5HATnqeYNVnkaUTf4bOP2dJSnyhP4puJN/QPRyx4YkBEEUxib422n2XzPqDEHjQQqazoYoADdAm5vE15+dAQ==} @@ -5907,6 +7113,9 @@ packages: borsh@0.7.0: resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} + bowser@2.11.0: + resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} + bplist-parser@0.2.0: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} engines: {node: '>= 5.10.0'} @@ -5998,10 +7207,20 @@ packages: peerDependencies: esbuild: '>=0.13' + bundle-require@4.2.1: + resolution: {integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.17' + busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} + bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} @@ -6025,6 +7244,18 @@ packages: call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -6117,6 +7348,14 @@ packages: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} + chrome-launcher@0.15.2: + resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + engines: {node: '>=12.13.0'} + hasBin: true + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} @@ -6210,6 +7449,10 @@ packages: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + clone-response@1.0.3: resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} @@ -6308,6 +7551,9 @@ packages: resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} engines: {node: '>=12.5.0'} + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} @@ -6323,6 +7569,9 @@ packages: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} + command-exists@1.2.9: + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + commander@11.1.0: resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} engines: {node: '>=16'} @@ -6357,6 +7606,14 @@ packages: commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression@1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + compute-scroll-into-view@3.1.0: resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} @@ -6379,6 +7636,10 @@ packages: resolution: {integrity: sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==} engines: {node: '>=18'} + connect@3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + consola@3.2.3: resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} engines: {node: ^14.18.0 || >=16.10.0} @@ -6421,6 +7682,9 @@ packages: copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} @@ -6434,6 +7698,10 @@ packages: cosmiconfig-toml-loader@1.0.0: resolution: {integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==} + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + cosmiconfig@7.0.0: resolution: {integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==} engines: {node: '>=10'} @@ -6635,6 +7903,12 @@ packages: date-fns@3.6.0: resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==} + dateformat@4.6.3: + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + + dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} @@ -6740,6 +8014,10 @@ packages: resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} engines: {node: '>= 0.4'} + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + define-lazy-prop@3.0.0: resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} engines: {node: '>=12'} @@ -6762,6 +8040,9 @@ packages: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} + denodeify@1.2.1: + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + denque@2.1.0: resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} engines: {node: '>=0.10'} @@ -7104,6 +8385,9 @@ packages: ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + eciesjs@0.3.18: + resolution: {integrity: sha512-RQhegEtLSyIiGJmFTZfvCTHER/fymipXFVx6OwSRYD6hOuy+6Kjpk0dGvIfP9kxn/smBpxQy71uxpGO406ITCw==} + ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -7179,6 +8463,13 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + engine.io-client@6.5.3: + resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==} + + engine.io-parser@5.2.2: + resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==} + engines: {node: '>=10.0.0'} + enhanced-resolve@5.15.0: resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} engines: {node: '>=10.13.0'} @@ -7195,12 +8486,24 @@ packages: resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true + err-code@3.0.1: resolution: {integrity: sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==} error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + errorhandler@1.5.1: + resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} + engines: {node: '>= 0.8'} + es-abstract@1.22.3: resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} @@ -7484,6 +8787,10 @@ packages: resolution: {integrity: sha512-K9SY8+/xMBi4M5HHTDdxnpEqEEGjbNpzHFqvxyjMZej8InV/B+CkFRKM6W+uvrFJ7m8Zd1E0qUkseU3vdIDFYQ==} engines: {node: '>=14.0.0'} + eth-block-tracker@7.1.0: + resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==} + engines: {node: '>=14.0.0'} + eth-ens-namehash@2.0.8: resolution: {integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==} @@ -7491,6 +8798,10 @@ packages: resolution: {integrity: sha512-fos+9xmoa1A2Ytsc9eYof17r81BjdJOUcGcgZn4K/tKdCCTb+a8ytEtwlu1op5qsXFDlgGmstTELFrDEc89qEQ==} engines: {node: '>=14.0.0'} + eth-json-rpc-filters@6.0.1: + resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==} + engines: {node: '>=14.0.0'} + eth-lib@0.1.29: resolution: {integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==} @@ -7503,6 +8814,9 @@ packages: eth-rpc-errors@4.0.2: resolution: {integrity: sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==} + eth-rpc-errors@4.0.3: + resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==} + ethereum-bloom-filters@1.0.10: resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==} @@ -7538,6 +8852,9 @@ packages: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} + eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + eventemitter3@3.1.2: resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} @@ -7595,6 +8912,10 @@ packages: extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + extension-port-stream@3.0.0: + resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} + engines: {node: '>=12.0.0'} + external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} @@ -7619,6 +8940,9 @@ packages: resolution: {integrity: sha512-HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ==} engines: {node: '>=0.4.0'} + fast-copy@3.0.2: + resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} + fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} @@ -7667,6 +8991,10 @@ packages: fast-url-parser@1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} + fast-xml-parser@4.4.0: + resolution: {integrity: sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg==} + hasBin: true + fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} @@ -7712,10 +9040,22 @@ packages: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} + finalhandler@1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + finalhandler@1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} engines: {node: '>= 0.8'} + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} @@ -7743,6 +9083,13 @@ packages: flatten-vertex-data@1.0.2: resolution: {integrity: sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==} + flow-enums-runtime@0.0.6: + resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} + + flow-parser@0.237.2: + resolution: {integrity: sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==} + engines: {node: '>=0.4.0'} + follow-redirects@1.15.3: resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} engines: {node: '>=4.0'} @@ -7812,9 +9159,17 @@ packages: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} + fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + fs-extra@4.0.3: resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -7847,6 +9202,10 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + futoin-hkdf@1.5.3: + resolution: {integrity: sha512-SewY5KdMpaoCeh7jachEWFsh1nNlaDjNHZXWqL5IGwtpEYHTgkr2+AMCgNwKWkcc0wpSYrZfR7he4WdmHFtDxQ==} + engines: {node: '>=8'} + gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -7950,6 +9309,7 @@ packages: glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} @@ -8228,6 +9588,25 @@ packages: heap@0.2.7: resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} + help-me@5.0.0: + resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} + + hermes-estree@0.19.1: + resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==} + + hermes-estree@0.20.1: + resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} + + hermes-parser@0.19.1: + resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==} + + hermes-parser@0.20.1: + resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} + + hermes-profile-transformer@0.0.6: + resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} + engines: {node: '>=8'} + hey-listen@1.0.8: resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} @@ -8336,6 +9715,12 @@ packages: i18n-js@4.3.2: resolution: {integrity: sha512-n8gbEbQEueym2/q2yrZk5/xKWjFcKtg3/Escw4JHSVWa8qtKqP8j7se3UjkRbHlO/REqFA0V/MG1q8tEfyHeOA==} + i18next-browser-languagedetector@7.1.0: + resolution: {integrity: sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA==} + + i18next@22.5.1: + resolution: {integrity: sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA==} + i18next@23.11.5: resolution: {integrity: sha512-41pvpVbW9rhZPk5xjCX2TPJi2861LEig/YRhUkY+1FQ2IQPS0bKUDYnEqY8XPPbB48h1uIwLnP9iiEfuSl20CA==} @@ -8361,6 +9746,11 @@ packages: resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} engines: {node: '>= 4'} + image-size@1.1.1: + resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} + engines: {node: '>=16.x'} + hasBin: true + immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} @@ -8371,6 +9761,10 @@ packages: immutable@4.2.1: resolution: {integrity: sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==} + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -8402,6 +9796,7 @@ packages: inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -8531,6 +9926,10 @@ packages: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} @@ -8559,6 +9958,10 @@ packages: resolution: {integrity: sha512-6Q9ITjvWIm0Xdqv+5U12wgOKEM2KoBw4Y926m0OFkvlCxnbG94HKAsVz8w3fWcfAS5YA2fJORXX1dLrkprCCxA==} engines: {node: '>=0.10.0'} + is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -8648,6 +10051,10 @@ packages: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -8742,6 +10149,10 @@ packages: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} @@ -8762,9 +10173,16 @@ packages: resolution: {integrity: sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==} engines: {node: '>=12'} + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + isomorphic-fetch@2.2.1: resolution: {integrity: sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==} + isomorphic-unfetch@3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + isomorphic-ws@4.0.1: resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: @@ -9028,9 +10446,16 @@ packages: jodit@4.2.25: resolution: {integrity: sha512-gxQAycuI6WpQkvTBgJwPURaReqTKCo4zgncrCWoZDU9IA3CluVOssRK4MUgWbVJo0BwvlegnfskC6RlROray0g==} + joi@17.13.1: + resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==} + jose@5.1.3: resolution: {integrity: sha512-GPExOkcMsCLBTi1YetY2LmkoY559fss0+0KVa6kOfb2YFe84nAM7Nm/XzuZozah4iHgmBGrCOHL5/cy670SBRw==} + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + js-sha3@0.5.7: resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==} @@ -9051,6 +10476,18 @@ packages: jsbn@0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + jsc-android@250231.0.0: + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} + + jsc-safe-url@0.2.4: + resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + + jscodeshift@0.14.0: + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} @@ -9060,6 +10497,10 @@ packages: canvas: optional: true + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} @@ -9157,14 +10598,14 @@ packages: keyvaluestorage-interface@1.0.0: resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - kysely@0.24.2: - resolution: {integrity: sha512-+7eaTJNUYm2yRq1x+lEOZc+78TO35dTZ9b0dh49+Z9CTt2byMSbMiOKpwPlOyCAaHD4kILkAYWYZNywFlmBwRA==} - engines: {node: '>=14.0.0'} - kysely@0.26.3: resolution: {integrity: sha512-yWSgGi9bY13b/W06DD2OCDDHQmq1kwTGYlQ4wpZkMOJqMGCstVCFIvxCCVG4KfY1/3G0MhDAcZsip/Lw8/vJWw==} engines: {node: '>=14.0.0'} @@ -9191,6 +10632,9 @@ packages: lie@3.1.1: resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} + lighthouse-logger@1.4.2: + resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -9247,6 +10691,10 @@ packages: locate-character@3.0.0: resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -9271,6 +10719,9 @@ packages: lodash.clone@4.5.0: resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==} + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + lodash.defaults@4.2.0: resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} @@ -9366,6 +10817,13 @@ packages: resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==} engines: {node: '>=18'} + logkitty@0.7.1: + resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} + hasBin: true + + lokijs@1.5.12: + resolution: {integrity: sha512-Q5ALD6JiS6xAUWCwX3taQmgwxyveCtIIuL08+ml0nHwT3k0S/GIFJN+Hd38b1qYIMaE5X++iqsqWVksz7SYW+Q==} + long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} @@ -9415,6 +10873,10 @@ packages: magic-string@0.30.10: resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} engines: {node: '>=10'} @@ -9442,6 +10904,9 @@ packages: resolution: {integrity: sha512-0aHt+lFUpYfvh0kMIqXqNXqoYMuhuAsMlw87TbhWrw78Tx2zfuPI0Lx31/YPUgJ+Ire0tzQ4JnuBL7acDNXmMg==} engines: {node: '>=6.4.0'} + marky@1.2.5: + resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} + matchstick-as@0.6.0: resolution: {integrity: sha512-E36fWsC1AbCkBFt05VsDDRoFvGSdcZg6oZJrtIe/YDBbuFh8SKbR5FcoqDhNWqSN+F7bN/iS2u8Md0SM+4pUpw==} @@ -9508,6 +10973,64 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} + metro-babel-transformer@0.80.9: + resolution: {integrity: sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ==} + engines: {node: '>=18'} + + metro-cache-key@0.80.9: + resolution: {integrity: sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg==} + engines: {node: '>=18'} + + metro-cache@0.80.9: + resolution: {integrity: sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w==} + engines: {node: '>=18'} + + metro-config@0.80.9: + resolution: {integrity: sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg==} + engines: {node: '>=18'} + + metro-core@0.80.9: + resolution: {integrity: sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg==} + engines: {node: '>=18'} + + metro-file-map@0.80.9: + resolution: {integrity: sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ==} + engines: {node: '>=18'} + + metro-minify-terser@0.80.9: + resolution: {integrity: sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A==} + engines: {node: '>=18'} + + metro-resolver@0.80.9: + resolution: {integrity: sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w==} + engines: {node: '>=18'} + + metro-runtime@0.80.9: + resolution: {integrity: sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg==} + engines: {node: '>=18'} + + metro-source-map@0.80.9: + resolution: {integrity: sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw==} + engines: {node: '>=18'} + + metro-symbolicate@0.80.9: + resolution: {integrity: sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA==} + engines: {node: '>=18'} + hasBin: true + + metro-transform-plugins@0.80.9: + resolution: {integrity: sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg==} + engines: {node: '>=18'} + + metro-transform-worker@0.80.9: + resolution: {integrity: sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ==} + engines: {node: '>=18'} + + metro@0.80.9: + resolution: {integrity: sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg==} + engines: {node: '>=18'} + hasBin: true + micro-ftch@0.3.1: resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} @@ -9528,6 +11051,11 @@ packages: engines: {node: '>=4'} hasBin: true + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + mime@3.0.0: resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} engines: {node: '>=10.0.0'} @@ -9617,6 +11145,14 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} + mipd@0.0.5: + resolution: {integrity: sha512-gbKA784D2WKb5H/GtqEv+Ofd1S9Zj+Z/PGDIl1u1QAbswkxD28BQ5bSXQxkeBzPBABg1iDSbiwGG1XqlOxRspA==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} @@ -9849,16 +11385,30 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + nocache@3.0.4: + resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} + engines: {node: '>=12.0.0'} + node-abi@3.52.0: resolution: {integrity: sha512-JJ98b02z16ILv7859irtXn4oUaFWADtvkzy2c0IAatNVX2Mc9Yoh8z6hZInn3QwvMEYhHuQloYi+TTQy67SIdQ==} engines: {node: '>=10'} + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + node-addon-api@2.0.2: resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + node-addon-api@5.1.0: + resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + node-addon-api@7.0.0: resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==} + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + node-domexception@1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} @@ -9900,6 +11450,10 @@ packages: node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + node-stream-zip@1.15.0: + resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} + engines: {node: '>=0.12.0'} + nomnoml@1.6.2: resolution: {integrity: sha512-R3dA3FS8txilobpd2ZdnCuEwmXYYljxza2wR41YE/cIHMbt0eXsjlXHlAsD+F/fVe536f0WkAQ+VQFRC3hPZCA==} hasBin: true @@ -9959,6 +11513,13 @@ packages: oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + ob1@0.80.9: + resolution: {integrity: sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA==} + engines: {node: '>=18'} + + obj-multiplex@1.0.0: + resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==} + object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -10020,10 +11581,18 @@ packages: resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} engines: {node: '>=14.0.0'} + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + on-finished@2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + once@1.3.3: resolution: {integrity: sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==} @@ -10038,6 +11607,18 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} + open@6.4.0: + resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} + engines: {node: '>=8'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + open@9.1.0: resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} engines: {node: '>=14.16'} @@ -10112,6 +11693,10 @@ packages: resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} engines: {node: '>=18'} + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} @@ -10275,6 +11860,9 @@ packages: pathe@1.1.1: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + pbf@3.2.1: resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==} hasBin: true @@ -10351,6 +11939,10 @@ packages: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + pify@5.0.0: resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} engines: {node: '>=10'} @@ -10361,6 +11953,10 @@ packages: pino-abstract-transport@1.2.0: resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + pino-pretty@11.1.0: + resolution: {integrity: sha512-PjBzFL7IMSl1YkS9cSVWC+4gONmW0Fi+fvUzy74zK6RJHk4RkfW+e22NydRrGEtBRa5n6/oPNLPqjUeQrzqcLQ==} + hasBin: true + pino-std-serializers@4.0.0: resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} @@ -10379,6 +11975,10 @@ packages: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} @@ -10403,6 +12003,10 @@ packages: polybooljs@1.2.0: resolution: {integrity: sha512-mKjR5nolISvF+q2BtC1fi/llpxBPTQ3wLWN8+ldzdw2Hocpc8C72ZqnamCM4Z6z+68GVVjkeM01WJegQmZ8MEQ==} + pony-cause@2.1.11: + resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} + engines: {node: '>=12.0.0'} + postcss-import@15.1.0: resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} @@ -10576,6 +12180,10 @@ packages: resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==} engines: {node: '>= 6'} + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -10668,6 +12276,16 @@ packages: resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} engines: {node: '>=6.0.0'} + qr-code-styling@1.6.0-rc.1: + resolution: {integrity: sha512-ModRIiW6oUnsP18QzrRYZSc/CFKFKIdj7pUs57AEVH20ajlglRpN3HukjHk0UbNMTlKGuaYl7Gt6/O5Gg2NU2Q==} + + qrcode-generator@1.4.4: + resolution: {integrity: sha512-HM7yY8O2ilqhmULxGMpcHSF1EhJJ9yBj8gvDEuZ6M+KGJ0YY2hKpnXvRD+hZPLrDVck3ExIGhmPtSdcjC+guuw==} + + qrcode-terminal-nooctal@0.12.1: + resolution: {integrity: sha512-jy/kkD0iIMDjTucB+5T6KBsnirlhegDH47vHgrj5MejchSQmi/EAMM0xMFeePgV9CJkkAapNakpVUWYgHvtdKg==} + hasBin: true + qrcode@1.5.0: resolution: {integrity: sha512-9MgRpgVc+/+47dFvQeD6U2s0Z92EsKzcHogtum4QB+UNd025WOJSHvn/hjk9xmzj7Stj95CyUAs31mrjxliEsQ==} engines: {node: '>=10.13.0'} @@ -10702,12 +12320,20 @@ packages: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} + querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue@6.0.2: + resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + quick-format-unescaped@4.0.4: resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} @@ -10770,6 +12396,9 @@ packages: date-fns: ^2.28.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-devtools-core@5.2.0: + resolution: {integrity: sha512-vZK+/gvxxsieAoAyYaiRIVFxlajb7KXhgBDV7OsoMzaAE+IqGpoxusBjIgq5ibqA2IloKu0p9n7tE68z1xs18A==} + react-dom@18.2.0: resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: @@ -10822,6 +12451,23 @@ packages: react-native-fetch-api@3.0.0: resolution: {integrity: sha512-g2rtqPjdroaboDKTsJCTlcmtw54E25OjyaunUP0anOZn4Fuo2IKs8BVfe02zVggA/UysbmfSnRJIqtNkAgggNA==} + react-native-webview@11.26.1: + resolution: {integrity: sha512-hC7BkxOpf+z0UKhxFSFTPAM4shQzYmZHoELa6/8a/MspcjEP7ukYKpuSUTLDywQditT8yI9idfcKvfZDKQExGw==} + peerDependencies: + react: '*' + react-native: '*' + + react-native@0.74.2: + resolution: {integrity: sha512-EBMBjPPL4/GjHMP4NqsZabT3gI5WU9cSmduABGAGrd8uIcmTZ5F2Ng9k6gFmRm7n8e8CULxDNu98ZpQfBjl7Bw==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@types/react': ^18.2.6 + react: 18.2.0 + peerDependenciesMeta: + '@types/react': + optional: true + react-plotly.js@2.6.0: resolution: {integrity: sha512-g93xcyhAVCSt9kV1svqG1clAEdL6k3U+jjuSzfTV7owaSU9Go6Ph8bl25J+jKfKvIGAEYpe4qj++WHJuc9IaeA==} peerDependencies: @@ -10846,6 +12492,10 @@ packages: react-native: optional: true + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + react-remove-scroll-bar@2.3.4: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} @@ -10889,6 +12539,11 @@ packages: peerDependencies: react: '>=16.8' + react-shallow-renderer@16.15.0: + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} @@ -10899,6 +12554,12 @@ packages: '@types/react': optional: true + react-toastify@10.0.5: + resolution: {integrity: sha512-mNKt2jBXJg4O7pSdbNUfDdTsK9FIdikfsIE/yUCxbAEXl4HMyJaivrVFcn3Elvt5xvCQYhUZm+hqTIu1UXM3Pw==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} @@ -10936,6 +12597,9 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} + readline@1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + real-require@0.1.0: resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} engines: {node: '>= 12.13.0'} @@ -10944,6 +12608,10 @@ packages: resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} engines: {node: '>= 12.13.0'} + recast@0.21.5: + resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + engines: {node: '>= 4'} + receptacle@1.3.2: resolution: {integrity: sha512-HrsFvqZZheusncQRiEE7GatOAETrARKV/lnfYicIm8lbvp/JQOdADOfhjBd2DajvoszEyxSM6RlAAIZgEoeu/A==} @@ -10969,13 +12637,34 @@ packages: resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} engines: {node: '>= 0.4'} + regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} + regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} + + regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + regl-error2d@2.0.12: resolution: {integrity: sha512-r7BUprZoPO9AbyqM5qlJesrSRkl+hZnVKWKsVp7YhOl/3RIpi4UDGASGJY0puQ96u5fBYw/OlqV24IGcgJ0McA==} @@ -11029,6 +12718,10 @@ packages: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -11086,12 +12779,18 @@ packages: right-now@1.0.0: resolution: {integrity: sha512-DA8+YS+sMIVpbsuKgy+Z67L9Lxb1p05mNxRpDPNksPDEFir4vmBlUtuN9jkTGn9YMMdlBuK7XQgFiz6ws+yhSg==} + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true ripemd160@2.0.2: @@ -11105,11 +12804,26 @@ packages: resolution: {integrity: sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ==} engines: {node: '>=18.0'} + rollup-plugin-visualizer@5.12.0: + resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==} + engines: {node: '>=14'} + hasBin: true + peerDependencies: + rollup: 2.x || 3.x || 4.x + peerDependenciesMeta: + rollup: + optional: true + rollup@2.78.0: resolution: {integrity: sha512-4+YfbQC9QEVvKTanHhIAFVUFSRsezvQF8vFOJwtGfb9Bb+r014S+qryr9PSmw8x6sMnPkmFBGAvIFVQxvJxjtg==} engines: {node: '>=10.0.0'} hasBin: true + rollup@3.29.4: + resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + rollup@4.18.0: resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -11172,6 +12886,9 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.24.0-canary-efb381bbf-20230505: + resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + scheduler@0.25.0-rc-6f23540c7d-20240528: resolution: {integrity: sha512-5V2Aa+F16Qe+kT1zjwxPzBRoF6/xjw+LU9L2c1j2Dzw2GTiLEV8DxG3RAkRN8Lm5jlqbyK9ivRH3GGtipy+a6Q==} @@ -11185,6 +12902,17 @@ packages: resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==} engines: {node: '>=10.0.0'} + secp256k1@5.0.0: + resolution: {integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==} + engines: {node: '>=14.0.0'} + + secure-json-parse@2.7.0: + resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + semver-compare@1.0.0: resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} @@ -11223,6 +12951,10 @@ packages: sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + serialize-error@2.1.0: + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} + serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} @@ -11255,6 +12987,10 @@ packages: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} hasBin: true + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + shallow-copy@0.0.1: resolution: {integrity: sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw==} @@ -11320,6 +13056,10 @@ packages: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} + slice-ansi@2.1.0: + resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} + engines: {node: '>=6'} + slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} @@ -11343,12 +13083,23 @@ packages: snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + socket.io-client@4.7.5: + resolution: {integrity: sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==} + engines: {node: '>=10.0.0'} + + socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} + engines: {node: '>=10.0.0'} + 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.0.1: + resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} + source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} @@ -11371,6 +13122,10 @@ packages: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + spawn-command@0.0.2: resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} @@ -11418,6 +13173,9 @@ packages: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + stacktrace-parser@0.1.10: resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} engines: {node: '>=6'} @@ -11428,6 +13186,10 @@ packages: static-eval@2.1.0: resolution: {integrity: sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==} + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} @@ -11563,6 +13325,9 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + strongly-connected-components@1.0.1: resolution: {integrity: sha512-i0TFx4wPcO0FwX+4RkLJi1MxmcTv90jNZgxMu9XRnMXMeFUY1VJlIoXpZunPUvUUqbCT1pg5PEkFqqpcaElNaA==} @@ -11606,6 +13371,9 @@ packages: engines: {node: '>=8'} hasBin: true + sudo-prompt@9.2.1: + resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + supercluster@7.1.5: resolution: {integrity: sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==} @@ -11635,6 +13403,10 @@ packages: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} + supports-color@9.4.0: + resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} + engines: {node: '>=12'} + supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} @@ -11767,6 +13539,19 @@ packages: tdigest@0.1.2: resolution: {integrity: sha512-+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA==} + temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + terser@5.31.0: + resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==} + engines: {node: '>=10'} + hasBin: true + test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -11794,6 +13579,9 @@ packages: thread-stream@2.7.0: resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + through2@0.6.5: resolution: {integrity: sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg==} @@ -12147,6 +13935,9 @@ packages: uint8arraylist@2.4.7: resolution: {integrity: sha512-ohRElqR6C5dd60vRFLq40MCiSnUe1AzkpHvbCEMCGGP6zMoFYECsjdhL6bR1kTK37ONNRDuHQ3RIpScRYcYYIg==} + uint8arrays@3.1.0: + resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + uint8arrays@3.1.1: resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==} @@ -12179,6 +13970,25 @@ packages: unenv@1.8.0: resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==} + unfetch@4.2.0: + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + + unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} @@ -12321,6 +14131,10 @@ packages: resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} engines: {node: '>=6.14.2'} + utf-8-validate@6.0.4: + resolution: {integrity: sha512-xu9GQDeFp+eZ6LnCywXN/zBancWvOpUMzgjLPSjy4BRHSmTelvn2E0DG0o1sTiw5hkCKBHo8rwSKncfRfv2EEQ==} + engines: {node: '>=6.14.2'} + utf8@3.0.0: resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==} @@ -12426,6 +14240,14 @@ packages: typescript: optional: true + viem@2.13.6: + resolution: {integrity: sha512-BhvYhLrExC9P4AH9Gu/2A3VPUFkJT/ayH+A9anco2Ja/D0h3NStq+2uF4htcly1e68/U7IOrlCyX3Jz9zqeEJA==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + vite-node@1.6.0: resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} engines: {node: ^18.0.0 || >=20.0.0} @@ -12439,6 +14261,34 @@ packages: vite: optional: true + vite@4.5.3: + resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + vite@5.2.12: resolution: {integrity: sha512-/gC8GxzxMK5ntBwb48pR32GGhENnjtY30G4A0jemunsBkiEZFw60s8InGpN8gkhHEkjnRK1aSAxeQgwvFhUHAA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -12467,6 +14317,9 @@ packages: terser: optional: true + vlq@1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + void-elements@3.1.0: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} @@ -12495,6 +14348,17 @@ packages: typescript: optional: true + wagmi@2.9.8: + resolution: {integrity: sha512-uSfYKB0JWtajz8YSntMBO4QQolx1fPPckwAVrRl9X66zQb0FLqgZeXrnf+PjFnmNbNsSyO3neOD/3TQqNL6m4Q==} + peerDependencies: + '@tanstack/react-query': '>=5.0.0' + react: '>=18' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} @@ -12607,6 +14471,9 @@ packages: webcrypto-core@1.7.7: resolution: {integrity: sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==} + webextension-polyfill@0.10.0: + resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} + webgl-context@2.2.0: resolution: {integrity: sha512-q/fGIivtqTT7PEoF07axFIlHNk/XCPaYpq64btnepopSWvKNFkoORlQYgqDigBIuGA1ExnFd/GnSUnBNEPQY7Q==} @@ -12709,6 +14576,9 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -12724,6 +14594,17 @@ packages: utf-8-validate: optional: true + ws@6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + ws@7.4.5: resolution: {integrity: sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==} engines: {node: '>=8.3.0'} @@ -12760,6 +14641,18 @@ packages: utf-8-validate: optional: true + ws@8.11.0: + resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} + 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 + ws@8.13.0: resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} @@ -12812,6 +14705,10 @@ packages: xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + xmlhttprequest-ssl@2.0.0: + resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} + engines: {node: '>=0.4.0'} + xtend@2.2.0: resolution: {integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==} engines: {node: '>=0.4'} @@ -12891,6 +14788,21 @@ packages: zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zustand@4.4.1: + resolution: {integrity: sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw==} + engines: {node: '>=12.7.0'} + peerDependencies: + '@types/react': '>=16.8' + immer: '>=9.0' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + zustand@4.4.7: resolution: {integrity: sha512-QFJWJMdlETcI69paJwhSMJz7PPWjVP8Sjhclxmxmxv/RYI7ZOvR5BHX+ktH0we9gTWQMxcne8q1OY8xxz604gw==} engines: {node: '>=12.7.0'} @@ -12935,8 +14847,8 @@ snapshots: '@ampproject/remapping@2.2.1': dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 '@ardatan/aggregate-error@0.0.6': dependencies: @@ -12977,8 +14889,15 @@ snapshots: '@babel/highlight': 7.23.4 chalk: 2.4.2 + '@babel/code-frame@7.24.6': + dependencies: + '@babel/highlight': 7.24.6 + picocolors: 1.0.0 + '@babel/compat-data@7.23.5': {} + '@babel/compat-data@7.24.6': {} + '@babel/core@7.23.6': dependencies: '@ampproject/remapping': 2.2.1 @@ -12999,6 +14918,46 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/core@7.24.6': + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) + '@babel/helpers': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6 + '@babel/types': 7.24.6 + convert-source-map: 2.0.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.24.6(supports-color@9.4.0)': + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helpers': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/types': 7.24.6 + convert-source-map: 2.0.0 + debug: 4.3.4(supports-color@9.4.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/generator@7.2.0': dependencies: '@babel/types': 7.23.6 @@ -13014,10 +14973,25 @@ snapshots: '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 + '@babel/generator@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: '@babel/types': 7.23.6 + '@babel/helper-annotate-as-pure@7.24.6': + dependencies: + '@babel/types': 7.24.6 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-compilation-targets@7.23.6': dependencies: '@babel/compat-data': 7.23.5 @@ -13026,6 +15000,14 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 + '@babel/helper-compilation-targets@7.24.6': + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + browserslist: 4.23.0 + lru-cache: 5.1.1 + semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -13039,25 +15021,153 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.6) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.23.6) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + semver: 6.3.1 + optional: true + + '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + regexpu-core: 5.3.2 + semver: 6.3.1 + optional: true + + '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + optional: true + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + debug: 4.3.4(supports-color@9.4.0) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + '@babel/helper-environment-visitor@7.22.20': {} + '@babel/helper-environment-visitor@7.24.6': {} + '@babel/helper-function-name@7.23.0': dependencies: '@babel/template': 7.22.15 '@babel/types': 7.23.6 + '@babel/helper-function-name@7.24.6': + dependencies: + '@babel/template': 7.24.6 + '@babel/types': 7.24.6 + '@babel/helper-hoist-variables@7.22.5': dependencies: '@babel/types': 7.23.6 + '@babel/helper-hoist-variables@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-member-expression-to-functions@7.23.0': dependencies: '@babel/types': 7.23.6 + '@babel/helper-member-expression-to-functions@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-module-imports@7.22.15': dependencies: '@babel/types': 7.23.6 + '@babel/helper-module-imports@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -13067,12 +15177,68 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-module-transforms@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-simple-access': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 + optional: true + + '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-simple-access': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 + + '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-simple-access': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 + '@babel/helper-optimise-call-expression@7.22.5': dependencies: '@babel/types': 7.23.6 + '@babel/helper-optimise-call-expression@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-plugin-utils@7.22.5': {} + '@babel/helper-plugin-utils@7.24.6': {} + + '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-wrap-function': 7.24.6 + optional: true + + '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-wrap-function': 7.24.6 + + '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-wrap-function': 7.24.6 + '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -13080,24 +15246,77 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + + '@babel/helper-replace-supers@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + optional: true + + '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + + '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-member-expression-to-functions': 7.24.6 + '@babel/helper-optimise-call-expression': 7.24.6 + '@babel/helper-simple-access@7.22.5': dependencies: '@babel/types': 7.23.6 + '@babel/helper-simple-access@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: '@babel/types': 7.23.6 + '@babel/helper-skip-transparent-expression-wrappers@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-split-export-declaration@7.22.6': dependencies: '@babel/types': 7.23.6 + '@babel/helper-split-export-declaration@7.24.6': + dependencies: + '@babel/types': 7.24.6 + '@babel/helper-string-parser@7.23.4': {} + '@babel/helper-string-parser@7.24.6': {} + '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.6': {} + '@babel/helper-validator-option@7.23.5': {} + '@babel/helper-validator-option@7.24.6': {} + + '@babel/helper-wrap-function@7.24.6': + dependencies: + '@babel/helper-function-name': 7.24.6 + '@babel/template': 7.24.6 + '@babel/types': 7.24.6 + '@babel/helpers@7.23.6': dependencies: '@babel/template': 7.22.15 @@ -13106,5790 +15325,9951 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helpers@7.24.6': + dependencies: + '@babel/template': 7.24.6 + '@babel/types': 7.24.6 + '@babel/highlight@7.23.4': dependencies: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 + '@babel/highlight@7.24.6': + dependencies: + '@babel/helper-validator-identifier': 7.24.6 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 + '@babel/parser@7.23.6': dependencies: '@babel/types': 7.23.6 '@babel/parser@7.24.6': dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.6 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.6)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.6)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.6 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) + optional: true - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6)': + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.6) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.23.6) + optional: true - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6)': + '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) + optional: true - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6)': + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) + optional: true - '@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6)': + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) + optional: true - '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.6) + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6)': + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.6)': dependencies: + '@babel/compat-data': 7.23.5 '@babel/core': 7.23.6 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 + '@babel/compat-data': 7.23.5 + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.6) - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) + optional: true - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) + optional: true - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.6)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/core': 7.23.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6) - '@babel/types': 7.23.6 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.6)': dependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + optional: true - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/runtime@7.23.6': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@babel/runtime@7.24.0': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@babel/runtime@7.24.5': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - regenerator-runtime: 0.14.1 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@babel/template@7.22.15': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@babel/traverse@7.23.6': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6)': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - debug: 4.3.4(supports-color@8.1.1) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@babel/types@7.23.6': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@balancer-labs/sor@4.1.1-beta.16(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/constants@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)': dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - isomorphic-fetch: 2.2.1 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@bcoe/v8-coverage@0.2.3': {} - - '@bleu/ui@0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.23.6)': dependencies: - '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menubar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-progress': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-select': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@tanstack/react-table': 8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - class-variance-authority: 0.7.0 - clsx: 2.1.1 - cmdk: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - copy-to-clipboard: 3.3.3 - date-fns: 3.6.0 - embla-carousel-react: 8.1.3(react@19.0.0-rc-6f23540c7d-20240528) - i18next: 23.11.5 - jodit: 4.2.25 - jodit-react: 4.1.2(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - object-to-formdata: 4.5.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react-colorful: 5.6.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react-day-picker: 8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6f23540c7d-20240528) - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) - react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react-plotly.js: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6f23540c7d-20240528) - react-router: 6.23.1(react@19.0.0-rc-6f23540c7d-20240528) - react-router-dom: 6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - swr: 2.2.5(react@19.0.0-rc-6f23540c7d-20240528) - tailwind-merge: 2.3.0 - zod: 3.23.8 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - plotly.js - - react-native + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@chainsafe/is-ip@2.0.2': {} + '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@chainsafe/netmask@2.0.0': + '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6)': dependencies: - '@chainsafe/is-ip': 2.0.2 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@choojs/findup@0.2.1': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - commander: 2.20.3 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)': dependencies: - '@metamask/safe-event-emitter': 2.0.0 - '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - bind-decorator: 1.0.11 - bn.js: 5.2.1 - buffer: 6.0.3 - clsx: 1.2.1 - eth-block-tracker: 6.1.0 - eth-json-rpc-filters: 5.1.0 - eth-rpc-errors: 4.0.2 - json-rpc-engine: 6.1.0 - keccak: 3.0.4 - preact: 10.19.3 - qs: 6.11.2 - rxjs: 6.6.7 - sha.js: 2.4.11 - stream-browserify: 3.0.0 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@commander-js/extra-typings@12.1.0(commander@12.1.0)': + '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.6)': dependencies: - commander: 12.1.0 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@cspotcode/source-map-support@0.8.1': + '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.23.6)': dependencies: - '@jridgewell/trace-mapping': 0.3.9 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@drizzle-team/studio@0.0.37': + '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - superjson: 2.2.1 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@emnapi/runtime@1.2.0': + '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)': dependencies: - tslib: 2.6.2 - optional: true + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@emotion/hash@0.8.0': {} + '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.0.0)(typescript@5.4.5)': + '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - cosmiconfig: 7.0.0 - lodash.get: 4.4.2 - make-error: 1.3.6 - ts-node: 9.1.1(typescript@5.4.5) - tslib: 2.6.2 - transitivePeerDependencies: - - typescript + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@envelop/core@5.0.1': + '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)': dependencies: - '@envelop/types': 5.0.0 - tslib: 2.6.2 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@envelop/types@5.0.0': + '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - tslib: 2.6.2 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild-kit/core-utils@3.3.2': + '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)': dependencies: - esbuild: 0.18.20 - source-map-support: 0.5.21 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild-kit/esm-loader@2.6.5': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6)': dependencies: - '@esbuild-kit/core-utils': 3.3.2 - get-tsconfig: 4.7.2 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/aix-ppc64@0.19.10': - optional: true + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/aix-ppc64@0.20.2': - optional: true + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-arm64@0.16.17': - optional: true + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-arm64@0.18.20': - optional: true + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/android-arm64@0.19.10': - optional: true - - '@esbuild/android-arm64@0.20.2': - optional: true + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-arm@0.16.17': - optional: true + '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-arm@0.18.20': - optional: true + '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-arm@0.19.10': - optional: true + '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/android-arm@0.20.2': - optional: true + '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/android-x64@0.16.17': - optional: true + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-x64@0.18.20': - optional: true + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/android-x64@0.19.10': - optional: true + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/android-x64@0.20.2': - optional: true + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/darwin-arm64@0.16.17': - optional: true + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/darwin-arm64@0.18.20': - optional: true + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/darwin-arm64@0.19.10': - optional: true + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/darwin-arm64@0.20.2': - optional: true + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/darwin-x64@0.16.17': - optional: true + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/darwin-x64@0.18.20': - optional: true + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/darwin-x64@0.19.10': - optional: true + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/darwin-x64@0.20.2': - optional: true + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/freebsd-arm64@0.16.17': - optional: true + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/freebsd-arm64@0.18.20': - optional: true + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/freebsd-arm64@0.19.10': - optional: true + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/freebsd-arm64@0.20.2': - optional: true + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/freebsd-x64@0.16.17': - optional: true + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/freebsd-x64@0.18.20': - optional: true + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/freebsd-x64@0.19.10': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@esbuild/freebsd-x64@0.20.2': - optional: true + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-arm64@0.16.17': - optional: true + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-arm64@0.18.20': - optional: true + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-arm64@0.19.10': - optional: true + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-arm64@0.20.2': - optional: true + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-arm@0.16.17': - optional: true + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-arm@0.18.20': + '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@esbuild/linux-arm@0.19.10': - optional: true + '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-arm@0.20.2': - optional: true + '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-ia32@0.16.17': - optional: true + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-ia32@0.18.20': - optional: true + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-ia32@0.19.10': - optional: true + '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-ia32@0.20.2': + '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@esbuild/linux-loong64@0.16.17': - optional: true + '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-loong64@0.18.20': - optional: true + '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-loong64@0.19.10': - optional: true + '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/linux-loong64@0.20.2': - optional: true + '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) - '@esbuild/linux-mips64el@0.16.17': + '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) optional: true - '@esbuild/linux-mips64el@0.18.20': - optional: true + '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/linux-mips64el@0.19.10': - optional: true + '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) - '@esbuild/linux-mips64el@0.20.2': - optional: true + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-ppc64@0.16.17': - optional: true + '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-ppc64@0.18.20': - optional: true + '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-ppc64@0.19.10': - optional: true + '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/linux-ppc64@0.20.2': + '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@esbuild/linux-riscv64@0.16.17': - optional: true + '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-riscv64@0.18.20': - optional: true + '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-riscv64@0.19.10': - optional: true + '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-riscv64@0.20.2': - optional: true + '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/linux-s390x@0.16.17': - optional: true + '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/linux-s390x@0.18.20': - optional: true + '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6) - '@esbuild/linux-s390x@0.19.10': - optional: true + '@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 - '@esbuild/linux-s390x@0.20.2': + '@babel/plugin-transform-classes@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.23.6) + '@babel/helper-split-export-declaration': 7.24.6 + globals: 11.12.0 optional: true - '@esbuild/linux-x64@0.16.17': - optional: true + '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-split-export-declaration': 7.24.6 + globals: 11.12.0 - '@esbuild/linux-x64@0.18.20': - optional: true + '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) + '@babel/helper-split-export-declaration': 7.24.6 + globals: 11.12.0 - '@esbuild/linux-x64@0.19.10': - optional: true + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 - '@esbuild/linux-x64@0.20.2': + '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/template': 7.24.6 optional: true - '@esbuild/netbsd-x64@0.16.17': - optional: true + '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/template': 7.24.6 - '@esbuild/netbsd-x64@0.18.20': - optional: true + '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/template': 7.24.6 - '@esbuild/netbsd-x64@0.19.10': - optional: true + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@esbuild/netbsd-x64@0.20.2': + '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@esbuild/openbsd-x64@0.16.17': - optional: true + '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/openbsd-x64@0.18.20': - optional: true + '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/openbsd-x64@0.19.10': - optional: true + '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/openbsd-x64@0.20.2': - optional: true + '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/sunos-x64@0.16.17': - optional: true + '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/sunos-x64@0.18.20': - optional: true + '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/sunos-x64@0.19.10': - optional: true + '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/sunos-x64@0.20.2': - optional: true + '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) - '@esbuild/win32-arm64@0.16.17': - optional: true + '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/win32-arm64@0.18.20': - optional: true + '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@esbuild/win32-arm64@0.19.10': - optional: true + '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/win32-arm64@0.20.2': - optional: true + '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6) - '@esbuild/win32-ia32@0.16.17': - optional: true + '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.6) - '@esbuild/win32-ia32@0.18.20': + '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) optional: true - '@esbuild/win32-ia32@0.19.10': - optional: true + '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@esbuild/win32-ia32@0.20.2': - optional: true + '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) - '@esbuild/win32-x64@0.16.17': - optional: true + '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@esbuild/win32-x64@0.18.20': - optional: true + '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@esbuild/win32-x64@0.19.10': - optional: true + '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@esbuild/win32-x64@0.20.2': + '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.22.5 + + '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 optional: true - '@escape.tech/graphql-armor-max-aliases@2.4.0': + '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - graphql: 16.8.1 - optionalDependencies: - '@envelop/core': 5.0.1 - '@escape.tech/graphql-armor-types': 0.6.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@escape.tech/graphql-armor-max-depth@2.3.0': + '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)': dependencies: - graphql: 16.8.1 - optionalDependencies: - '@envelop/core': 5.0.1 - '@escape.tech/graphql-armor-types': 0.6.0 + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@escape.tech/graphql-armor-max-tokens@2.4.0': + '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - graphql: 16.8.1 - optionalDependencies: - '@envelop/core': 5.0.1 - '@escape.tech/graphql-armor-types': 0.6.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@escape.tech/graphql-armor-types@0.6.0': + '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)': dependencies: - graphql: 16.8.1 - optional: true + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6) - '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)': + '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6)': dependencies: - eslint: 8.56.0 - eslint-visitor-keys: 3.4.3 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@eslint-community/regexpp@4.10.0': {} + '@babel/plugin-transform-literals@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@eslint/eslintrc@2.1.4': + '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.0 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@eslint/js@8.56.0': {} + '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@ethereumjs/common@2.6.5': + '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - crc-32: 1.2.2 - ethereumjs-util: 7.1.5 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethereumjs/rlp@4.0.1': {} + '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) - '@ethereumjs/tx@3.5.2': + '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6)': dependencies: - '@ethereumjs/common': 2.6.5 - ethereumjs-util: 7.1.5 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@ethereumjs/util@8.1.0': + '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethereumjs/rlp': 4.0.1 - ethereum-cryptography: 2.1.2 - micro-ftch: 0.3.1 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/abi@5.0.7': + '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/abi@5.7.0': + '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/abstract-provider@5.7.0': + '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 + '@babel/core': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/abstract-signer@5.7.0': + '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6)': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 + '@babel/core': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 - '@ethersproject/address@5.7.0': + '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.23.6)': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp': 5.7.0 + '@babel/core': 7.23.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-simple-access': 7.24.6 + optional: true - '@ethersproject/base64@5.7.0': + '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-simple-access': 7.24.6 - '@ethersproject/basex@5.7.0': + '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/properties': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-simple-access': 7.24.6 - '@ethersproject/bignumber@5.7.0': + '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - bn.js: 5.2.1 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 - '@ethersproject/bytes@5.7.0': + '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 - '@ethersproject/constants@5.7.0': + '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bignumber': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/contracts@5.7.0': + '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/hash@5.7.0': + '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.23.6)': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@ethersproject/hdnode@5.7.0': + '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/json-wallets@5.7.0': + '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - aes-js: 3.0.0 - scrypt-js: 3.0.1 + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/keccak256@5.7.0': + '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 - js-sha3: 0.8.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/logger@5.7.0': {} + '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@ethersproject/networks@5.7.1': + '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/pbkdf2@5.7.0': + '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/sha2': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - '@ethersproject/properties@5.7.0': + '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 - bech32: 1.1.4 - ws: 7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) - '@ethersproject/random@5.7.0': + '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/rlp@5.7.0': + '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) - '@ethersproject/sha2@5.7.0': + '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - hash.js: 1.1.7 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) - '@ethersproject/signing-key@5.7.0': + '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - bn.js: 5.2.1 - elliptic: 6.5.4 - hash.js: 1.1.7 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/solidity@5.7.0': + '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) - '@ethersproject/strings@5.7.0': + '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/transactions@5.7.0': + '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/signing-key': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) - '@ethersproject/units@5.7.0': + '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@ethersproject/wallet@5.7.0': + '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) - '@ethersproject/web@5.7.1': + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6)': dependencies: - '@ethersproject/base64': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@ethersproject/wordlists@5.7.0': + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.6)': dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@fastify/busboy@2.1.0': {} + '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@float-capital/float-subgraph-uncrashable@0.0.0-internal-testing.5': + '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@rescript/std': 9.0.0 - graphql: 16.8.1 - graphql-import-node: 0.0.5(graphql@16.8.1) - js-yaml: 4.1.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@floating-ui/core@1.5.2': + '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)': dependencies: - '@floating-ui/utils': 0.1.6 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@floating-ui/dom@1.5.3': + '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.23.6)': dependencies: - '@floating-ui/core': 1.5.2 - '@floating-ui/utils': 0.1.6 + '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@floating-ui/react-dom@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@floating-ui/dom': 1.5.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@floating-ui/react-dom@2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)': dependencies: - '@floating-ui/dom': 1.5.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/core': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@floating-ui/utils@0.1.6': {} + '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) + optional: true - '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@gnosis.pm/safe-apps-sdk': 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 18.3.1 - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)': dependencies: - '@gnosis.pm/safe-apps-sdk': 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-6f23540c7d-20240528 - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) - '@gnosis.pm/safe-apps-sdk@7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6)': dependencies: - '@gnosis.pm/safe-react-gateway-sdk': 3.5.2(encoding@0.1.13) - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@gnosis.pm/safe-react-gateway-sdk@3.5.2(encoding@0.1.13)': + '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - cross-fetch: 3.1.8(encoding@0.1.13) - transitivePeerDependencies: - - encoding + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@gql.tada/cli-utils@1.3.9(graphql@16.8.1)(svelte@4.2.17)(typescript@5.4.5)': + '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)': dependencies: - '@0no-co/graphqlsp': 1.12.5(graphql@16.8.1)(typescript@5.4.5) - '@gql.tada/internal': 1.0.0(graphql@16.8.1)(typescript@5.4.5) - '@vue/compiler-dom': 3.4.27 - '@vue/language-core': 2.0.19(typescript@5.4.5) - graphql: 16.8.1 - svelte2tsx: 0.7.9(svelte@4.2.17)(typescript@5.4.5) - typescript: 5.4.5 - transitivePeerDependencies: - - svelte + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@gql.tada/internal@1.0.0(graphql@16.8.1)(typescript@5.4.5)': + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.6)': dependencies: - '@0no-co/graphql.web': 1.0.7(graphql@16.8.1) - graphql: 16.8.1 - typescript: 5.4.5 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@graphprotocol/graph-cli@0.64.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@float-capital/float-subgraph-uncrashable': 0.0.0-internal-testing.5 - '@oclif/core': 2.8.6(@types/node@20.12.12)(typescript@5.4.5) - '@oclif/plugin-autocomplete': 2.3.10(@types/node@20.12.12)(typescript@5.4.5) - '@oclif/plugin-not-found': 2.4.3(@types/node@20.12.12)(typescript@5.4.5) - '@whatwg-node/fetch': 0.8.8 - assemblyscript: 0.19.23 - binary-install-raw: 0.0.13(debug@4.3.4) - chalk: 3.0.0 - chokidar: 3.5.3 - debug: 4.3.4(supports-color@8.1.1) - docker-compose: 0.23.19 - dockerode: 2.5.8 - fs-extra: 9.1.0 - glob: 9.3.5 - gluegun: 5.1.2(debug@4.3.4) - graphql: 15.5.0 - immutable: 4.2.1 - ipfs-http-client: 60.0.1(encoding@0.1.13) - jayson: 4.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - js-yaml: 3.14.1 - prettier: 3.0.3 - request: 2.88.2 - semver: 7.4.0 - sync-request: 6.1.0 - tmp-promise: 3.0.3 - web3-eth-abi: 1.7.0 - which: 2.0.2 - yaml: 1.10.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - supports-color - - typescript - - utf-8-validate + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphprotocol/graph-ts@0.32.0': + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.6)': dependencies: - assemblyscript: 0.19.10 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 - '@graphql-codegen/add@5.0.2(graphql@16.8.1)': + '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@graphql-codegen/cli@5.0.0(@parcel/watcher@2.3.0)(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/generator': 7.23.6 - '@babel/template': 7.22.15 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6) '@babel/types': 7.23.6 - '@graphql-codegen/core': 4.0.0(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) - '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) - '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) - '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) - '@graphql-tools/load': 8.0.1(graphql@16.8.1) - '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@whatwg-node/fetch': 0.8.8 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.4.5) - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 16.8.1 - graphql-config: 5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - inquirer: 8.2.6 - is-glob: 4.0.3 - jiti: 1.21.0 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.3.6) - log-symbols: 4.1.0 - micromatch: 4.0.5 - shell-quote: 1.8.1 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.6.2 - yaml: 2.3.4 - yargs: 17.7.2 - optionalDependencies: - '@parcel/watcher': 2.3.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - cosmiconfig-toml-loader - - encoding - - enquirer - - supports-color - - typescript - - utf-8-validate - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.3.0)(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/generator': 7.23.6 - '@babel/template': 7.22.15 - '@babel/types': 7.23.6 - '@graphql-codegen/client-preset': 4.2.4(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/core': 4.0.2(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) - '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) - '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) - '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) - '@graphql-tools/load': 8.0.1(graphql@16.8.1) - '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@whatwg-node/fetch': 0.8.8 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.4.5) - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 16.8.1 - graphql-config: 5.0.3(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - inquirer: 8.2.6 - is-glob: 4.0.3 - jiti: 1.21.0 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.3.6) - log-symbols: 4.1.0 - micromatch: 4.0.5 - shell-quote: 1.8.1 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.6.2 - yaml: 2.3.4 - yargs: 17.7.2 - optionalDependencies: - '@parcel/watcher': 2.3.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - cosmiconfig-toml-loader - - encoding - - enquirer - - supports-color - - typescript - - utf-8-validate + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/types': 7.24.6 - '@graphql-codegen/client-preset@4.2.4(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.6)': dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - '@graphql-codegen/add': 5.0.2(graphql@16.8.1) - '@graphql-codegen/gql-tag-operations': 4.0.6(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-codegen/typed-document-node': 5.0.6(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/typescript': 4.0.6(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/typescript-operations': 4.2.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/documents': 1.0.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.6) + '@babel/types': 7.23.6 - '@graphql-codegen/client-preset@4.2.6(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - '@graphql-codegen/add': 5.0.2(graphql@16.8.1) - '@graphql-codegen/gql-tag-operations': 4.0.7(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/typed-document-node': 5.0.7(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/typescript': 4.0.7(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/typescript-operations': 4.2.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/documents': 1.0.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + regenerator-transform: 0.15.2 - '@graphql-codegen/core@4.0.0(graphql@16.8.1)': + '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-tools/schema': 10.0.2(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.5.3 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + regenerator-transform: 0.15.2 - '@graphql-codegen/core@4.0.2(graphql@16.8.1)': + '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-tools/schema': 10.0.2(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/gql-tag-operations@4.0.6(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.23.6) + semver: 6.3.1 transitivePeerDependencies: - - encoding - supports-color + optional: true - '@graphql-codegen/gql-tag-operations@4.0.7(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + semver: 6.3.1 transitivePeerDependencies: - - encoding - supports-color - '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.1)': + '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 8.13.1(graphql@16.8.1) - change-case-all: 1.0.14 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.4.1 + '@babel/core': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.1)': + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6)': dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.1) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.4.1 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@graphql-codegen/plugin-helpers@5.0.1(graphql@16.8.1)': + '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.5.3 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.1)': + '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.6.2 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.1)': + '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.8.1 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.6.2 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/schema-ast@4.0.0(graphql@16.8.1)': + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.5.3 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.1)': + '@babel/plugin-transform-spread@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + optional: true - '@graphql-codegen/typed-document-node@5.0.6(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@graphql-codegen/typed-document-node@5.0.7(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@graphql-codegen/typescript-graphql-request@6.1.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': + '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) - graphql-tag: 2.12.6(graphql@16.8.1) - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@graphql-codegen/typescript-graphql-request@6.2.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': + '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) - graphql-tag: 2.12.6(graphql@16.8.1) - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/typescript-operations@4.0.1(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-codegen/typescript': 4.0.1(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 4.0.1(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/typescript-operations@4.2.0(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-codegen/typescript': 4.0.6(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 - '@graphql-codegen/typescript-operations@4.2.1(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/typescript': 4.0.7(encoding@0.1.13)(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/typescript@4.0.1(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-codegen/schema-ast': 4.0.0(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 4.0.1(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/typescript@4.0.6(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/typescript@4.0.7(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1) - '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) - auto-bind: 4.0.0 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/visitor-plugin-common@2.13.1(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1) - '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 8.13.1(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.14 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.23.6) + optional: true - '@graphql-codegen/visitor-plugin-common@2.13.8(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) - '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 9.2.1(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@graphql-codegen/visitor-plugin-common@4.0.1(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6) - '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-codegen/visitor-plugin-common@5.2.0(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) - '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.8.1 - graphql-tag: 2.12.6(graphql@16.8.1) - parse-filepath: 1.0.2 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-tools/apollo-engine-loader@8.0.0(encoding@0.1.13)(graphql@16.8.1)': + '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@whatwg-node/fetch': 0.9.14 - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-tools/batch-execute@7.1.2(graphql@16.8.1)': + '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - dataloader: 2.0.0 - graphql: 16.8.1 - tslib: 2.2.0 - value-or-promise: 1.0.6 + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 - '@graphql-tools/batch-execute@9.0.2(graphql@16.8.1)': + '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.23.6)': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - dataloader: 2.2.2 - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true - '@graphql-tools/code-file-loader@8.0.3(graphql@16.8.1)': - dependencies: - '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - globby: 11.1.0 - graphql: 16.8.1 - tslib: 2.6.2 - unixify: 1.0.0 + '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + + '@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6(supports-color@9.4.0)) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + core-js-compat: 3.37.1 + semver: 6.3.1 transitivePeerDependencies: - supports-color - '@graphql-tools/delegate@10.0.3(graphql@16.8.1)': - dependencies: - '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1) - '@graphql-tools/executor': 1.2.0(graphql@16.8.1) - '@graphql-tools/schema': 10.0.2(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - dataloader: 2.2.2 - graphql: 16.8.1 - tslib: 2.6.2 + '@babel/preset-env@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) + core-js-compat: 3.37.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@graphql-tools/delegate@7.1.5(graphql@16.8.1)': + '@babel/preset-flow@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@ardatan/aggregate-error': 0.0.6 - '@graphql-tools/batch-execute': 7.1.2(graphql@16.8.1) - '@graphql-tools/schema': 7.1.5(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - dataloader: 2.0.0 - graphql: 16.8.1 - tslib: 2.2.0 - value-or-promise: 1.0.6 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@graphql-tools/documents@1.0.0(graphql@16.8.1)': + '@babel/preset-flow@7.24.6(@babel/core@7.24.6)': dependencies: - graphql: 16.8.1 - lodash.sortby: 4.7.0 - tslib: 2.6.2 + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6) - '@graphql-tools/executor-graphql-ws@1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@types/ws': 8.5.10 - graphql: 16.8.1 - graphql-ws: 5.14.3(graphql@16.8.1) - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.6.2 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/types': 7.24.6 + esutils: 2.0.3 - '@graphql-tools/executor-http@1.0.5(@types/node@20.12.12)(graphql@16.8.1)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 - '@whatwg-node/fetch': 0.9.14 - extract-files: 11.0.0 - graphql: 16.8.1 - meros: 1.3.0(@types/node@20.12.12) - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/types': 7.24.6 + esutils: 2.0.3 - '@graphql-tools/executor-http@1.0.5(@types/node@20.12.7)(graphql@16.8.1)': + '@babel/preset-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 - '@whatwg-node/fetch': 0.9.14 - extract-files: 11.0.0 - graphql: 16.8.1 - meros: 1.3.0(@types/node@20.12.7) - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@graphql-tools/executor-legacy-ws@1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@babel/preset-typescript@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@types/ws': 8.5.10 - graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.6.2 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) - '@graphql-tools/executor@1.2.0(graphql@16.8.1)': + '@babel/register@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 + '@babel/core': 7.24.6(supports-color@9.4.0) + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 - '@graphql-tools/executor@1.2.6(graphql@16.8.1)': + '@babel/register@7.24.6(@babel/core@7.24.6)': dependencies: - '@graphql-tools/utils': 10.2.1(graphql@16.8.1) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - '@repeaterjs/repeater': 3.0.5 - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 + '@babel/core': 7.24.6 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 - '@graphql-tools/git-loader@8.0.3(graphql@16.8.1)': + '@babel/regjsgen@0.8.0': {} + + '@babel/runtime@7.23.6': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - is-glob: 4.0.3 - micromatch: 4.0.5 - tslib: 2.6.2 - unixify: 1.0.0 - transitivePeerDependencies: - - supports-color + regenerator-runtime: 0.14.1 - '@graphql-tools/github-loader@8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1)': + '@babel/runtime@7.24.0': dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) - '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@whatwg-node/fetch': 0.9.14 - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - - encoding - - supports-color + regenerator-runtime: 0.14.1 - '@graphql-tools/github-loader@8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1)': + '@babel/runtime@7.24.5': dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) - '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@whatwg-node/fetch': 0.9.14 - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - - encoding - - supports-color + regenerator-runtime: 0.14.1 - '@graphql-tools/graphql-file-loader@6.2.7(graphql@16.8.1)': + '@babel/template@7.22.15': dependencies: - '@graphql-tools/import': 6.7.18(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.1.0 + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 - '@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.1)': + '@babel/template@7.24.6': dependencies: - '@graphql-tools/import': 7.0.0(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - globby: 11.1.0 - graphql: 16.8.1 - tslib: 2.6.2 - unixify: 1.0.0 + '@babel/code-frame': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 - '@graphql-tools/graphql-tag-pluck@8.1.0(graphql@16.8.1)': + '@babel/traverse@7.23.6': dependencies: - '@babel/core': 7.23.6 - '@babel/parser': 7.23.6 - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.6) - '@babel/traverse': 7.23.6 + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.24.6 '@babel/types': 7.23.6 - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 transitivePeerDependencies: - supports-color - '@graphql-tools/import@6.7.18(graphql@16.8.1)': - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.8.1) - graphql: 16.8.1 - resolve-from: 5.0.0 - tslib: 2.6.2 - - '@graphql-tools/import@7.0.0(graphql@16.8.1)': + '@babel/traverse@7.24.6': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - resolve-from: 5.0.0 - tslib: 2.6.2 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@graphql-tools/json-file-loader@6.2.6(graphql@16.8.1)': + '@babel/traverse@7.24.6(supports-color@9.4.0)': dependencies: - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.0.3 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + debug: 4.3.4(supports-color@9.4.0) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1)': + '@babel/types@7.23.6': dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - globby: 11.1.0 - graphql: 16.8.1 - tslib: 2.6.2 - unixify: 1.0.0 + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 - '@graphql-tools/load@6.2.8(graphql@16.8.1)': + '@babel/types@7.24.6': dependencies: - '@graphql-tools/merge': 6.2.14(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - globby: 11.0.3 - graphql: 16.8.1 - import-from: 3.0.0 - is-glob: 4.0.1 - p-limit: 3.1.0 - tslib: 2.2.0 - unixify: 1.0.0 - valid-url: 1.0.9 + '@babel/helper-string-parser': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 + to-fast-properties: 2.0.0 - '@graphql-tools/load@8.0.1(graphql@16.8.1)': + '@balancer-labs/sor@4.1.1-beta.16(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/constants@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: - '@graphql-tools/schema': 10.0.2(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - p-limit: 3.1.0 - tslib: 2.6.2 + '@ethersproject/abi': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/contracts': 5.7.0 + '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isomorphic-fetch: 2.2.1 - '@graphql-tools/merge@6.2.14(graphql@16.8.1)': - dependencies: - '@graphql-tools/schema': 7.1.5(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.2.0 + '@bcoe/v8-coverage@0.2.3': {} - '@graphql-tools/merge@9.0.1(graphql@16.8.1)': - dependencies: - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + '@biomejs/biome@1.8.0': + optionalDependencies: + '@biomejs/cli-darwin-arm64': 1.8.0 + '@biomejs/cli-darwin-x64': 1.8.0 + '@biomejs/cli-linux-arm64': 1.8.0 + '@biomejs/cli-linux-arm64-musl': 1.8.0 + '@biomejs/cli-linux-x64': 1.8.0 + '@biomejs/cli-linux-x64-musl': 1.8.0 + '@biomejs/cli-win32-arm64': 1.8.0 + '@biomejs/cli-win32-x64': 1.8.0 + + '@biomejs/cli-darwin-arm64@1.8.0': + optional: true - '@graphql-tools/optimize@1.4.0(graphql@16.8.1)': - dependencies: - graphql: 16.8.1 - tslib: 2.6.2 + '@biomejs/cli-darwin-x64@1.8.0': + optional: true - '@graphql-tools/optimize@2.0.0(graphql@16.8.1)': - dependencies: - graphql: 16.8.1 - tslib: 2.6.2 + '@biomejs/cli-linux-arm64-musl@1.8.0': + optional: true - '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': - dependencies: - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@types/js-yaml': 4.0.9 - '@types/json-stable-stringify': 1.0.36 - '@whatwg-node/fetch': 0.9.14 - chalk: 4.1.2 - debug: 4.3.4(supports-color@8.1.1) - dotenv: 16.3.1 - graphql: 16.8.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 - jose: 5.1.3 - js-yaml: 4.1.0 - json-stable-stringify: 1.1.0 - lodash: 4.17.21 - scuid: 1.1.0 - tslib: 2.6.2 - yaml-ast-parser: 0.0.43 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@biomejs/cli-linux-arm64@1.8.0': + optional: true - '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': - dependencies: - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@types/js-yaml': 4.0.9 - '@types/json-stable-stringify': 1.0.36 - '@whatwg-node/fetch': 0.9.14 - chalk: 4.1.2 - debug: 4.3.4(supports-color@8.1.1) - dotenv: 16.3.1 - graphql: 16.8.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 - jose: 5.1.3 - js-yaml: 4.1.0 - json-stable-stringify: 1.1.0 - lodash: 4.17.21 - scuid: 1.1.0 - tslib: 2.6.2 - yaml-ast-parser: 0.0.43 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@biomejs/cli-linux-x64-musl@1.8.0': + optional: true - '@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.8.1)': - dependencies: - '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 9.2.1(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@biomejs/cli-linux-x64@1.8.0': + optional: true - '@graphql-tools/relay-operation-optimizer@7.0.0(encoding@0.1.13)(graphql@16.8.1)': - dependencies: - '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - transitivePeerDependencies: - - encoding - - supports-color + '@biomejs/cli-win32-arm64@1.8.0': + optional: true - '@graphql-tools/schema@10.0.2(graphql@16.8.1)': - dependencies: - '@graphql-tools/merge': 9.0.1(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 + '@biomejs/cli-win32-x64@1.8.0': + optional: true - '@graphql-tools/schema@7.1.5(graphql@16.8.1)': + '@bleu/ui@0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': dependencies: - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.2.0 - value-or-promise: 1.0.6 + '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-menubar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-progress': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-select': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@tanstack/react-table': 8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + class-variance-authority: 0.7.0 + clsx: 2.1.1 + cmdk: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + copy-to-clipboard: 3.3.3 + date-fns: 3.6.0 + embla-carousel-react: 8.1.3(react@19.0.0-rc-6f23540c7d-20240528) + i18next: 23.11.5 + jodit: 4.2.25 + jodit-react: 4.1.2(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + object-to-formdata: 4.5.1 + react: 19.0.0-rc-6f23540c7d-20240528 + react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-colorful: 5.6.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-day-picker: 8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6f23540c7d-20240528) + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) + react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-plotly.js: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6f23540c7d-20240528) + react-router: 6.23.1(react@19.0.0-rc-6f23540c7d-20240528) + react-router-dom: 6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + swr: 2.2.5(react@19.0.0-rc-6f23540c7d-20240528) + tailwind-merge: 2.3.0 + zod: 3.23.8 + transitivePeerDependencies: + - '@types/react' + - '@types/react-dom' + - plotly.js + - react-native + + '@chainsafe/is-ip@2.0.2': {} + + '@chainsafe/netmask@2.0.0': + dependencies: + '@chainsafe/is-ip': 2.0.2 - '@graphql-tools/url-loader@6.10.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@choojs/findup@0.2.1': dependencies: - '@graphql-tools/delegate': 7.1.5(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - '@graphql-tools/wrap': 7.0.8(graphql@16.8.1) - '@microsoft/fetch-event-source': 2.0.1 - '@types/websocket': 1.0.2 - abort-controller: 3.0.0 - cross-fetch: 3.1.4 - extract-files: 9.0.0 - form-data: 4.0.0 - graphql: 16.8.1 - graphql-ws: 4.9.0(graphql@16.8.1) - is-promise: 4.0.0 - isomorphic-ws: 4.0.1(ws@7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - lodash: 4.17.21 - meros: 1.1.4(@types/node@20.12.12) - subscriptions-transport-ws: 0.9.19(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - sync-fetch: 0.3.0(encoding@0.1.13) - tslib: 2.2.0 - valid-url: 1.0.9 - ws: 7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + commander: 2.20.3 + + '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + bind-decorator: 1.0.11 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 6.1.0(supports-color@9.4.0) + eth-json-rpc-filters: 5.1.0 + eth-rpc-errors: 4.0.2 + json-rpc-engine: 6.1.0 + keccak: 3.0.4 + preact: 10.19.3 + qs: 6.11.2 + rxjs: 6.6.7 + sha.js: 2.4.11 + stream-browserify: 3.0.0 + util: 0.12.5 transitivePeerDependencies: - - '@types/node' - bufferutil - encoding + - supports-color - utf-8-validate - '@graphql-tools/url-loader@8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) - '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) - '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) - '@types/ws': 8.5.10 - '@whatwg-node/fetch': 0.9.14 - graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.6.2 - value-or-promise: 1.0.12 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@metamask/safe-event-emitter': 2.0.0 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + bind-decorator: 1.0.11 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 6.1.0 + eth-json-rpc-filters: 5.1.0 + eth-rpc-errors: 4.0.2 + json-rpc-engine: 6.1.0 + keccak: 3.0.4 + preact: 10.19.3 + qs: 6.11.2 + rxjs: 6.6.7 + sha.js: 2.4.11 + stream-browserify: 3.0.0 + util: 0.12.5 transitivePeerDependencies: - - '@types/node' - bufferutil - encoding + - supports-color - utf-8-validate - '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) - '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) - '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) - '@types/ws': 8.5.10 - '@whatwg-node/fetch': 0.9.14 - graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.6.2 - value-or-promise: 1.0.12 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@metamask/safe-event-emitter': 2.0.0 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + bind-decorator: 1.0.11 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 6.1.0 + eth-json-rpc-filters: 5.1.0 + eth-rpc-errors: 4.0.2 + json-rpc-engine: 6.1.0 + keccak: 3.0.4 + preact: 10.19.3 + qs: 6.11.2 + rxjs: 6.6.7 + sha.js: 2.4.11 + stream-browserify: 3.0.0 + util: 0.12.5 transitivePeerDependencies: - - '@types/node' - bufferutil - encoding + - supports-color - utf-8-validate - '@graphql-tools/utils@10.0.11(graphql@16.8.1)': + '@coinbase/wallet-sdk@3.9.3': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - cross-inspect: 1.0.0 - dset: 3.1.3 - graphql: 16.8.1 - tslib: 2.6.2 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 7.1.0 + eth-json-rpc-filters: 6.0.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.19.3 + sha.js: 2.4.11 + transitivePeerDependencies: + - supports-color - '@graphql-tools/utils@10.2.1(graphql@16.8.1)': + '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - cross-inspect: 1.0.0 - dset: 3.1.3 - graphql: 16.8.1 - tslib: 2.6.2 + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 7.1.0(supports-color@9.4.0) + eth-json-rpc-filters: 6.0.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.19.3 + sha.js: 2.4.11 + transitivePeerDependencies: + - supports-color - '@graphql-tools/utils@7.10.0(graphql@16.8.1)': + '@coinbase/wallet-sdk@4.0.2': dependencies: - '@ardatan/aggregate-error': 0.0.6 - camel-case: 4.1.2 - graphql: 16.8.1 - tslib: 2.2.0 + buffer: 6.0.3 + clsx: 1.2.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.19.3 + sha.js: 2.4.11 - '@graphql-tools/utils@8.13.1(graphql@16.8.1)': + '@commander-js/extra-typings@12.1.0(commander@12.1.0)': dependencies: - graphql: 16.8.1 - tslib: 2.6.2 + commander: 12.1.0 - '@graphql-tools/utils@9.2.1(graphql@16.8.1)': + '@cspotcode/source-map-support@0.8.1': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 + '@jridgewell/trace-mapping': 0.3.9 - '@graphql-tools/wrap@10.0.1(graphql@16.8.1)': + '@drizzle-team/studio@0.0.37': dependencies: - '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) - '@graphql-tools/schema': 10.0.2(graphql@16.8.1) - '@graphql-tools/utils': 10.0.11(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 + superjson: 2.2.1 - '@graphql-tools/wrap@7.0.8(graphql@16.8.1)': + '@emnapi/runtime@1.2.0': dependencies: - '@graphql-tools/delegate': 7.1.5(graphql@16.8.1) - '@graphql-tools/schema': 7.1.5(graphql@16.8.1) - '@graphql-tools/utils': 7.10.0(graphql@16.8.1) - graphql: 16.8.1 - tslib: 2.2.0 - value-or-promise: 1.0.6 + tslib: 2.6.2 + optional: true - '@graphql-typed-document-node/core@3.2.0(graphql@16.8.1)': - dependencies: - graphql: 16.8.1 + '@emotion/hash@0.8.0': {} - '@graphql-yoga/logger@2.0.0': + '@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.0.0)(typescript@5.4.5)': dependencies: + cosmiconfig: 7.0.0 + lodash.get: 4.4.2 + make-error: 1.3.6 + ts-node: 9.1.1(typescript@5.4.5) tslib: 2.6.2 + transitivePeerDependencies: + - typescript - '@graphql-yoga/subscription@5.0.0': + '@envelop/core@5.0.1': dependencies: - '@graphql-yoga/typed-event-target': 3.0.0 - '@repeaterjs/repeater': 3.0.5 - '@whatwg-node/events': 0.1.1 + '@envelop/types': 5.0.0 tslib: 2.6.2 - '@graphql-yoga/typed-event-target@3.0.0': + '@envelop/types@5.0.0': dependencies: - '@repeaterjs/repeater': 3.0.5 tslib: 2.6.2 - '@hono/node-server@1.11.2': {} - - '@hookform/resolvers@3.3.2(react-hook-form@7.43.9(react@18.3.1))': + '@esbuild-kit/core-utils@3.3.2': dependencies: - react-hook-form: 7.43.9(react@18.3.1) + esbuild: 0.18.20 + source-map-support: 0.5.21 - '@hookform/resolvers@3.4.2(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))': + '@esbuild-kit/esm-loader@2.6.5': dependencies: - react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) + '@esbuild-kit/core-utils': 3.3.2 + get-tsconfig: 4.7.2 - '@humanwhocodes/config-array@0.11.13': - dependencies: - '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@esbuild/aix-ppc64@0.19.10': + optional: true - '@humanwhocodes/module-importer@1.0.1': {} + '@esbuild/aix-ppc64@0.20.2': + optional: true - '@humanwhocodes/object-schema@2.0.1': {} + '@esbuild/android-arm64@0.16.17': + optional: true - '@iarna/toml@2.2.5': {} + '@esbuild/android-arm64@0.18.20': + optional: true - '@img/sharp-darwin-arm64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.0.2 + '@esbuild/android-arm64@0.19.10': optional: true - '@img/sharp-darwin-x64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.0.2 + '@esbuild/android-arm64@0.20.2': optional: true - '@img/sharp-libvips-darwin-arm64@1.0.2': + '@esbuild/android-arm@0.16.17': optional: true - '@img/sharp-libvips-darwin-x64@1.0.2': + '@esbuild/android-arm@0.18.20': optional: true - '@img/sharp-libvips-linux-arm64@1.0.2': + '@esbuild/android-arm@0.19.10': optional: true - '@img/sharp-libvips-linux-arm@1.0.2': + '@esbuild/android-arm@0.20.2': optional: true - '@img/sharp-libvips-linux-s390x@1.0.2': + '@esbuild/android-x64@0.16.17': optional: true - '@img/sharp-libvips-linux-x64@1.0.2': + '@esbuild/android-x64@0.18.20': optional: true - '@img/sharp-libvips-linuxmusl-arm64@1.0.2': + '@esbuild/android-x64@0.19.10': optional: true - '@img/sharp-libvips-linuxmusl-x64@1.0.2': + '@esbuild/android-x64@0.20.2': optional: true - '@img/sharp-linux-arm64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.0.2 + '@esbuild/darwin-arm64@0.16.17': optional: true - '@img/sharp-linux-arm@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.0.2 + '@esbuild/darwin-arm64@0.18.20': optional: true - '@img/sharp-linux-s390x@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.0.2 + '@esbuild/darwin-arm64@0.19.10': optional: true - '@img/sharp-linux-x64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.0.2 + '@esbuild/darwin-arm64@0.20.2': optional: true - '@img/sharp-linuxmusl-arm64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 + '@esbuild/darwin-x64@0.16.17': optional: true - '@img/sharp-linuxmusl-x64@0.33.4': - optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.0.2 + '@esbuild/darwin-x64@0.18.20': optional: true - '@img/sharp-wasm32@0.33.4': - dependencies: - '@emnapi/runtime': 1.2.0 + '@esbuild/darwin-x64@0.19.10': optional: true - '@img/sharp-win32-ia32@0.33.4': + '@esbuild/darwin-x64@0.20.2': optional: true - '@img/sharp-win32-x64@0.33.4': + '@esbuild/freebsd-arm64@0.16.17': optional: true - '@ioredis/commands@1.2.0': {} + '@esbuild/freebsd-arm64@0.18.20': + optional: true - '@ipld/dag-cbor@9.0.6': - dependencies: - cborg: 4.0.5 - multiformats: 12.1.3 + '@esbuild/freebsd-arm64@0.19.10': + optional: true - '@ipld/dag-json@10.1.5': - dependencies: - cborg: 4.0.5 - multiformats: 12.1.3 + '@esbuild/freebsd-arm64@0.20.2': + optional: true - '@ipld/dag-pb@4.0.6': - dependencies: - multiformats: 12.1.3 + '@esbuild/freebsd-x64@0.16.17': + optional: true - '@isaacs/cliui@8.0.2': - dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 + '@esbuild/freebsd-x64@0.18.20': + optional: true - '@istanbuljs/load-nyc-config@1.1.0': - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 + '@esbuild/freebsd-x64@0.19.10': + optional: true - '@istanbuljs/schema@0.1.3': {} + '@esbuild/freebsd-x64@0.20.2': + optional: true - '@jest/console@29.7.0': - dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 + '@esbuild/linux-arm64@0.16.17': + optional: true - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node + '@esbuild/linux-arm64@0.18.20': + optional: true - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node + '@esbuild/linux-arm64@0.19.10': + optional: true - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node + '@esbuild/linux-arm64@0.20.2': + optional: true - '@jest/environment@29.7.0': - dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 - jest-mock: 29.7.0 + '@esbuild/linux-arm@0.16.17': + optional: true - '@jest/expect-utils@29.7.0': - dependencies: - jest-get-type: 29.6.3 + '@esbuild/linux-arm@0.18.20': + optional: true - '@jest/expect@29.7.0': - dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-arm@0.19.10': + optional: true - '@jest/fake-timers@29.7.0': - dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.12.12 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-util: 29.7.0 + '@esbuild/linux-arm@0.20.2': + optional: true - '@jest/globals@29.7.0': - dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 - jest-mock: 29.7.0 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-ia32@0.16.17': + optional: true - '@jest/reporters@29.7.0': - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.20 - '@types/node': 20.12.12 - chalk: 4.1.2 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.1 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.6 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - jest-worker: 29.7.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.2.0 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-ia32@0.18.20': + optional: true - '@jest/schemas@29.6.3': - dependencies: - '@sinclair/typebox': 0.27.8 + '@esbuild/linux-ia32@0.19.10': + optional: true - '@jest/source-map@29.6.3': - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - callsites: 3.1.0 - graceful-fs: 4.2.11 + '@esbuild/linux-ia32@0.20.2': + optional: true - '@jest/test-result@29.7.0': - dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 + '@esbuild/linux-loong64@0.16.17': + optional: true - '@jest/test-sequencer@29.7.0': - dependencies: - '@jest/test-result': 29.7.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - slash: 3.0.0 + '@esbuild/linux-loong64@0.18.20': + optional: true - '@jest/transform@29.7.0': - dependencies: - '@babel/core': 7.23.6 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.20 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-loong64@0.19.10': + optional: true - '@jest/types@24.9.0': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 1.1.2 - '@types/yargs': 13.0.12 + '@esbuild/linux-loong64@0.20.2': + optional: true - '@jest/types@29.6.3': - dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 17.0.32 - chalk: 4.1.2 + '@esbuild/linux-mips64el@0.16.17': + optional: true - '@jridgewell/gen-mapping@0.3.3': - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.20 + '@esbuild/linux-mips64el@0.18.20': + optional: true - '@jridgewell/resolve-uri@3.1.1': {} + '@esbuild/linux-mips64el@0.19.10': + optional: true - '@jridgewell/set-array@1.1.2': {} + '@esbuild/linux-mips64el@0.20.2': + optional: true - '@jridgewell/sourcemap-codec@1.4.15': {} + '@esbuild/linux-ppc64@0.16.17': + optional: true - '@jridgewell/trace-mapping@0.3.20': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@esbuild/linux-ppc64@0.18.20': + optional: true - '@jridgewell/trace-mapping@0.3.9': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@esbuild/linux-ppc64@0.19.10': + optional: true - '@kamilkisiela/fast-url-parser@1.1.4': {} + '@esbuild/linux-ppc64@0.20.2': + optional: true - '@libp2p/interface-connection@4.0.0': - dependencies: - '@libp2p/interface-peer-id': 2.0.2 - '@libp2p/interfaces': 3.3.2 - '@multiformats/multiaddr': 12.1.11 - it-stream-types: 1.0.5 - uint8arraylist: 2.4.7 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-riscv64@0.16.17': + optional: true - '@libp2p/interface-keychain@2.0.5': - dependencies: - '@libp2p/interface-peer-id': 2.0.2 - multiformats: 11.0.2 + '@esbuild/linux-riscv64@0.18.20': + optional: true - '@libp2p/interface-peer-id@2.0.2': - dependencies: - multiformats: 11.0.2 + '@esbuild/linux-riscv64@0.19.10': + optional: true - '@libp2p/interface-peer-info@1.0.10': - dependencies: - '@libp2p/interface-peer-id': 2.0.2 - '@multiformats/multiaddr': 12.1.11 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-riscv64@0.20.2': + optional: true - '@libp2p/interface-pubsub@3.0.7': - dependencies: - '@libp2p/interface-connection': 4.0.0 - '@libp2p/interface-peer-id': 2.0.2 - '@libp2p/interfaces': 3.3.2 - it-pushable: 3.2.3 - uint8arraylist: 2.4.7 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-s390x@0.16.17': + optional: true - '@libp2p/interface@1.0.2': - dependencies: - '@multiformats/multiaddr': 12.1.11 - it-pushable: 3.2.3 - it-stream-types: 2.0.1 - multiformats: 12.1.3 - uint8arraylist: 2.4.7 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-s390x@0.18.20': + optional: true - '@libp2p/interfaces@3.3.2': {} + '@esbuild/linux-s390x@0.19.10': + optional: true - '@libp2p/logger@2.1.1': - dependencies: - '@libp2p/interface-peer-id': 2.0.2 - '@multiformats/multiaddr': 12.1.11 - debug: 4.3.4(supports-color@8.1.1) - interface-datastore: 8.2.9 - multiformats: 11.0.2 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-s390x@0.20.2': + optional: true - '@libp2p/peer-id@2.0.4': - dependencies: - '@libp2p/interface-peer-id': 2.0.2 - '@libp2p/interfaces': 3.3.2 - multiformats: 11.0.2 - uint8arrays: 4.0.10 + '@esbuild/linux-x64@0.16.17': + optional: true - '@lit-labs/ssr-dom-shim@1.1.2': {} + '@esbuild/linux-x64@0.18.20': + optional: true - '@lit/reactive-element@1.6.3': - dependencies: - '@lit-labs/ssr-dom-shim': 1.1.2 + '@esbuild/linux-x64@0.19.10': + optional: true - '@mapbox/geojson-rewind@0.5.2': - dependencies: - get-stream: 6.0.1 - minimist: 1.2.8 + '@esbuild/linux-x64@0.20.2': + optional: true - '@mapbox/geojson-types@1.0.2': {} - - '@mapbox/jsonlint-lines-primitives@2.0.2': {} - - '@mapbox/mapbox-gl-supported@1.5.0(mapbox-gl@1.10.1)': - dependencies: - mapbox-gl: 1.10.1 - - '@mapbox/point-geometry@0.1.0': {} - - '@mapbox/tiny-sdf@1.2.5': {} - - '@mapbox/unitbezier@0.0.0': {} - - '@mapbox/vector-tile@1.3.1': - dependencies: - '@mapbox/point-geometry': 0.1.0 - - '@mapbox/whoots-js@3.1.0': {} - - '@mdn/browser-compat-data@5.5.1': {} - - '@metamask/safe-event-emitter@2.0.0': {} - - '@metamask/utils@3.6.0': - dependencies: - '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@8.1.1) - semver: 7.5.4 - superstruct: 1.0.3 - transitivePeerDependencies: - - supports-color - - '@microsoft/fetch-event-source@2.0.1': {} - - '@motionone/animation@10.16.3': - dependencies: - '@motionone/easing': 10.16.3 - '@motionone/types': 10.16.3 - '@motionone/utils': 10.16.3 - tslib: 2.6.2 - - '@motionone/dom@10.16.4': - dependencies: - '@motionone/animation': 10.16.3 - '@motionone/generators': 10.16.4 - '@motionone/types': 10.16.3 - '@motionone/utils': 10.16.3 - hey-listen: 1.0.8 - tslib: 2.6.2 - - '@motionone/easing@10.16.3': - dependencies: - '@motionone/utils': 10.16.3 - tslib: 2.6.2 - - '@motionone/generators@10.16.4': - dependencies: - '@motionone/types': 10.16.3 - '@motionone/utils': 10.16.3 - tslib: 2.6.2 - - '@motionone/svelte@10.16.4': - dependencies: - '@motionone/dom': 10.16.4 - tslib: 2.6.2 - - '@motionone/types@10.16.3': {} - - '@motionone/utils@10.16.3': - dependencies: - '@motionone/types': 10.16.3 - hey-listen: 1.0.8 - tslib: 2.6.2 - - '@motionone/vue@10.16.4': - dependencies: - '@motionone/dom': 10.16.4 - tslib: 2.6.2 - - '@multiformats/multiaddr-to-uri@9.0.7': - dependencies: - '@multiformats/multiaddr': 12.1.11 - transitivePeerDependencies: - - supports-color - - '@multiformats/multiaddr@11.6.1': - dependencies: - '@chainsafe/is-ip': 2.0.2 - dns-over-http-resolver: 2.1.3 - err-code: 3.0.1 - multiformats: 11.0.2 - uint8arrays: 4.0.10 - varint: 6.0.0 - transitivePeerDependencies: - - supports-color - - '@multiformats/multiaddr@12.1.11': - dependencies: - '@chainsafe/is-ip': 2.0.2 - '@chainsafe/netmask': 2.0.0 - '@libp2p/interface': 1.0.2 - dns-over-http-resolver: 3.0.0 - multiformats: 12.1.3 - uint8-varint: 2.0.2 - uint8arrays: 4.0.10 - transitivePeerDependencies: - - supports-color - - '@next/env@13.5.6': {} - - '@next/env@14.0.4': {} - - '@next/env@14.2.3': {} - - '@next/env@15.0.0-rc.0': {} - - '@next/eslint-plugin-next@14.0.4': - dependencies: - glob: 7.1.7 - - '@next/eslint-plugin-next@14.2.3': - dependencies: - glob: 10.3.10 - - '@next/swc-darwin-arm64@13.5.6': - optional: true - - '@next/swc-darwin-arm64@14.0.4': + '@esbuild/netbsd-x64@0.16.17': optional: true - '@next/swc-darwin-arm64@14.2.3': + '@esbuild/netbsd-x64@0.18.20': optional: true - '@next/swc-darwin-arm64@15.0.0-rc.0': + '@esbuild/netbsd-x64@0.19.10': optional: true - '@next/swc-darwin-x64@13.5.6': + '@esbuild/netbsd-x64@0.20.2': optional: true - '@next/swc-darwin-x64@14.0.4': + '@esbuild/openbsd-x64@0.16.17': optional: true - '@next/swc-darwin-x64@14.2.3': + '@esbuild/openbsd-x64@0.18.20': optional: true - '@next/swc-darwin-x64@15.0.0-rc.0': + '@esbuild/openbsd-x64@0.19.10': optional: true - '@next/swc-linux-arm64-gnu@13.5.6': + '@esbuild/openbsd-x64@0.20.2': optional: true - '@next/swc-linux-arm64-gnu@14.0.4': + '@esbuild/sunos-x64@0.16.17': optional: true - '@next/swc-linux-arm64-gnu@14.2.3': + '@esbuild/sunos-x64@0.18.20': optional: true - '@next/swc-linux-arm64-gnu@15.0.0-rc.0': + '@esbuild/sunos-x64@0.19.10': optional: true - '@next/swc-linux-arm64-musl@13.5.6': + '@esbuild/sunos-x64@0.20.2': optional: true - '@next/swc-linux-arm64-musl@14.0.4': + '@esbuild/win32-arm64@0.16.17': optional: true - '@next/swc-linux-arm64-musl@14.2.3': + '@esbuild/win32-arm64@0.18.20': optional: true - '@next/swc-linux-arm64-musl@15.0.0-rc.0': + '@esbuild/win32-arm64@0.19.10': optional: true - '@next/swc-linux-x64-gnu@13.5.6': + '@esbuild/win32-arm64@0.20.2': optional: true - '@next/swc-linux-x64-gnu@14.0.4': + '@esbuild/win32-ia32@0.16.17': optional: true - '@next/swc-linux-x64-gnu@14.2.3': + '@esbuild/win32-ia32@0.18.20': optional: true - '@next/swc-linux-x64-gnu@15.0.0-rc.0': + '@esbuild/win32-ia32@0.19.10': optional: true - '@next/swc-linux-x64-musl@13.5.6': + '@esbuild/win32-ia32@0.20.2': optional: true - '@next/swc-linux-x64-musl@14.0.4': + '@esbuild/win32-x64@0.16.17': optional: true - '@next/swc-linux-x64-musl@14.2.3': + '@esbuild/win32-x64@0.18.20': optional: true - '@next/swc-linux-x64-musl@15.0.0-rc.0': + '@esbuild/win32-x64@0.19.10': optional: true - '@next/swc-win32-arm64-msvc@13.5.6': + '@esbuild/win32-x64@0.20.2': optional: true - '@next/swc-win32-arm64-msvc@14.0.4': - optional: true + '@escape.tech/graphql-armor-max-aliases@2.4.0': + dependencies: + graphql: 16.8.1 + optionalDependencies: + '@envelop/core': 5.0.1 + '@escape.tech/graphql-armor-types': 0.6.0 - '@next/swc-win32-arm64-msvc@14.2.3': - optional: true + '@escape.tech/graphql-armor-max-depth@2.3.0': + dependencies: + graphql: 16.8.1 + optionalDependencies: + '@envelop/core': 5.0.1 + '@escape.tech/graphql-armor-types': 0.6.0 - '@next/swc-win32-arm64-msvc@15.0.0-rc.0': - optional: true + '@escape.tech/graphql-armor-max-tokens@2.4.0': + dependencies: + graphql: 16.8.1 + optionalDependencies: + '@envelop/core': 5.0.1 + '@escape.tech/graphql-armor-types': 0.6.0 - '@next/swc-win32-ia32-msvc@13.5.6': + '@escape.tech/graphql-armor-types@0.6.0': + dependencies: + graphql: 16.8.1 optional: true - '@next/swc-win32-ia32-msvc@14.0.4': - optional: true + '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)': + dependencies: + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 - '@next/swc-win32-ia32-msvc@14.2.3': - optional: true + '@eslint-community/regexpp@4.10.0': {} - '@next/swc-win32-ia32-msvc@15.0.0-rc.0': - optional: true + '@eslint/eslintrc@2.1.4': + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color - '@next/swc-win32-x64-msvc@13.5.6': - optional: true + '@eslint/js@8.56.0': {} - '@next/swc-win32-x64-msvc@14.0.4': - optional: true + '@ethereumjs/common@2.6.5': + dependencies: + crc-32: 1.2.2 + ethereumjs-util: 7.1.5 - '@next/swc-win32-x64-msvc@14.2.3': - optional: true + '@ethereumjs/common@3.2.0': + dependencies: + '@ethereumjs/util': 8.1.0 + crc-32: 1.2.2 - '@next/swc-win32-x64-msvc@15.0.0-rc.0': - optional: true + '@ethereumjs/rlp@4.0.1': {} - '@noble/curves@1.1.0': + '@ethereumjs/tx@3.5.2': dependencies: - '@noble/hashes': 1.3.1 + '@ethereumjs/common': 2.6.5 + ethereumjs-util: 7.1.5 - '@noble/curves@1.2.0': + '@ethereumjs/tx@4.2.0': dependencies: - '@noble/hashes': 1.3.2 + '@ethereumjs/common': 3.2.0 + '@ethereumjs/rlp': 4.0.1 + '@ethereumjs/util': 8.1.0 + ethereum-cryptography: 2.1.2 - '@noble/curves@1.3.0': + '@ethereumjs/util@8.1.0': dependencies: - '@noble/hashes': 1.3.3 - - '@noble/hashes@1.3.1': {} - - '@noble/hashes@1.3.2': {} - - '@noble/hashes@1.3.3': {} + '@ethereumjs/rlp': 4.0.1 + ethereum-cryptography: 2.1.2 + micro-ftch: 0.3.1 - '@nodelib/fs.scandir@2.1.5': + '@ethersproject/abi@5.0.7': dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - '@nodelib/fs.walk@1.2.8': + '@ethersproject/abi@5.7.0': dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.16.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - '@oclif/core@2.15.0(@types/node@20.12.12)(typescript@5.4.5)': + '@ethersproject/abstract-provider@5.7.0': dependencies: - '@types/cli-progress': 3.11.5 - ansi-escapes: 4.3.2 - ansi-styles: 4.3.0 - cardinal: 2.1.1 - chalk: 4.1.2 - clean-stack: 3.0.1 - cli-progress: 3.12.0 - debug: 4.3.4(supports-color@8.1.1) - ejs: 3.1.9 - get-package-type: 0.1.0 - globby: 11.1.0 - hyperlinker: 1.0.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - js-yaml: 3.14.1 - natural-orderby: 2.0.3 - object-treeify: 1.1.33 - password-prompt: 1.1.3 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - supports-color: 8.1.1 - supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) - tslib: 2.6.2 - widest-line: 3.1.0 - wordwrap: 1.0.0 - wrap-ansi: 7.0.0 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - typescript + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 - '@oclif/core@2.8.6(@types/node@20.12.12)(typescript@5.4.5)': + '@ethersproject/abstract-signer@5.7.0': dependencies: - '@types/cli-progress': 3.11.5 - ansi-escapes: 4.3.2 - ansi-styles: 4.3.0 - cardinal: 2.1.1 - chalk: 4.1.2 - clean-stack: 3.0.1 - cli-progress: 3.12.0 - debug: 4.3.4(supports-color@8.1.1) - ejs: 3.1.9 - fs-extra: 9.1.0 - get-package-type: 0.1.0 - globby: 11.1.0 - hyperlinker: 1.0.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - js-yaml: 3.14.1 - natural-orderby: 2.0.3 - object-treeify: 1.1.33 - password-prompt: 1.1.3 - semver: 7.5.4 - string-width: 4.2.3 - strip-ansi: 6.0.1 - supports-color: 8.1.1 - supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) - tslib: 2.6.2 - widest-line: 3.1.0 - wordwrap: 1.0.0 - wrap-ansi: 7.0.0 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - typescript + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 - '@oclif/plugin-autocomplete@2.3.10(@types/node@20.12.12)(typescript@5.4.5)': + '@ethersproject/address@5.7.0': dependencies: - '@oclif/core': 2.15.0(@types/node@20.12.12)(typescript@5.4.5) - chalk: 4.1.2 - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - supports-color - - typescript + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/rlp': 5.7.0 - '@oclif/plugin-not-found@2.4.3(@types/node@20.12.12)(typescript@5.4.5)': + '@ethersproject/base64@5.7.0': dependencies: - '@oclif/core': 2.15.0(@types/node@20.12.12)(typescript@5.4.5) - chalk: 4.1.2 - fast-levenshtein: 3.0.0 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - typescript + '@ethersproject/bytes': 5.7.0 - '@opentelemetry/api@1.8.0': {} + '@ethersproject/basex@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/properties': 5.7.0 - '@parcel/watcher-android-arm64@2.3.0': - optional: true + '@ethersproject/bignumber@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + bn.js: 5.2.1 - '@parcel/watcher-darwin-arm64@2.3.0': - optional: true + '@ethersproject/bytes@5.7.0': + dependencies: + '@ethersproject/logger': 5.7.0 - '@parcel/watcher-darwin-x64@2.3.0': - optional: true + '@ethersproject/constants@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 - '@parcel/watcher-freebsd-x64@2.3.0': - optional: true + '@ethersproject/contracts@5.7.0': + dependencies: + '@ethersproject/abi': 5.7.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 - '@parcel/watcher-linux-arm-glibc@2.3.0': - optional: true + '@ethersproject/hash@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - '@parcel/watcher-linux-arm64-glibc@2.3.0': - optional: true + '@ethersproject/hdnode@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 - '@parcel/watcher-linux-arm64-musl@2.3.0': - optional: true + '@ethersproject/json-wallets@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + aes-js: 3.0.0 + scrypt-js: 3.0.1 - '@parcel/watcher-linux-x64-glibc@2.3.0': - optional: true + '@ethersproject/keccak256@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + js-sha3: 0.8.0 - '@parcel/watcher-linux-x64-musl@2.3.0': - optional: true + '@ethersproject/logger@5.7.0': {} - '@parcel/watcher-wasm@2.3.0': + '@ethersproject/networks@5.7.1': dependencies: - is-glob: 4.0.3 - micromatch: 4.0.5 - - '@parcel/watcher-win32-arm64@2.3.0': - optional: true + '@ethersproject/logger': 5.7.0 - '@parcel/watcher-win32-ia32@2.3.0': - optional: true + '@ethersproject/pbkdf2@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/sha2': 5.7.0 - '@parcel/watcher-win32-x64@2.3.0': - optional: true + '@ethersproject/properties@5.7.0': + dependencies: + '@ethersproject/logger': 5.7.0 - '@parcel/watcher@2.3.0': + '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - detect-libc: 1.0.3 - is-glob: 4.0.3 - micromatch: 4.0.5 - node-addon-api: 7.0.0 - optionalDependencies: - '@parcel/watcher-android-arm64': 2.3.0 - '@parcel/watcher-darwin-arm64': 2.3.0 - '@parcel/watcher-darwin-x64': 2.3.0 - '@parcel/watcher-freebsd-x64': 2.3.0 - '@parcel/watcher-linux-arm-glibc': 2.3.0 - '@parcel/watcher-linux-arm64-glibc': 2.3.0 - '@parcel/watcher-linux-arm64-musl': 2.3.0 - '@parcel/watcher-linux-x64-glibc': 2.3.0 - '@parcel/watcher-linux-x64-musl': 2.3.0 - '@parcel/watcher-win32-arm64': 2.3.0 - '@parcel/watcher-win32-ia32': 2.3.0 - '@parcel/watcher-win32-x64': 2.3.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 + bech32: 1.1.4 + ws: 7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@peculiar/asn1-schema@2.3.8': + '@ethersproject/random@5.7.0': dependencies: - asn1js: 3.0.5 - pvtsutils: 1.3.5 - tslib: 2.6.2 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 - '@peculiar/json-schema@1.1.12': + '@ethersproject/rlp@5.7.0': dependencies: - tslib: 2.6.2 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 - '@peculiar/webcrypto@1.4.3': + '@ethersproject/sha2@5.7.0': dependencies: - '@peculiar/asn1-schema': 2.3.8 - '@peculiar/json-schema': 1.1.12 - pvtsutils: 1.3.5 - tslib: 2.6.2 - webcrypto-core: 1.7.7 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + hash.js: 1.1.7 - '@pkgjs/parseargs@0.11.0': - optional: true + '@ethersproject/signing-key@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + bn.js: 5.2.1 + elliptic: 6.5.4 + hash.js: 1.1.7 - '@pkgr/utils@2.4.2': + '@ethersproject/solidity@5.7.0': dependencies: - cross-spawn: 7.0.3 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.0.0 - tslib: 2.6.2 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 - '@plotly/d3-sankey-circular@0.33.1': + '@ethersproject/strings@5.7.0': dependencies: - d3-array: 1.2.4 - d3-collection: 1.0.7 - d3-shape: 1.3.7 - elementary-circuits-directed-graph: 1.3.1 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 - '@plotly/d3-sankey@0.7.2': + '@ethersproject/transactions@5.7.0': dependencies: - d3-array: 1.2.4 - d3-collection: 1.0.7 - d3-shape: 1.3.7 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/signing-key': 5.7.0 - '@plotly/d3@3.8.1': {} + '@ethersproject/units@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 - '@plotly/point-cluster@3.1.9': + '@ethersproject/wallet@5.7.0': dependencies: - array-bounds: 1.0.1 - binary-search-bounds: 2.0.5 - clamp: 1.0.1 - defined: 1.0.1 - dtype: 2.0.0 - flatten-vertex-data: 1.0.2 - is-obj: 1.0.1 - math-log2: 1.0.1 - parse-rect: 1.2.0 - pick-by-alias: 1.2.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/json-wallets': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 - '@plotly/regl@2.1.2': {} + '@ethersproject/web@5.7.1': + dependencies: + '@ethersproject/base64': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - '@ponder/core@0.1.6(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + '@ethersproject/wordlists@5.7.0': dependencies: - '@babel/code-frame': 7.23.5 - abitype: 0.10.3(typescript@5.4.5)(zod@3.23.8) - async-mutex: 0.4.1 - better-sqlite3: 9.6.0 - cac: 6.7.14 - conf: 12.0.0 - cors: 2.8.5 - detect-package-manager: 3.0.2 - dotenv: 16.3.1 - emittery: 1.0.3 - ethereum-bloom-filters: 1.0.10 - express: 4.18.2 - glob: 10.3.10 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 + + '@fastify/busboy@2.1.0': {} + + '@float-capital/float-subgraph-uncrashable@0.0.0-internal-testing.5': + dependencies: + '@rescript/std': 9.0.0 graphql: 16.8.1 - graphql-http: 1.22.1(graphql@16.8.1) - http-terminator: 3.2.0 - ink: 4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - kysely: 0.26.3 - magic-string: 0.30.10 - p-limit: 5.0.0 - p-queue: 7.4.1 - pg: 8.11.3 - picocolors: 1.0.0 - pino: 8.21.0 - prom-client: 15.1.2 + graphql-import-node: 0.0.5(graphql@16.8.1) + js-yaml: 4.1.0 + + '@floating-ui/core@1.5.2': + dependencies: + '@floating-ui/utils': 0.1.6 + + '@floating-ui/dom@1.5.3': + dependencies: + '@floating-ui/core': 1.5.2 + '@floating-ui/utils': 0.1.6 + + '@floating-ui/react-dom@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@floating-ui/dom': 1.5.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@floating-ui/react-dom@2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@floating-ui/dom': 1.5.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@floating-ui/utils@0.1.6': {} + + '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': + dependencies: + '@gnosis.pm/safe-apps-sdk': 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) react: 18.3.1 - retry: 0.13.1 - stacktrace-parser: 0.1.10 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - vite: 5.2.12(@types/node@18.19.33) - vite-node: 1.6.0(@types/node@18.19.33) - optionalDependencies: - typescript: 5.4.5 transitivePeerDependencies: - - '@types/node' - - '@types/react' - bufferutil - - less - - lightningcss - - pg-native - - react-devtools-core - - sass - - stylus - - sugarss - - supports-color - - terser + - encoding - utf-8-validate - - zod - '@ponder/core@0.4.31(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10)': dependencies: - '@babel/code-frame': 7.23.5 - '@commander-js/extra-typings': 12.1.0(commander@12.1.0) - '@escape.tech/graphql-armor-max-aliases': 2.4.0 - '@escape.tech/graphql-armor-max-depth': 2.3.0 - '@escape.tech/graphql-armor-max-tokens': 2.4.0 - '@hono/node-server': 1.11.2 - '@ponder/utils': 0.1.5(typescript@5.4.5)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)) - abitype: 0.10.3(typescript@5.4.5)(zod@3.23.8) - better-sqlite3: 10.1.0 - commander: 12.1.0 - conf: 12.0.0 - dataloader: 2.2.2 - detect-package-manager: 3.0.2 - dotenv: 16.3.1 - emittery: 1.0.3 - ethereum-bloom-filters: 1.0.10 - glob: 10.3.10 - graphql: 16.8.1 - graphql-type-json: 0.3.2(graphql@16.8.1) - graphql-yoga: 5.3.1(graphql@16.8.1) - hono: 4.4.2 - http-terminator: 3.2.0 - ink: 4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - kysely: 0.26.3 - magic-string: 0.30.10 - p-queue: 7.4.1 - pg: 8.11.3 - pg-connection-string: 2.6.2 - picocolors: 1.0.0 - pino: 8.21.0 - prom-client: 15.1.2 - react: 18.3.1 - stacktrace-parser: 0.1.10 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - vite: 5.2.12(@types/node@18.19.33) - vite-node: 1.6.0(@types/node@18.19.33) - vite-tsconfig-paths: 4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@18.19.33)) - optionalDependencies: - typescript: 5.4.5 + '@gnosis.pm/safe-apps-sdk': 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + react: 19.0.0-rc-6f23540c7d-20240528 transitivePeerDependencies: - - '@types/node' - - '@types/react' - bufferutil - - less - - lightningcss - - pg-native - - react-devtools-core - - sass - - stylus - - sugarss - - supports-color - - terser + - encoding - utf-8-validate - - zod - '@ponder/utils@0.1.5(typescript@5.4.5)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))': + '@gnosis.pm/safe-apps-sdk@7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - optionalDependencies: - typescript: 5.4.5 - - '@protobufjs/aspromise@1.1.2': {} - - '@protobufjs/base64@1.1.2': {} - - '@protobufjs/codegen@2.0.4': {} - - '@protobufjs/eventemitter@1.1.0': {} + '@gnosis.pm/safe-react-gateway-sdk': 3.5.2(encoding@0.1.13) + ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - encoding + - utf-8-validate - '@protobufjs/fetch@1.1.0': + '@gnosis.pm/safe-react-gateway-sdk@3.5.2(encoding@0.1.13)': dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/inquire': 1.1.0 - - '@protobufjs/float@1.0.2': {} - - '@protobufjs/inquire@1.1.0': {} - - '@protobufjs/path@1.1.2': {} - - '@protobufjs/pool@1.1.0': {} - - '@protobufjs/utf8@1.1.0': {} + cross-fetch: 3.1.8(encoding@0.1.13) + transitivePeerDependencies: + - encoding - '@radix-ui/colors@3.0.0': {} + '@gql.tada/cli-utils@1.3.9(graphql@16.8.1)(svelte@4.2.17)(typescript@5.4.5)': + dependencies: + '@0no-co/graphqlsp': 1.12.5(graphql@16.8.1)(typescript@5.4.5) + '@gql.tada/internal': 1.0.0(graphql@16.8.1)(typescript@5.4.5) + '@vue/compiler-dom': 3.4.27 + '@vue/language-core': 2.0.19(typescript@5.4.5) + graphql: 16.8.1 + svelte2tsx: 0.7.9(svelte@4.2.17)(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - svelte - '@radix-ui/number@1.0.1': + '@gql.tada/internal@1.0.0(graphql@16.8.1)(typescript@5.4.5)': dependencies: - '@babel/runtime': 7.23.6 + '@0no-co/graphql.web': 1.0.7(graphql@16.8.1) + graphql: 16.8.1 + typescript: 5.4.5 - '@radix-ui/primitive@1.0.0': + '@graphprotocol/graph-cli@0.64.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.0 + '@float-capital/float-subgraph-uncrashable': 0.0.0-internal-testing.5 + '@oclif/core': 2.8.6(@types/node@20.14.2)(typescript@5.4.5) + '@oclif/plugin-autocomplete': 2.3.10(@types/node@20.14.2)(typescript@5.4.5) + '@oclif/plugin-not-found': 2.4.3(@types/node@20.14.2)(typescript@5.4.5) + '@whatwg-node/fetch': 0.8.8 + assemblyscript: 0.19.23 + binary-install-raw: 0.0.13(debug@4.3.4) + chalk: 3.0.0 + chokidar: 3.5.3 + debug: 4.3.4(supports-color@8.1.1) + docker-compose: 0.23.19 + dockerode: 2.5.8 + fs-extra: 9.1.0 + glob: 9.3.5 + gluegun: 5.1.2(debug@4.3.4) + graphql: 15.5.0 + immutable: 4.2.1 + ipfs-http-client: 60.0.1(encoding@0.1.13) + jayson: 4.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + js-yaml: 3.14.1 + prettier: 3.0.3 + request: 2.88.2 + semver: 7.4.0 + sync-request: 6.1.0 + tmp-promise: 3.0.3 + web3-eth-abi: 1.7.0 + which: 2.0.2 + yaml: 1.10.2 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - bufferutil + - encoding + - supports-color + - typescript + - utf-8-validate - '@radix-ui/primitive@1.0.1': + '@graphprotocol/graph-ts@0.32.0': dependencies: - '@babel/runtime': 7.23.6 + assemblyscript: 0.19.10 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/add@5.0.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/cli@5.0.0(@parcel/watcher@2.3.0)(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/generator': 7.23.6 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + '@graphql-codegen/core': 4.0.0(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.1(graphql@16.8.1) + '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.8.8 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.4.5) + debounce: 1.2.1 + detect-indent: 6.1.0 + graphql: 16.8.1 + graphql-config: 5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + inquirer: 8.2.6 + is-glob: 4.0.3 + jiti: 1.21.0 + json-to-pretty-yaml: 1.2.2 + listr2: 4.0.5(enquirer@2.3.6) + log-symbols: 4.1.0 + micromatch: 4.0.5 + shell-quote: 1.8.1 + string-env-interpolation: 1.0.1 + ts-log: 2.2.5 + tslib: 2.6.2 + yaml: 2.3.4 + yargs: 17.7.2 optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@parcel/watcher': 2.3.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - cosmiconfig-toml-loader + - encoding + - enquirer + - supports-color + - typescript + - utf-8-validate - '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/cli@5.0.0(@parcel/watcher@2.3.0)(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/generator': 7.23.6 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + '@graphql-codegen/core': 4.0.0(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.1(graphql@16.8.1) + '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.8.8 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.4.5) + debounce: 1.2.1 + detect-indent: 6.1.0 + graphql: 16.8.1 + graphql-config: 5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4) + inquirer: 8.2.6 + is-glob: 4.0.3 + jiti: 1.21.0 + json-to-pretty-yaml: 1.2.2 + listr2: 4.0.5(enquirer@2.3.6) + log-symbols: 4.1.0 + micromatch: 4.0.5 + shell-quote: 1.8.1 + string-env-interpolation: 1.0.1 + ts-log: 2.2.5 + tslib: 2.6.2 + yaml: 2.3.4 + yargs: 17.7.2 optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@parcel/watcher': 2.3.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - cosmiconfig-toml-loader + - encoding + - enquirer + - supports-color + - typescript + - utf-8-validate - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.3.0)(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@babel/generator': 7.23.6 + '@babel/template': 7.22.15 + '@babel/types': 7.23.6 + '@graphql-codegen/client-preset': 4.2.4(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/core': 4.0.2(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.1(graphql@16.8.1) + '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.8.8 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.4.5) + debounce: 1.2.1 + detect-indent: 6.1.0 + graphql: 16.8.1 + graphql-config: 5.0.3(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + inquirer: 8.2.6 + is-glob: 4.0.3 + jiti: 1.21.0 + json-to-pretty-yaml: 1.2.2 + listr2: 4.0.5(enquirer@2.3.6) + log-symbols: 4.1.0 + micromatch: 4.0.5 + shell-quote: 1.8.1 + string-env-interpolation: 1.0.1 + ts-log: 2.2.5 + tslib: 2.6.2 + yaml: 2.3.4 + yargs: 17.7.2 optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@parcel/watcher': 2.3.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - cosmiconfig-toml-loader + - encoding + - enquirer + - supports-color + - typescript + - utf-8-validate - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/client-preset@4.2.4(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 + '@graphql-codegen/add': 5.0.2(graphql@16.8.1) + '@graphql-codegen/gql-tag-operations': 4.0.6(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/typed-document-node': 5.0.6(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.6(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/typescript-operations': 4.2.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/documents': 1.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/client-preset@4.2.6(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 + '@graphql-codegen/add': 5.0.2(graphql@16.8.1) + '@graphql-codegen/gql-tag-operations': 4.0.7(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-codegen/typed-document-node': 5.0.7(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.7(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/typescript-operations': 4.2.1(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/documents': 1.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/core@4.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/schema': 10.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.5.3 - '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/core@4.0.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-tools/schema': 10.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/gql-tag-operations@4.0.6(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/gql-tag-operations@4.0.7(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 8.13.1(graphql@16.8.1) + change-case-all: 1.0.14 + common-tags: 1.8.2 + graphql: 16.8.1 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.4.1 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + change-case-all: 1.0.15 + common-tags: 1.8.2 + graphql: 16.8.1 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.4.1 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/plugin-helpers@5.0.1(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + change-case-all: 1.0.15 + common-tags: 1.8.2 + graphql: 16.8.1 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.5.3 - '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 - - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': - dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + change-case-all: 1.0.15 + common-tags: 1.8.2 + graphql: 16.8.1 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.6.2 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + change-case-all: 1.0.15 + common-tags: 1.8.2 + graphql: 16.8.1 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.6.2 - '@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/schema-ast@4.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.5.3 - '@radix-ui/react-context@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@graphql-codegen/typed-document-node@5.0.6(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/typed-document-node@5.0.7(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dialog@1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/typescript-graphql-request@6.1.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + graphql-tag: 2.12.6(graphql@16.8.1) + tslib: 2.6.2 transitivePeerDependencies: - - '@types/react' + - encoding + - supports-color - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/typescript-graphql-request@6.2.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - aria-hidden: 1.2.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + graphql-tag: 2.12.6(graphql@16.8.1) + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/typescript-operations@4.0.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.1(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.5.3 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@graphql-codegen/typescript-operations@4.2.0(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.6(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/typescript-operations@4.2.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-codegen/typescript': 4.0.7(encoding@0.1.13)(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/typescript@4.0.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-codegen/schema-ast': 4.0.0(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 4.0.1(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.5.3 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/typescript@4.0.6(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-codegen/typescript@4.0.7(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 - - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': - dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1) + '@graphql-codegen/visitor-plugin-common': 5.2.0(encoding@0.1.13)(graphql@16.8.1) + auto-bind: 4.0.0 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/visitor-plugin-common@2.13.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1) + '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 8.13.1(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.14 + dependency-graph: 0.11.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + parse-filepath: 1.0.2 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-focus-guards@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/visitor-plugin-common@2.13.8(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) + '@graphql-tools/optimize': 1.4.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 0.11.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + parse-filepath: 1.0.2 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@graphql-codegen/visitor-plugin-common@4.0.1(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@graphql-codegen/plugin-helpers': 5.0.1(graphql@16.8.1) + '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 0.11.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + parse-filepath: 1.0.2 + tslib: 2.5.3 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1) + '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 0.11.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + parse-filepath: 1.0.2 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-codegen/visitor-plugin-common@5.2.0(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1) + '@graphql-tools/optimize': 2.0.0(graphql@16.8.1) + '@graphql-tools/relay-operation-optimizer': 7.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 0.11.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + parse-filepath: 1.0.2 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/apollo-engine-loader@8.0.0(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/batch-execute@7.1.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + dataloader: 2.0.0 + graphql: 16.8.1 + tslib: 2.2.0 + value-or-promise: 1.0.6 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/batch-execute@9.0.2(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + dataloader: 2.2.2 + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 - '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/code-file-loader@8.0.3(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + globby: 11.1.0 + graphql: 16.8.1 + tslib: 2.6.2 + unixify: 1.0.0 + transitivePeerDependencies: + - supports-color - '@radix-ui/react-icons@1.3.0(react@18.3.1)': + '@graphql-tools/delegate@10.0.3(graphql@16.8.1)': dependencies: - react: 18.3.1 + '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1) + '@graphql-tools/executor': 1.2.0(graphql@16.8.1) + '@graphql-tools/schema': 10.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + dataloader: 2.2.2 + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/delegate@7.1.5(graphql@16.8.1)': dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + '@ardatan/aggregate-error': 0.0.6 + '@graphql-tools/batch-execute': 7.1.2(graphql@16.8.1) + '@graphql-tools/schema': 7.1.5(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + dataloader: 2.0.0 + graphql: 16.8.1 + tslib: 2.2.0 + value-or-promise: 1.0.6 - '@radix-ui/react-id@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/documents@1.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + graphql: 16.8.1 + lodash.sortby: 4.7.0 + tslib: 2.6.2 - '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@graphql-tools/executor-graphql-ws@1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/ws': 8.5.10 + graphql: 16.8.1 + graphql-ws: 5.14.3(graphql@16.8.1) + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + tslib: 2.6.2 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor-graphql-ws@1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 - - '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/ws': 8.5.10 + graphql: 16.8.1 + graphql-ws: 5.14.3(graphql@16.8.1) + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + tslib: 2.6.2 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor-http@1.0.5(@types/node@20.12.12)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.5 + '@whatwg-node/fetch': 0.9.14 + extract-files: 11.0.0 + graphql: 16.8.1 + meros: 1.3.0(@types/node@20.12.12) + tslib: 2.6.2 + value-or-promise: 1.0.12 + transitivePeerDependencies: + - '@types/node' - '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor-http@1.0.5(@types/node@20.12.7)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.5 + '@whatwg-node/fetch': 0.9.14 + extract-files: 11.0.0 + graphql: 16.8.1 + meros: 1.3.0(@types/node@20.12.7) + tslib: 2.6.2 + value-or-promise: 1.0.12 + transitivePeerDependencies: + - '@types/node' - '@radix-ui/react-menubar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor-legacy-ws@1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/ws': 8.5.10 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + tslib: 2.6.2 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor-legacy-ws@1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/ws': 8.5.10 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + tslib: 2.6.2 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/executor@1.2.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - aria-hidden: 1.2.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.5 + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/executor@1.2.6(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.2.1(graphql@16.8.1) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + '@repeaterjs/repeater': 3.0.5 + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 - '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/git-loader@8.0.3(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@floating-ui/react-dom': 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/rect': 1.0.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + is-glob: 4.0.3 + micromatch: 4.0.5 + tslib: 2.6.2 + unixify: 1.0.0 + transitivePeerDependencies: + - supports-color - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/github-loader@8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@floating-ui/react-dom': 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/rect': 1.0.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 + transitivePeerDependencies: + - '@types/node' + - encoding + - supports-color - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/github-loader@8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@floating-ui/react-dom': 2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) + '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 + transitivePeerDependencies: + - '@types/node' + - encoding + - supports-color - '@radix-ui/react-portal@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/graphql-file-loader@6.2.7(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-tools/import': 6.7.18(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.1.0 - '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/import': 7.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + globby: 11.1.0 + graphql: 16.8.1 + tslib: 2.6.2 + unixify: 1.0.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/graphql-tag-pluck@8.1.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@babel/core': 7.23.6 + '@babel/parser': 7.23.6 + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.6) + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - supports-color - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/import@6.7.18(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 + resolve-from: 5.0.0 + tslib: 2.6.2 - '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/import@7.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + resolve-from: 5.0.0 + tslib: 2.6.2 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/json-file-loader@6.2.6(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.0.3 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + globby: 11.1.0 + graphql: 16.8.1 + tslib: 2.6.2 + unixify: 1.0.0 - '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/load@6.2.8(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-tools/merge': 6.2.14(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + globby: 11.0.3 + graphql: 16.8.1 + import-from: 3.0.0 + is-glob: 4.0.1 + p-limit: 3.1.0 + tslib: 2.2.0 + unixify: 1.0.0 + valid-url: 1.0.9 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/load@8.0.1(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/schema': 10.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + p-limit: 3.1.0 + tslib: 2.6.2 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/merge@6.2.14(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@graphql-tools/schema': 7.1.5(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.2.0 - '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/merge@9.0.1(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/optimize@1.4.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/optimize@2.0.0(graphql@16.8.1)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + graphql: 16.8.1 + tslib: 2.6.2 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/js-yaml': 4.0.9 + '@types/json-stable-stringify': 1.0.36 + '@whatwg-node/fetch': 0.9.14 + chalk: 4.1.2 + debug: 4.3.4(supports-color@8.1.1) + dotenv: 16.3.1 + graphql: 16.8.1 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.2 + jose: 5.1.3 + js-yaml: 4.1.0 + json-stable-stringify: 1.1.0 + lodash: 4.17.21 + scuid: 1.1.0 + tslib: 2.6.2 + yaml-ast-parser: 0.0.43 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/js-yaml': 4.0.9 + '@types/json-stable-stringify': 1.0.36 + '@whatwg-node/fetch': 0.9.14 + chalk: 4.1.2 + debug: 4.3.4(supports-color@8.1.1) + dotenv: 16.3.1 + graphql: 16.8.1 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.2 + jose: 5.1.3 + js-yaml: 4.1.0 + json-stable-stringify: 1.1.0 + lodash: 4.17.21 + scuid: 1.1.0 + tslib: 2.6.2 + yaml-ast-parser: 0.0.43 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': + dependencies: + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@types/js-yaml': 4.0.9 + '@types/json-stable-stringify': 1.0.36 + '@whatwg-node/fetch': 0.9.14 + chalk: 4.1.2 + debug: 4.3.4(supports-color@8.1.1) + dotenv: 16.3.1 + graphql: 16.8.1 + graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.2 + jose: 5.1.3 + js-yaml: 4.1.0 + json-stable-stringify: 1.1.0 + lodash: 4.17.21 + scuid: 1.1.0 + tslib: 2.6.2 + yaml-ast-parser: 0.0.43 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.8.1)': + dependencies: + '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 9.2.1(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-tools/relay-operation-optimizer@7.0.0(encoding@0.1.13)(graphql@16.8.1)': + dependencies: + '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-tools/schema@10.0.2(graphql@16.8.1)': + dependencies: + '@graphql-tools/merge': 9.0.1(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 + + '@graphql-tools/schema@7.1.5(graphql@16.8.1)': + dependencies: + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.2.0 + value-or-promise: 1.0.6 + + '@graphql-tools/url-loader@6.10.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + dependencies: + '@graphql-tools/delegate': 7.1.5(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + '@graphql-tools/wrap': 7.0.8(graphql@16.8.1) + '@microsoft/fetch-event-source': 2.0.1 + '@types/websocket': 1.0.2 + abort-controller: 3.0.0 + cross-fetch: 3.1.4 + extract-files: 9.0.0 + form-data: 4.0.0 + graphql: 16.8.1 + graphql-ws: 4.9.0(graphql@16.8.1) + is-promise: 4.0.0 + isomorphic-ws: 4.0.1(ws@7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + lodash: 4.17.21 + meros: 1.1.4(@types/node@20.14.2) + subscriptions-transport-ws: 0.9.19(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + sync-fetch: 0.3.0(encoding@0.1.13) + tslib: 2.2.0 + valid-url: 1.0.9 + ws: 7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + + '@graphql-tools/url-loader@8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + dependencies: + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + '@types/ws': 8.5.10 + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + tslib: 2.6.2 + value-or-promise: 1.0.12 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + + '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + dependencies: + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + '@types/ws': 8.5.10 + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + tslib: 2.6.2 + value-or-promise: 1.0.12 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + + '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': + dependencies: + '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) + '@types/ws': 8.5.10 + '@whatwg-node/fetch': 0.9.14 + graphql: 16.8.1 + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + tslib: 2.6.2 + value-or-promise: 1.0.12 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - utf-8-validate + + '@graphql-tools/utils@10.0.11(graphql@16.8.1)': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + cross-inspect: 1.0.0 + dset: 3.1.3 + graphql: 16.8.1 + tslib: 2.6.2 + + '@graphql-tools/utils@10.2.1(graphql@16.8.1)': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + cross-inspect: 1.0.0 + dset: 3.1.3 + graphql: 16.8.1 + tslib: 2.6.2 + + '@graphql-tools/utils@7.10.0(graphql@16.8.1)': + dependencies: + '@ardatan/aggregate-error': 0.0.6 + camel-case: 4.1.2 + graphql: 16.8.1 + tslib: 2.2.0 + + '@graphql-tools/utils@8.13.1(graphql@16.8.1)': + dependencies: + graphql: 16.8.1 + tslib: 2.6.2 + + '@graphql-tools/utils@9.2.1(graphql@16.8.1)': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + + '@graphql-tools/wrap@10.0.1(graphql@16.8.1)': + dependencies: + '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) + '@graphql-tools/schema': 10.0.2(graphql@16.8.1) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.6.2 + value-or-promise: 1.0.12 + + '@graphql-tools/wrap@7.0.8(graphql@16.8.1)': + dependencies: + '@graphql-tools/delegate': 7.1.5(graphql@16.8.1) + '@graphql-tools/schema': 7.1.5(graphql@16.8.1) + '@graphql-tools/utils': 7.10.0(graphql@16.8.1) + graphql: 16.8.1 + tslib: 2.2.0 + value-or-promise: 1.0.6 + + '@graphql-typed-document-node/core@3.2.0(graphql@16.8.1)': + dependencies: + graphql: 16.8.1 + + '@graphql-yoga/logger@2.0.0': + dependencies: + tslib: 2.6.2 + + '@graphql-yoga/subscription@5.0.0': + dependencies: + '@graphql-yoga/typed-event-target': 3.0.0 + '@repeaterjs/repeater': 3.0.5 + '@whatwg-node/events': 0.1.1 + tslib: 2.6.2 + + '@graphql-yoga/typed-event-target@3.0.0': + dependencies: + '@repeaterjs/repeater': 3.0.5 + tslib: 2.6.2 + + '@hapi/hoek@9.3.0': {} + + '@hapi/topo@5.1.0': + dependencies: + '@hapi/hoek': 9.3.0 + + '@heroicons/react@2.1.3(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@hono/node-server@1.11.2': {} + + '@hookform/resolvers@3.3.2(react-hook-form@7.43.9(react@18.3.1))': + dependencies: + react-hook-form: 7.43.9(react@18.3.1) + + '@hookform/resolvers@3.4.2(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))': + dependencies: + react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) + + '@humanwhocodes/config-array@0.11.13': + dependencies: + '@humanwhocodes/object-schema': 2.0.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/object-schema@2.0.1': {} + + '@iarna/toml@2.2.5': {} + + '@img/sharp-darwin-arm64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.0.2 + optional: true + + '@img/sharp-darwin-x64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.0.2 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.0.2': + optional: true + + '@img/sharp-libvips-darwin-x64@1.0.2': + optional: true + + '@img/sharp-libvips-linux-arm64@1.0.2': + optional: true + + '@img/sharp-libvips-linux-arm@1.0.2': + optional: true + + '@img/sharp-libvips-linux-s390x@1.0.2': + optional: true + + '@img/sharp-libvips-linux-x64@1.0.2': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.0.2': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.0.2': + optional: true + + '@img/sharp-linux-arm64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.0.2 + optional: true + + '@img/sharp-linux-arm@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.0.2 + optional: true + + '@img/sharp-linux-s390x@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.0.2 + optional: true + + '@img/sharp-linux-x64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.0.2 + optional: true + + '@img/sharp-linuxmusl-arm64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 + optional: true + + '@img/sharp-linuxmusl-x64@0.33.4': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.0.2 + optional: true + + '@img/sharp-wasm32@0.33.4': + dependencies: + '@emnapi/runtime': 1.2.0 + optional: true + + '@img/sharp-win32-ia32@0.33.4': + optional: true + + '@img/sharp-win32-x64@0.33.4': + optional: true + + '@ioredis/commands@1.2.0': {} + + '@ipld/dag-cbor@9.0.6': + dependencies: + cborg: 4.0.5 + multiformats: 12.1.3 + + '@ipld/dag-json@10.1.5': + dependencies: + cborg: 4.0.5 + multiformats: 12.1.3 + + '@ipld/dag-pb@4.0.6': + dependencies: + multiformats: 12.1.3 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@isaacs/ttlcache@1.4.1': {} + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/console@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/create-cache-key-function@29.7.0': + dependencies: + '@jest/types': 29.6.3 + + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + jest-mock: 29.7.0 + + '@jest/expect-utils@29.7.0': + dependencies: + jest-get-type: 29.6.3 + + '@jest/expect@29.7.0': + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.14.2 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + '@jest/globals@29.7.0': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@29.7.0': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 + '@types/node': 20.14.2 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.1 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.6 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.2.0 + transitivePeerDependencies: + - supports-color + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/source-map@29.6.3': + dependencies: + '@jridgewell/trace-mapping': 0.3.20 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + '@jest/test-result@29.7.0': + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-sequencer@29.7.0': + dependencies: + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + + '@jest/transform@29.7.0': + dependencies: + '@babel/core': 7.23.6 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@24.9.0': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 1.1.2 + '@types/yargs': 13.0.12 + + '@jest/types@26.6.2': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.14.2 + '@types/yargs': 15.0.19 + chalk: 4.1.2 + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.14.2 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.3': + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 + + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.1': {} + + '@jridgewell/set-array@1.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/sourcemap-codec@1.4.15': {} + + '@jridgewell/trace-mapping@0.3.20': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@kamilkisiela/fast-url-parser@1.1.4': {} + + '@libp2p/interface-connection@4.0.0': + dependencies: + '@libp2p/interface-peer-id': 2.0.2 + '@libp2p/interfaces': 3.3.2 + '@multiformats/multiaddr': 12.1.11 + it-stream-types: 1.0.5 + uint8arraylist: 2.4.7 + transitivePeerDependencies: + - supports-color + + '@libp2p/interface-keychain@2.0.5': + dependencies: + '@libp2p/interface-peer-id': 2.0.2 + multiformats: 11.0.2 + + '@libp2p/interface-peer-id@2.0.2': + dependencies: + multiformats: 11.0.2 + + '@libp2p/interface-peer-info@1.0.10': + dependencies: + '@libp2p/interface-peer-id': 2.0.2 + '@multiformats/multiaddr': 12.1.11 + transitivePeerDependencies: + - supports-color + + '@libp2p/interface-pubsub@3.0.7': + dependencies: + '@libp2p/interface-connection': 4.0.0 + '@libp2p/interface-peer-id': 2.0.2 + '@libp2p/interfaces': 3.3.2 + it-pushable: 3.2.3 + uint8arraylist: 2.4.7 + transitivePeerDependencies: + - supports-color + + '@libp2p/interface@1.0.2': + dependencies: + '@multiformats/multiaddr': 12.1.11 + it-pushable: 3.2.3 + it-stream-types: 2.0.1 + multiformats: 12.1.3 + uint8arraylist: 2.4.7 + transitivePeerDependencies: + - supports-color + + '@libp2p/interfaces@3.3.2': {} + + '@libp2p/logger@2.1.1': + dependencies: + '@libp2p/interface-peer-id': 2.0.2 + '@multiformats/multiaddr': 12.1.11 + debug: 4.3.4(supports-color@8.1.1) + interface-datastore: 8.2.9 + multiformats: 11.0.2 + transitivePeerDependencies: + - supports-color + + '@libp2p/peer-id@2.0.4': + dependencies: + '@libp2p/interface-peer-id': 2.0.2 + '@libp2p/interfaces': 3.3.2 + multiformats: 11.0.2 + uint8arrays: 4.0.10 + + '@lit-labs/ssr-dom-shim@1.1.2': {} + + '@lit/reactive-element@1.6.3': + dependencies: + '@lit-labs/ssr-dom-shim': 1.1.2 + + '@mapbox/geojson-rewind@0.5.2': + dependencies: + get-stream: 6.0.1 + minimist: 1.2.8 + + '@mapbox/geojson-types@1.0.2': {} + + '@mapbox/jsonlint-lines-primitives@2.0.2': {} + + '@mapbox/mapbox-gl-supported@1.5.0(mapbox-gl@1.10.1)': + dependencies: + mapbox-gl: 1.10.1 + + '@mapbox/point-geometry@0.1.0': {} + + '@mapbox/tiny-sdf@1.2.5': {} + + '@mapbox/unitbezier@0.0.0': {} + + '@mapbox/vector-tile@1.3.1': + dependencies: + '@mapbox/point-geometry': 0.1.0 + + '@mapbox/whoots-js@3.1.0': {} + + '@mdn/browser-compat-data@5.5.1': {} + + '@metamask/eth-json-rpc-provider@1.0.1': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2 + transitivePeerDependencies: + - supports-color + + '@metamask/eth-json-rpc-provider@1.0.1(supports-color@9.4.0)': + dependencies: + '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-engine@7.3.3': + dependencies: + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-engine@7.3.3(supports-color@9.4.0)': + dependencies: + '@metamask/rpc-errors': 6.2.1(supports-color@9.4.0) + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-middleware-stream@6.0.2': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-middleware-stream@6.0.2(supports-color@9.4.0)': + dependencies: + '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0(supports-color@9.4.0) + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + '@metamask/object-multiplex@2.0.0': + dependencies: + once: 1.4.0 + readable-stream: 3.6.2 + + '@metamask/onboarding@1.0.1': + dependencies: + bowser: 2.11.0 + + '@metamask/providers@15.0.0': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-middleware-stream': 6.0.2 + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + + '@metamask/providers@15.0.0(supports-color@9.4.0)': + dependencies: + '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) + '@metamask/json-rpc-middleware-stream': 6.0.2(supports-color@9.4.0) + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1(supports-color@9.4.0) + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0(supports-color@9.4.0) + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + + '@metamask/rpc-errors@6.2.1': + dependencies: + '@metamask/utils': 8.4.0 + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color + + '@metamask/rpc-errors@6.2.1(supports-color@9.4.0)': + dependencies: + '@metamask/utils': 8.4.0(supports-color@9.4.0) + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color + + '@metamask/safe-event-emitter@2.0.0': {} + + '@metamask/safe-event-emitter@3.1.1': {} + + '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4))(supports-color@9.4.0)': + dependencies: + bufferutil: 4.0.8 + cross-fetch: 4.0.0(encoding@0.1.13) + date-fns: 2.30.0 + debug: 4.3.4(supports-color@9.4.0) + eciesjs: 0.3.18 + eventemitter2: 6.4.9 + readable-stream: 3.6.2 + socket.io-client: 4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + utf-8-validate: 6.0.4 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + + '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + dependencies: + bufferutil: 4.0.8 + cross-fetch: 4.0.0(encoding@0.1.13) + date-fns: 2.30.0 + debug: 4.3.4(supports-color@8.1.1) + eciesjs: 0.3.18 + eventemitter2: 6.4.9 + readable-stream: 3.6.2 + socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + utf-8-validate: 6.0.4 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + + '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': + dependencies: + i18next: 22.5.1 + qr-code-styling: 1.6.0-rc.1 + react-i18next: 14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + + '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + dependencies: + i18next: 22.5.1 + qr-code-styling: 1.6.0-rc.1 + react-i18next: 14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) + + '@metamask/sdk@0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 15.0.0(supports-color@9.4.0) + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4))(supports-color@9.4.0) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + '@types/dom-screen-wake-lock': 1.0.3 + bowser: 2.11.0 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4(supports-color@9.4.0) + eciesjs: 0.3.18 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + i18next: 22.5.1 + i18next-browser-languagedetector: 7.1.0 + obj-multiplex: 1.0.0 + pump: 3.0.0 + qrcode-terminal-nooctal: 0.12.1 + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + readable-stream: 3.6.2 + rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) + socket.io-client: 4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + util: 0.12.5 + uuid: 8.3.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - bufferutil + - encoding + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + + '@metamask/sdk@0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)': + dependencies: + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 15.0.0 + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@types/dom-screen-wake-lock': 1.0.3 + bowser: 2.11.0 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4(supports-color@8.1.1) + eciesjs: 0.3.18 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + i18next: 22.5.1 + i18next-browser-languagedetector: 7.1.0 + obj-multiplex: 1.0.0 + pump: 3.0.0 + qrcode-terminal-nooctal: 0.12.1 + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + readable-stream: 3.6.2 + rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) + socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + util: 0.12.5 + uuid: 8.3.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - bufferutil + - encoding + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + optional: true + + '@metamask/sdk@0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(utf-8-validate@5.0.10)': + dependencies: + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 15.0.0 + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@types/dom-screen-wake-lock': 1.0.3 + bowser: 2.11.0 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4(supports-color@8.1.1) + eciesjs: 0.3.18 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + i18next: 22.5.1 + i18next-browser-languagedetector: 7.1.0 + obj-multiplex: 1.0.0 + pump: 3.0.0 + qrcode-terminal-nooctal: 0.12.1 + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + readable-stream: 3.6.2 + rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) + socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + util: 0.12.5 + uuid: 8.3.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - bufferutil + - encoding + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + + '@metamask/utils@3.6.0': + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@3.6.0(supports-color@9.4.0)': + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@9.4.0) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@5.0.2': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@5.0.2(supports-color@9.4.0)': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@9.4.0) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@8.4.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + pony-cause: 2.1.11 + semver: 7.6.2 + superstruct: 1.0.3 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@8.4.0(supports-color@9.4.0)': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@9.4.0) + pony-cause: 2.1.11 + semver: 7.6.2 + superstruct: 1.0.3 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + + '@microsoft/fetch-event-source@2.0.1': {} + + '@motionone/animation@10.16.3': + dependencies: + '@motionone/easing': 10.16.3 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 + + '@motionone/dom@10.16.4': + dependencies: + '@motionone/animation': 10.16.3 + '@motionone/generators': 10.16.4 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + hey-listen: 1.0.8 + tslib: 2.6.2 + + '@motionone/easing@10.16.3': + dependencies: + '@motionone/utils': 10.16.3 + tslib: 2.6.2 + + '@motionone/generators@10.16.4': + dependencies: + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 + + '@motionone/svelte@10.16.4': + dependencies: + '@motionone/dom': 10.16.4 + tslib: 2.6.2 + + '@motionone/types@10.16.3': {} + + '@motionone/utils@10.16.3': + dependencies: + '@motionone/types': 10.16.3 + hey-listen: 1.0.8 + tslib: 2.6.2 + + '@motionone/vue@10.16.4': + dependencies: + '@motionone/dom': 10.16.4 + tslib: 2.6.2 + + '@multiformats/multiaddr-to-uri@9.0.7': + dependencies: + '@multiformats/multiaddr': 12.1.11 + transitivePeerDependencies: + - supports-color + + '@multiformats/multiaddr@11.6.1': + dependencies: + '@chainsafe/is-ip': 2.0.2 + dns-over-http-resolver: 2.1.3 + err-code: 3.0.1 + multiformats: 11.0.2 + uint8arrays: 4.0.10 + varint: 6.0.0 + transitivePeerDependencies: + - supports-color + + '@multiformats/multiaddr@12.1.11': + dependencies: + '@chainsafe/is-ip': 2.0.2 + '@chainsafe/netmask': 2.0.0 + '@libp2p/interface': 1.0.2 + dns-over-http-resolver: 3.0.0 + multiformats: 12.1.3 + uint8-varint: 2.0.2 + uint8arrays: 4.0.10 + transitivePeerDependencies: + - supports-color + + '@next/env@13.5.6': {} + + '@next/env@14.0.4': {} + + '@next/env@14.2.3': {} + + '@next/env@15.0.0-rc.0': {} + + '@next/eslint-plugin-next@14.0.4': + dependencies: + glob: 7.1.7 + + '@next/eslint-plugin-next@14.2.3': + dependencies: + glob: 10.3.10 + + '@next/swc-darwin-arm64@13.5.6': + optional: true + + '@next/swc-darwin-arm64@14.0.4': + optional: true + + '@next/swc-darwin-arm64@14.2.3': + optional: true + + '@next/swc-darwin-arm64@15.0.0-rc.0': + optional: true + + '@next/swc-darwin-x64@13.5.6': + optional: true + + '@next/swc-darwin-x64@14.0.4': + optional: true + + '@next/swc-darwin-x64@14.2.3': + optional: true + + '@next/swc-darwin-x64@15.0.0-rc.0': + optional: true + + '@next/swc-linux-arm64-gnu@13.5.6': + optional: true + + '@next/swc-linux-arm64-gnu@14.0.4': + optional: true + + '@next/swc-linux-arm64-gnu@14.2.3': + optional: true + + '@next/swc-linux-arm64-gnu@15.0.0-rc.0': + optional: true + + '@next/swc-linux-arm64-musl@13.5.6': + optional: true + + '@next/swc-linux-arm64-musl@14.0.4': + optional: true + + '@next/swc-linux-arm64-musl@14.2.3': + optional: true + + '@next/swc-linux-arm64-musl@15.0.0-rc.0': + optional: true + + '@next/swc-linux-x64-gnu@13.5.6': + optional: true + + '@next/swc-linux-x64-gnu@14.0.4': + optional: true + + '@next/swc-linux-x64-gnu@14.2.3': + optional: true + + '@next/swc-linux-x64-gnu@15.0.0-rc.0': + optional: true + + '@next/swc-linux-x64-musl@13.5.6': + optional: true + + '@next/swc-linux-x64-musl@14.0.4': + optional: true + + '@next/swc-linux-x64-musl@14.2.3': + optional: true + + '@next/swc-linux-x64-musl@15.0.0-rc.0': + optional: true + + '@next/swc-win32-arm64-msvc@13.5.6': + optional: true + + '@next/swc-win32-arm64-msvc@14.0.4': + optional: true + + '@next/swc-win32-arm64-msvc@14.2.3': + optional: true + + '@next/swc-win32-arm64-msvc@15.0.0-rc.0': + optional: true + + '@next/swc-win32-ia32-msvc@13.5.6': + optional: true + + '@next/swc-win32-ia32-msvc@14.0.4': + optional: true + + '@next/swc-win32-ia32-msvc@14.2.3': + optional: true + + '@next/swc-win32-ia32-msvc@15.0.0-rc.0': + optional: true + + '@next/swc-win32-x64-msvc@13.5.6': + optional: true + + '@next/swc-win32-x64-msvc@14.0.4': + optional: true + + '@next/swc-win32-x64-msvc@14.2.3': + optional: true + + '@next/swc-win32-x64-msvc@15.0.0-rc.0': + optional: true + + '@noble/curves@1.1.0': + dependencies: + '@noble/hashes': 1.3.1 + + '@noble/curves@1.2.0': + dependencies: + '@noble/hashes': 1.3.2 + + '@noble/curves@1.3.0': + dependencies: + '@noble/hashes': 1.3.3 + + '@noble/hashes@1.3.1': {} + + '@noble/hashes@1.3.2': {} + + '@noble/hashes@1.3.3': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + + '@oclif/core@2.15.0(@types/node@20.14.2)(typescript@5.4.5)': + dependencies: + '@types/cli-progress': 3.11.5 + ansi-escapes: 4.3.2 + ansi-styles: 4.3.0 + cardinal: 2.1.1 + chalk: 4.1.2 + clean-stack: 3.0.1 + cli-progress: 3.12.0 + debug: 4.3.4(supports-color@8.1.1) + ejs: 3.1.9 + get-package-type: 0.1.0 + globby: 11.1.0 + hyperlinker: 1.0.0 + indent-string: 4.0.0 + is-wsl: 2.2.0 + js-yaml: 3.14.1 + natural-orderby: 2.0.3 + object-treeify: 1.1.33 + password-prompt: 1.1.3 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + supports-color: 8.1.1 + supports-hyperlinks: 2.3.0 + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) + tslib: 2.6.2 + widest-line: 3.1.0 + wordwrap: 1.0.0 + wrap-ansi: 7.0.0 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - typescript + + '@oclif/core@2.8.6(@types/node@20.14.2)(typescript@5.4.5)': + dependencies: + '@types/cli-progress': 3.11.5 + ansi-escapes: 4.3.2 + ansi-styles: 4.3.0 + cardinal: 2.1.1 + chalk: 4.1.2 + clean-stack: 3.0.1 + cli-progress: 3.12.0 + debug: 4.3.4(supports-color@8.1.1) + ejs: 3.1.9 + fs-extra: 9.1.0 + get-package-type: 0.1.0 + globby: 11.1.0 + hyperlinker: 1.0.0 + indent-string: 4.0.0 + is-wsl: 2.2.0 + js-yaml: 3.14.1 + natural-orderby: 2.0.3 + object-treeify: 1.1.33 + password-prompt: 1.1.3 + semver: 7.5.4 + string-width: 4.2.3 + strip-ansi: 6.0.1 + supports-color: 8.1.1 + supports-hyperlinks: 2.3.0 + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) + tslib: 2.6.2 + widest-line: 3.1.0 + wordwrap: 1.0.0 + wrap-ansi: 7.0.0 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - typescript + + '@oclif/plugin-autocomplete@2.3.10(@types/node@20.14.2)(typescript@5.4.5)': + dependencies: + '@oclif/core': 2.15.0(@types/node@20.14.2)(typescript@5.4.5) + chalk: 4.1.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - supports-color + - typescript + + '@oclif/plugin-not-found@2.4.3(@types/node@20.14.2)(typescript@5.4.5)': + dependencies: + '@oclif/core': 2.15.0(@types/node@20.14.2)(typescript@5.4.5) + chalk: 4.1.2 + fast-levenshtein: 3.0.0 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - typescript + + '@opentelemetry/api@1.8.0': {} + + '@parcel/watcher-android-arm64@2.3.0': + optional: true + + '@parcel/watcher-darwin-arm64@2.3.0': + optional: true + + '@parcel/watcher-darwin-x64@2.3.0': + optional: true + + '@parcel/watcher-freebsd-x64@2.3.0': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.3.0': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.3.0': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.3.0': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.3.0': + optional: true + + '@parcel/watcher-linux-x64-musl@2.3.0': + optional: true + + '@parcel/watcher-wasm@2.3.0': + dependencies: + is-glob: 4.0.3 + micromatch: 4.0.5 + + '@parcel/watcher-win32-arm64@2.3.0': + optional: true + + '@parcel/watcher-win32-ia32@2.3.0': + optional: true + + '@parcel/watcher-win32-x64@2.3.0': + optional: true + + '@parcel/watcher@2.3.0': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.5 + node-addon-api: 7.0.0 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.3.0 + '@parcel/watcher-darwin-arm64': 2.3.0 + '@parcel/watcher-darwin-x64': 2.3.0 + '@parcel/watcher-freebsd-x64': 2.3.0 + '@parcel/watcher-linux-arm-glibc': 2.3.0 + '@parcel/watcher-linux-arm64-glibc': 2.3.0 + '@parcel/watcher-linux-arm64-musl': 2.3.0 + '@parcel/watcher-linux-x64-glibc': 2.3.0 + '@parcel/watcher-linux-x64-musl': 2.3.0 + '@parcel/watcher-win32-arm64': 2.3.0 + '@parcel/watcher-win32-ia32': 2.3.0 + '@parcel/watcher-win32-x64': 2.3.0 + + '@peculiar/asn1-schema@2.3.8': + dependencies: + asn1js: 3.0.5 + pvtsutils: 1.3.5 + tslib: 2.6.2 + + '@peculiar/json-schema@1.1.12': + dependencies: + tslib: 2.6.2 + + '@peculiar/webcrypto@1.4.3': + dependencies: + '@peculiar/asn1-schema': 2.3.8 + '@peculiar/json-schema': 1.1.12 + pvtsutils: 1.3.5 + tslib: 2.6.2 + webcrypto-core: 1.7.7 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pkgr/utils@2.4.2': + dependencies: + cross-spawn: 7.0.3 + fast-glob: 3.3.2 + is-glob: 4.0.3 + open: 9.1.0 + picocolors: 1.0.0 + tslib: 2.6.2 + + '@plotly/d3-sankey-circular@0.33.1': + dependencies: + d3-array: 1.2.4 + d3-collection: 1.0.7 + d3-shape: 1.3.7 + elementary-circuits-directed-graph: 1.3.1 + + '@plotly/d3-sankey@0.7.2': + dependencies: + d3-array: 1.2.4 + d3-collection: 1.0.7 + d3-shape: 1.3.7 + + '@plotly/d3@3.8.1': {} + + '@plotly/point-cluster@3.1.9': + dependencies: + array-bounds: 1.0.1 + binary-search-bounds: 2.0.5 + clamp: 1.0.1 + defined: 1.0.1 + dtype: 2.0.0 + flatten-vertex-data: 1.0.2 + is-obj: 1.0.1 + math-log2: 1.0.1 + parse-rect: 1.2.0 + pick-by-alias: 1.2.0 + + '@plotly/regl@2.1.2': {} + + '@ponder/core@0.1.6(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(terser@5.31.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@babel/code-frame': 7.23.5 + abitype: 0.10.3(typescript@5.4.5)(zod@3.23.8) + async-mutex: 0.4.1 + better-sqlite3: 9.6.0 + cac: 6.7.14 + conf: 12.0.0 + cors: 2.8.5 + detect-package-manager: 3.0.2 + dotenv: 16.3.1 + emittery: 1.0.3 + ethereum-bloom-filters: 1.0.10 + express: 4.18.2 + glob: 10.3.10 + graphql: 16.8.1 + graphql-http: 1.22.1(graphql@16.8.1) + http-terminator: 3.2.0 + ink: 4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4) + kysely: 0.26.3 + magic-string: 0.30.10 + p-limit: 5.0.0 + p-queue: 7.4.1 + pg: 8.11.3 + picocolors: 1.0.0 + pino: 8.21.0 + prom-client: 15.1.2 + react: 18.3.1 + retry: 0.13.1 + stacktrace-parser: 0.1.10 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + vite: 5.2.12(@types/node@18.19.33)(terser@5.31.0) + vite-node: 1.6.0(@types/node@18.19.33)(terser@5.31.0) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/node' + - '@types/react' + - bufferutil + - less + - lightningcss + - pg-native + - react-devtools-core + - sass + - stylus + - sugarss + - supports-color + - terser + - utf-8-validate + - zod + + '@ponder/core@0.4.31(@types/node@18.19.33)(@types/react@18.3.3)(bufferutil@4.0.8)(terser@5.31.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@babel/code-frame': 7.23.5 + '@commander-js/extra-typings': 12.1.0(commander@12.1.0) + '@escape.tech/graphql-armor-max-aliases': 2.4.0 + '@escape.tech/graphql-armor-max-depth': 2.3.0 + '@escape.tech/graphql-armor-max-tokens': 2.4.0 + '@hono/node-server': 1.11.2 + '@ponder/utils': 0.1.5(typescript@5.4.5)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)) + abitype: 0.10.3(typescript@5.4.5)(zod@3.23.8) + better-sqlite3: 10.1.0 + commander: 12.1.0 + conf: 12.0.0 + dataloader: 2.2.2 + detect-package-manager: 3.0.2 + dotenv: 16.3.1 + emittery: 1.0.3 + ethereum-bloom-filters: 1.0.10 + glob: 10.3.10 + graphql: 16.8.1 + graphql-type-json: 0.3.2(graphql@16.8.1) + graphql-yoga: 5.3.1(graphql@16.8.1) + hono: 4.4.2 + http-terminator: 3.2.0 + ink: 4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4) + kysely: 0.26.3 + magic-string: 0.30.10 + p-queue: 7.4.1 + pg: 8.11.3 + pg-connection-string: 2.6.2 + picocolors: 1.0.0 + pino: 8.21.0 + prom-client: 15.1.2 + react: 18.3.1 + stacktrace-parser: 0.1.10 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + vite: 5.2.12(@types/node@18.19.33)(terser@5.31.0) + vite-node: 1.6.0(@types/node@18.19.33)(terser@5.31.0) + vite-tsconfig-paths: 4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@18.19.33)(terser@5.31.0)) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/node' + - '@types/react' + - bufferutil + - less + - lightningcss + - pg-native + - react-devtools-core + - sass + - stylus + - sugarss + - supports-color + - terser + - utf-8-validate + - zod + + '@ponder/utils@0.1.5(typescript@5.4.5)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))': + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + + '@protobufjs/aspromise@1.1.2': {} + + '@protobufjs/base64@1.1.2': {} + + '@protobufjs/codegen@2.0.4': {} + + '@protobufjs/eventemitter@1.1.0': {} + + '@protobufjs/fetch@1.1.0': + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/inquire': 1.1.0 + + '@protobufjs/float@1.0.2': {} + + '@protobufjs/inquire@1.1.0': {} + + '@protobufjs/path@1.1.2': {} + + '@protobufjs/pool@1.1.0': {} + + '@protobufjs/utf8@1.1.0': {} + + '@radix-ui/colors@3.0.0': {} + + '@radix-ui/number@1.0.1': + dependencies: + '@babel/runtime': 7.23.6 + + '@radix-ui/primitive@1.0.0': + dependencies: + '@babel/runtime': 7.24.0 + + '@radix-ui/primitive@1.0.1': + dependencies: + '@babel/runtime': 7.23.6 + + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-context@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-dialog@1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/primitive': 1.0.0 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + aria-hidden: 1.2.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-remove-scroll: 2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + transitivePeerDependencies: + - '@types/react' + + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + aria-hidden: 1.2.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + aria-hidden: 1.2.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/primitive': 1.0.0 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-focus-guards@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-icons@1.3.0(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-id@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + aria-hidden: 1.2.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-menubar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + aria-hidden: 1.2.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + aria-hidden: 1.2.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@floating-ui/react-dom': 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/rect': 1.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@floating-ui/react-dom': 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/rect': 1.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@floating-ui/react-dom': 2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/rect': 1.0.1 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-portal@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + aria-hidden: 1.2.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + aria-hidden: 1.2.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-slot@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + react: 19.0.0-rc-6f23540c7d-20240528 + + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/rect': 1.0.1 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/rect': 1.0.1 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@babel/runtime': 7.23.6 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) react: 19.0.0-rc-6f23540c7d-20240528 react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/rect@1.0.1': + dependencies: + '@babel/runtime': 7.24.0 + + '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4))': + dependencies: + '@vanilla-extract/css': 1.9.1 + '@vanilla-extract/dynamic': 2.0.2 + '@vanilla-extract/sprinkles': 1.5.0(@vanilla-extract/css@1.9.1) + clsx: 1.1.1 + i18n-js: 4.3.2 + qrcode: 1.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.4(@types/react@18.3.1)(react@18.3.1) + ua-parser-js: 1.0.37 + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) + transitivePeerDependencies: + - '@types/react' + + '@react-native-community/cli-clean@13.6.8(encoding@0.1.13)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-config@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + cosmiconfig: 5.2.1 + deepmerge: 4.3.1 + fast-glob: 3.3.2 + joi: 17.13.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-debugger-ui@13.6.8(supports-color@9.4.0)': + dependencies: + serve-static: 1.15.0(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + + '@react-native-community/cli-doctor@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-apple': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + command-exists: 1.2.9 + deepmerge: 4.3.1 + envinfo: 7.13.0 + execa: 5.1.1 + hermes-profile-transformer: 0.0.6 + node-stream-zip: 1.15.0 + ora: 5.4.1 + semver: 7.6.2 + strip-ansi: 5.2.0 + wcwidth: 1.0.1 + yaml: 2.3.4 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-hermes@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + hermes-profile-transformer: 0.0.6 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-android@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.0 + logkitty: 0.7.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-apple@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.0 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-ios@13.6.8(encoding@0.1.13)': + dependencies: + '@react-native-community/cli-platform-apple': 13.6.8(encoding@0.1.13) + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-server-api@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + compression: 1.7.4(supports-color@9.4.0) + connect: 3.7.0(supports-color@9.4.0) + errorhandler: 1.5.1 + nocache: 3.0.4 + pretty-format: 26.6.2 + serve-static: 1.15.0(supports-color@9.4.0) + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native-community/cli-server-api@13.6.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + compression: 1.7.4(supports-color@9.4.0) + connect: 3.7.0(supports-color@9.4.0) + errorhandler: 1.5.1 + nocache: 3.0.4 + pretty-format: 26.6.2 + serve-static: 1.15.0(supports-color@9.4.0) + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native-community/cli-tools@13.6.8(encoding@0.1.13)': + dependencies: + appdirsjs: 1.2.7 + chalk: 4.1.2 + execa: 5.1.1 + find-up: 5.0.0 + mime: 2.6.0 + node-fetch: 2.7.0(encoding@0.1.13) + open: 6.4.0 + ora: 5.4.1 + semver: 7.6.2 + shell-quote: 1.8.1 + sudo-prompt: 9.2.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-types@13.6.8': + dependencies: + joi: 17.13.1 + + '@react-native-community/cli@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@react-native-community/cli-clean': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-doctor': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-hermes': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-types': 13.6.8 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native-community/cli@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': + dependencies: + '@react-native-community/cli-clean': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-doctor': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-hermes': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-types': 13.6.8 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + + '@react-native-community/cli@13.6.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@react-native-community/cli-clean': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-doctor': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-hermes': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-types': 13.6.8 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/assets-registry@0.74.84': {} + + '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6))': + dependencies: + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-preset@0.74.84(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.6) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.6) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.23.6) + '@babel/template': 7.24.6 + '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.6) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + optional: true + + '@react-native/babel-preset@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/template': 7.24.6 + '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6(supports-color@9.4.0)) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-preset@0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))': + dependencies: + '@babel/core': 7.24.6 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6) + '@babel/template': 7.24.6 + '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@babel/parser': 7.24.6 + '@babel/preset-env': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + glob: 7.2.3 + hermes-parser: 0.19.1 + invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6))': + dependencies: + '@babel/parser': 7.24.6 + '@babel/preset-env': 7.24.6(@babel/core@7.24.6) + glob: 7.2.3 + hermes-parser: 0.19.1 + invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/community-cli-plugin@0.74.84(@babel/core@7.23.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': + dependencies: + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.23.6) + chalk: 4.1.2 + execa: 5.1.1 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + metro-core: 0.80.9 + node-fetch: 2.7.0(encoding@0.1.13) + querystring: 0.2.1 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + + '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + chalk: 4.1.2 + execa: 5.1.1 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + metro-core: 0.80.9 + node-fetch: 2.7.0(encoding@0.1.13) + querystring: 0.2.1 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + chalk: 4.1.2 + execa: 5.1.1 + metro: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-config: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-core: 0.80.9 + node-fetch: 2.7.0(encoding@0.1.13) + querystring: 0.2.1 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/debugger-frontend@0.74.84': {} + + '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.84 + '@rnx-kit/chromium-edge-launcher': 1.0.0(supports-color@9.4.0) + chrome-launcher: 0.15.2(supports-color@9.4.0) + connect: 3.7.0(supports-color@9.4.0) + debug: 2.6.9(supports-color@9.4.0) + node-fetch: 2.7.0(encoding@0.1.13) + nullthrows: 1.1.1 + open: 7.4.2 + selfsigned: 2.4.1 + serve-static: 1.15.0(supports-color@9.4.0) + temp-dir: 2.0.0 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.84 + '@rnx-kit/chromium-edge-launcher': 1.0.0(supports-color@9.4.0) + chrome-launcher: 0.15.2(supports-color@9.4.0) + connect: 3.7.0(supports-color@9.4.0) + debug: 2.6.9(supports-color@9.4.0) + node-fetch: 2.7.0(encoding@0.1.13) + nullthrows: 1.1.1 + open: 7.4.2 + selfsigned: 2.4.1 + serve-static: 1.15.0(supports-color@9.4.0) + temp-dir: 2.0.0 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/gradle-plugin@0.74.84': {} + + '@react-native/js-polyfills@0.74.84': {} + + '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@react-native/babel-preset': 0.74.84(@babel/core@7.23.6) + hermes-parser: 0.19.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + optional: true + + '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@react-native/babel-preset': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + hermes-parser: 0.19.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))': + dependencies: + '@babel/core': 7.24.6 + '@react-native/babel-preset': 0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + hermes-parser: 0.19.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color - '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-native/normalize-colors@0.74.84': {} + + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - aria-hidden: 1.2.3 + invariant: 2.2.4 + nullthrows: 1.1.1 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) + react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4) optionalDependencies: '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + optional: true - '@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + invariant: 2.2.4 + nullthrows: 1.1.1 + react: 18.3.1 + react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) optionalDependencies: '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + invariant: 2.2.4 + nullthrows: 1.1.1 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@types/react': 18.3.3 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@remix-run/router@1.16.1': {} + + '@repeaterjs/repeater@3.0.5': {} + + '@rescript/std@9.0.0': {} + + '@rnx-kit/chromium-edge-launcher@1.0.0(supports-color@9.4.0)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@types/node': 18.19.33 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2(supports-color@9.4.0) + mkdirp: 1.0.4 + rimraf: 3.0.2 + transitivePeerDependencies: + - supports-color - '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@rollup/pluginutils': 5.1.0(rollup@2.78.0) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.27.0 optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + rollup: 2.78.0 - '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@rollup/pluginutils@5.1.0(rollup@2.78.0)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@types/estree': 1.0.5 + estree-walker: 2.0.2 + picomatch: 2.3.1 optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + rollup: 2.78.0 - '@radix-ui/react-slot@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@rollup/rollup-android-arm-eabi@4.18.0': + optional: true + + '@rollup/rollup-android-arm64@4.18.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.18.0': + optional: true + + '@rollup/rollup-darwin-x64@4.18.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.18.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.18.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.18.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.18.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.18.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.18.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.18.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.18.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.18.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.18.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.18.0': + optional: true + + '@rushstack/eslint-patch@1.6.1': {} + + '@safe-global/api-kit@2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@safe-global/protocol-kit': 2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@safe-global/safe-core-sdk-types': 3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + node-fetch: 2.7.0(encoding@0.1.13) + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': + '@safe-global/api-kit@2.4.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@safe-global/protocol-kit': 4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-core-sdk-types': 5.0.1(typescript@5.4.5)(zod@3.23.8) + ethers: 6.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + node-fetch: 2.7.0(encoding@0.1.13) + transitivePeerDependencies: + - bufferutil + - encoding + - typescript + - utf-8-validate + - zod - '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/protocol-kit@2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@noble/hashes': 1.3.3 + '@safe-global/safe-deployments': 1.33.0 + ethereumjs-util: 7.1.5 + ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + semver: 7.5.4 + web3: 1.10.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 1.10.3(encoding@0.1.13) + web3-utils: 1.10.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@safe-global/protocol-kit@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@noble/hashes': 1.3.3 + '@safe-global/safe-deployments': 1.33.0 + ethereumjs-util: 7.1.5 + ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + semver: 7.5.4 + web3: 1.10.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3-core: 1.10.3(encoding@0.1.13) + web3-utils: 1.10.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/protocol-kit@4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@noble/hashes': 1.3.3 + '@safe-global/safe-core-sdk-types': 5.0.1(typescript@5.4.5)(zod@3.23.8) + '@safe-global/safe-deployments': 1.36.0 + abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) + ethereumjs-util: 7.1.5 + ethers: 6.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + semver: 7.6.2 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@babel/runtime': 7.24.5 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-apps-sdk@9.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@safe-global/safe-core-sdk-types@2.3.0(encoding@0.1.13)': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/contracts': 5.7.0 + '@safe-global/safe-deployments': 1.33.0 + web3-core: 1.10.3(encoding@0.1.13) + web3-utils: 1.10.3 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-core-sdk-types@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@safe-global/safe-deployments': 1.29.0 + ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-core: 1.10.3(encoding@0.1.13) + web3-utils: 1.10.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-core-sdk-types@4.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@safe-global/safe-deployments': 1.33.0 + ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-core: 1.10.3(encoding@0.1.13) + web3-utils: 1.10.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@safe-global/safe-core-sdk-types@5.0.1(typescript@5.4.5)(zod@3.23.8)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) + transitivePeerDependencies: + - typescript + - zod - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-deployments@1.29.0': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + semver: 7.5.4 - '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@safe-global/safe-deployments@1.33.0': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + semver: 7.5.4 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': + '@safe-global/safe-deployments@1.36.0': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + semver: 7.6.2 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': - dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@safe-global/safe-gateway-typescript-sdk@3.13.3': {} - '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': - dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@safe-global/safe-gateway-typescript-sdk@3.21.1': {} - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@scure/base@1.1.5': {} + + '@scure/bip32@1.3.1': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@noble/curves': 1.1.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@scure/bip32@1.3.2': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@scure/bip39@1.2.1': dependencies: - '@babel/runtime': 7.23.6 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@sentry-internal/feedback@7.91.0': dependencies: - '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@sentry-internal/tracing@7.104.0': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/rect': 1.0.1 - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@sentry/core': 7.104.0 + '@sentry/types': 7.104.0 + '@sentry/utils': 7.104.0 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@sentry-internal/tracing@7.91.0': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1)': + '@sentry/browser@7.91.0': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) - react: 18.3.1 - optionalDependencies: - '@types/react': 18.3.1 + '@sentry-internal/feedback': 7.91.0 + '@sentry-internal/tracing': 7.91.0 + '@sentry/core': 7.91.0 + '@sentry/replay': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@sentry/cli@1.77.1(encoding@0.1.13)': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - optionalDependencies: - '@types/react': 18.3.3 + https-proxy-agent: 5.0.1 + mkdirp: 0.5.6 + node-fetch: 2.7.0(encoding@0.1.13) + progress: 2.0.3 + proxy-from-env: 1.1.0 + which: 2.0.2 + transitivePeerDependencies: + - encoding + - supports-color - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@sentry/core@7.104.0': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.1 - '@types/react-dom': 18.3.0 + '@sentry/types': 7.104.0 + '@sentry/utils': 7.104.0 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@sentry/core@7.91.0': dependencies: - '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - optionalDependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@radix-ui/rect@1.0.1': + '@sentry/integrations@7.91.0': dependencies: - '@babel/runtime': 7.24.0 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 + localforage: 1.10.0 - '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@vanilla-extract/css': 1.9.1 - '@vanilla-extract/dynamic': 2.0.2 - '@vanilla-extract/sprinkles': 1.5.0(@vanilla-extract/css@1.9.1) - clsx: 1.1.1 - i18n-js: 4.3.2 - qrcode: 1.5.0 + '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) + '@sentry/core': 7.91.0 + '@sentry/integrations': 7.91.0 + '@sentry/node': 7.91.0 + '@sentry/react': 7.91.0(react@18.3.1) + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 + '@sentry/vercel-edge': 7.91.0 + '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13) + chalk: 3.0.0 + next: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.4(@types/react@18.3.1)(react@18.3.1) - ua-parser-js: 1.0.37 - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + resolve: 1.22.8 + rollup: 2.78.0 + stacktrace-parser: 0.1.10 transitivePeerDependencies: - - '@types/react' - - '@remix-run/router@1.16.1': {} + - encoding + - supports-color - '@repeaterjs/repeater@3.0.5': {} + '@sentry/node@7.104.0': + dependencies: + '@sentry-internal/tracing': 7.104.0 + '@sentry/core': 7.104.0 + '@sentry/types': 7.104.0 + '@sentry/utils': 7.104.0 - '@rescript/std@9.0.0': {} + '@sentry/node@7.91.0': + dependencies: + '@sentry-internal/tracing': 7.91.0 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 + https-proxy-agent: 5.0.1 + transitivePeerDependencies: + - supports-color - '@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)': + '@sentry/profiling-node@1.3.2(@sentry/node@7.104.0)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.78.0) - commondir: 1.0.1 - estree-walker: 2.0.2 - glob: 8.1.0 - is-reference: 1.2.1 - magic-string: 0.27.0 - optionalDependencies: - rollup: 2.78.0 + '@sentry/node': 7.104.0 + detect-libc: 2.0.2 + node-abi: 3.52.0 - '@rollup/pluginutils@5.1.0(rollup@2.78.0)': + '@sentry/react@7.91.0(react@18.3.1)': dependencies: - '@types/estree': 1.0.5 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 2.78.0 + '@sentry/browser': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 + hoist-non-react-statics: 3.3.2 + react: 18.3.1 - '@rollup/rollup-android-arm-eabi@4.18.0': - optional: true + '@sentry/replay@7.91.0': + dependencies: + '@sentry-internal/tracing': 7.91.0 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@rollup/rollup-android-arm64@4.18.0': - optional: true + '@sentry/types@7.104.0': {} - '@rollup/rollup-darwin-arm64@4.18.0': - optional: true + '@sentry/types@7.91.0': {} - '@rollup/rollup-darwin-x64@4.18.0': - optional: true + '@sentry/types@8.0.0': {} - '@rollup/rollup-linux-arm-gnueabihf@4.18.0': - optional: true + '@sentry/utils@7.104.0': + dependencies: + '@sentry/types': 7.104.0 - '@rollup/rollup-linux-arm-musleabihf@4.18.0': - optional: true + '@sentry/utils@7.91.0': + dependencies: + '@sentry/types': 7.91.0 - '@rollup/rollup-linux-arm64-gnu@4.18.0': - optional: true + '@sentry/utils@8.0.0': + dependencies: + '@sentry/types': 8.0.0 - '@rollup/rollup-linux-arm64-musl@4.18.0': - optional: true + '@sentry/vercel-edge@7.91.0': + dependencies: + '@sentry-internal/tracing': 7.91.0 + '@sentry/core': 7.91.0 + '@sentry/types': 7.91.0 + '@sentry/utils': 7.91.0 - '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': - optional: true + '@sentry/webpack-plugin@1.21.0(encoding@0.1.13)': + dependencies: + '@sentry/cli': 1.77.1(encoding@0.1.13) + webpack-sources: 3.2.3 + transitivePeerDependencies: + - encoding + - supports-color - '@rollup/rollup-linux-riscv64-gnu@4.18.0': - optional: true + '@sideway/address@4.1.5': + dependencies: + '@hapi/hoek': 9.3.0 - '@rollup/rollup-linux-s390x-gnu@4.18.0': - optional: true + '@sideway/formula@3.0.1': {} - '@rollup/rollup-linux-x64-gnu@4.18.0': - optional: true + '@sideway/pinpoint@2.0.0': {} - '@rollup/rollup-linux-x64-musl@4.18.0': - optional: true + '@sinclair/typebox@0.27.8': {} - '@rollup/rollup-win32-arm64-msvc@4.18.0': - optional: true + '@sindresorhus/is@4.6.0': {} - '@rollup/rollup-win32-ia32-msvc@4.18.0': - optional: true + '@sinonjs/commons@3.0.0': + dependencies: + type-detect: 4.0.8 - '@rollup/rollup-win32-x64-msvc@4.18.0': - optional: true + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.0 - '@rushstack/eslint-patch@1.6.1': {} + '@socket.io/component-emitter@3.1.2': {} - '@safe-global/api-kit@2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@solana/buffer-layout@4.0.1': dependencies: - '@safe-global/protocol-kit': 2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@safe-global/safe-core-sdk-types': 3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - node-fetch: 2.7.0(encoding@0.1.13) - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + buffer: 6.0.3 - '@safe-global/api-kit@2.4.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@solana/web3.js@1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@safe-global/protocol-kit': 4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - '@safe-global/safe-core-sdk-types': 5.0.1(typescript@5.4.5)(zod@3.23.8) - ethers: 6.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@babel/runtime': 7.24.5 + '@noble/curves': 1.3.0 + '@noble/hashes': 1.3.3 + '@solana/buffer-layout': 4.0.1 + agentkeepalive: 4.5.0 + bigint-buffer: 1.1.5 + bn.js: 5.2.1 + borsh: 0.7.0 + bs58: 4.0.1 + buffer: 6.0.3 + fast-stable-stringify: 1.0.0 + jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) node-fetch: 2.7.0(encoding@0.1.13) + rpc-websockets: 7.9.0 + superstruct: 0.14.2 transitivePeerDependencies: - bufferutil - encoding - - typescript - utf-8-validate - - zod - '@safe-global/protocol-kit@2.0.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@solana/web3.js@1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': dependencies: + '@babel/runtime': 7.24.5 + '@noble/curves': 1.3.0 '@noble/hashes': 1.3.3 - '@safe-global/safe-deployments': 1.33.0 - ethereumjs-util: 7.1.5 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - semver: 7.5.4 - web3: 1.10.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 + '@solana/buffer-layout': 4.0.1 + agentkeepalive: 4.5.0 + bigint-buffer: 1.1.5 + bn.js: 5.2.1 + borsh: 0.7.0 + bs58: 4.0.1 + buffer: 6.0.3 + fast-stable-stringify: 1.0.0 + jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + node-fetch: 2.7.0(encoding@0.1.13) + rpc-websockets: 7.9.0 + superstruct: 0.14.2 transitivePeerDependencies: - bufferutil - encoding - - supports-color - utf-8-validate - '@safe-global/protocol-kit@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@stablelib/aead@1.0.1': {} + + '@stablelib/binary@1.0.1': dependencies: - '@noble/hashes': 1.3.3 - '@safe-global/safe-deployments': 1.33.0 - ethereumjs-util: 7.1.5 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - semver: 7.5.4 - web3: 1.10.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@stablelib/int': 1.0.1 - '@safe-global/protocol-kit@4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': + '@stablelib/bytes@1.0.1': {} + + '@stablelib/chacha20poly1305@1.0.1': dependencies: - '@noble/hashes': 1.3.3 - '@safe-global/safe-core-sdk-types': 5.0.1(typescript@5.4.5)(zod@3.23.8) - '@safe-global/safe-deployments': 1.36.0 - abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) - ethereumjs-util: 7.1.5 - ethers: 6.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - semver: 7.6.2 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod + '@stablelib/aead': 1.0.1 + '@stablelib/binary': 1.0.1 + '@stablelib/chacha': 1.0.1 + '@stablelib/constant-time': 1.0.1 + '@stablelib/poly1305': 1.0.1 + '@stablelib/wipe': 1.0.1 - '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@stablelib/chacha@1.0.1': dependencies: - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod + '@stablelib/binary': 1.0.1 + '@stablelib/wipe': 1.0.1 - '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@stablelib/constant-time@1.0.1': {} + + '@stablelib/ed25519@1.0.3': dependencies: - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod + '@stablelib/random': 1.0.2 + '@stablelib/sha512': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/hash@1.0.1': {} - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@stablelib/hkdf@1.0.1': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod + '@stablelib/hash': 1.0.1 + '@stablelib/hmac': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/hmac@1.0.1': + dependencies: + '@stablelib/constant-time': 1.0.1 + '@stablelib/hash': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/int@1.0.1': {} + + '@stablelib/keyagreement@1.0.1': + dependencies: + '@stablelib/bytes': 1.0.1 + + '@stablelib/poly1305@1.0.1': + dependencies: + '@stablelib/constant-time': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/random@1.0.2': + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/sha256@1.0.1': + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/hash': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/sha512@1.0.1': + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/hash': 1.0.1 + '@stablelib/wipe': 1.0.1 + + '@stablelib/wipe@1.0.1': {} + + '@stablelib/x25519@1.0.3': + dependencies: + '@stablelib/keyagreement': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/wipe': 1.0.1 + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.11': + dependencies: + tslib: 2.6.2 + + '@swc/helpers@0.5.2': + dependencies: + tslib: 2.6.2 + + '@swc/helpers@0.5.5': + dependencies: + '@swc/counter': 0.1.3 + tslib: 2.6.2 + + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@szmarczak/http-timer@5.0.1': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod + defer-to-connect: 2.0.1 - '@safe-global/safe-core-sdk-types@2.3.0(encoding@0.1.13)': + '@tanstack/query-core@4.36.1': {} + + '@tanstack/query-core@5.0.5': {} + + '@tanstack/query-core@5.40.0': {} + + '@tanstack/query-persist-client-core@4.36.1': dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@safe-global/safe-deployments': 1.33.0 - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - encoding - - supports-color + '@tanstack/query-core': 4.36.1 - '@safe-global/safe-core-sdk-types@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@tanstack/query-sync-storage-persister@4.36.1': dependencies: - '@safe-global/safe-deployments': 1.29.0 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@tanstack/query-persist-client-core': 4.36.1 - '@safe-global/safe-core-sdk-types@4.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1))': dependencies: - '@safe-global/safe-deployments': 1.33.0 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate + '@tanstack/query-persist-client-core': 4.36.1 + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1) - '@safe-global/safe-core-sdk-types@5.0.1(typescript@5.4.5)(zod@3.23.8)': + '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)': dependencies: - abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) - transitivePeerDependencies: - - typescript - - zod + '@tanstack/query-core': 4.36.1 + react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4) - '@safe-global/safe-deployments@1.29.0': + '@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: - semver: 7.5.4 + '@tanstack/query-core': 5.0.5 + react: 18.3.1 + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - '@safe-global/safe-deployments@1.33.0': + '@tanstack/react-query@5.40.1(react@18.3.1)': dependencies: - semver: 7.5.4 + '@tanstack/query-core': 5.40.0 + react: 18.3.1 - '@safe-global/safe-deployments@1.36.0': + '@tanstack/react-table@8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': dependencies: - semver: 7.6.2 + '@tanstack/table-core': 8.17.3 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - '@safe-global/safe-gateway-typescript-sdk@3.13.3': {} + '@tanstack/table-core@8.17.3': {} - '@safe-global/safe-gateway-typescript-sdk@3.21.1': {} + '@testing-library/dom@10.1.0': + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/runtime': 7.24.5 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 - '@scure/base@1.1.5': {} + '@testing-library/dom@9.3.3': + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/runtime': 7.23.6 + '@types/aria-query': 5.0.4 + aria-query: 5.1.3 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 - '@scure/bip32@1.3.1': + '@testing-library/jest-dom@6.1.6(@jest/globals@29.7.0)(@types/jest@29.5.11)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))': dependencies: - '@noble/curves': 1.1.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@adobe/css-tools': 4.3.2 + '@babel/runtime': 7.23.6 + aria-query: 5.3.0 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.16 + lodash: 4.17.21 + redent: 3.0.0 + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.5.11 + jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) - '@scure/bip32@1.3.2': + '@testing-library/jest-dom@6.1.6(@jest/globals@29.7.0)(@types/jest@29.5.11)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))': dependencies: - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@adobe/css-tools': 4.3.2 + '@babel/runtime': 7.23.6 + aria-query: 5.3.0 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.16 + lodash: 4.17.21 + redent: 3.0.0 + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.5.11 + jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - '@scure/bip39@1.2.1': + '@testing-library/jest-dom@6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))': dependencies: - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@adobe/css-tools': 4.3.2 + '@babel/runtime': 7.24.5 + aria-query: 5.3.0 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + lodash: 4.17.21 + redent: 3.0.0 + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.5.12 + jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - '@sentry-internal/feedback@7.91.0': + '@testing-library/react@14.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + '@babel/runtime': 7.23.6 + '@testing-library/dom': 9.3.3 + '@types/react-dom': 18.3.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@sentry-internal/tracing@7.104.0': + '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': dependencies: - '@sentry/core': 7.104.0 - '@sentry/types': 7.104.0 - '@sentry/utils': 7.104.0 + '@babel/runtime': 7.24.5 + '@testing-library/dom': 10.1.0 + '@types/react-dom': 18.3.0 + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 - '@sentry-internal/tracing@7.91.0': + '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)': dependencies: - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + '@testing-library/dom': 10.1.0 - '@sentry/browser@7.91.0': + '@tootallnate/once@2.0.0': {} + + '@ts-morph/common@0.20.0': dependencies: - '@sentry-internal/feedback': 7.91.0 - '@sentry-internal/tracing': 7.91.0 - '@sentry/core': 7.91.0 - '@sentry/replay': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + fast-glob: 3.3.2 + minimatch: 7.4.6 + mkdirp: 2.1.6 + path-browserify: 1.0.1 - '@sentry/cli@1.77.1(encoding@0.1.13)': + '@tsconfig/node10@1.0.9': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@turf/area@6.5.0': dependencies: - https-proxy-agent: 5.0.1 - mkdirp: 0.5.6 - node-fetch: 2.7.0(encoding@0.1.13) - progress: 2.0.3 - proxy-from-env: 1.1.0 - which: 2.0.2 - transitivePeerDependencies: - - encoding - - supports-color + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 - '@sentry/core@7.104.0': + '@turf/bbox@6.5.0': dependencies: - '@sentry/types': 7.104.0 - '@sentry/utils': 7.104.0 + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 - '@sentry/core@7.91.0': + '@turf/centroid@6.5.0': dependencies: - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 - '@sentry/integrations@7.91.0': + '@turf/helpers@6.5.0': {} + + '@turf/meta@6.5.0': dependencies: - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 - localforage: 1.10.0 + '@turf/helpers': 6.5.0 - '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@types/aria-query@5.0.4': {} + + '@types/babel__core@7.20.5': dependencies: - '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) - '@sentry/core': 7.91.0 - '@sentry/integrations': 7.91.0 - '@sentry/node': 7.91.0 - '@sentry/react': 7.91.0(react@18.3.1) - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 - '@sentry/vercel-edge': 7.91.0 - '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13) - chalk: 3.0.0 - next: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - resolve: 1.22.8 - rollup: 2.78.0 - stacktrace-parser: 0.1.10 - transitivePeerDependencies: - - encoding - - supports-color + '@babel/parser': 7.24.6 + '@babel/types': 7.23.6 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.4 - '@sentry/node@7.104.0': + '@types/babel__generator@7.6.8': dependencies: - '@sentry-internal/tracing': 7.104.0 - '@sentry/core': 7.104.0 - '@sentry/types': 7.104.0 - '@sentry/utils': 7.104.0 + '@babel/types': 7.23.6 - '@sentry/node@7.91.0': + '@types/babel__template@7.4.4': dependencies: - '@sentry-internal/tracing': 7.91.0 - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 - https-proxy-agent: 5.0.1 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.24.6 + '@babel/types': 7.23.6 - '@sentry/profiling-node@1.3.2(@sentry/node@7.104.0)': + '@types/babel__traverse@7.20.4': dependencies: - '@sentry/node': 7.104.0 - detect-libc: 2.0.2 - node-abi: 3.52.0 + '@babel/types': 7.23.6 - '@sentry/react@7.91.0(react@18.3.1)': + '@types/bn.js@5.1.5': dependencies: - '@sentry/browser': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 - hoist-non-react-statics: 3.3.2 - react: 18.3.1 + '@types/node': 20.14.2 - '@sentry/replay@7.91.0': + '@types/braces@3.0.4': {} + + '@types/cacheable-request@6.0.3': dependencies: - '@sentry-internal/tracing': 7.91.0 - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.14.2 + '@types/responselike': 1.0.3 - '@sentry/types@7.104.0': {} + '@types/cli-progress@3.11.5': + dependencies: + '@types/node': 20.14.2 - '@sentry/types@7.91.0': {} + '@types/concat-stream@1.6.1': + dependencies: + '@types/node': 20.14.2 - '@sentry/types@8.0.0': {} + '@types/connect@3.4.38': + dependencies: + '@types/node': 20.14.2 - '@sentry/utils@7.104.0': + '@types/debug@4.1.12': dependencies: - '@sentry/types': 7.104.0 + '@types/ms': 0.7.34 - '@sentry/utils@7.91.0': + '@types/dom-screen-wake-lock@1.0.3': {} + + '@types/estree@1.0.5': {} + + '@types/form-data@0.0.33': dependencies: - '@sentry/types': 7.91.0 + '@types/node': 20.14.2 - '@sentry/utils@8.0.0': + '@types/fs-extra@11.0.4': dependencies: - '@sentry/types': 8.0.0 + '@types/jsonfile': 6.1.4 + '@types/node': 20.12.12 - '@sentry/vercel-edge@7.91.0': + '@types/graceful-fs@4.1.9': dependencies: - '@sentry-internal/tracing': 7.91.0 - '@sentry/core': 7.91.0 - '@sentry/types': 7.91.0 - '@sentry/utils': 7.91.0 + '@types/node': 20.14.2 - '@sentry/webpack-plugin@1.21.0(encoding@0.1.13)': + '@types/hoist-non-react-statics@3.3.5': dependencies: - '@sentry/cli': 1.77.1(encoding@0.1.13) - webpack-sources: 3.2.3 - transitivePeerDependencies: - - encoding - - supports-color + '@types/react': 18.3.3 + hoist-non-react-statics: 3.3.2 - '@sinclair/typebox@0.27.8': {} + '@types/http-cache-semantics@4.0.4': {} - '@sindresorhus/is@4.6.0': {} + '@types/istanbul-lib-coverage@2.0.6': {} - '@sinonjs/commons@3.0.0': + '@types/istanbul-lib-report@3.0.3': dependencies: - type-detect: 4.0.8 + '@types/istanbul-lib-coverage': 2.0.6 - '@sinonjs/fake-timers@10.3.0': + '@types/istanbul-reports@1.1.2': dependencies: - '@sinonjs/commons': 3.0.0 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-lib-report': 3.0.3 - '@solana/buffer-layout@4.0.1': + '@types/istanbul-reports@3.0.4': dependencies: - buffer: 6.0.3 + '@types/istanbul-lib-report': 3.0.3 - '@solana/web3.js@1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@types/jest@29.5.11': dependencies: - '@babel/runtime': 7.24.5 - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@solana/buffer-layout': 4.0.1 - agentkeepalive: 4.5.0 - bigint-buffer: 1.1.5 - bn.js: 5.2.1 - borsh: 0.7.0 - bs58: 4.0.1 - buffer: 6.0.3 - fast-stable-stringify: 1.0.0 - jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - node-fetch: 2.7.0(encoding@0.1.13) - rpc-websockets: 7.9.0 - superstruct: 0.14.2 - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate - - '@stablelib/aead@1.0.1': {} + expect: 29.7.0 + pretty-format: 29.7.0 - '@stablelib/binary@1.0.1': + '@types/jest@29.5.12': dependencies: - '@stablelib/int': 1.0.1 + expect: 29.7.0 + pretty-format: 29.7.0 - '@stablelib/bytes@1.0.1': {} + '@types/js-yaml@4.0.9': {} - '@stablelib/chacha20poly1305@1.0.1': + '@types/jsdom@20.0.1': dependencies: - '@stablelib/aead': 1.0.1 - '@stablelib/binary': 1.0.1 - '@stablelib/chacha': 1.0.1 - '@stablelib/constant-time': 1.0.1 - '@stablelib/poly1305': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/node': 20.14.2 + '@types/tough-cookie': 4.0.5 + parse5: 7.1.2 - '@stablelib/chacha@1.0.1': + '@types/json-schema@7.0.15': {} + + '@types/json-stable-stringify@1.0.36': {} + + '@types/json5@0.0.29': {} + + '@types/jsonfile@6.1.4': dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/node': 20.14.2 - '@stablelib/constant-time@1.0.1': {} + '@types/keyv@3.1.4': + dependencies: + '@types/node': 20.14.2 - '@stablelib/ed25519@1.0.3': + '@types/lodash.merge@4.6.9': dependencies: - '@stablelib/random': 1.0.2 - '@stablelib/sha512': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/lodash': 4.14.202 - '@stablelib/hash@1.0.1': {} + '@types/lodash@4.14.202': {} - '@stablelib/hkdf@1.0.1': + '@types/lodash@4.17.4': {} + + '@types/micromatch@4.0.6': dependencies: - '@stablelib/hash': 1.0.1 - '@stablelib/hmac': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/braces': 3.0.4 - '@stablelib/hmac@1.0.1': + '@types/minimatch@3.0.5': {} + + '@types/ms@0.7.34': {} + + '@types/node-forge@1.3.11': dependencies: - '@stablelib/constant-time': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/node': 20.14.2 - '@stablelib/int@1.0.1': {} + '@types/node@10.17.60': {} - '@stablelib/keyagreement@1.0.1': + '@types/node@12.20.55': {} + + '@types/node@18.15.13': {} + + '@types/node@18.19.33': dependencies: - '@stablelib/bytes': 1.0.1 + undici-types: 5.26.5 - '@stablelib/poly1305@1.0.1': + '@types/node@20.12.12': dependencies: - '@stablelib/constant-time': 1.0.1 - '@stablelib/wipe': 1.0.1 + undici-types: 5.26.5 - '@stablelib/random@1.0.2': + '@types/node@20.12.7': dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 + undici-types: 5.26.5 - '@stablelib/sha256@1.0.1': + '@types/node@20.14.2': dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 + undici-types: 5.26.5 - '@stablelib/sha512@1.0.1': + '@types/node@8.10.66': {} + + '@types/parse-json@4.0.2': {} + + '@types/pbkdf2@3.1.2': dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 + '@types/node': 20.14.2 - '@stablelib/wipe@1.0.1': {} + '@types/plotly.js@2.12.32': {} - '@stablelib/x25519@1.0.3': + '@types/prop-types@15.7.11': {} + + '@types/qs@6.9.10': {} + + '@types/react-dom@18.2.18': dependencies: - '@stablelib/keyagreement': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/wipe': 1.0.1 + '@types/react': 18.3.3 - '@swc/counter@0.1.3': {} + '@types/react-dom@18.3.0': + dependencies: + '@types/react': 18.3.1 - '@swc/helpers@0.5.11': + '@types/react-plotly.js@2.6.3': dependencies: - tslib: 2.6.2 + '@types/plotly.js': 2.12.32 + '@types/react': 18.3.1 - '@swc/helpers@0.5.2': + '@types/react-redux@7.1.33': dependencies: - tslib: 2.6.2 + '@types/hoist-non-react-statics': 3.3.5 + '@types/react': 18.3.3 + hoist-non-react-statics: 3.3.2 + redux: 4.2.1 - '@swc/helpers@0.5.5': + '@types/react-toastify@4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@swc/counter': 0.1.3 - tslib: 2.6.2 + react-toastify: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - react + - react-dom + + '@types/react@18.2.45': + dependencies: + '@types/prop-types': 15.7.11 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 + + '@types/react@18.3.1': + dependencies: + '@types/prop-types': 15.7.11 + csstype: 3.1.3 - '@szmarczak/http-timer@4.0.6': + '@types/react@18.3.3': dependencies: - defer-to-connect: 2.0.1 + '@types/prop-types': 15.7.11 + csstype: 3.1.3 - '@szmarczak/http-timer@5.0.1': + '@types/responselike@1.0.3': dependencies: - defer-to-connect: 2.0.1 + '@types/node': 20.14.2 - '@tanstack/query-core@4.36.1': {} + '@types/scheduler@0.16.8': {} - '@tanstack/query-persist-client-core@4.36.1': + '@types/secp256k1@4.0.6': dependencies: - '@tanstack/query-core': 4.36.1 + '@types/node': 20.14.2 - '@tanstack/query-sync-storage-persister@4.36.1': - dependencies: - '@tanstack/query-persist-client-core': 4.36.1 + '@types/semver@7.5.6': {} + + '@types/stack-utils@2.0.3': {} + + '@types/tough-cookie@4.0.5': {} + + '@types/trusted-types@2.0.7': {} - '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + '@types/websocket@1.0.2': dependencies: - '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/node': 20.14.2 - '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@types/ws@7.4.7': dependencies: - '@tanstack/query-core': 4.36.1 - react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: - react-dom: 18.3.1(react@18.3.1) + '@types/node': 20.14.2 - '@tanstack/react-table@8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@types/ws@8.5.10': dependencies: - '@tanstack/table-core': 8.17.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@types/node': 20.14.2 - '@tanstack/table-core@8.17.3': {} + '@types/yargs-parser@21.0.3': {} - '@testing-library/dom@10.1.0': + '@types/yargs@13.0.12': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/runtime': 7.24.5 - '@types/aria-query': 5.0.4 - aria-query: 5.3.0 - chalk: 4.1.2 - dom-accessibility-api: 0.5.16 - lz-string: 1.5.0 - pretty-format: 27.5.1 + '@types/yargs-parser': 21.0.3 - '@testing-library/dom@9.3.3': + '@types/yargs@15.0.19': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/runtime': 7.23.6 - '@types/aria-query': 5.0.4 - aria-query: 5.1.3 - chalk: 4.1.2 - dom-accessibility-api: 0.5.16 - lz-string: 1.5.0 - pretty-format: 27.5.1 + '@types/yargs-parser': 21.0.3 - '@testing-library/jest-dom@6.1.6(@jest/globals@29.7.0)(@types/jest@29.5.11)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))': + '@types/yargs@17.0.32': dependencies: - '@adobe/css-tools': 4.3.2 - '@babel/runtime': 7.23.6 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.5.16 - lodash: 4.17.21 - redent: 3.0.0 - optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.11 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + '@types/yargs-parser': 21.0.3 - '@testing-library/jest-dom@6.1.6(@jest/globals@29.7.0)(@types/jest@29.5.11)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))': + '@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)': dependencies: - '@adobe/css-tools': 4.3.2 - '@babel/runtime': 7.23.6 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.5.16 - lodash: 4.17.21 - redent: 3.0.0 + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.17.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 6.17.0 + '@typescript-eslint/type-utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.17.0 + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.0 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.11 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color - '@testing-library/jest-dom@6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))': + '@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5)': dependencies: - '@adobe/css-tools': 4.3.2 - '@babel/runtime': 7.24.5 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.6.3 - lodash: 4.17.21 - redent: 3.0.0 + '@typescript-eslint/scope-manager': 6.17.0 + '@typescript-eslint/types': 6.17.0 + '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.17.0 + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.56.0 optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color - '@testing-library/react@14.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@typescript-eslint/scope-manager@6.17.0': dependencies: - '@babel/runtime': 7.23.6 - '@testing-library/dom': 9.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + '@typescript-eslint/types': 6.17.0 + '@typescript-eslint/visitor-keys': 6.17.0 - '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@typescript-eslint/type-utils@6.17.0(eslint@8.56.0)(typescript@5.4.5)': dependencies: - '@babel/runtime': 7.24.5 - '@testing-library/dom': 10.1.0 - '@types/react-dom': 18.3.0 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) + '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.56.0 + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - '@types/react': 18.3.3 + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color - '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)': + '@typescript-eslint/types@6.17.0': {} + + '@typescript-eslint/typescript-estree@6.17.0(typescript@5.4.5)': dependencies: - '@testing-library/dom': 10.1.0 + '@typescript-eslint/types': 6.17.0 + '@typescript-eslint/visitor-keys': 6.17.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.4.5) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color - '@tootallnate/once@2.0.0': {} + '@typescript-eslint/utils@6.17.0(eslint@8.56.0)(typescript@5.4.5)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 + '@typescript-eslint/scope-manager': 6.17.0 + '@typescript-eslint/types': 6.17.0 + '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) + eslint: 8.56.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript - '@ts-morph/common@0.20.0': + '@typescript-eslint/visitor-keys@6.17.0': dependencies: - fast-glob: 3.3.2 - minimatch: 7.4.6 - mkdirp: 2.1.6 - path-browserify: 1.0.1 + '@typescript-eslint/types': 6.17.0 + eslint-visitor-keys: 3.4.3 - '@tsconfig/node10@1.0.9': {} + '@ungap/structured-clone@1.2.0': {} - '@tsconfig/node12@1.0.11': {} + '@vanilla-extract/css@1.9.1': + dependencies: + '@emotion/hash': 0.8.0 + '@vanilla-extract/private': 1.0.3 + ahocorasick: 1.0.2 + chalk: 4.1.2 + css-what: 5.1.0 + cssesc: 3.0.0 + csstype: 3.1.3 + deep-object-diff: 1.1.9 + deepmerge: 4.3.1 + media-query-parser: 2.0.2 + outdent: 0.8.0 - '@tsconfig/node14@1.0.3': {} + '@vanilla-extract/dynamic@2.0.2': + dependencies: + '@vanilla-extract/private': 1.0.3 - '@tsconfig/node16@1.0.4': {} + '@vanilla-extract/private@1.0.3': {} - '@turf/area@6.5.0': + '@vanilla-extract/sprinkles@1.5.0(@vanilla-extract/css@1.9.1)': dependencies: - '@turf/helpers': 6.5.0 - '@turf/meta': 6.5.0 + '@vanilla-extract/css': 1.9.1 - '@turf/bbox@6.5.0': + '@vitejs/plugin-react@4.3.0(vite@4.5.3(@types/node@20.14.2)(terser@5.31.0))': dependencies: - '@turf/helpers': 6.5.0 - '@turf/meta': 6.5.0 + '@babel/core': 7.24.6 + '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6) + '@types/babel__core': 7.20.5 + react-refresh: 0.14.2 + vite: 4.5.3(@types/node@20.14.2)(terser@5.31.0) + transitivePeerDependencies: + - supports-color - '@turf/centroid@6.5.0': + '@volar/language-core@2.2.5': dependencies: - '@turf/helpers': 6.5.0 - '@turf/meta': 6.5.0 + '@volar/source-map': 2.2.5 - '@turf/helpers@6.5.0': {} + '@volar/source-map@2.2.5': + dependencies: + muggle-string: 0.4.1 - '@turf/meta@6.5.0': + '@vue/compiler-core@3.4.27': dependencies: - '@turf/helpers': 6.5.0 + '@babel/parser': 7.24.6 + '@vue/shared': 3.4.27 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + + '@vue/compiler-dom@3.4.27': + dependencies: + '@vue/compiler-core': 3.4.27 + '@vue/shared': 3.4.27 + + '@vue/language-core@2.0.19(typescript@5.4.5)': + dependencies: + '@volar/language-core': 2.2.5 + '@vue/compiler-dom': 3.4.27 + '@vue/shared': 3.4.27 + computeds: 0.0.1 + minimatch: 9.0.3 + path-browserify: 1.0.1 + vue-template-compiler: 2.7.16 + optionalDependencies: + typescript: 5.4.5 - '@types/aria-query@5.0.4': {} + '@vue/shared@3.4.27': {} - '@types/babel__core@7.20.5': + '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4))': dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.4 + abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) + abort-controller: 3.0.0 + bundle-require: 3.1.2(esbuild@0.16.17) + cac: 6.7.14 + change-case: 4.1.2 + chokidar: 3.5.3 + dedent: 0.7.0 + detect-package-manager: 2.0.1 + dotenv: 16.3.1 + dotenv-expand: 10.0.0 + esbuild: 0.16.17 + execa: 6.1.0 + find-up: 6.3.0 + fs-extra: 10.1.0 + globby: 13.2.2 + node-fetch: 3.3.2 + ora: 6.3.1 + pathe: 1.1.1 + picocolors: 1.0.0 + prettier: 2.8.8 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + zod: 3.22.4 + optionalDependencies: + '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) + typescript: 5.3.3 + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/babel__generator@7.6.8': + '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(wagmi@2.9.8(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: - '@babel/types': 7.23.6 + abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + abort-controller: 3.0.0 + bundle-require: 3.1.2(esbuild@0.16.17) + cac: 6.7.14 + change-case: 4.1.2 + chokidar: 3.5.3 + dedent: 0.7.0 + detect-package-manager: 2.0.1 + dotenv: 16.3.1 + dotenv-expand: 10.0.0 + esbuild: 0.16.17 + execa: 6.1.0 + find-up: 6.3.0 + fs-extra: 10.1.0 + globby: 13.2.2 + node-fetch: 3.3.2 + ora: 6.3.1 + pathe: 1.1.1 + picocolors: 1.0.0 + prettier: 2.8.8 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + zod: 3.22.4 + optionalDependencies: + '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + typescript: 5.4.5 + wagmi: 2.9.8(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/babel__template@7.4.4': + '@wagmi/cli@2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: - '@babel/parser': 7.23.6 - '@babel/types': 7.23.6 + abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) + bundle-require: 4.2.1(esbuild@0.19.10) + cac: 6.7.14 + change-case: 4.1.2 + chokidar: 3.5.3 + dedent: 0.7.0 + dotenv: 16.3.1 + dotenv-expand: 10.0.0 + esbuild: 0.19.10 + execa: 8.0.1 + find-up: 6.3.0 + fs-extra: 11.2.0 + globby: 13.2.2 + ora: 6.3.1 + pathe: 1.1.2 + picocolors: 1.0.0 + prettier: 3.2.5 + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + zod: 3.23.8 + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/babel__traverse@7.20.4': + '@wagmi/cli@2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)': dependencies: - '@babel/types': 7.23.6 + abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) + bundle-require: 4.2.1(esbuild@0.19.10) + cac: 6.7.14 + change-case: 4.1.2 + chokidar: 3.5.3 + dedent: 0.7.0 + dotenv: 16.3.1 + dotenv-expand: 10.0.0 + esbuild: 0.19.10 + execa: 8.0.1 + find-up: 6.3.0 + fs-extra: 11.2.0 + globby: 13.2.2 + ora: 6.3.1 + pathe: 1.1.2 + picocolors: 1.0.0 + prettier: 3.2.5 + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + zod: 3.23.8 + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/bn.js@5.1.5': + '@wagmi/connectors@3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@types/node': 20.12.12 + '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4) + '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) + '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/utils': 2.10.2 + abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) + eventemitter3: 4.0.7 + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + optionalDependencies: + typescript: 5.3.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate + - zod - '@types/braces@3.0.4': {} + '@wagmi/connectors@3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) + '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/utils': 2.10.2 + abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + eventemitter3: 4.0.7 + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate + - zod - '@types/cacheable-request@6.0.3': + '@wagmi/connectors@3.1.10(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@types/http-cache-semantics': 4.0.4 - '@types/keyv': 3.1.4 - '@types/node': 20.12.12 - '@types/responselike': 1.0.3 + '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + '@walletconnect/utils': 2.10.2(supports-color@9.4.0) + abitype: 0.8.7(typescript@5.4.5)(zod@3.23.8) + eventemitter3: 4.0.7 + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate + - zod - '@types/cli-progress@3.11.5': + '@wagmi/connectors@5.0.7(@types/react@18.3.1)(@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@types/node': 20.12.12 + '@coinbase/wallet-sdk': 4.0.2 + '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + optional: true + + '@wagmi/connectors@5.0.7(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + '@coinbase/wallet-sdk': 4.0.2 + '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod - '@types/concat-stream@1.6.1': - dependencies: - '@types/node': 20.12.12 + ? '@wagmi/connectors@5.0.7(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)' + : dependencies: + '@coinbase/wallet-sdk': 4.0.2 + '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)' + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod - '@types/connect@3.4.38': + '@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@types/node': 20.12.12 + '@wagmi/connectors': 3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) + abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) + eventemitter3: 4.0.7 + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) + zustand: 4.4.7(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + typescript: 5.3.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react + - supports-color + - utf-8-validate + - zod - '@types/debug@4.1.12': + '@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@types/ms': 0.7.34 - - '@types/estree@1.0.5': {} + '@wagmi/connectors': 3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + eventemitter3: 4.0.7 + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + zustand: 4.4.7(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react + - supports-color + - utf-8-validate + - zod - '@types/form-data@0.0.33': + '@wagmi/core@1.4.12(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@types/node': 20.12.12 + '@wagmi/connectors': 3.1.10(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + abitype: 0.8.7(typescript@5.4.5)(zod@3.23.8) + eventemitter3: 4.0.7 + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + zustand: 4.4.7(@types/react@18.3.3)(react@18.3.1) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react + - supports-color + - utf-8-validate + - zod - '@types/fs-extra@11.0.4': + '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@types/jsonfile': 6.1.4 - '@types/node': 20.12.12 + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.3)(react@18.3.1) + optionalDependencies: + '@tanstack/query-core': 5.40.0 + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod - '@types/graceful-fs@4.1.9': + '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@types/node': 20.12.12 + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.3)(react@18.3.1) + optionalDependencies: + '@tanstack/query-core': 5.40.0 + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod - '@types/hoist-non-react-statics@3.3.5': + '@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@types/react': 18.3.3 - hoist-non-react-statics: 3.3.2 - - '@types/http-cache-semantics@4.0.4': {} + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + zustand: 4.4.1(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod + optional: true - '@types/istanbul-lib-coverage@2.0.6': {} + '@walletconnect/core@2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + dependencies: + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/logger': 2.0.1 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate - '@types/istanbul-lib-report@3.0.3': + '@walletconnect/core@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@types/istanbul-lib-coverage': 2.0.6 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate - '@types/istanbul-reports@1.1.2': + '@walletconnect/core@2.10.6(bufferutil@4.0.8)(utf-8-validate@6.0.4)': dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-report': 3.0.3 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate - '@types/istanbul-reports@3.0.4': + '@walletconnect/core@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - '@types/istanbul-lib-report': 3.0.3 + '@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.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0(supports-color@9.4.0) + '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + events: 3.3.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + lodash.isequal: 4.5.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@types/jest@29.5.11': + '@walletconnect/core@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - expect: 29.7.0 - pretty-format: 29.7.0 + '@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.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0 + '@walletconnect/utils': 2.13.0 + events: 3.3.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) + lodash.isequal: 4.5.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@types/jest@29.5.12': + '@walletconnect/crypto@1.0.3': dependencies: - expect: 29.7.0 - pretty-format: 29.7.0 - - '@types/js-yaml@4.0.9': {} + '@walletconnect/encoding': 1.0.2 + '@walletconnect/environment': 1.0.1 + '@walletconnect/randombytes': 1.0.3 + aes-js: 3.1.2 + hash.js: 1.1.7 + tslib: 1.14.1 - '@types/jsdom@20.0.1': + '@walletconnect/encoding@1.0.2': dependencies: - '@types/node': 20.12.12 - '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 - - '@types/json-schema@7.0.15': {} - - '@types/json-stable-stringify@1.0.36': {} - - '@types/json5@0.0.29': {} + is-typedarray: 1.0.0 + tslib: 1.14.1 + typedarray-to-buffer: 3.1.5 - '@types/jsonfile@6.1.4': + '@walletconnect/environment@1.0.1': dependencies: - '@types/node': 20.12.12 + tslib: 1.14.1 - '@types/keyv@3.1.4': + '@walletconnect/ethereum-provider@2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - '@types/node': 20.12.12 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.10.6 + '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.10.6 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@types/lodash.merge@4.6.9': + '@walletconnect/ethereum-provider@2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4)': dependencies: - '@types/lodash': 4.14.202 - - '@types/lodash@4.14.202': {} - - '@types/lodash@4.17.4': {} + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.10.6 + '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + '@walletconnect/utils': 2.10.6 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@types/micromatch@4.0.6': + '@walletconnect/ethereum-provider@2.10.6(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - '@types/braces': 3.0.4 - - '@types/minimatch@3.0.5': {} - - '@types/ms@0.7.34': {} - - '@types/node@10.17.60': {} - - '@types/node@12.20.55': {} - - '@types/node@18.15.13': {} + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@types/node@18.19.33': + '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - undici-types: 5.26.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/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0 + '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.13.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate + optional: true - '@types/node@20.12.12': + '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - undici-types: 5.26.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/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.13.0(supports-color@9.4.0) + '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@types/node@20.12.7': + '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: - undici-types: 5.26.5 - - '@types/node@8.10.66': {} - - '@types/parse-json@4.0.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/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) + '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0 + '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.13.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate - '@types/pbkdf2@3.1.2': + '@walletconnect/events@1.0.1': dependencies: - '@types/node': 20.12.12 - - '@types/plotly.js@2.12.32': {} - - '@types/prop-types@15.7.11': {} - - '@types/qs@6.9.10': {} + keyvaluestorage-interface: 1.0.0 + tslib: 1.14.1 - '@types/react-dom@18.2.18': + '@walletconnect/heartbeat@1.2.1': dependencies: - '@types/react': 18.3.3 + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + tslib: 1.14.1 - '@types/react-dom@18.3.0': + '@walletconnect/heartbeat@1.2.2': dependencies: - '@types/react': 18.3.1 + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + events: 3.3.0 - '@types/react-plotly.js@2.6.3': + '@walletconnect/jsonrpc-http-connection@1.0.7(encoding@0.1.13)': dependencies: - '@types/plotly.js': 2.12.32 - '@types/react': 18.3.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + cross-fetch: 3.1.8(encoding@0.1.13) + tslib: 1.14.1 + transitivePeerDependencies: + - encoding - '@types/react-redux@7.1.33': + '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)': dependencies: - '@types/hoist-non-react-statics': 3.3.5 - '@types/react': 18.3.3 - hoist-non-react-statics: 3.3.2 - redux: 4.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + cross-fetch: 3.1.8(encoding@0.1.13) + events: 3.3.0 + transitivePeerDependencies: + - encoding - '@types/react@18.2.45': + '@walletconnect/jsonrpc-provider@1.0.13': dependencies: - '@types/prop-types': 15.7.11 - '@types/scheduler': 0.16.8 - csstype: 3.1.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + tslib: 1.14.1 - '@types/react@18.3.1': + '@walletconnect/jsonrpc-provider@1.0.14': dependencies: - '@types/prop-types': 15.7.11 - csstype: 3.1.3 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 - '@types/react@18.3.3': + '@walletconnect/jsonrpc-types@1.0.3': dependencies: - '@types/prop-types': 15.7.11 - csstype: 3.1.3 + keyvaluestorage-interface: 1.0.0 + tslib: 1.14.1 - '@types/responselike@1.0.3': + '@walletconnect/jsonrpc-types@1.0.4': dependencies: - '@types/node': 20.12.12 - - '@types/scheduler@0.16.8': {} + events: 3.3.0 + keyvaluestorage-interface: 1.0.0 - '@types/secp256k1@4.0.6': + '@walletconnect/jsonrpc-utils@1.0.8': dependencies: - '@types/node': 20.12.12 - - '@types/semver@7.5.6': {} - - '@types/stack-utils@2.0.3': {} - - '@types/tough-cookie@4.0.5': {} - - '@types/trusted-types@2.0.7': {} + '@walletconnect/environment': 1.0.1 + '@walletconnect/jsonrpc-types': 1.0.3 + tslib: 1.14.1 - '@types/websocket@1.0.2': + '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@types/node': 20.12.12 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/ws@7.4.7': + '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4)': dependencies: - '@types/node': 20.12.12 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate - '@types/ws@8.5.10': + '@walletconnect/keyvaluestorage@1.1.1': dependencies: - '@types/node': 20.12.12 + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.1 + unstorage: 1.10.1(idb-keyval@6.2.1) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/kv' + - supports-color - '@types/yargs-parser@21.0.3': {} + '@walletconnect/keyvaluestorage@1.1.1(supports-color@9.4.0)': + dependencies: + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.1 + unstorage: 1.10.1(idb-keyval@6.2.1)(supports-color@9.4.0) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/kv' + - supports-color - '@types/yargs@13.0.12': + '@walletconnect/legacy-client@2.0.0': dependencies: - '@types/yargs-parser': 21.0.3 + '@walletconnect/crypto': 1.0.3 + '@walletconnect/encoding': 1.0.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/legacy-types': 2.0.0 + '@walletconnect/legacy-utils': 2.0.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 6.14.1 - '@types/yargs@17.0.32': + '@walletconnect/legacy-modal@2.0.0': dependencies: - '@types/yargs-parser': 21.0.3 + '@walletconnect/legacy-types': 2.0.0 + '@walletconnect/legacy-utils': 2.0.0 + copy-to-clipboard: 3.3.3 + preact: 10.19.3 + qrcode: 1.5.3 - '@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)': + '@walletconnect/legacy-provider@2.0.0(encoding@0.1.13)': dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.17.0(eslint@8.56.0)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 6.17.0 - '@typescript-eslint/type-utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) - '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - graphemer: 1.4.0 - ignore: 5.3.0 - natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/legacy-client': 2.0.0 + '@walletconnect/legacy-modal': 2.0.0 + '@walletconnect/legacy-types': 2.0.0 + '@walletconnect/legacy-utils': 2.0.0 transitivePeerDependencies: - - supports-color + - encoding - '@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5)': + '@walletconnect/legacy-types@2.0.0': dependencies: - '@typescript-eslint/scope-manager': 6.17.0 - '@typescript-eslint/types': 6.17.0 - '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color + '@walletconnect/jsonrpc-types': 1.0.3 - '@typescript-eslint/scope-manager@6.17.0': + '@walletconnect/legacy-utils@2.0.0': dependencies: - '@typescript-eslint/types': 6.17.0 - '@typescript-eslint/visitor-keys': 6.17.0 + '@walletconnect/encoding': 1.0.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/legacy-types': 2.0.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 6.14.1 - '@typescript-eslint/type-utils@6.17.0(eslint@8.56.0)(typescript@5.4.5)': + '@walletconnect/logger@2.0.1': dependencies: - '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) - '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.56.0 - ts-api-utils: 1.0.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color + pino: 7.11.0 + tslib: 1.14.1 - '@typescript-eslint/types@6.17.0': {} + '@walletconnect/logger@2.1.2': + dependencies: + '@walletconnect/safe-json': 1.0.2 + pino: 7.11.0 - '@typescript-eslint/typescript-estree@6.17.0(typescript@5.4.5)': + '@walletconnect/modal-core@2.6.2(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@typescript-eslint/types': 6.17.0 - '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 + valtio: 1.11.2(@types/react@18.3.1)(react@18.3.1) transitivePeerDependencies: - - supports-color + - '@types/react' + - react - '@typescript-eslint/utils@6.17.0(eslint@8.56.0)(typescript@5.4.5)': + '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.3.1)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.17.0 - '@typescript-eslint/types': 6.17.0 - '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) - eslint: 8.56.0 - semver: 7.5.4 + valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - - supports-color - - typescript + - '@types/react' + - react - '@typescript-eslint/visitor-keys@6.17.0': + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@typescript-eslint/types': 6.17.0 - eslint-visitor-keys: 3.4.3 - - '@ungap/structured-clone@1.2.0': {} + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) + lit: 2.8.0 + motion: 10.16.2 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@types/react' + - react - '@vanilla-extract/css@1.9.1': + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.3.1)': dependencies: - '@emotion/hash': 0.8.0 - '@vanilla-extract/private': 1.0.3 - ahocorasick: 1.0.2 - chalk: 4.1.2 - css-what: 5.1.0 - cssesc: 3.0.0 - csstype: 3.1.3 - deep-object-diff: 1.1.9 - deepmerge: 4.3.1 - media-query-parser: 2.0.2 - outdent: 0.8.0 + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1) + lit: 2.8.0 + motion: 10.16.2 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@types/react' + - react - '@vanilla-extract/dynamic@2.0.2': + '@walletconnect/modal@2.6.2(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@vanilla-extract/private': 1.0.3 + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.1)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - react - '@vanilla-extract/private@1.0.3': {} + '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - react - '@vanilla-extract/sprinkles@1.5.0(@vanilla-extract/css@1.9.1)': + '@walletconnect/randombytes@1.0.3': dependencies: - '@vanilla-extract/css': 1.9.1 + '@walletconnect/encoding': 1.0.2 + '@walletconnect/environment': 1.0.1 + randombytes: 2.1.0 + tslib: 1.14.1 - '@volar/language-core@2.2.5': + '@walletconnect/relay-api@1.0.10': dependencies: - '@volar/source-map': 2.2.5 + '@walletconnect/jsonrpc-types': 1.0.4 - '@volar/source-map@2.2.5': + '@walletconnect/relay-api@1.0.9': dependencies: - muggle-string: 0.4.1 + '@walletconnect/jsonrpc-types': 1.0.3 + tslib: 1.14.1 - '@vue/compiler-core@3.4.27': + '@walletconnect/relay-auth@1.0.4': dependencies: - '@babel/parser': 7.24.6 - '@vue/shared': 3.4.27 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.0 + '@stablelib/ed25519': 1.0.3 + '@stablelib/random': 1.0.2 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + tslib: 1.14.1 + uint8arrays: 3.1.1 - '@vue/compiler-dom@3.4.27': + '@walletconnect/safe-json@1.0.2': dependencies: - '@vue/compiler-core': 3.4.27 - '@vue/shared': 3.4.27 + tslib: 1.14.1 - '@vue/language-core@2.0.19(typescript@5.4.5)': + '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - '@volar/language-core': 2.2.5 - '@vue/compiler-dom': 3.4.27 - '@vue/shared': 3.4.27 - computeds: 0.0.1 - minimatch: 9.0.3 - path-browserify: 1.0.1 - vue-template-compiler: 2.7.16 - optionalDependencies: - typescript: 5.4.5 + '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.0.1 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate - '@vue/shared@3.4.27': {} + '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.0.1 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - supports-color + - utf-8-validate - '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(utf-8-validate@6.0.4)': dependencies: - abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) - abort-controller: 3.0.0 - bundle-require: 3.1.2(esbuild@0.16.17) - cac: 6.7.14 - change-case: 4.1.2 - chokidar: 3.5.3 - dedent: 0.7.0 - detect-package-manager: 2.0.1 - dotenv: 16.3.1 - dotenv-expand: 10.0.0 - esbuild: 0.16.17 - execa: 6.1.0 - find-up: 6.3.0 - fs-extra: 10.1.0 - globby: 13.2.2 - node-fetch: 3.3.2 - ora: 6.3.1 - pathe: 1.1.1 - picocolors: 1.0.0 - prettier: 2.8.8 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - zod: 3.22.4 - optionalDependencies: - '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - typescript: 5.3.3 - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.0.1 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 + events: 3.3.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil + - supports-color - utf-8-validate - '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) - abort-controller: 3.0.0 - bundle-require: 3.1.2(esbuild@0.16.17) - cac: 6.7.14 - change-case: 4.1.2 - chokidar: 3.5.3 - dedent: 0.7.0 - detect-package-manager: 2.0.1 - dotenv: 16.3.1 - dotenv-expand: 10.0.0 - esbuild: 0.16.17 - execa: 6.1.0 - find-up: 6.3.0 - fs-extra: 10.1.0 - globby: 13.2.2 - node-fetch: 3.3.2 - ora: 6.3.1 - pathe: 1.1.1 - picocolors: 1.0.0 - prettier: 2.8.8 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - zod: 3.22.4 - optionalDependencies: - '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - typescript: 5.4.5 - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@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.13.0(supports-color@9.4.0) + '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + events: 3.3.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil + - encoding + - supports-color - utf-8-validate - '@wagmi/connectors@3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) - '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) - '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/utils': 2.10.2 - abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) - eventemitter3: 4.0.7 - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - optionalDependencies: - typescript: 5.3.3 + '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@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.13.0 + '@walletconnect/utils': 2.13.0 + events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18901,30 +25281,25 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - bufferutil - encoding - - react - supports-color - utf-8-validate - - zod - '@wagmi/connectors@3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@walletconnect/time@1.0.2': dependencies: - '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) - '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) - '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/utils': 2.10.2 - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) - eventemitter3: 4.0.7 - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - optionalDependencies: - typescript: 5.4.5 + tslib: 1.14.1 + + '@walletconnect/types@2.10.2': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18936,25 +25311,18 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - react - supports-color - - utf-8-validate - - zod - '@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@walletconnect/types@2.10.2(supports-color@9.4.0)': dependencies: - '@wagmi/connectors': 3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) - eventemitter3: 4.0.7 - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - zustand: 4.4.7(@types/react@18.3.1)(react@18.3.1) - optionalDependencies: - typescript: 5.3.3 + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/logger': 2.0.1 + events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18966,26 +25334,18 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - immer - - react - supports-color - - utf-8-validate - - zod - '@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@walletconnect/types@2.10.6': dependencies: - '@wagmi/connectors': 3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) - eventemitter3: 4.0.7 - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - zustand: 4.4.7(@types/react@18.3.1)(react@18.3.1) - optionalDependencies: - typescript: 5.4.5 + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -18997,35 +25357,18 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - immer - - react - supports-color - - utf-8-validate - - zod - '@walletconnect/core@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/types@2.10.6(supports-color@9.4.0)': dependencies: + '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) '@walletconnect/logger': 2.0.1 - '@walletconnect/relay-api': 1.0.9 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6 - '@walletconnect/utils': 2.10.6 events: 3.3.0 - lodash.isequal: 4.5.0 - uint8arrays: 3.1.1 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -19039,40 +25382,15 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - bufferutil - supports-color - - utf-8-validate - - '@walletconnect/crypto@1.0.3': - dependencies: - '@walletconnect/encoding': 1.0.2 - '@walletconnect/environment': 1.0.1 - '@walletconnect/randombytes': 1.0.3 - aes-js: 3.1.2 - hash.js: 1.1.7 - tslib: 1.14.1 - - '@walletconnect/encoding@1.0.2': - dependencies: - is-typedarray: 1.0.0 - tslib: 1.14.1 - typedarray-to-buffer: 3.1.5 - - '@walletconnect/environment@1.0.1': - dependencies: - tslib: 1.14.1 - '@walletconnect/ethereum-provider@2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': + '@walletconnect/types@2.13.0': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.10.6 - '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.10.6 + '@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' @@ -19085,67 +25403,18 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' - - '@types/react' - '@upstash/redis' - '@vercel/kv' - - bufferutil - - encoding - - react - supports-color - - utf-8-validate - - '@walletconnect/events@1.0.1': - dependencies: - keyvaluestorage-interface: 1.0.0 - tslib: 1.14.1 - '@walletconnect/heartbeat@1.2.1': + '@walletconnect/types@2.13.0(supports-color@9.4.0)': dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/time': 1.0.2 - tslib: 1.14.1 - - '@walletconnect/jsonrpc-http-connection@1.0.7(encoding@0.1.13)': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - cross-fetch: 3.1.8(encoding@0.1.13) - tslib: 1.14.1 - transitivePeerDependencies: - - encoding - - '@walletconnect/jsonrpc-provider@1.0.13': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - tslib: 1.14.1 - - '@walletconnect/jsonrpc-types@1.0.3': - dependencies: - keyvaluestorage-interface: 1.0.0 - tslib: 1.14.1 - - '@walletconnect/jsonrpc-utils@1.0.8': - dependencies: - '@walletconnect/environment': 1.0.1 - '@walletconnect/jsonrpc-types': 1.0.3 - tslib: 1.14.1 - - '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/logger': 2.1.2 events: 3.3.0 - ws: 7.5.9(bufferutil@4.0.8)(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.1 - unstorage: 1.10.1(idb-keyval@6.2.1) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -19156,120 +25425,48 @@ snapshots: - '@capacitor/preferences' - '@netlify/blobs' - '@planetscale/database' + - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - supports-color - '@walletconnect/legacy-client@2.0.0': - dependencies: - '@walletconnect/crypto': 1.0.3 - '@walletconnect/encoding': 1.0.2 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/legacy-types': 2.0.0 - '@walletconnect/legacy-utils': 2.0.0 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 6.14.1 - - '@walletconnect/legacy-modal@2.0.0': - dependencies: - '@walletconnect/legacy-types': 2.0.0 - '@walletconnect/legacy-utils': 2.0.0 - copy-to-clipboard: 3.3.3 - preact: 10.19.3 - qrcode: 1.5.3 - - '@walletconnect/legacy-provider@2.0.0(encoding@0.1.13)': + '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/legacy-client': 2.0.0 - '@walletconnect/legacy-modal': 2.0.0 - '@walletconnect/legacy-types': 2.0.0 - '@walletconnect/legacy-utils': 2.0.0 - transitivePeerDependencies: - - encoding - - '@walletconnect/legacy-types@2.0.0': - dependencies: '@walletconnect/jsonrpc-types': 1.0.3 - - '@walletconnect/legacy-utils@2.0.0': - dependencies: - '@walletconnect/encoding': 1.0.2 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/legacy-types': 2.0.0 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 6.14.1 - - '@walletconnect/logger@2.0.1': - dependencies: - pino: 7.11.0 - tslib: 1.14.1 - - '@walletconnect/modal-core@2.6.2(@types/react@18.3.1)(react@18.3.1)': - dependencies: - valtio: 1.11.2(@types/react@18.3.1)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - react - - '@walletconnect/modal-ui@2.6.2(@types/react@18.3.1)(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) - lit: 2.8.0 - motion: 10.16.2 - qrcode: 1.5.3 - transitivePeerDependencies: - - '@types/react' - - react - - '@walletconnect/modal@2.6.2(@types/react@18.3.1)(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.1)(react@18.3.1) + '@walletconnect/logger': 2.0.1 + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + events: 3.3.0 transitivePeerDependencies: - - '@types/react' - - react - - '@walletconnect/randombytes@1.0.3': - dependencies: - '@walletconnect/encoding': 1.0.2 - '@walletconnect/environment': 1.0.1 - randombytes: 2.1.0 - tslib: 1.14.1 - - '@walletconnect/relay-api@1.0.9': - dependencies: - '@walletconnect/jsonrpc-types': 1.0.3 - tslib: 1.14.1 - - '@walletconnect/relay-auth@1.0.4': - dependencies: - '@stablelib/ed25519': 1.0.3 - '@stablelib/random': 1.0.2 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - tslib: 1.14.1 - uint8arrays: 3.1.1 - - '@walletconnect/safe-json@1.0.2': - dependencies: - tslib: 1.14.1 + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - supports-color + - utf-8-validate - '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 - '@walletconnect/time': 1.0.2 + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/types': 2.10.6 '@walletconnect/utils': 2.10.6 events: 3.3.0 @@ -19287,20 +25484,20 @@ snapshots: - '@upstash/redis' - '@vercel/kv' - bufferutil + - encoding - supports-color - utf-8-validate - '@walletconnect/time@1.0.2': - dependencies: - tslib: 1.14.1 - - '@walletconnect/types@2.10.2': + '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) + '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 + '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -19315,15 +25512,21 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' + - bufferutil + - encoding - supports-color + - utf-8-validate - '@walletconnect/types@2.10.6': + '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.0.1 + '@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/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@walletconnect/types': 2.13.0(supports-color@9.4.0) + '@walletconnect/utils': 2.13.0(supports-color@9.4.0) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -19338,18 +25541,21 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' + - bufferutil + - encoding - supports-color + - utf-8-validate - '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@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.0.1 - '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.10.6 - '@walletconnect/utils': 2.10.6 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0 + '@walletconnect/utils': 2.13.0 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -19400,6 +25606,37 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/utils@2.10.2(supports-color@9.4.0)': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.2(supports-color@9.4.0) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/utils@2.10.6': dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -19431,6 +25668,99 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/utils@2.10.6(supports-color@9.4.0)': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/utils@2.13.0': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + + '@walletconnect/utils@2.13.0(supports-color@9.4.0)': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0(supports-color@9.4.0) + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/window-getters@1.0.1': dependencies: tslib: 1.14.1 @@ -19526,6 +25856,12 @@ snapshots: optionalDependencies: zod: 3.22.4 + abitype@0.8.7(typescript@5.4.5)(zod@3.23.8): + dependencies: + typescript: 5.4.5 + optionalDependencies: + zod: 3.23.8 + abitype@0.9.8(typescript@5.3.3)(zod@3.22.4): optionalDependencies: typescript: 5.3.3 @@ -19628,6 +25964,8 @@ snapshots: almost-equal@1.1.0: {} + anser@1.4.10: {} + ansi-colors@4.1.3: {} ansi-escapes@4.3.2: @@ -19638,6 +25976,12 @@ snapshots: dependencies: type-fest: 3.13.1 + ansi-fragments@0.2.1: + dependencies: + colorette: 1.4.0 + slice-ansi: 2.1.0 + strip-ansi: 5.2.0 + ansi-regex@4.1.1: {} ansi-regex@5.0.1: {} @@ -19675,6 +26019,8 @@ snapshots: app-module-path@2.2.0: {} + appdirsjs@1.2.7: {} + arch@2.2.0: {} arg@4.1.3: {} @@ -19799,6 +26145,12 @@ snapshots: ast-types-flow@0.0.8: {} + ast-types@0.15.2: + dependencies: + tslib: 2.6.2 + + astral-regex@1.0.0: {} + astral-regex@2.0.0: {} async-limiter@1.0.1: {} @@ -19876,6 +26228,14 @@ snapshots: dependencies: dequal: 2.0.3 + babel-core@7.0.0-bridge.0(@babel/core@7.24.6(supports-color@9.4.0)): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + + babel-core@7.0.0-bridge.0(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + babel-jest@29.7.0(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -19889,6 +26249,20 @@ snapshots: transitivePeerDependencies: - supports-color + babel-jest@29.7.0(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.24.6) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + optional: true + babel-plugin-istanbul@6.1.1: dependencies: '@babel/helper-plugin-utils': 7.22.5 @@ -19906,6 +26280,81 @@ snapshots: '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.23.6): + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.23.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + optional: true + + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6): + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.6): + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.6) + core-js-compat: 3.37.1 + transitivePeerDependencies: + - supports-color + optional: true + + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + core-js-compat: 3.37.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + core-js-compat: 3.37.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.23.6): + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.6) + transitivePeerDependencies: + - supports-color + optional: true + + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + transitivePeerDependencies: + - supports-color + babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: '@babel/generator': 7.2.0 @@ -19918,6 +26367,25 @@ snapshots: babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.6): + dependencies: + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) + transitivePeerDependencies: + - '@babel/core' + optional: true + + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6(supports-color@9.4.0)): + dependencies: + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + transitivePeerDependencies: + - '@babel/core' + + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6): + dependencies: + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) + transitivePeerDependencies: + - '@babel/core' + babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -19934,6 +26402,23 @@ snapshots: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.6) + babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6) + optional: true + babel-preset-fbjs@3.4.0(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -19971,6 +26456,13 @@ snapshots: babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.6) + babel-preset-jest@29.6.3(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.6) + optional: true + backo2@1.0.2: {} balanced-match@1.0.2: {} @@ -19992,12 +26484,6 @@ snapshots: bindings: 1.5.0 prebuild-install: 7.1.1 - better-sqlite3@8.7.0: - dependencies: - bindings: 1.5.0 - prebuild-install: 7.1.1 - optional: true - better-sqlite3@9.6.0: dependencies: bindings: 1.5.0 @@ -20079,7 +26565,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) depd: 2.0.0 destroy: 1.2.0 http-errors: 2.0.0 @@ -20096,7 +26582,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) depd: 2.0.0 destroy: 1.2.0 http-errors: 2.0.0 @@ -20117,6 +26603,8 @@ snapshots: bs58: 4.0.1 text-encoding-utf-8: 1.0.2 + bowser@2.11.0: {} + bplist-parser@0.2.0: dependencies: big-integer: 1.6.52 @@ -20221,10 +26709,17 @@ snapshots: esbuild: 0.16.17 load-tsconfig: 0.2.5 + bundle-require@4.2.1(esbuild@0.19.10): + dependencies: + esbuild: 0.19.10 + load-tsconfig: 0.2.5 + busboy@1.6.0: dependencies: streamsearch: 1.1.0 + bytes@3.0.0: {} + bytes@3.1.2: {} cac@6.7.14: {} @@ -20249,6 +26744,16 @@ snapshots: get-intrinsic: 1.2.2 set-function-length: 1.1.1 + caller-callsite@2.0.0: + dependencies: + callsites: 2.0.0 + + caller-path@2.0.0: + dependencies: + caller-callsite: 2.0.0 + + callsites@2.0.0: {} + callsites@3.1.0: {} camel-case@4.1.2: @@ -20368,6 +26873,17 @@ snapshots: chownr@2.0.0: {} + chrome-launcher@0.15.2(supports-color@9.4.0): + dependencies: + '@types/node': 20.14.2 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + + ci-info@2.0.0: {} + ci-info@3.9.0: {} cids@0.7.5: @@ -20471,6 +26987,12 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + clone-response@1.0.3: dependencies: mimic-response: 1.0.1 @@ -20580,6 +27102,8 @@ snapshots: color-string: 1.9.1 optional: true + colorette@1.4.0: {} + colorette@2.0.20: {} colors@0.6.2: {} @@ -20590,6 +27114,8 @@ snapshots: dependencies: delayed-stream: 1.0.0 + command-exists@1.2.9: {} + commander@11.1.0: {} commander@12.1.0: {} @@ -20610,6 +27136,22 @@ snapshots: commondir@1.0.1: {} + compressible@2.0.18: + dependencies: + mime-db: 1.52.0 + + compression@1.7.4(supports-color@9.4.0): + dependencies: + accepts: 1.3.8 + bytes: 3.0.0 + compressible: 2.0.18 + debug: 2.6.9(supports-color@9.4.0) + on-headers: 1.0.2 + safe-buffer: 5.1.2 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + compute-scroll-into-view@3.1.0: {} computeds@0.0.1: {} @@ -20647,6 +27189,15 @@ snapshots: semver: 7.5.4 uint8array-extras: 0.3.0 + connect@3.7.0(supports-color@9.4.0): + dependencies: + debug: 2.6.9(supports-color@9.4.0) + finalhandler: 1.1.2(supports-color@9.4.0) + parseurl: 1.3.3 + utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color + consola@3.2.3: {} constant-case@3.0.4: @@ -20685,6 +27236,10 @@ snapshots: dependencies: toggle-selection: 1.0.6 + core-js-compat@3.37.1: + dependencies: + browserslist: 4.23.0 + core-util-is@1.0.2: {} core-util-is@1.0.3: {} @@ -20698,6 +27253,13 @@ snapshots: dependencies: '@iarna/toml': 2.2.5 + cosmiconfig@5.2.1: + dependencies: + import-fresh: 2.0.0 + is-directory: 0.3.1 + js-yaml: 3.14.1 + parse-json: 4.0.0 + cosmiconfig@7.0.0: dependencies: '@types/parse-json': 4.0.2 @@ -20856,7 +27418,7 @@ snapshots: css-tree@2.3.1: dependencies: mdn-data: 2.0.30 - source-map-js: 1.0.2 + source-map-js: 1.2.0 css-what@5.1.0: {} @@ -20960,6 +27522,10 @@ snapshots: date-fns@3.6.0: {} + dateformat@4.6.3: {} + + dayjs@1.11.11: {} + de-indent@1.0.2: {} debounce-fn@5.1.2: @@ -20968,9 +27534,11 @@ snapshots: debounce@1.2.1: {} - debug@2.6.9: + debug@2.6.9(supports-color@9.4.0): dependencies: ms: 2.0.0 + optionalDependencies: + supports-color: 9.4.0 debug@3.2.7: dependencies: @@ -20982,6 +27550,12 @@ snapshots: optionalDependencies: supports-color: 8.1.1 + debug@4.3.4(supports-color@9.4.0): + dependencies: + ms: 2.1.2 + optionalDependencies: + supports-color: 9.4.0 + decamelize@1.2.0: {} decimal.js@10.4.3: {} @@ -21055,6 +27629,8 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.1 + define-lazy-prop@2.0.0: {} + define-lazy-prop@3.0.0: {} define-properties@1.2.1: @@ -21071,6 +27647,8 @@ snapshots: delayed-stream@1.0.0: {} + denodeify@1.2.1: {} + denque@2.1.0: {} depd@2.0.0: {} @@ -21254,22 +27832,22 @@ snapshots: transitivePeerDependencies: - supports-color - drizzle-orm@0.29.3(@opentelemetry/api@1.8.0)(@types/react@18.3.1)(better-sqlite3@8.7.0)(kysely@0.24.2)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1): + drizzle-orm@0.29.3(@opentelemetry/api@1.8.0)(@types/react@18.3.1)(better-sqlite3@10.1.0)(kysely@0.26.3)(pg@8.11.3)(postgres@3.4.3)(react@18.3.1): optionalDependencies: '@opentelemetry/api': 1.8.0 '@types/react': 18.3.1 - better-sqlite3: 8.7.0 - kysely: 0.24.2 + better-sqlite3: 10.1.0 + kysely: 0.26.3 pg: 8.11.3 postgres: 3.4.3 react: 18.3.1 - drizzle-orm@0.30.10(@opentelemetry/api@1.8.0)(@types/react@18.2.45)(better-sqlite3@8.7.0)(kysely@0.24.2)(pg@8.11.3)(postgres@3.4.4)(react@18.2.0): + drizzle-orm@0.30.10(@opentelemetry/api@1.8.0)(@types/react@18.2.45)(better-sqlite3@10.1.0)(kysely@0.26.3)(pg@8.11.3)(postgres@3.4.4)(react@18.2.0): optionalDependencies: '@opentelemetry/api': 1.8.0 '@types/react': 18.2.45 - better-sqlite3: 8.7.0 - kysely: 0.24.2 + better-sqlite3: 10.1.0 + kysely: 0.26.3 pg: 8.11.3 postgres: 3.4.4 react: 18.2.0 @@ -21303,6 +27881,12 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 + eciesjs@0.3.18: + dependencies: + '@types/secp256k1': 4.0.6 + futoin-hkdf: 1.5.3 + secp256k1: 5.0.0 + ee-first@1.1.1: {} ejs@3.1.6: @@ -21371,6 +27955,32 @@ snapshots: dependencies: once: 1.4.0 + engine.io-client@6.5.3(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@9.4.0) + engine.io-parser: 5.2.2 + ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + xmlhttprequest-ssl: 2.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@8.1.1) + engine.io-parser: 5.2.2 + ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + xmlhttprequest-ssl: 2.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-parser@5.2.2: {} + enhanced-resolve@5.15.0: dependencies: graceful-fs: 4.2.11 @@ -21384,12 +27994,23 @@ snapshots: env-paths@3.0.0: {} + envinfo@7.13.0: {} + err-code@3.0.1: {} error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 + error-stack-parser@2.1.4: + dependencies: + stackframe: 1.3.4 + + errorhandler@1.5.1: + dependencies: + accepts: 1.3.8 + escape-html: 1.0.3 + es-abstract@1.22.3: dependencies: array-buffer-byte-length: 1.0.0 @@ -21675,7 +28296,7 @@ snapshots: '@typescript-eslint/parser': 6.17.0(eslint@8.56.0)(typescript@5.4.5) eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) eslint-plugin-react: 7.33.2(eslint@8.56.0) @@ -21704,6 +28325,23 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0): + dependencies: + debug: 4.3.4(supports-color@8.1.1) + enhanced-resolve: 5.15.0 + eslint: 8.56.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) + fast-glob: 3.3.2 + get-tsconfig: 4.7.2 + is-core-module: 2.13.1 + is-glob: 4.0.3 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-node + - eslint-import-resolver-webpack + - supports-color + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): dependencies: debug: 4.3.4(supports-color@8.1.1) @@ -21738,6 +28376,17 @@ snapshots: - eslint-import-resolver-webpack - supports-color + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 6.17.0(eslint@8.56.0)(typescript@5.4.5) + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0) + transitivePeerDependencies: + - supports-color + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0): dependencies: debug: 3.2.7 @@ -21771,11 +28420,11 @@ snapshots: lodash.memoize: 4.1.2 semver: 7.5.4 - eslint-plugin-graphql@4.0.0(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): + eslint-plugin-graphql@4.0.0(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: '@babel/runtime': 7.23.6 graphql: 16.8.1 - graphql-config: 3.4.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + graphql-config: 3.4.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) lodash.flatten: 4.4.0 lodash.without: 4.4.0 transitivePeerDependencies: @@ -21873,11 +28522,11 @@ snapshots: dependencies: eslint: 8.56.0 - eslint-plugin-tailwindcss@3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))): + eslint-plugin-tailwindcss@3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))): dependencies: fast-glob: 3.3.2 postcss: 8.4.38 - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) eslint-scope@7.2.2: dependencies: @@ -21968,6 +28617,35 @@ snapshots: transitivePeerDependencies: - supports-color + eth-block-tracker@6.1.0(supports-color@9.4.0): + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + '@metamask/utils': 3.6.0(supports-color@9.4.0) + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + + eth-block-tracker@7.1.0: + dependencies: + '@metamask/eth-json-rpc-provider': 1.0.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2 + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + + eth-block-tracker@7.1.0(supports-color@9.4.0): + dependencies: + '@metamask/eth-json-rpc-provider': 1.0.1(supports-color@9.4.0) + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2(supports-color@9.4.0) + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + eth-ens-namehash@2.0.8: dependencies: idna-uts46-hx: 2.3.1 @@ -21981,6 +28659,14 @@ snapshots: json-rpc-engine: 6.1.0 pify: 5.0.0 + eth-json-rpc-filters@6.0.1: + dependencies: + '@metamask/safe-event-emitter': 3.1.1 + async-mutex: 0.2.6 + eth-query: 2.1.2 + json-rpc-engine: 6.1.0 + pify: 5.0.0 + eth-lib@0.1.29(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: bn.js: 4.12.0 @@ -22009,6 +28695,10 @@ snapshots: dependencies: fast-safe-stringify: 2.1.1 + eth-rpc-errors@4.0.3: + dependencies: + fast-safe-stringify: 2.1.1 + ethereum-bloom-filters@1.0.10: dependencies: js-sha3: 0.8.0 @@ -22120,6 +28810,8 @@ snapshots: event-target-shim@5.0.1: {} + eventemitter2@6.4.9: {} + eventemitter3@3.1.2: {} eventemitter3@4.0.4: {} @@ -22204,7 +28896,7 @@ snapshots: content-type: 1.0.5 cookie: 0.5.0 cookie-signature: 1.0.6 - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) depd: 2.0.0 encodeurl: 1.0.2 escape-html: 1.0.3 @@ -22221,8 +28913,8 @@ snapshots: qs: 6.11.0 range-parser: 1.2.1 safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 + send: 0.18.0(supports-color@9.4.0) + serve-static: 1.15.0(supports-color@9.4.0) setprototypeof: 1.2.0 statuses: 2.0.1 type-is: 1.6.18 @@ -22237,6 +28929,11 @@ snapshots: extend@3.0.2: {} + extension-port-stream@3.0.0: + dependencies: + readable-stream: 4.5.2 + webextension-polyfill: 0.10.0 + external-editor@3.1.0: dependencies: chardet: 0.7.0 @@ -22256,6 +28953,8 @@ snapshots: acorn: 7.4.1 isarray: 2.0.5 + fast-copy@3.0.2: {} + fast-decode-uri-component@1.0.1: {} fast-deep-equal@3.1.3: {} @@ -22302,6 +29001,10 @@ snapshots: dependencies: punycode: 1.4.1 + fast-xml-parser@4.4.0: + dependencies: + strnum: 1.0.5 + fastest-levenshtein@1.0.16: {} fastq@1.16.0: @@ -22353,9 +29056,21 @@ snapshots: filter-obj@1.1.0: {} + finalhandler@1.1.2(supports-color@9.4.0): + dependencies: + debug: 2.6.9(supports-color@9.4.0) + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.5.0 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + finalhandler@1.2.0: dependencies: - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) encodeurl: 1.0.2 escape-html: 1.0.3 on-finished: 2.4.1 @@ -22365,6 +29080,16 @@ snapshots: transitivePeerDependencies: - supports-color + find-cache-dir@2.1.0: + dependencies: + commondir: 1.0.1 + make-dir: 2.1.0 + pkg-dir: 3.0.0 + + find-up@3.0.0: + dependencies: + locate-path: 3.0.0 + find-up@4.1.0: dependencies: locate-path: 5.0.0 @@ -22397,6 +29122,10 @@ snapshots: dependencies: dtype: 2.0.0 + flow-enums-runtime@0.0.6: {} + + flow-parser@0.237.2: {} + follow-redirects@1.15.3(debug@4.3.4): optionalDependencies: debug: 4.3.4(supports-color@8.1.1) @@ -22469,12 +29198,24 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 + fs-extra@11.2.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + fs-extra@4.0.3: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 @@ -22511,6 +29252,8 @@ snapshots: functions-have-names@1.2.3: {} + futoin-hkdf@1.5.3: {} + gensync@1.0.0-beta.2: {} geojson-vt@3.2.1: {} @@ -22892,14 +29635,14 @@ snapshots: - react - supports-color - graphql-config@3.4.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): + graphql-config@3.4.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2(cosmiconfig@7.0.0)(typescript@5.4.5) '@graphql-tools/graphql-file-loader': 6.2.7(graphql@16.8.1) '@graphql-tools/json-file-loader': 6.2.6(graphql@16.8.1) '@graphql-tools/load': 6.2.8(graphql@16.8.1) '@graphql-tools/merge': 6.2.14(graphql@16.8.1) - '@graphql-tools/url-loader': 6.10.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 6.10.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 7.10.0(graphql@16.8.1) cosmiconfig: 7.0.0 cosmiconfig-toml-loader: 1.0.0 @@ -22959,6 +29702,29 @@ snapshots: - typescript - utf-8-validate + graphql-config@5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4): + dependencies: + '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) + '@graphql-tools/load': 8.0.1(graphql@16.8.1) + '@graphql-tools/merge': 9.0.1(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/utils': 10.0.11(graphql@16.8.1) + cosmiconfig: 8.3.6(typescript@5.4.5) + graphql: 16.8.1 + jiti: 1.21.0 + minimatch: 4.2.3 + string-env-interpolation: 1.0.1 + tslib: 2.6.2 + optionalDependencies: + cosmiconfig-toml-loader: 1.0.0 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - typescript + - utf-8-validate + graphql-http@1.22.1(graphql@16.8.1): dependencies: graphql: 16.8.1 @@ -23106,6 +29872,24 @@ snapshots: heap@0.2.7: {} + help-me@5.0.0: {} + + hermes-estree@0.19.1: {} + + hermes-estree@0.20.1: {} + + hermes-parser@0.19.1: + dependencies: + hermes-estree: 0.19.1 + + hermes-parser@0.20.1: + dependencies: + hermes-estree: 0.20.1 + + hermes-profile-transformer@0.0.6: + dependencies: + source-map: 0.7.4 + hey-listen@1.0.8: {} hmac-drbg@1.0.1: @@ -23231,6 +30015,14 @@ snapshots: lodash: 4.17.21 make-plural: 7.3.0 + i18next-browser-languagedetector@7.1.0: + dependencies: + '@babel/runtime': 7.24.5 + + i18next@22.5.1: + dependencies: + '@babel/runtime': 7.24.5 + i18next@23.11.5: dependencies: '@babel/runtime': 7.24.5 @@ -23253,12 +30045,21 @@ snapshots: ignore@5.3.0: {} + image-size@1.1.1: + dependencies: + queue: 6.0.2 + immediate@3.0.6: {} immutable@3.7.6: {} immutable@4.2.1: {} + import-fresh@2.0.0: + dependencies: + caller-path: 2.0.0 + resolve-from: 3.0.0 + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -23290,7 +30091,7 @@ snapshots: ini@1.3.8: {} - ink@4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10): + ink@4.4.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4): dependencies: '@alcalzone/ansi-tokenize': 0.1.3 ansi-escapes: 6.2.0 @@ -23316,7 +30117,7 @@ snapshots: type-fest: 0.12.0 widest-line: 4.0.1 wrap-ansi: 8.1.0 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) yoga-wasm-web: 0.3.3 optionalDependencies: '@types/react': 18.3.3 @@ -23381,6 +30182,20 @@ snapshots: transitivePeerDependencies: - supports-color + ioredis@5.3.2(supports-color@9.4.0): + dependencies: + '@ioredis/commands': 1.2.0 + cluster-key-slot: 1.1.2 + debug: 4.3.4(supports-color@9.4.0) + denque: 2.1.0 + lodash.defaults: 4.2.0 + lodash.isarguments: 3.1.0 + redis-errors: 1.2.0 + redis-parser: 3.0.0 + standard-as-callback: 2.1.0 + transitivePeerDependencies: + - supports-color + ipaddr.js@1.9.1: {} ipfs-core-types@0.14.1: @@ -23531,6 +30346,8 @@ snapshots: dependencies: has-tostringtag: 1.0.0 + is-directory@0.3.1: {} + is-docker@2.2.1: {} is-docker@3.0.0: {} @@ -23547,6 +30364,8 @@ snapshots: is-firefox@1.0.3: {} + is-fullwidth-code-point@2.0.0: {} + is-fullwidth-code-point@3.0.0: {} is-fullwidth-code-point@4.0.0: {} @@ -23607,6 +30426,10 @@ snapshots: is-plain-obj@2.1.0: {} + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + is-potential-custom-element-name@1.0.1: {} is-promise@2.2.2: {} @@ -23687,6 +30510,8 @@ snapshots: is-windows@1.0.2: {} + is-wsl@1.1.0: {} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 @@ -23701,11 +30526,20 @@ snapshots: iso-url@1.2.1: {} + isobject@3.0.1: {} + isomorphic-fetch@2.2.1: dependencies: node-fetch: 1.7.3 whatwg-fetch: 3.6.20 + isomorphic-unfetch@3.1.0(encoding@0.1.13): + dependencies: + node-fetch: 2.7.0(encoding@0.1.13) + unfetch: 4.2.0 + transitivePeerDependencies: + - encoding + isomorphic-ws@4.0.1(ws@7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ws: 7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -23714,17 +30548,33 @@ snapshots: dependencies: ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isomorphic-ws@4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4)): + dependencies: + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + isomorphic-ws@5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isomorphic-ws@5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)): + dependencies: + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)): + dependencies: + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + isows@1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + + isows@1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)): + dependencies: + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) isstream@0.1.2: {} @@ -23862,6 +30712,24 @@ snapshots: - bufferutil - utf-8-validate + jayson@4.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + dependencies: + '@types/connect': 3.4.38 + '@types/node': 12.20.55 + '@types/ws': 7.4.7 + JSONStream: 1.3.5 + 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.9(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + json-stringify-safe: 5.0.1 + uuid: 8.3.2 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + jest-changed-files@29.7.0: dependencies: execa: 5.1.1 @@ -23874,7 +30742,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -23982,7 +30850,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: '@babel/core': 7.23.6 '@jest/test-sequencer': 29.7.0 @@ -24007,13 +30875,13 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + '@types/node': 20.12.7 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): dependencies: '@babel/core': 7.23.6 '@jest/test-sequencer': 29.7.0 @@ -24038,13 +30906,13 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + '@types/node': 20.12.7 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: '@babel/core': 7.23.6 '@jest/test-sequencer': 29.7.0 @@ -24069,13 +30937,44 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.2 + ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): + dependencies: + '@babel/core': 7.23.6 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.23.6) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.2 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.3.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): dependencies: '@babel/core': 7.23.6 '@jest/test-sequencer': 29.7.0 @@ -24100,7 +30999,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.14.2 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros @@ -24140,12 +31039,27 @@ snapshots: - supports-color - utf-8-validate + jest-environment-jsdom@29.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/jsdom': 20.0.1 + '@types/node': 20.12.7 + jest-mock: 29.7.0 + jest-util: 29.7.0 + jsdom: 20.0.3(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -24155,7 +31069,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.12.12 + '@types/node': 20.14.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -24181,7 +31095,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.6 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -24194,7 +31108,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -24229,7 +31143,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -24257,7 +31171,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -24303,7 +31217,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -24322,7 +31236,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.12.12 + '@types/node': 20.14.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -24331,7 +31245,7 @@ snapshots: jest-worker@29.7.0: dependencies: - '@types/node': 20.12.12 + '@types/node': 20.14.2 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -24384,8 +31298,18 @@ snapshots: dependencies: autobind-decorator: 2.4.0 + joi@17.13.1: + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 + jose@5.1.3: {} + joycon@3.1.1: {} + js-sha3@0.5.7: {} js-sha3@0.8.0: {} @@ -24403,6 +31327,60 @@ snapshots: jsbn@0.1.1: {} + jsc-android@250231.0.0: {} + + jsc-safe-url@0.2.4: {} + + jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/parser': 7.24.6 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/preset-env': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) + '@babel/preset-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/register': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.6(supports-color@9.4.0)) + chalk: 4.1.2 + flow-parser: 0.237.2 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6)): + dependencies: + '@babel/core': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/preset-env': 7.24.6(@babel/core@7.24.6) + '@babel/preset-flow': 7.24.6(@babel/core@7.24.6) + '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6) + '@babel/register': 7.24.6(@babel/core@7.24.6) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.6) + chalk: 4.1.2 + flow-parser: 0.237.2 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + jsdom@20.0.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: abab: 2.0.6 @@ -24436,6 +31414,41 @@ snapshots: - supports-color - utf-8-validate + jsdom@20.0.3(bufferutil@4.0.8)(utf-8-validate@6.0.4): + dependencies: + abab: 2.0.6 + acorn: 8.11.2 + acorn-globals: 7.0.1 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.4.3 + domexception: 4.0.0 + escodegen: 2.1.0 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.7 + parse5: 7.1.2 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@0.5.0: {} + jsesc@2.5.2: {} json-buffer@3.0.1: {} @@ -24453,7 +31466,7 @@ snapshots: json-rpc-engine@6.1.0: dependencies: '@metamask/safe-event-emitter': 2.0.0 - eth-rpc-errors: 4.0.2 + eth-rpc-errors: 4.0.3 json-rpc-random-id@1.0.1: {} @@ -24531,10 +31544,9 @@ snapshots: keyvaluestorage-interface@1.0.0: {} - kleur@3.0.3: {} + kind-of@6.0.3: {} - kysely@0.24.2: - optional: true + kleur@3.0.3: {} kysely@0.26.3: {} @@ -24560,6 +31572,13 @@ snapshots: dependencies: immediate: 3.0.6 + lighthouse-logger@1.4.2(supports-color@9.4.0): + dependencies: + debug: 2.6.9(supports-color@9.4.0) + marky: 1.2.5 + transitivePeerDependencies: + - supports-color + lilconfig@2.1.0: {} lilconfig@3.0.0: {} @@ -24654,6 +31673,11 @@ snapshots: locate-character@3.0.0: {} + locate-path@3.0.0: + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + locate-path@5.0.0: dependencies: p-locate: 4.1.0 @@ -24676,6 +31700,8 @@ snapshots: lodash.clone@4.5.0: {} + lodash.debounce@4.0.8: {} + lodash.defaults@4.2.0: {} lodash.flatten@4.4.0: {} @@ -24755,6 +31781,14 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 + logkitty@0.7.1: + dependencies: + ansi-fragments: 0.2.1 + dayjs: 1.11.11 + yargs: 15.4.1 + + lokijs@1.5.12: {} + long@4.0.0: {} long@5.2.3: {} @@ -24799,6 +31833,11 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + make-dir@4.0.0: dependencies: semver: 7.5.4 @@ -24845,6 +31884,8 @@ snapshots: tinyqueue: 2.0.3 vt-pbf: 3.1.3 + marky@1.2.5: {} + matchstick-as@0.6.0: dependencies: wabt: 1.0.24 @@ -24857,52 +31898,436 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - mdn-data@2.0.30: {} + mdn-data@2.0.30: {} + + media-query-parser@2.0.2: + dependencies: + '@babel/runtime': 7.24.0 + + media-typer@0.3.0: {} + + memoize-one@5.2.1: {} + + memoizee@0.4.15: + dependencies: + d: 1.0.1 + es5-ext: 0.10.62 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.7 + + memorystream@0.3.1: {} + + merge-descriptors@1.0.1: {} + + merge-options@3.0.4: + dependencies: + is-plain-obj: 2.1.0 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + meros@1.1.4(@types/node@20.14.2): + optionalDependencies: + '@types/node': 20.14.2 + + meros@1.3.0(@types/node@20.12.12): + optionalDependencies: + '@types/node': 20.12.12 + + meros@1.3.0(@types/node@20.12.7): + optionalDependencies: + '@types/node': 20.12.7 + + methods@1.1.2: {} + + metro-babel-transformer@0.80.9: + dependencies: + '@babel/core': 7.24.6 + hermes-parser: 0.20.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + metro-babel-transformer@0.80.9(supports-color@9.4.0): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + hermes-parser: 0.20.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + metro-cache-key@0.80.9: {} + + metro-cache@0.80.9: + dependencies: + metro-core: 0.80.9 + rimraf: 3.0.2 + + metro-config@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + connect: 3.7.0(supports-color@9.4.0) + cosmiconfig: 5.2.1 + jest-validate: 29.7.0 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + metro-cache: 0.80.9 + metro-core: 0.80.9 + metro-runtime: 0.80.9 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + metro-config@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4): + dependencies: + connect: 3.7.0(supports-color@9.4.0) + cosmiconfig: 5.2.1 + jest-validate: 29.7.0 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + metro-cache: 0.80.9 + metro-core: 0.80.9 + metro-runtime: 0.80.9 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + + metro-config@0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + connect: 3.7.0(supports-color@9.4.0) + cosmiconfig: 5.2.1 + jest-validate: 29.7.0 + metro: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-cache: 0.80.9 + metro-core: 0.80.9 + metro-runtime: 0.80.9 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + metro-core@0.80.9: + dependencies: + lodash.throttle: 4.1.1 + metro-resolver: 0.80.9 + + metro-file-map@0.80.9(supports-color@9.4.0): + dependencies: + anymatch: 3.1.3 + debug: 2.6.9(supports-color@9.4.0) + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0 + micromatch: 4.0.5 + node-abort-controller: 3.1.1 + nullthrows: 1.1.1 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + transitivePeerDependencies: + - supports-color + + metro-minify-terser@0.80.9: + dependencies: + terser: 5.31.0 + + metro-resolver@0.80.9: {} - media-query-parser@2.0.2: + metro-runtime@0.80.9: dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 - media-typer@0.3.0: {} + metro-source-map@0.80.9: + dependencies: + '@babel/traverse': 7.24.6 + '@babel/types': 7.24.6 + invariant: 2.2.4 + metro-symbolicate: 0.80.9 + nullthrows: 1.1.1 + ob1: 0.80.9 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color - memoize-one@5.2.1: {} + metro-source-map@0.80.9(supports-color@9.4.0): + dependencies: + '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/types': 7.24.6 + invariant: 2.2.4 + metro-symbolicate: 0.80.9(supports-color@9.4.0) + nullthrows: 1.1.1 + ob1: 0.80.9 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color - memoizee@0.4.15: + metro-symbolicate@0.80.9: dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-weak-map: 2.0.3 - event-emitter: 0.3.5 - is-promise: 2.2.2 - lru-queue: 0.1.0 - next-tick: 1.1.0 - timers-ext: 0.1.7 + invariant: 2.2.4 + metro-source-map: 0.80.9 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color - memorystream@0.3.1: {} + metro-symbolicate@0.80.9(supports-color@9.4.0): + dependencies: + invariant: 2.2.4 + metro-source-map: 0.80.9(supports-color@9.4.0) + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color - merge-descriptors@1.0.1: {} + metro-transform-plugins@0.80.9: + dependencies: + '@babel/core': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color - merge-options@3.0.4: + metro-transform-plugins@0.80.9(supports-color@9.4.0): dependencies: - is-plain-obj: 2.1.0 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/generator': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6(supports-color@9.4.0) + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color - merge-stream@2.0.0: {} + metro-transform-worker@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + metro-babel-transformer: 0.80.9(supports-color@9.4.0) + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-minify-terser: 0.80.9 + metro-source-map: 0.80.9(supports-color@9.4.0) + metro-transform-plugins: 0.80.9(supports-color@9.4.0) + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - merge2@1.4.1: {} + metro-transform-worker@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4): + dependencies: + '@babel/core': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-minify-terser: 0.80.9 + metro-source-map: 0.80.9 + metro-transform-plugins: 0.80.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true - meros@1.1.4(@types/node@20.12.12): - optionalDependencies: - '@types/node': 20.12.12 + metro-transform-worker@0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@babel/core': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + metro: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-minify-terser: 0.80.9 + metro-source-map: 0.80.9 + metro-transform-plugins: 0.80.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - meros@1.3.0(@types/node@20.12.12): - optionalDependencies: - '@types/node': 20.12.12 + metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + '@babel/code-frame': 7.24.6 + '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/types': 7.24.6 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0(supports-color@9.4.0) + debug: 2.6.9(supports-color@9.4.0) + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + graceful-fs: 4.2.11 + hermes-parser: 0.20.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.9(supports-color@9.4.0) + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + metro-core: 0.80.9 + metro-file-map: 0.80.9(supports-color@9.4.0) + metro-resolver: 0.80.9 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9(supports-color@9.4.0) + metro-symbolicate: 0.80.9(supports-color@9.4.0) + metro-transform-plugins: 0.80.9(supports-color@9.4.0) + metro-transform-worker: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + mime-types: 2.1.35 + node-fetch: 2.7.0(encoding@0.1.13) + nullthrows: 1.1.1 + rimraf: 3.0.2 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate - meros@1.3.0(@types/node@20.12.7): - optionalDependencies: - '@types/node': 20.12.7 + metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4): + dependencies: + '@babel/code-frame': 7.24.6 + '@babel/core': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6 + '@babel/types': 7.24.6 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0(supports-color@9.4.0) + debug: 2.6.9(supports-color@9.4.0) + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + graceful-fs: 4.2.11 + hermes-parser: 0.20.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + metro-core: 0.80.9 + metro-file-map: 0.80.9(supports-color@9.4.0) + metro-resolver: 0.80.9 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + metro-symbolicate: 0.80.9 + metro-transform-plugins: 0.80.9 + metro-transform-worker: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + mime-types: 2.1.35 + node-fetch: 2.7.0(encoding@0.1.13) + nullthrows: 1.1.1 + rimraf: 3.0.2 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true - methods@1.1.2: {} + metro@0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@babel/code-frame': 7.24.6 + '@babel/core': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/template': 7.24.6 + '@babel/traverse': 7.24.6 + '@babel/types': 7.24.6 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0(supports-color@9.4.0) + debug: 2.6.9(supports-color@9.4.0) + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + graceful-fs: 4.2.11 + hermes-parser: 0.20.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-config: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-core: 0.80.9 + metro-file-map: 0.80.9(supports-color@9.4.0) + metro-resolver: 0.80.9 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + metro-symbolicate: 0.80.9 + metro-transform-plugins: 0.80.9 + metro-transform-worker: 0.80.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + mime-types: 2.1.35 + node-fetch: 2.7.0(encoding@0.1.13) + nullthrows: 1.1.1 + rimraf: 3.0.2 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate micro-ftch@0.3.1: {} @@ -24919,6 +32344,8 @@ snapshots: mime@1.6.0: {} + mime@2.6.0: {} + mime@3.0.0: {} mimic-fn@2.1.0: {} @@ -24993,6 +32420,37 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + optional: true + + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + mkdirp-classic@0.5.3: {} mkdirp-promise@5.0.1: @@ -25132,7 +32590,7 @@ snapshots: next-tick@1.1.0: {} - next@13.5.6(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@13.5.6(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 13.5.6 '@swc/helpers': 0.5.2 @@ -25141,7 +32599,7 @@ snapshots: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.23.6)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: '@next/swc-darwin-arm64': 13.5.6 @@ -25185,17 +32643,43 @@ snapshots: - '@babel/core' - babel-plugin-macros + next@14.2.3(@babel/core@7.24.6(supports-color@9.4.0))(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 14.2.3 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001625 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.6(supports-color@9.4.0))(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.3 + '@next/swc-darwin-x64': 14.2.3 + '@next/swc-linux-arm64-gnu': 14.2.3 + '@next/swc-linux-arm64-musl': 14.2.3 + '@next/swc-linux-x64-gnu': 14.2.3 + '@next/swc-linux-x64-musl': 14.2.3 + '@next/swc-win32-arm64-msvc': 14.2.3 + '@next/swc-win32-ia32-msvc': 14.2.3 + '@next/swc-win32-x64-msvc': 14.2.3 + '@opentelemetry/api': 1.8.0 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + next@14.2.3(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.2.3 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001593 + caniuse-lite: 1.0.30001625 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.23.6)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 14.2.3 '@next/swc-darwin-x64': 14.2.3 @@ -25246,14 +32730,24 @@ snapshots: lower-case: 2.0.2 tslib: 2.6.2 + nocache@3.0.4: {} + node-abi@3.52.0: dependencies: semver: 7.5.4 + node-abort-controller@3.1.1: {} + node-addon-api@2.0.2: {} + node-addon-api@5.1.0: {} + node-addon-api@7.0.0: {} + node-dir@0.1.17: + dependencies: + minimatch: 3.1.2 + node-domexception@1.0.0: {} node-fetch-native@1.4.1: {} @@ -25285,6 +32779,8 @@ snapshots: node-releases@2.0.14: {} + node-stream-zip@1.15.0: {} + nomnoml@1.6.2: dependencies: graphre: 0.1.3 @@ -25347,6 +32843,14 @@ snapshots: oauth-sign@0.9.0: {} + ob1@0.80.9: {} + + obj-multiplex@1.0.0: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + readable-stream: 2.3.8 + object-assign@4.1.1: {} object-hash@3.0.0: {} @@ -25415,10 +32919,16 @@ snapshots: on-exit-leak-free@2.1.2: {} + on-finished@2.3.0: + dependencies: + ee-first: 1.1.1 + on-finished@2.4.1: dependencies: ee-first: 1.1.1 + on-headers@1.0.2: {} + once@1.3.3: dependencies: wrappy: 1.0.2 @@ -25435,6 +32945,21 @@ snapshots: dependencies: mimic-fn: 4.0.0 + open@6.4.0: + dependencies: + is-wsl: 1.1.0 + + open@7.4.2: + dependencies: + is-docker: 2.2.1 + is-wsl: 2.2.0 + + open@8.4.2: + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + open@9.1.0: dependencies: default-browser: 4.0.0 @@ -25536,6 +33061,10 @@ snapshots: dependencies: yocto-queue: 1.0.0 + p-locate@3.0.0: + dependencies: + p-limit: 2.3.0 + p-locate@4.1.0: dependencies: p-limit: 2.3.0 @@ -25678,6 +33207,8 @@ snapshots: pathe@1.1.1: {} + pathe@1.1.2: {} + pbf@3.2.1: dependencies: ieee754: 1.2.1 @@ -25750,6 +33281,8 @@ snapshots: pify@3.0.0: {} + pify@4.0.1: {} + pify@5.0.0: {} pino-abstract-transport@0.5.0: @@ -25762,6 +33295,23 @@ snapshots: readable-stream: 4.5.2 split2: 4.2.0 + pino-pretty@11.1.0: + 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.0 + readable-stream: 4.5.2 + secure-json-parse: 2.7.0 + sonic-boom: 4.0.1 + strip-json-comments: 3.1.1 + pino-std-serializers@4.0.0: {} pino-std-serializers@6.2.2: {} @@ -25796,6 +33346,10 @@ snapshots: pirates@4.0.6: {} + pkg-dir@3.0.0: + dependencies: + find-up: 3.0.0 + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 @@ -25868,6 +33422,8 @@ snapshots: polybooljs@1.2.0: {} + pony-cause@2.1.11: {} + postcss-import@15.1.0(postcss@8.4.32): dependencies: postcss: 8.4.32 @@ -25908,13 +33464,21 @@ snapshots: postcss: 8.4.32 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): + dependencies: + lilconfig: 3.0.0 + yaml: 2.3.4 + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) + + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): dependencies: lilconfig: 3.0.0 yaml: 2.3.4 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) postcss-nested@6.0.1(postcss@8.4.32): dependencies: @@ -26017,6 +33581,13 @@ snapshots: ansi-styles: 3.2.1 react-is: 16.13.1 + pretty-format@26.6.2: + dependencies: + '@jest/types': 26.6.2 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + react-is: 17.0.2 + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 @@ -26083,7 +33654,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.12.12 + '@types/node': 20.14.2 long: 5.2.3 protocol-buffers-schema@3.6.0: {} @@ -26123,6 +33694,14 @@ snapshots: pvutils@1.1.3: {} + qr-code-styling@1.6.0-rc.1: + dependencies: + qrcode-generator: 1.4.4 + + qrcode-generator@1.4.4: {} + + qrcode-terminal-nooctal@0.12.1: {} + qrcode@1.5.0: dependencies: dijkstrajs: 1.0.3 @@ -26167,10 +33746,16 @@ snapshots: split-on-first: 1.1.0 strict-uri-encode: 2.0.0 + querystring@0.2.1: {} + querystringify@2.2.0: {} queue-microtask@1.2.3: {} + queue@6.0.2: + dependencies: + inherits: 2.0.4 + quick-format-unescaped@4.0.4: {} quick-lru@5.1.1: {} @@ -26241,6 +33826,22 @@ snapshots: date-fns: 2.30.0 react: 18.3.1 + react-devtools-core@5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + shell-quote: 1.8.1 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + react-devtools-core@5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + dependencies: + shell-quote: 1.8.1 + ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 @@ -26266,6 +33867,26 @@ snapshots: dependencies: react: 19.0.0-rc-6f23540c7d-20240528 + react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): + dependencies: + '@babel/runtime': 7.24.5 + html-parse-stringify: 3.0.1 + i18next: 22.5.1 + react: 18.3.1 + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + + react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1): + dependencies: + '@babel/runtime': 7.24.5 + html-parse-stringify: 3.0.1 + i18next: 23.11.5 + react: 18.3.1 + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) + react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): dependencies: '@babel/runtime': 7.24.5 @@ -26285,6 +33906,171 @@ snapshots: dependencies: p-defer: 3.0.0 + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): + dependencies: + escape-string-regexp: 2.0.0 + invariant: 2.2.4 + react: 18.3.1 + react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1): + dependencies: + escape-string-regexp: 2.0.0 + invariant: 2.2.4 + react: 18.3.1 + react-native: 0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) + + react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) + '@react-native/assets-registry': 0.74.84 + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.23.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) + '@react-native/gradle-plugin': 0.74.84 + '@react-native/js-polyfills': 0.74.84 + '@react-native/normalize-colors': 0.74.84 + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + base64-js: 1.5.1 + chalk: 4.1.2 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + react-refresh: 0.14.2 + react-shallow-renderer: 16.15.0(react@18.3.1) + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.1 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + + react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) + '@react-native/assets-registry': 0.74.84 + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@react-native/gradle-plugin': 0.74.84 + '@react-native/js-polyfills': 0.74.84 + '@react-native/normalize-colors': 0.74.84 + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + base64-js: 1.5.1 + chalk: 4.1.2 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9(supports-color@9.4.0) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + react-refresh: 0.14.2 + react-shallow-renderer: 16.15.0(react@18.3.1) + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.3 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) + '@react-native/assets-registry': 0.74.84 + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6)) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native/gradle-plugin': 0.74.84 + '@react-native/js-polyfills': 0.74.84 + '@react-native/normalize-colors': 0.74.84 + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + base64-js: 1.5.1 + chalk: 4.1.2 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + react-refresh: 0.14.2 + react-shallow-renderer: 16.15.0(react@18.3.1) + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.3 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + react-plotly.js@2.6.0(plotly.js@2.27.1)(react@18.3.1): dependencies: plotly.js: 2.27.1 @@ -26315,6 +34101,8 @@ snapshots: optionalDependencies: react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-refresh@0.14.2: {} + react-remove-scroll-bar@2.3.4(@types/react@18.3.1)(react@18.3.1): dependencies: react: 18.3.1 @@ -26387,6 +34175,12 @@ snapshots: '@remix-run/router': 1.16.1 react: 19.0.0-rc-6f23540c7d-20240528 + react-shallow-renderer@16.15.0(react@18.3.1): + dependencies: + object-assign: 4.1.1 + react: 18.3.1 + react-is: 18.2.0 + react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1): dependencies: get-nonce: 1.0.1 @@ -26405,6 +34199,12 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 + react-toastify@10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + clsx: 2.1.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -26460,10 +34260,19 @@ snapshots: dependencies: picomatch: 2.3.1 + readline@1.3.0: {} + real-require@0.1.0: {} real-require@0.2.0: {} + recast@0.21.5: + dependencies: + ast-types: 0.15.2 + esprima: 4.0.1 + source-map: 0.6.1 + tslib: 2.6.2 + receptacle@1.3.2: dependencies: ms: 2.1.3 @@ -26496,14 +34305,39 @@ snapshots: globalthis: 1.0.3 which-builtin-type: 1.1.3 + regenerate-unicode-properties@10.1.1: + dependencies: + regenerate: 1.4.2 + + regenerate@1.4.2: {} + + regenerator-runtime@0.13.11: {} + regenerator-runtime@0.14.1: {} + regenerator-transform@0.15.2: + dependencies: + '@babel/runtime': 7.24.5 + regexp.prototype.flags@1.5.1: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 set-function-name: 2.0.1 + regexpu-core@5.3.2: + dependencies: + '@babel/regjsgen': 0.8.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.1 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + + regjsparser@0.9.1: + dependencies: + jsesc: 0.5.0 + regl-error2d@2.0.12: dependencies: array-bounds: 1.0.1 @@ -26611,6 +34445,8 @@ snapshots: dependencies: resolve-from: 5.0.0 + resolve-from@3.0.0: {} + resolve-from@4.0.0: {} resolve-from@5.0.0: {} @@ -26661,6 +34497,10 @@ snapshots: right-now@1.0.0: {} + rimraf@2.6.3: + dependencies: + glob: 7.2.3 + rimraf@2.7.1: dependencies: glob: 7.2.3 @@ -26684,10 +34524,23 @@ snapshots: safe-stable-stringify: 2.4.3 semver-compare: 1.0.0 + rollup-plugin-visualizer@5.12.0(rollup@4.18.0): + dependencies: + open: 8.4.2 + picomatch: 2.3.1 + source-map: 0.7.4 + yargs: 17.7.2 + optionalDependencies: + rollup: 4.18.0 + rollup@2.78.0: optionalDependencies: fsevents: 2.3.3 + rollup@3.29.4: + optionalDependencies: + fsevents: 2.3.3 + rollup@4.18.0: dependencies: '@types/estree': 1.0.5 @@ -26775,6 +34628,10 @@ snapshots: dependencies: loose-envify: 1.4.0 + scheduler@0.24.0-canary-efb381bbf-20230505: + dependencies: + loose-envify: 1.4.0 + scheduler@0.25.0-rc-6f23540c7d-20240528: {} scrypt-js@3.0.1: {} @@ -26787,6 +34644,19 @@ snapshots: node-addon-api: 2.0.2 node-gyp-build: 4.7.1 + secp256k1@5.0.0: + dependencies: + elliptic: 6.5.4 + node-addon-api: 5.1.0 + node-gyp-build: 4.7.1 + + secure-json-parse@2.7.0: {} + + selfsigned@2.4.1: + dependencies: + '@types/node-forge': 1.3.11 + node-forge: 1.3.1 + semver-compare@1.0.0: {} semver@5.7.2: {} @@ -26807,9 +34677,9 @@ snapshots: semver@7.6.2: {} - send@0.18.0: + send@0.18.0(supports-color@9.4.0): dependencies: - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) depd: 2.0.0 destroy: 1.2.0 encodeurl: 1.0.2 @@ -26831,12 +34701,14 @@ snapshots: tslib: 2.6.2 upper-case-first: 2.0.2 - serve-static@1.15.0: + serialize-error@2.1.0: {} + + serve-static@1.15.0(supports-color@9.4.0): dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.18.0 + send: 0.18.0(supports-color@9.4.0) transitivePeerDependencies: - supports-color @@ -26876,6 +34748,10 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 + shallow-clone@3.0.1: + dependencies: + kind-of: 6.0.3 + shallow-copy@0.0.1: {} sharp@0.33.4: @@ -26958,6 +34834,12 @@ snapshots: slash@4.0.0: {} + slice-ansi@2.1.0: + dependencies: + ansi-styles: 3.2.1 + astral-regex: 1.0.0 + is-fullwidth-code-point: 2.0.0 + slice-ansi@3.0.0: dependencies: ansi-styles: 4.3.0 @@ -26990,6 +34872,42 @@ snapshots: dot-case: 3.0.4 tslib: 2.6.2 + socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@9.4.0) + engine.io-client: 6.5.3(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) + socket.io-parser: 4.2.4(supports-color@9.4.0) + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@8.1.1) + engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-parser@4.2.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + socket.io-parser@4.2.4(supports-color@9.4.0): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@9.4.0) + transitivePeerDependencies: + - supports-color + sonic-boom@2.8.0: dependencies: atomic-sleep: 1.0.0 @@ -26998,6 +34916,10 @@ snapshots: dependencies: atomic-sleep: 1.0.0 + sonic-boom@4.0.1: + dependencies: + atomic-sleep: 1.0.0 + source-map-js@1.0.2: {} source-map-js@1.2.0: {} @@ -27016,6 +34938,8 @@ snapshots: source-map@0.6.1: {} + source-map@0.7.4: {} + spawn-command@0.0.2: {} spawn-command@0.0.2-1: {} @@ -27064,6 +34988,8 @@ snapshots: dependencies: escape-string-regexp: 2.0.0 + stackframe@1.3.4: {} + stacktrace-parser@0.1.10: dependencies: type-fest: 0.7.1 @@ -27074,6 +35000,8 @@ snapshots: dependencies: escodegen: 1.14.3 + statuses@1.5.0: {} + statuses@2.0.1: {} std-env@3.6.0: {} @@ -27093,7 +35021,7 @@ snapshots: stream-parser@0.3.1: dependencies: - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) transitivePeerDependencies: - supports-color @@ -27218,6 +35146,8 @@ snapshots: strip-json-comments@3.1.1: {} + strnum@1.0.5: {} + strongly-connected-components@1.0.1: {} stubborn-fs@1.2.5: {} @@ -27229,6 +35159,20 @@ snapshots: optionalDependencies: '@babel/core': 7.23.6 + styled-jsx@5.1.1(@babel/core@7.24.6(supports-color@9.4.0))(react@18.3.1): + dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.24.6(supports-color@9.4.0) + + styled-jsx@5.1.1(@babel/core@7.24.6)(react@18.3.1): + dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.24.6 + styled-jsx@5.1.3(@babel/core@7.23.6)(react@19.0.0-rc-6f23540c7d-20240528): dependencies: client-only: 0.0.1 @@ -27258,6 +35202,8 @@ snapshots: pirates: 4.0.6 ts-interface-checker: 0.1.13 + sudo-prompt@9.2.1: {} + supercluster@7.1.5: dependencies: kdbush: 3.0.0 @@ -27284,6 +35230,8 @@ snapshots: dependencies: has-flag: 4.0.0 + supports-color@9.4.0: {} + supports-hyperlinks@2.3.0: dependencies: has-flag: 4.0.0 @@ -27302,7 +35250,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.2.1 '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/trace-mapping': 0.3.25 '@types/estree': 1.0.5 acorn: 8.11.2 aria-query: 5.3.0 @@ -27451,7 +35399,34 @@ snapshots: postcss: 8.4.32 postcss-import: 15.1.0(postcss@8.4.32) postcss-js: 4.0.1(postcss@8.4.32) - postcss-load-config: 4.0.2(postcss@8.4.32)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + postcss-load-config: 4.0.2(postcss@8.4.32)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) + postcss-nested: 6.0.1(postcss@8.4.32) + postcss-selector-parser: 6.0.13 + resolve: 1.22.8 + sucrase: 3.34.0 + transitivePeerDependencies: + - ts-node + + tailwindcss@3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.0 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.32 + postcss-import: 15.1.0(postcss@8.4.32) + postcss-js: 4.0.1(postcss@8.4.32) + postcss-load-config: 4.0.2(postcss@8.4.32)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) postcss-nested: 6.0.1(postcss@8.4.32) postcss-selector-parser: 6.0.13 resolve: 1.22.8 @@ -27459,7 +35434,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)): + tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -27475,18 +35450,18 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.32 - postcss-import: 15.1.0(postcss@8.4.32) - postcss-js: 4.0.1(postcss@8.4.32) - postcss-load-config: 4.0.2(postcss@8.4.32)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - postcss-nested: 6.0.1(postcss@8.4.32) + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.13 resolve: 1.22.8 sucrase: 3.34.0 transitivePeerDependencies: - ts-node - tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): + tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -27505,7 +35480,7 @@ snapshots: postcss: 8.4.38 postcss-import: 15.1.0(postcss@8.4.38) postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.13 resolve: 1.22.8 @@ -27570,6 +35545,19 @@ snapshots: dependencies: bintrees: 1.0.2 + temp-dir@2.0.0: {} + + temp@0.8.4: + dependencies: + rimraf: 2.6.3 + + terser@5.31.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.11.2 + commander: 2.20.3 + source-map-support: 0.5.21 + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 @@ -27610,6 +35598,8 @@ snapshots: dependencies: real-require: 0.2.0 + throat@5.0.0: {} + through2@0.6.5: dependencies: readable-stream: 1.0.34 @@ -27729,11 +35719,11 @@ snapshots: babel-jest: 29.7.0(@babel/core@7.23.6) esbuild: 0.16.17 - ts-jest@29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -27742,16 +35732,15 @@ snapshots: typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.6) - esbuild: 0.16.17 + babel-jest: 29.7.0(@babel/core@7.24.6) - ts-jest@29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -27760,11 +35749,11 @@ snapshots: typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.6) + babel-jest: 29.7.0(@babel/core@7.24.6) - ts-jest@29.1.2(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.1.2(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -27777,9 +35766,9 @@ snapshots: typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.6) + babel-jest: 29.7.0(@babel/core@7.24.6) ts-jest@29.1.4(@babel/core@7.23.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): dependencies: @@ -27823,6 +35812,7 @@ snapshots: typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optional: true ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3): dependencies: @@ -27862,6 +35852,24 @@ snapshots: yn: 3.1.1 optional: true + ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.14.2 + acorn: 8.11.2 + acorn-walk: 8.3.1 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + ts-node@9.1.1(typescript@5.4.5): dependencies: arg: 4.1.3 @@ -28004,6 +36012,10 @@ snapshots: dependencies: uint8arrays: 4.0.10 + uint8arrays@3.1.0: + dependencies: + multiformats: 9.9.0 + uint8arrays@3.1.1: dependencies: multiformats: 9.9.0 @@ -28043,6 +36055,19 @@ snapshots: node-fetch-native: 1.4.1 pathe: 1.1.1 + unfetch@4.2.0: {} + + unicode-canonical-property-names-ecmascript@2.0.0: {} + + unicode-match-property-ecmascript@2.0.0: + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 + + unicode-match-property-value-ecmascript@2.1.0: {} + + unicode-property-aliases-ecmascript@2.1.0: {} + universalify@0.1.2: {} universalify@0.2.0: {} @@ -28075,6 +36100,24 @@ snapshots: transitivePeerDependencies: - supports-color + unstorage@1.10.1(idb-keyval@6.2.1)(supports-color@9.4.0): + dependencies: + anymatch: 3.1.3 + chokidar: 3.5.3 + destr: 2.0.2 + h3: 1.9.0 + ioredis: 5.3.2(supports-color@9.4.0) + listhen: 1.5.5 + lru-cache: 10.1.0 + mri: 1.2.0 + node-fetch-native: 1.4.1 + ofetch: 1.3.3 + ufo: 1.3.2 + optionalDependencies: + idb-keyval: 6.2.1 + transitivePeerDependencies: + - supports-color + untildify@4.0.0: {} untun@0.1.3: @@ -28174,6 +36217,10 @@ snapshots: dependencies: node-gyp-build: 4.7.1 + utf-8-validate@6.0.4: + dependencies: + node-gyp-build: 4.7.1 + utf8@3.0.0: {} util-deprecate@1.0.2: {} @@ -28217,6 +36264,14 @@ snapshots: '@types/react': 18.3.1 react: 18.3.1 + valtio@1.11.2(@types/react@18.3.3)(react@18.3.1): + dependencies: + proxy-compare: 2.5.1 + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.3 + react: 18.3.1 + value-or-promise@1.0.12: {} value-or-promise@1.0.6: {} @@ -28233,7 +36288,7 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.3.0 - viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -28241,8 +36296,8 @@ snapshots: '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 abitype: 0.9.8(typescript@5.3.3)(zod@3.22.4) - isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -28267,7 +36322,7 @@ snapshots: - utf-8-validate - zod - viem@1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -28275,8 +36330,8 @@ snapshots: '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 abitype: 0.9.8(typescript@5.3.3)(zod@3.22.4) - isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -28318,7 +36373,41 @@ snapshots: - utf-8-validate - zod - viem@2.10.9(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 0.9.8(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.10.9(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -28335,7 +36424,7 @@ snapshots: - utf-8-validate - zod - viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -28352,13 +36441,30 @@ snapshots: - utf-8-validate - zod - vite-node@1.6.0(@types/node@18.19.33): + viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + vite-node@1.6.0(@types/node@18.19.33)(terser@5.31.0): dependencies: cac: 6.7.14 debug: 4.3.4(supports-color@8.1.1) pathe: 1.1.1 picocolors: 1.0.0 - vite: 5.2.12(@types/node@18.19.33) + vite: 5.2.12(@types/node@18.19.33)(terser@5.31.0) transitivePeerDependencies: - '@types/node' - less @@ -28369,18 +36475,28 @@ snapshots: - supports-color - terser - vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@18.19.33)): + vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@18.19.33)(terser@5.31.0)): dependencies: debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 3.1.0(typescript@5.4.5) optionalDependencies: - vite: 5.2.12(@types/node@18.19.33) + vite: 5.2.12(@types/node@18.19.33)(terser@5.31.0) transitivePeerDependencies: - supports-color - typescript - vite@5.2.12(@types/node@18.19.33): + vite@4.5.3(@types/node@20.14.2)(terser@5.31.0): + dependencies: + esbuild: 0.18.20 + postcss: 8.4.38 + rollup: 3.29.4 + optionalDependencies: + '@types/node': 20.14.2 + fsevents: 2.3.3 + terser: 5.31.0 + + vite@5.2.12(@types/node@18.19.33)(terser@5.31.0): dependencies: esbuild: 0.20.2 postcss: 8.4.38 @@ -28388,6 +36504,9 @@ snapshots: optionalDependencies: '@types/node': 18.19.33 fsevents: 2.3.3 + terser: 5.31.0 + + vlq@1.0.1: {} void-elements@3.1.0: {} @@ -28408,16 +36527,16 @@ snapshots: wabt@1.0.24: {} - wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@6.0.4))(react@18.3.1)) + '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@6.0.4)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4))(zod@3.22.4) abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) - viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@6.0.4)(zod@3.22.4) optionalDependencies: typescript: 5.3.3 transitivePeerDependencies: @@ -28443,13 +36562,82 @@ snapshots: - utf-8-validate - zod - wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@2.9.8(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.0.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: - '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + '@tanstack/react-query': 5.0.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@wagmi/connectors': 5.0.7(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + + wagmi@2.9.8(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): + dependencies: + '@tanstack/react-query': 5.40.1(react@18.3.1) + '@wagmi/connectors': 5.0.7(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) + viem: 2.13.6(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + + wagmi@2.9.8(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + dependencies: + '@wagmi/connectors': 5.0.7(@types/react@18.3.1)(@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/core': 2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -28466,6 +36654,7 @@ snapshots: - '@netlify/blobs' - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' - '@types/react' - '@upstash/redis' - '@vercel/kv' @@ -28473,7 +36662,9 @@ snapshots: - encoding - immer - react-dom + - react-i18next - react-native + - rollup - supports-color - utf-8-validate - zod @@ -28726,6 +36917,8 @@ snapshots: pvtsutils: 1.3.5 tslib: 2.6.2 + webextension-polyfill@0.10.0: {} + webgl-context@2.2.0: dependencies: get-canvas-context: 1.0.2 @@ -28739,7 +36932,7 @@ snapshots: websocket@1.0.34: dependencies: bufferutil: 4.0.8 - debug: 2.6.9 + debug: 2.6.9(supports-color@9.4.0) es5-ext: 0.10.62 typedarray-to-buffer: 3.1.5 utf-8-validate: 5.0.10 @@ -28857,6 +37050,12 @@ snapshots: wrappy@1.0.2: {} + write-file-atomic@2.4.3: + dependencies: + graceful-fs: 4.2.11 + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 @@ -28871,6 +37070,20 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + async-limiter: 1.0.1 + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4): + dependencies: + async-limiter: 1.0.1 + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.4 + ws@7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 @@ -28886,16 +37099,41 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.4 + + ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + + ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.4 + ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.4 + ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 6.0.4 + ws@8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 @@ -28926,6 +37164,8 @@ snapshots: xmlchars@2.2.0: {} + xmlhttprequest-ssl@2.0.0: {} + xtend@2.2.0: {} xtend@4.0.2: {} @@ -28993,9 +37233,31 @@ snapshots: zod@3.23.8: {} + zustand@4.4.1(@types/react@18.3.1)(react@18.3.1): + dependencies: + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + react: 18.3.1 + optional: true + + zustand@4.4.1(@types/react@18.3.3)(react@18.3.1): + dependencies: + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.3 + react: 18.3.1 + zustand@4.4.7(@types/react@18.3.1)(react@18.3.1): dependencies: use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: '@types/react': 18.3.1 react: 18.3.1 + + zustand@4.4.7(@types/react@18.3.3)(react@18.3.1): + dependencies: + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.3 + react: 18.3.1 From 6cf496349c21723b4263cf7de2529ee46cff9379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 13:23:33 -0300 Subject: [PATCH 02/22] rename useGnosisTransaction to useSafeTransaction --- ...isTransaction.ts => useSafeTransaction.ts} | 22 ++----------------- .../useWaitForTransactionReceiptWrapped.ts | 6 ++--- 2 files changed, 5 insertions(+), 23 deletions(-) rename apps/example-tx-manager/src/lib/{useGnosisTransaction.ts => useSafeTransaction.ts} (85%) diff --git a/apps/example-tx-manager/src/lib/useGnosisTransaction.ts b/apps/example-tx-manager/src/lib/useSafeTransaction.ts similarity index 85% rename from apps/example-tx-manager/src/lib/useGnosisTransaction.ts rename to apps/example-tx-manager/src/lib/useSafeTransaction.ts index ced7b851d..83e27e1ff 100644 --- a/apps/example-tx-manager/src/lib/useGnosisTransaction.ts +++ b/apps/example-tx-manager/src/lib/useSafeTransaction.ts @@ -30,7 +30,7 @@ export const SAFE_STATUS_MAP = { SUCCESS: "safe_success", } as const; -export const useGnosisTransaction = ({ +export const useSafeTransaction = ({ safeHash, }: { safeHash: `0x${string}` | undefined; @@ -45,11 +45,9 @@ export const useGnosisTransaction = ({ const { data: isWalletContract } = useIsWalletContract(address); async function loadGnosisQueuedTransactions(hash?: string) { - console.log({ safeHash, hash }); if (!hash) return setGnosisStatus("safe_idle"); const queued = await sdk.txs.getBySafeTxHash(hash); - console.log({ queued }); if (!queued) { setGnosisStatus("safe_idle"); @@ -76,7 +74,6 @@ export const useGnosisTransaction = ({ useWatchContractEvent({ abi: gnosisAbi, address, - // address: address, eventName: "ExecutionSuccess", onLogs: (logs) => { logs.forEach((log) => { @@ -87,28 +84,13 @@ export const useGnosisTransaction = ({ }, }); - if (!address) + if (!address || !isWalletContract || !safeHash) return { data: undefined, error: undefined, status: "safe_idle", }; - if (!isWalletContract) - return { - data: undefined, - error: undefined, - status: "safe_idle", - }; - - if (!safeHash) { - return { - data: undefined, - error: undefined, - status: "safe_idle", - }; - } - return { data: txHash, error: undefined, diff --git a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts b/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts index 040995f3e..6a3ead25e 100644 --- a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts +++ b/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts @@ -5,10 +5,10 @@ import { } from "wagmi"; import { useIsWalletContract } from "./useIsWalletContract"; -import { useGnosisTransaction } from "./useGnosisTransaction"; +import { useSafeTransaction } from "./useSafeTransaction"; export const useWaitForTransactionReceiptWrapped = ( - args: Parameters[0], + args: Parameters[0] ) => { const { address } = useAccount(); const { data: isWalletContract } = useIsWalletContract(address); @@ -18,7 +18,7 @@ export const useWaitForTransactionReceiptWrapped = ( hash: isWalletContract === false ? args?.hash : undefined, }); - const gnosis = useGnosisTransaction({ + const gnosis = useSafeTransaction({ safeHash: args?.hash, }); console.log({ gnosis, isWalletContract, address }); From 1a6b65fa3822dd10b32df585aea370554f7c8f2e Mon Sep 17 00:00:00 2001 From: Pedro Yves Fracari <55461956+yvesfracari@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:54:49 -0300 Subject: [PATCH 03/22] Create migrate to new contract version button (#697) * wip: refactor page structure and add amms page * change page to async without reload button * merge into base branch * refactor create amm form file structure and use useWatch hook * Create form page wrapper and create edit form * remove unecessary div on form wrapper * refactor fetch data to use same interface on all requests part2 * refactor alercard layout * refactor: link component look for disable proporty of children * refactor disable transaction for old version and add migrate args builder * add old version alert and trigger tx * Add tx pending alert when tx interacting with the cowamm (#698) * chore: add fetch has amm tx pending * chore: add pendig amm tx card * chore: add tx pending alert card on my amms page * Add error on creating amm that already exists check token and refactor form schemas (#699) * add validation to check if amm exists * refactor: connect form types with ICoWAMM * Create add liquidity flow (#700) * add deposit page UI with schema validations * add deposit transaction --- .../[userId]/amms/(components)/AmmsTable.tsx | 4 +- .../amms/[id]/(components)/EditAMMForm.tsx | 96 +---- .../(components)/PoolCompositionTable.tsx | 7 +- .../[id]/(components)/PriceInformation.tsx | 2 +- .../(components)/TradingControlButton.tsx | 7 +- .../app/[userId]/amms/[id]/deposit/page.tsx | 40 ++ .../src/app/[userId]/amms/[id]/page.tsx | 45 ++- .../src/app/[userId]/amms/page.tsx | 19 +- .../new/(components)/CreateAMMForm.tsx | 109 ++--- .../new/(components)/TokenAmountInput.tsx | 34 +- apps/cow-amm-deployer/src/app/page.tsx | 21 +- .../src/components/AlertCard.tsx | 9 +- .../src/components/BalancerWeightedForm.tsx | 11 +- .../src/components/ChainlinkForm.tsx | 17 +- .../src/components/CustomOracleForm.tsx | 11 +- .../src/components/DepositForm.tsx | 115 ++++++ .../src/components/FormPageWrapper.tsx | 10 +- apps/cow-amm-deployer/src/components/Link.tsx | 15 +- .../src/components/OldVersionOfAmmAlert.tsx | 50 +++ .../src/components/PriceOracleForm.tsx | 84 ++++ .../src/components/SushiForm.tsx | 11 +- .../cow-amm-deployer/src/components/Table.tsx | 10 +- .../src/components/TokenInfo.tsx | 9 +- .../src/components/TxPendingAlertCard.tsx | 15 + .../src/components/UniswapV2Form.tsx | 11 +- .../src/lib/decodePriceOracle.ts | 62 +-- apps/cow-amm-deployer/src/lib/fetchAmmData.ts | 295 +++++++------- .../src/lib/fetchHasAmmTxPending.ts | 67 +++ apps/cow-amm-deployer/src/lib/schema.ts | 380 ++++++++---------- .../src/lib/transactionFactory.ts | 204 ++++++++-- apps/cow-amm-deployer/src/lib/types.ts | 13 - 31 files changed, 1106 insertions(+), 677 deletions(-) create mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx create mode 100644 apps/cow-amm-deployer/src/components/DepositForm.tsx create mode 100644 apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx create mode 100644 apps/cow-amm-deployer/src/components/PriceOracleForm.tsx create mode 100644 apps/cow-amm-deployer/src/components/TxPendingAlertCard.tsx create mode 100644 apps/cow-amm-deployer/src/lib/fetchHasAmmTxPending.ts diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx index 91b98f5e0..327678804 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx @@ -5,13 +5,13 @@ import { useRouter } from "next/navigation"; import Table from "#/components/Table"; import { TokenInfo } from "#/components/TokenInfo"; -import { ICoWAmmOverview } from "#/lib/fetchAmmData"; +import { ICowAmm } from "#/lib/fetchAmmData"; export function AmmsTable({ standaloneAmmData, userId, }: { - standaloneAmmData: ICoWAmmOverview[]; + standaloneAmmData: ICowAmm[]; userId: string; }) { const router = useRouter(); diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx index d5fbab553..2863bee42 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx @@ -2,35 +2,26 @@ import { toast } from "@bleu/ui"; import { zodResolver } from "@hookform/resolvers/zod"; -import { brownDark } from "@radix-ui/colors"; -import { InfoCircledIcon } from "@radix-ui/react-icons"; import { useRouter } from "next/navigation"; -import { useForm, UseFormReturn, useWatch } from "react-hook-form"; +import { useForm } from "react-hook-form"; import { Address, formatUnits } from "viem"; +import { z } from "zod"; import { Button } from "#/components"; -import { BalancerWeightedForm } from "#/components/BalancerWeightedForm"; -import { ChainlinkForm } from "#/components/ChainlinkForm"; -import { CustomOracleForm } from "#/components/CustomOracleForm"; import { Input } from "#/components/Input"; -import { SelectInput } from "#/components/SelectInput"; -import { SushiForm } from "#/components/SushiForm"; +import { PriceOracleForm } from "#/components/PriceOracleForm"; import { TokenInfo } from "#/components/TokenInfo"; -import { Tooltip } from "#/components/Tooltip"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "#/components/ui/accordion"; -import { Form, FormMessage } from "#/components/ui/form"; -import { Label } from "#/components/ui/label"; -import { UniswapV2Form } from "#/components/UniswapV2Form"; +import { Form } from "#/components/ui/form"; import { useRawTxData } from "#/hooks/useRawTxData"; import { ICowAmm } from "#/lib/fetchAmmData"; import { ammEditSchema } from "#/lib/schema"; import { buildTxEditAMMArgs } from "#/lib/transactionFactory"; -import { PRICE_ORACLES, PriceOraclesValue } from "#/lib/types"; import { cn } from "#/lib/utils"; export function EditAMMForm({ @@ -42,7 +33,7 @@ export function EditAMMForm({ }) { const router = useRouter(); - const form = useForm({ + const form = useForm>({ // @ts-ignore resolver: zodResolver(ammEditSchema), defaultValues: { @@ -53,20 +44,7 @@ export function EditAMMForm({ minTradedToken0: Number( formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals), ), - priceOracle: cowAmmData.decodedPriceOracleData[0], - balancerPoolId: cowAmmData.decodedPriceOracleData[1].balancerPoolId, - uniswapV2Pair: cowAmmData.decodedPriceOracleData[1].uniswapV2PairAddress, - sushiV2Pair: cowAmmData.decodedPriceOracleData[1].sushiSwapPairAddress, - chainlinkPriceFeed0: - cowAmmData.decodedPriceOracleData[1].chainlinkPriceFeed0, - chainlinkPriceFeed1: - cowAmmData.decodedPriceOracleData[1].chainlinkPriceFeed1, - chainlinkTimeThresholdInHours: - cowAmmData.decodedPriceOracleData[1].chainlinkTimeThresholdInHours, - customPriceOracleAddress: - cowAmmData.decodedPriceOracleData[1].customPriceOracleAddress, - customPriceOracleData: - cowAmmData.decodedPriceOracleData[1].customPriceOracleData, + priceOracleSchema: cowAmmData.decodedPriceOracleData, }, }); @@ -94,6 +72,7 @@ export function EditAMMForm({ }; return ( + // @ts-ignore
Token Pair @@ -102,7 +81,7 @@ export function EditAMMForm({
- + ); } - -function PriceOracleFields({ - form, -}: { - form: UseFormReturn; -}) { - const { - setValue, - control, - formState: { errors }, - } = form; - - const priceOracle = useWatch({ control, name: "priceOracle" }); - - return ( -
-
-
-
- - - - -
- ({ - id: value, - value, - }))} - onValueChange={(priceOracle) => { - setValue("priceOracle", priceOracle as PriceOraclesValue); - }} - placeholder={priceOracle} - /> - {errors.priceOracle && ( - -

- {errors.priceOracle.message as string} -

-
- )} -
-
- - {priceOracle === PRICE_ORACLES.BALANCER && ( - - )} - {priceOracle === PRICE_ORACLES.UNI && } - {priceOracle === PRICE_ORACLES.CUSTOM && } - {priceOracle === PRICE_ORACLES.SUSHI && } - {priceOracle === PRICE_ORACLES.CHAINLINK && } -
- ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx index bf464e2e4..694d5b899 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx @@ -1,5 +1,6 @@ "use client"; -import { formatNumber } from "@bleu/utils/formatNumber"; + +import { formatNumber } from "@bleu/ui"; import { tomatoDark } from "@radix-ui/colors"; import { InfoCircledIcon } from "@radix-ui/react-icons"; @@ -15,7 +16,7 @@ export function PoolCompositionTable({ cowAmm }: { cowAmm: ICowAmm }) { Tokens @@ -49,7 +50,7 @@ export function PoolCompositionTable({ cowAmm }: { cowAmm: ICowAmm }) { 2, "decimal", "compact", - 0.01, + 0.01 )} {!token.usdPrice && } diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx index 2b912c134..28de23165 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx @@ -36,7 +36,7 @@ export function PriceInformation({ cowAmm }: { cowAmm: ICowAmm }) { [PRICE_ORACLES.CUSTOM]: "Using price information from custom contract", } as const; - const priceOracle = decodedPriceOracleData[0]; + const priceOracle = decodedPriceOracleData.priceOracle; const label = labels[priceOracle]; diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx index c3fd01b18..fbe0d8c91 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx @@ -22,7 +22,10 @@ export function TradingControlButton({ ammData }: { ammData: ICowAmm }) { function EnableAMMButton({ ammData }: { ammData: ICowAmm }) { return ( - @@ -41,6 +44,8 @@ function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { type: TRANSACTION_TYPES.DISABLE_COW_AMM, amm: ammData.order.owner, chainId: chainId as ChainId, + hash: ammData.order.hash, + version: ammData.version, } as DisableCoWAMMArgs; try { await sendTransactions([txArgs]); diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx new file mode 100644 index 000000000..b8e735460 --- /dev/null +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx @@ -0,0 +1,40 @@ +import { Address } from "viem"; + +import { DepositForm } from "#/components/DepositForm"; +import { FormPageWrapper } from "#/components/FormPageWrapper"; +import { fetchAmmData, ICowAmm } from "#/lib/fetchAmmData"; +import { fetchWalletTokenBalance } from "#/lib/tokenUtils"; +import { ChainId } from "#/utils/chainsPublicClients"; + +export default async function Page({ + params, +}: { + params: { userId: string; id: `0x${string}` }; +}) { + const ammData = (await fetchAmmData(params.id)) as ICowAmm; + const [walletBalanceToken0, walletBalanceToken1] = await Promise.all([ + fetchWalletTokenBalance({ + token: ammData.token0, + walletAddress: ammData.user.address as Address, + chainId: ammData.order.chainId as ChainId, + }), + fetchWalletTokenBalance({ + token: ammData.token1, + walletAddress: ammData.user.address as Address, + chainId: ammData.order.chainId as ChainId, + }), + ]); + + return ( + + + + ); +} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx index bc5ff7076..31efe1f6f 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx @@ -1,9 +1,15 @@ import { formatNumber } from "@bleu/utils/formatNumber"; -import { ArrowTopRightIcon, Pencil2Icon } from "@radix-ui/react-icons"; +import { + ArrowTopRightIcon, + Pencil2Icon, + ResetIcon, +} from "@radix-ui/react-icons"; import Link from "next/link"; import { Address } from "viem"; import { Button } from "#/components/Button"; +import { LinkComponent } from "#/components/Link"; +import { OldVersionOfAMMAlert } from "#/components/OldVersionOfAmmAlert"; import { buildAccountCowExplorerUrl } from "#/lib/cowExplorer"; import { fetchAmmData } from "#/lib/fetchAmmData"; import { ChainId } from "#/utils/chainsPublicClients"; @@ -18,10 +24,12 @@ export default async function Page({ params: { userId: string; id: string }; }) { const ammData = await fetchAmmData(params.id); + const oldVersionOfAmm = ammData.version !== "Standalone"; return (
+ {oldVersionOfAmm && }

@@ -75,21 +83,44 @@ export default async function Page({

+ + + {!ammData.disabled && ( - + + + )} - + + + + - +
diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx index 38dd343a4..5f69f252a 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx @@ -1,15 +1,30 @@ import Link from "next/link"; import { Button } from "#/components"; -import { fetchAllStandAloneAmmsFromUser } from "#/lib/fetchAmmData"; +import { OldVersionOfAMMAlert } from "#/components/OldVersionOfAmmAlert"; +import { TxPendingAlertCard } from "#/components/TxPendingAlertCard"; +import { fetchUserAmmsData, ICowAmm, validateUserId } from "#/lib/fetchAmmData"; +import { fetchHasAmmTxPending } from "#/lib/fetchHasAmmTxPending"; import { AmmsTable } from "./(components)/AmmsTable"; export default async function Page({ params }: { params: { userId: string } }) { - const standaloneAmmData = await fetchAllStandAloneAmmsFromUser(params.userId); + const [userAddress, chainId] = validateUserId(params.userId); + + const [standaloneAmmData, hasAmmTxPending] = await Promise.all([ + fetchUserAmmsData(params.userId) as Promise, + fetchHasAmmTxPending({ address: userAddress, chainId }) as Promise, + ]); + + const oldVersionOfAmm = standaloneAmmData.find( + (amm) => amm.version !== "Standalone" + ); + return (
+ {oldVersionOfAmm && } + {hasAmmTxPending && }

My CoW AMMs

diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index 27c7af69f..33c6323ea 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -1,36 +1,27 @@ import { toast } from "@bleu/ui"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { zodResolver } from "@hookform/resolvers/zod"; -import { brownDark } from "@radix-ui/colors"; -import { InfoCircledIcon } from "@radix-ui/react-icons"; import { useRouter } from "next/navigation"; import { useEffect } from "react"; -import { useForm, UseFormReturn, useWatch } from "react-hook-form"; +import { useForm, useWatch } from "react-hook-form"; +import { z } from "zod"; import { Button } from "#/components"; -import { BalancerWeightedForm } from "#/components/BalancerWeightedForm"; -import { ChainlinkForm } from "#/components/ChainlinkForm"; -import { CustomOracleForm } from "#/components/CustomOracleForm"; import { Input } from "#/components/Input"; -import { SelectInput } from "#/components/SelectInput"; -import { SushiForm } from "#/components/SushiForm"; +import { PriceOracleForm } from "#/components/PriceOracleForm"; import { TokenSelect } from "#/components/TokenSelect"; -import { Tooltip } from "#/components/Tooltip"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "#/components/ui/accordion"; -import { Form, FormMessage } from "#/components/ui/form"; -import { Label } from "#/components/ui/label"; -import { UniswapV2Form } from "#/components/UniswapV2Form"; +import { Form } from "#/components/ui/form"; import { useRawTxData } from "#/hooks/useRawTxData"; import { IToken } from "#/lib/fetchAmmData"; import { ammFormSchema } from "#/lib/schema"; import { getNewMinTradeToken0 } from "#/lib/tokenUtils"; import { buildTxCreateAMMArgs } from "#/lib/transactionFactory"; -import { PRICE_ORACLES, PriceOraclesValue } from "#/lib/types"; import { cn } from "#/lib/utils"; import { ChainId } from "#/utils/chainsPublicClients"; @@ -42,12 +33,15 @@ export function CreateAMMForm({ userId }: { userId: string }) { } = useSafeAppsSDK(); const router = useRouter(); - const form = useForm({ + const form = useForm>({ // @ts-ignore resolver: zodResolver(ammFormSchema), defaultValues: { safeAddress, chainId, + priceOracleSchema: { + chainId: chainId as ChainId, + }, }, }); @@ -60,10 +54,16 @@ export function CreateAMMForm({ userId }: { userId: string }) { const [token0, token1, priceOracle, amount0, amount1] = useWatch({ control, - name: ["token0", "token1", "priceOracle", "amount0", "amount1"], + name: [ + "token0", + "token1", + "priceOracleSchema.priceOracle", + "amount0", + "amount1", + ], }); - const onSubmit = async (data: typeof ammFormSchema._type) => { + const onSubmit = async (data: z.output) => { const txArgs = buildTxCreateAMMArgs({ data }); try { @@ -83,6 +83,7 @@ export function CreateAMMForm({ userId }: { userId: string }) { }, [safeAddress, setValue]); return ( + // @ts-ignore
@@ -128,25 +129,20 @@ export function CreateAMMForm({ userId }: { userId: string }) {
Token amounts - + {/* @ts-ignore */} +
- + {/* @ts-ignore */} +
- + {/* @ts-ignore */} + ); } - -function PriceOracleFields({ - form, -}: { - form: UseFormReturn; -}) { - const { - setValue, - formState: { errors }, - control, - } = form; - - const priceOracle = useWatch({ control, name: "priceOracle" }); - - return ( -
-
-
-
- - - - -
- ({ - id: value, - value, - }))} - onValueChange={(priceOracle) => { - setValue("priceOracle", priceOracle as PriceOraclesValue); - }} - placeholder={priceOracle} - /> - {errors.priceOracle && ( - -

- {errors.priceOracle.message as string} -

-
- )} -
-
- - {priceOracle === PRICE_ORACLES.BALANCER && ( - - )} - {priceOracle === PRICE_ORACLES.UNI && } - {priceOracle === PRICE_ORACLES.CUSTOM && } - {priceOracle === PRICE_ORACLES.SUSHI && } - {priceOracle === PRICE_ORACLES.CHAINLINK && } -
- ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx index 5090f660c..1cc2edca6 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx @@ -2,33 +2,37 @@ import { convertStringToNumberAndRoundDown } from "@bleu/ui"; import { formatNumber } from "@bleu/utils/formatNumber"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { useEffect, useState } from "react"; -import { UseFormReturn, useWatch } from "react-hook-form"; +import { UseFormReturn } from "react-hook-form"; import { Address } from "viem"; import { Input } from "#/components/Input"; import { IToken } from "#/lib/fetchAmmData"; -import { ammFormSchema } from "#/lib/schema"; import { fetchWalletTokenBalance } from "#/lib/tokenUtils"; import { ChainId } from "#/utils/chainsPublicClients"; +type tokenAmountForm = { + amount0: number; + amount1: number; +}; + export function TokenAmountInput({ - tokenFieldForm, + token, form, fieldName, + defaultWalletAmount, }: { - tokenFieldForm: "token0" | "token1"; - form: UseFormReturn; + token: IToken | undefined; + form: UseFormReturn; fieldName: "amount0" | "amount1"; + defaultWalletAmount?: string; }) { const { safe: { safeAddress, chainId }, } = useSafeAppsSDK(); - const [walletAmount, setWalletAmount] = useState(""); - const { setValue, register, control } = form; - - const token = useWatch({ control, name: tokenFieldForm }) as - | IToken - | undefined; + const [walletAmount, setWalletAmount] = useState( + defaultWalletAmount || "" + ); + const { setValue, register } = form; async function updateWalletAmount(token: IToken) { const updatedWalletAmount = await fetchWalletTokenBalance({ @@ -41,22 +45,24 @@ export function TokenAmountInput({ useEffect(() => { if (!token) return; + if (defaultWalletAmount) return; updateWalletAmount(token); - }, [token, safeAddress, chainId]); + }, [token, safeAddress, chainId, defaultWalletAmount]); const maxButtonDisabled = walletAmount == "0" || !token; return ( -
+
- Wallet Balance:{" "} + Balance:{" "} {formatNumber(walletAmount, 4, "decimal", "standard", 0.0001)} diff --git a/apps/cow-amm-deployer/src/app/page.tsx b/apps/cow-amm-deployer/src/app/page.tsx index 64ba9ae3e..58c016469 100644 --- a/apps/cow-amm-deployer/src/app/page.tsx +++ b/apps/cow-amm-deployer/src/app/page.tsx @@ -41,18 +41,15 @@ export default function Page() { supplies liquidity for trades made on CoW Protocol. Solvers compete with each other for the right to trade against the AMM - - Go to the app - - } - /> + + +
diff --git a/apps/cow-amm-deployer/src/components/AlertCard.tsx b/apps/cow-amm-deployer/src/components/AlertCard.tsx index a3c0e3c26..caa190227 100644 --- a/apps/cow-amm-deployer/src/components/AlertCard.tsx +++ b/apps/cow-amm-deployer/src/components/AlertCard.tsx @@ -1,4 +1,3 @@ -import { capitalize } from "@bleu/utils"; import cn from "clsx"; export function AlertCard({ @@ -15,14 +14,12 @@ export function AlertCard({
- {capitalize(style)}: {title} + {title}
-
+
{children}
diff --git a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx index 3990665eb..af7e587a3 100644 --- a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx +++ b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx @@ -4,16 +4,19 @@ import { toast } from "@bleu/ui"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; import { Address } from "viem"; +import { z } from "zod"; import { Input } from "#/components/Input"; import { pools } from "#/lib/gqlBalancer"; +import { ammEditSchema, ammFormSchema } from "#/lib/schema"; import { loadDEXPriceCheckerErrorText } from "#/lib/utils"; export function BalancerWeightedForm({ form, }: { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - form: UseFormReturn; + form: UseFormReturn< + z.input | z.input + >; }) { const { register, setValue, control } = form; const { @@ -29,7 +32,7 @@ export function BalancerWeightedForm({
+ + ); +} diff --git a/apps/cow-amm-deployer/src/components/FormPageWrapper.tsx b/apps/cow-amm-deployer/src/components/FormPageWrapper.tsx index 390466954..5a6c76061 100644 --- a/apps/cow-amm-deployer/src/components/FormPageWrapper.tsx +++ b/apps/cow-amm-deployer/src/components/FormPageWrapper.tsx @@ -27,12 +27,10 @@ export function FormPageWrapper({
- -
- } - /> + className="absolute left-8 flex h-full items-center" + > + +
{formTitle}
diff --git a/apps/cow-amm-deployer/src/components/Link.tsx b/apps/cow-amm-deployer/src/components/Link.tsx index fbb4a1a7f..395a9d374 100644 --- a/apps/cow-amm-deployer/src/components/Link.tsx +++ b/apps/cow-amm-deployer/src/components/Link.tsx @@ -8,20 +8,25 @@ import { Spinner } from "./Spinner"; export function LinkComponent({ href, - content, + children, + className, }: { href: Url; - content: React.ReactElement; + children: React.ReactElement; + className?: string; }) { const [isLoading, setIsLoading] = React.useState(false); - const ClonedElement = React.cloneElement(content, { + const ClonedElement = React.cloneElement(children, { onClick: () => setIsLoading(true), - children: isLoading ? : content.props.children, + children: isLoading ? : children.props.children, }); + if (children.props.disabled) { + return
{ClonedElement}
; + } return ( - + {ClonedElement} ); diff --git a/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx new file mode 100644 index 000000000..f7495b35e --- /dev/null +++ b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx @@ -0,0 +1,50 @@ +"use client"; + +import { toast } from "@bleu/ui"; +import { useState } from "react"; + +import { Button } from "#/components"; +import { AlertCard } from "#/components/AlertCard"; +import { useRawTxData } from "#/hooks/useRawTxData"; +import { ICowAmm } from "#/lib/fetchAmmData"; +import { buildMigrateToStandaloneVersionArgs } from "#/lib/transactionFactory"; + +import { Spinner } from "./Spinner"; + +export function OldVersionOfAMMAlert({ ammData }: { ammData: ICowAmm }) { + const { sendTransactions } = useRawTxData(); + const [isLoading, setIsLoading] = useState(false); + return ( +
+ +

+ A old version of the CoW AMM was detected. There is more gas efficient + version of the CoW AMM available. Migrate the funds of this AMM to the + new version clicking on the button bellow. +

+ +
+
+ ); +} diff --git a/apps/cow-amm-deployer/src/components/PriceOracleForm.tsx b/apps/cow-amm-deployer/src/components/PriceOracleForm.tsx new file mode 100644 index 000000000..391080725 --- /dev/null +++ b/apps/cow-amm-deployer/src/components/PriceOracleForm.tsx @@ -0,0 +1,84 @@ +import { brownDark } from "@radix-ui/colors"; +import { InfoCircledIcon } from "@radix-ui/react-icons"; +import { UseFormReturn, useWatch } from "react-hook-form"; +import { z } from "zod"; + +import { ammEditSchema, ammFormSchema } from "#/lib/schema"; +import { PRICE_ORACLES, PriceOraclesValue } from "#/lib/types"; + +import { BalancerWeightedForm } from "./BalancerWeightedForm"; +import { ChainlinkForm } from "./ChainlinkForm"; +import { CustomOracleForm } from "./CustomOracleForm"; +import { SelectInput } from "./SelectInput"; +import { SushiForm } from "./SushiForm"; +import { Tooltip } from "./Tooltip"; +import { FormMessage } from "./ui/form"; +import { Label } from "./ui/label"; +import { UniswapV2Form } from "./UniswapV2Form"; + +export function PriceOracleForm({ + form, +}: { + form: UseFormReturn< + z.input | z.input + >; +}) { + const { + setValue, + formState: { errors }, + control, + } = form; + + const priceOracle = useWatch({ + control, + name: "priceOracleSchema.priceOracle", + }); + + return ( +
+
+
+
+ + + + +
+ ({ + id: value, + value, + }))} + onValueChange={(priceOracle) => { + setValue( + "priceOracleSchema.priceOracle", + priceOracle as PriceOraclesValue + ); + }} + placeholder={priceOracle} + /> + {errors.priceOracleSchema?.priceOracle && ( + +

+ {errors.priceOracleSchema?.priceOracle?.message as string} +

+
+ )} +
+
+ + {priceOracle === PRICE_ORACLES.BALANCER && ( + + )} + {priceOracle === PRICE_ORACLES.UNI && } + {priceOracle === PRICE_ORACLES.CUSTOM && } + {priceOracle === PRICE_ORACLES.SUSHI && } + {priceOracle === PRICE_ORACLES.CHAINLINK && } +
+ ); +} diff --git a/apps/cow-amm-deployer/src/components/SushiForm.tsx b/apps/cow-amm-deployer/src/components/SushiForm.tsx index 238e7dd97..3eb20cf1e 100644 --- a/apps/cow-amm-deployer/src/components/SushiForm.tsx +++ b/apps/cow-amm-deployer/src/components/SushiForm.tsx @@ -2,16 +2,19 @@ import { toast } from "@bleu/ui"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; import { Address } from "viem"; +import { z } from "zod"; import { Input } from "#/components/Input"; import { pairs } from "#/lib/gqlSushi"; +import { ammEditSchema, ammFormSchema } from "#/lib/schema"; import { loadDEXPriceCheckerErrorText } from "#/lib/utils"; export function SushiForm({ form, }: { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - form: UseFormReturn; + form: UseFormReturn< + z.input | z.input + >; }) { const { register, setValue, control } = form; const { @@ -27,7 +30,7 @@ export function SushiForm({
{children} @@ -112,7 +112,7 @@ function HeaderCell({ className={cn( "text-left text-md font-bold", onClick ? "cursor-pointer" : "", - classNames, + classNames )} > {children} @@ -203,7 +203,7 @@ function BodyCell({ className={cn( "whitespace-nowrap text-sm", customWidth ? cn(customWidth, "pl-4") : padding, - classNames, + classNames )} colSpan={colSpan} > diff --git a/apps/cow-amm-deployer/src/components/TokenInfo.tsx b/apps/cow-amm-deployer/src/components/TokenInfo.tsx index 1002a0eed..13b1c203f 100644 --- a/apps/cow-amm-deployer/src/components/TokenInfo.tsx +++ b/apps/cow-amm-deployer/src/components/TokenInfo.tsx @@ -5,7 +5,13 @@ import { TokenLogo } from "#/components/TokenLogo"; import { IToken, ITokenExtended } from "#/lib/fetchAmmData"; import { ChainId } from "#/utils/chainsPublicClients"; -export function TokenInfo({ token }: { token: IToken | ITokenExtended }) { +export function TokenInfo({ + token, + showBalance = true, +}: { + token: IToken | ITokenExtended; + showBalance?: boolean; +}) { const { safe } = useSafeAppsSDK(); return ( @@ -25,6 +31,7 @@ export function TokenInfo({ token }: { token: IToken | ITokenExtended }) { {token.symbol}{" "} {"balance" in token && + showBalance && `(${formatNumber(token.balance, 4, "decimal", "compact", 0.001)})`} ); diff --git a/apps/cow-amm-deployer/src/components/TxPendingAlertCard.tsx b/apps/cow-amm-deployer/src/components/TxPendingAlertCard.tsx new file mode 100644 index 000000000..444c72919 --- /dev/null +++ b/apps/cow-amm-deployer/src/components/TxPendingAlertCard.tsx @@ -0,0 +1,15 @@ +import { AlertCard } from "./AlertCard"; + +export function TxPendingAlertCard() { + return ( +
+ +

+ There is a pending transaction related to the CoW AMM. Please take + care staking multiple CoW AMM actions since they can interfere with + each other. +

+
+
+ ); +} diff --git a/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx b/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx index 2ba278a4d..0f5af3734 100644 --- a/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx +++ b/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx @@ -2,16 +2,19 @@ import { toast } from "@bleu/ui"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; import { Address } from "viem"; +import { z } from "zod"; import { Input } from "#/components/Input"; import { pairs } from "#/lib/gqlUniswapV2"; +import { ammEditSchema, ammFormSchema } from "#/lib/schema"; import { loadDEXPriceCheckerErrorText } from "#/lib/utils"; export function UniswapV2Form({ form, }: { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - form: UseFormReturn; + form: UseFormReturn< + z.input | z.input + >; }) { const { register, setValue, control } = form; const { @@ -26,7 +29,7 @@ export function UniswapV2Form({
{children} @@ -112,7 +112,7 @@ function HeaderCell({ className={cn( "text-left text-md font-bold", onClick ? "cursor-pointer" : "", - classNames + classNames, )} > {children} @@ -203,7 +203,7 @@ function BodyCell({ className={cn( "whitespace-nowrap text-sm", customWidth ? cn(customWidth, "pl-4") : padding, - classNames + classNames, )} colSpan={colSpan} > diff --git a/apps/cow-amm-deployer/src/lib/decodePriceOracle.ts b/apps/cow-amm-deployer/src/lib/decodePriceOracle.ts index f3caa8d28..bb3c8d92a 100644 --- a/apps/cow-amm-deployer/src/lib/decodePriceOracle.ts +++ b/apps/cow-amm-deployer/src/lib/decodePriceOracle.ts @@ -33,7 +33,7 @@ export async function decodePriceOracleWithData({ ) { const [balancerPoolId] = decodeAbiParameters( [{ type: "bytes32", name: "poolId" }], - priceOracleData + priceOracleData, ); return { chainId, @@ -51,7 +51,7 @@ export async function decodePriceOracleWithData({ ) { const [pairAddress] = decodeAbiParameters( [{ type: "address", name: "pairAddress" }], - priceOracleData + priceOracleData, ); const pairFactory = await publicClient.readContract({ address: pairAddress as Address, @@ -90,7 +90,7 @@ export async function decodePriceOracleWithData({ { type: "uint256", name: "timeThreshold" }, { type: "uint256", name: "backoff" }, ], - priceOracleData + priceOracleData, ); const chainlinkTimeThresholdInHours = Number(timeThreshold) / 3600; return { diff --git a/apps/cow-amm-deployer/src/lib/fetchAmmData.ts b/apps/cow-amm-deployer/src/lib/fetchAmmData.ts index ca507052a..acd935109 100644 --- a/apps/cow-amm-deployer/src/lib/fetchAmmData.ts +++ b/apps/cow-amm-deployer/src/lib/fetchAmmData.ts @@ -140,7 +140,7 @@ export function validateUserId(id: string) { } async function fetchPriceFeedLinks( - decodedData: PriceOracleData + decodedData: PriceOracleData, ): Promise { switch (decodedData.priceOracle) { case PRICE_ORACLES.UNI: { @@ -264,7 +264,7 @@ export const getAmmData = cache( chainId: subgraphData.order.chainId, priceFeedLinks, } as ICowAmm; - } + }, ); export const fetchAmmData = cache(async (ammId: string): Promise => { @@ -314,15 +314,15 @@ export const fetchUserAmmsData = cache( const { constantProductDatas } = await request( NEXT_PUBLIC_API_URL, ALL_STANDALONE_AMMS_FROM_USER_QUERY, - { userId } + { userId }, ); const allAmms = (await Promise.all( - constantProductDatas.items.map((amm) => getAmmData(amm)) + constantProductDatas.items.map((amm) => getAmmData(amm)), )) as ICowAmm[]; return allAmms.filter( - (amm) => amm.version === "Standalone" || !amm.disabled + (amm) => amm.version === "Standalone" || !amm.disabled, ); - } + }, ); diff --git a/apps/cow-amm-deployer/src/lib/fetchHasAmmTxPending.ts b/apps/cow-amm-deployer/src/lib/fetchHasAmmTxPending.ts index 5f9cddee4..5fcce7367 100644 --- a/apps/cow-amm-deployer/src/lib/fetchHasAmmTxPending.ts +++ b/apps/cow-amm-deployer/src/lib/fetchHasAmmTxPending.ts @@ -17,7 +17,7 @@ export const fetchHasAmmTxPending = cache( async ({ chainId, address }: { chainId: ChainId; address: string }) => { const queuedObjs = await getTransactionQueue(String(chainId), address); const queuedTxs = queuedObjs.results.filter( - (obj) => obj.type === "TRANSACTION" + (obj) => obj.type === "TRANSACTION", ) as Transaction[]; const txInfos = queuedTxs .map((tx) => tx.transaction.txInfo) @@ -29,7 +29,7 @@ export const fetchHasAmmTxPending = cache( const anyTxToProductConstantFactory = txInfos.some( (txInfo) => txInfo.to.value.toLowerCase() === - COW_CONSTANT_PRODUCT_FACTORY[chainId].toLowerCase() + COW_CONSTANT_PRODUCT_FACTORY[chainId].toLowerCase(), ); // early return to avoid unnecessary calls to getTransactionDetails @@ -40,13 +40,13 @@ export const fetchHasAmmTxPending = cache( const multisendTxs = queuedTxs.filter( (tx) => tx.transaction.txInfo.type === TransactionInfoType.CUSTOM && - tx.transaction.txInfo.methodName === "multiSend" + tx.transaction.txInfo.methodName === "multiSend", ) as Transaction[]; const txDetails = await Promise.all( multisendTxs.map((tx) => - getTransactionDetails(String(chainId), tx.transaction.id) - ) + getTransactionDetails(String(chainId), tx.transaction.id), + ), ); const anyMultiSendTxToProductConstantFactory = txDetails.some( @@ -57,11 +57,11 @@ export const fetchHasAmmTxPending = cache( return txsInsideMultisend.some( (tx) => tx.to.toLowerCase() === - COW_CONSTANT_PRODUCT_FACTORY[chainId].toLowerCase() + COW_CONSTANT_PRODUCT_FACTORY[chainId].toLowerCase(), ); - } + }, ); return anyMultiSendTxToProductConstantFactory; - } + }, ); diff --git a/apps/cow-amm-deployer/src/lib/schema.ts b/apps/cow-amm-deployer/src/lib/schema.ts index 41b87d1b1..d932494c0 100644 --- a/apps/cow-amm-deployer/src/lib/schema.ts +++ b/apps/cow-amm-deployer/src/lib/schema.ts @@ -46,7 +46,7 @@ export const balancerPriceOracleSchema = z }), priceOracleData: encodeAbiParameters( [{ name: "poolId", type: "bytes32" }], - [data.poolId as `0x${string}`] + [data.poolId as `0x${string}`], ), }; }); @@ -65,7 +65,7 @@ export const uniswapV2PriceOracleSchema = z }), priceOracleData: encodeAbiParameters( [{ name: "pairAddress", type: "address" }], - [data.pairAddress as Address] + [data.pairAddress as Address], ), }; }); @@ -84,7 +84,7 @@ export const sushiV2PriceOracleSchema = z }), priceOracleData: encodeAbiParameters( [{ name: "pairAddress", type: "address" }], - [data.pairAddress as Address] + [data.pairAddress as Address], ), }; }); @@ -115,7 +115,7 @@ export const chainlinkPriceOracleSchema = z data.feed1 as Address, BigInt((data.timeThresholdInHours * 3600).toFixed()), BigInt(1), - ] + ], ), }; }); @@ -163,7 +163,7 @@ export const ammFormSchema = z { message: "Tokens must be different", path: ["token0"], - } + }, ) .superRefine(async (data, ctx) => { // validate if there are balances of tokens @@ -197,7 +197,7 @@ export const ammFormSchema = z code: z.ZodIssueCode.custom, message: `Insufficient balance`, path: [x], - }) + }), ); return !path.length; }) @@ -311,7 +311,7 @@ export const ammWithdrawSchema = z.object({ export const getDepositSchema = ( walletAmount0: number, - walletAmount1: number + walletAmount1: number, ) => z .object({ @@ -332,5 +332,5 @@ export const getDepositSchema = ( { message: "At least one of the amounts must be greater than 0", path: ["bothAmountsAreZero"], - } + }, ); diff --git a/apps/cow-amm-deployer/src/lib/transactionFactory.ts b/apps/cow-amm-deployer/src/lib/transactionFactory.ts index 814570de4..534014444 100644 --- a/apps/cow-amm-deployer/src/lib/transactionFactory.ts +++ b/apps/cow-amm-deployer/src/lib/transactionFactory.ts @@ -277,7 +277,7 @@ const TRANSACTION_CREATORS: { export class TransactionFactory { static createRawTx( type: T, - args: TransactionBindings[T] + args: TransactionBindings[T], ): BaseTransaction { const TransactionCreator = TRANSACTION_CREATORS[type]; const txCreator = new TransactionCreator(); @@ -311,7 +311,7 @@ export function buildTxCreateAMMArgs({ amount1: parseUnits(String(data.amount1), data.token1.decimals), minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals + data.token0.decimals, ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -333,7 +333,7 @@ export function buildTxEditAMMArgs({ amm: ammAddress, minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals + data.token0.decimals, ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -370,7 +370,7 @@ export function buildDepositAmmArgs({ ] as ERC20ApproveArgs[]; const nonZeroApproves = approvesArgs.filter( - (approve) => approve.amount !== BigInt(0) + (approve) => approve.amount !== BigInt(0), ); return [ From 32e82bafc3c90def97a030c0777617650a4ac1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 13:23:33 -0300 Subject: [PATCH 05/22] rename useGnosisTransaction to useSafeTransaction --- apps/example-tx-manager/next-env.d.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/example-tx-manager/next-env.d.ts diff --git a/apps/example-tx-manager/next-env.d.ts b/apps/example-tx-manager/next-env.d.ts new file mode 100644 index 000000000..4f11a03dc --- /dev/null +++ b/apps/example-tx-manager/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. From 0ff74b2fdee2091527e4568c986185d597b4c14c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 13:52:36 -0300 Subject: [PATCH 06/22] add wagmi to cowamm --- apps/cow-amm-deployer/package.json | 2 + .../new/(components)/CreateAMMForm.tsx | 61 +- .../src/components/RootLayout.tsx | 38 +- .../src/hooks/tx-manager/useAutoConnect.ts | 20 + .../hooks/tx-manager/useIsWalletContract.ts | 20 + .../hooks/tx-manager/useManagedTransaction.ts | 86 + .../hooks/tx-manager/useSafeTransaction.ts | 99 + .../useWaitForTransactionReceiptWrapped.ts | 46 + apps/cow-amm-deployer/src/wagmi.ts | 23 + pnpm-lock.yaml | 1774 ++++++++++++++--- 10 files changed, 1921 insertions(+), 248 deletions(-) create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useAutoConnect.ts create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useIsWalletContract.ts create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts create mode 100644 apps/cow-amm-deployer/src/wagmi.ts diff --git a/apps/cow-amm-deployer/package.json b/apps/cow-amm-deployer/package.json index 90610b204..0df3c563e 100644 --- a/apps/cow-amm-deployer/package.json +++ b/apps/cow-amm-deployer/package.json @@ -43,6 +43,7 @@ "@safe-global/protocol-kit": "^3.0.1", "@safe-global/safe-core-sdk-types": "^4.0.1", "@safe-global/safe-gateway-typescript-sdk": "^3.21.1", + "@tanstack/react-query": "5.40.1", "babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", @@ -67,6 +68,7 @@ "tailwindcss-animate": "^1.0.7", "tiny-invariant": "^1.3.3", "viem": "^2.13.1", + "wagmi": "^2.9.11", "zod": "^3.23.8" }, "devDependencies": { diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index 33c6323ea..fd21c42a8 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -4,6 +4,7 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { useRouter } from "next/navigation"; import { useEffect } from "react"; import { useForm, useWatch } from "react-hook-form"; +import { encodeAbiParameters, encodePacked, size } from "viem"; import { z } from "zod"; import { Button } from "#/components"; @@ -17,11 +18,15 @@ import { AccordionTrigger, } from "#/components/ui/accordion"; import { Form } from "#/components/ui/form"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { useRawTxData } from "#/hooks/useRawTxData"; import { IToken } from "#/lib/fetchAmmData"; import { ammFormSchema } from "#/lib/schema"; import { getNewMinTradeToken0 } from "#/lib/tokenUtils"; -import { buildTxCreateAMMArgs } from "#/lib/transactionFactory"; +import { + buildTxCreateAMMArgs, + TransactionFactory, +} from "#/lib/transactionFactory"; import { cn } from "#/lib/utils"; import { ChainId } from "#/utils/chainsPublicClients"; @@ -50,8 +55,11 @@ export function CreateAMMForm({ userId }: { userId: string }) { control, formState: { errors, isSubmitting }, } = form; - const { sendTransactions } = useRawTxData(); + // const { sendTransactions } = useRawTxData(); + const { hash, error, writeContract, status, safeHash } = + useManagedTransaction(); + console.log({ error }); const [token0, token1, priceOracle, amount0, amount1] = useWatch({ control, name: [ @@ -67,9 +75,48 @@ export function CreateAMMForm({ userId }: { userId: string }) { const txArgs = buildTxCreateAMMArgs({ data }); try { - await sendTransactions(txArgs); - router.push(`${userId}/amms`); - } catch { + const txs = txArgs.map((arg) => { + const txData = TransactionFactory.createRawTx(arg.type, arg); + + const encodedTx = encodePacked( + ["uint8", "address", "uint256", "uint256", "bytes"], + [ + 1, + txData.to as `0x${string}`, + BigInt(txData.value), + // @ts-ignore + BigInt(size(txData.data)), + txData.data as `0x${string}`, + ] + ); + + return encodedTx.slice(2); + }); + + const txData = "0x" + txs.join(""); + + const multisendABI = [ + { + inputs: [ + { internalType: "bytes", name: "transactions", type: "bytes" }, + ], + name: "multiSend", + outputs: [], + stateMutability: "payable", + type: "function", + }, + ] as const; + + writeContract({ + address: "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + abi: multisendABI, + functionName: "multiSend", + args: [txData], + }); + + // router.push(`${userId}/amms`); + } catch (e) { + console.error(e); toast({ title: `Transaction failed`, description: "An error occurred while processing the transaction.", @@ -98,7 +145,7 @@ export function CreateAMMForm({ userId }: { userId: string }) { }); setValue( "minTradedToken0", - await getNewMinTradeToken0(token, chainId as ChainId), + await getNewMinTradeToken0(token, chainId as ChainId) ); }} selectedToken={(token0 as IToken) ?? undefined} @@ -148,7 +195,7 @@ export function CreateAMMForm({ userId }: { userId: string }) { Advanced Options diff --git a/apps/cow-amm-deployer/src/components/RootLayout.tsx b/apps/cow-amm-deployer/src/components/RootLayout.tsx index 82ada1ef7..df411662e 100644 --- a/apps/cow-amm-deployer/src/components/RootLayout.tsx +++ b/apps/cow-amm-deployer/src/components/RootLayout.tsx @@ -2,30 +2,42 @@ import { Toaster } from "@bleu/ui"; import SafeProvider from "@gnosis.pm/safe-apps-react-sdk"; -import React from "react"; +import React, { useState } from "react"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { TokenSelectContextProvider } from "#/contexts/tokenSelect"; import Fathom from "./Fathom"; import { Footer } from "./Footer"; import { Header } from "./Header"; +import { WagmiProvider } from "wagmi"; +import { config } from "#/wagmi"; export function RootLayout({ children }: React.PropsWithChildren) { + const [queryClient] = useState(() => new QueryClient()); + return ( - - -
-
-
-
- {children} + + + + +
+
+
+
+ {children} +
+
+ +
-
- -
-
- + + + ); } diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useAutoConnect.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useAutoConnect.ts new file mode 100644 index 000000000..d7b0dd8b1 --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useAutoConnect.ts @@ -0,0 +1,20 @@ +import { useEffect } from "react"; +import { useConnect } from "wagmi"; + +const AUTOCONNECTED_CONNECTOR_IDS = ["safe"]; + +function useAutoConnect() { + const { connect, connectors } = useConnect(); + + useEffect(() => { + AUTOCONNECTED_CONNECTOR_IDS.forEach((connector) => { + const connectorInstance = connectors.find((c) => c.id === connector); + + if (connectorInstance) { + connect({ connector: connectorInstance }); + } + }); + }, [connect, connectors]); +} + +export { useAutoConnect }; diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useIsWalletContract.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useIsWalletContract.ts new file mode 100644 index 000000000..14853b429 --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useIsWalletContract.ts @@ -0,0 +1,20 @@ +import { Address } from "viem"; +import { usePublicClient } from "wagmi"; +import { useQuery } from "wagmi/query"; + +export const useIsWalletContract = (address: Address | undefined) => { + const publicClient = usePublicClient(); + + return useQuery({ + queryKey: ["isWalletContract", address], + queryFn: async () => { + if (!address) { + return undefined; + } + const bytecode = await publicClient.getBytecode({ + address, + }); + return bytecode !== undefined; + }, + }); +}; diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts new file mode 100644 index 000000000..b5c159ce0 --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -0,0 +1,86 @@ +import { useTransactionConfirmations, useWriteContract } from "wagmi"; +import { useWaitForTransactionReceiptWrapped } from "./useWaitForTransactionReceiptWrapped"; +import { useEffect, useMemo } from "react"; +import { useSendCalls } from "wagmi/experimental"; + +const CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX = 15; + +export function useManagedTransaction() { + const { + data, + error, + status: writeStatus, + writeContract, + } = useWriteContract(); + + const { + hash, + status: txReceiptStatus, + safeHash, + safeStatus, + } = useWaitForTransactionReceiptWrapped({ + hash: data, + }); + + const { + data: blockConfirmations, + status: blockConfirmationsStatus, + fetchStatus: blockConfirmationsFetchStatus, + refetch, + } = useTransactionConfirmations({ hash }); + + useEffect(() => { + if ( + txReceiptStatus === "success" && + blockConfirmationsStatus === "success" && + Number(blockConfirmations) <= CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX + ) { + const interval = setInterval(() => { + console.log("refetching"); + refetch(); + }, 1000); + + return () => clearInterval(interval); + } + }, [blockConfirmationsStatus, txReceiptStatus]); + + const STATE = useMemo( + () => ({ + idle: + writeStatus === "idle" && + (safeStatus ? safeStatus === "safe_idle" : true), + confirming: writeStatus === "success" && txReceiptStatus === "pending", + confirmed: txReceiptStatus === "success" || safeStatus === "safe_success", + pending: writeStatus === "pending", + safeAwaitingConfirmations: safeStatus === "safe_awaiting_confirmations", + safeAwaitingExecution: safeStatus === "safe_awaiting_execution", + safeCancelled: safeStatus === "safe_cancelled", + final: + blockConfirmationsStatus === "success" && + Number(blockConfirmations) >= 1, + error: writeStatus === "error" || safeStatus === "safe_failed", + }), + [ + hash, + writeStatus, + safeStatus, + txReceiptStatus, + blockConfirmationsStatus, + blockConfirmations, + ] + ); + + const status = Object.entries(STATE).findLast( + ([, value]) => value === true + )?.[0]; + + console.log({ status, blockConfirmations, blockConfirmationsStatus }); + return { + status, + safeHash, + writeContract, + hash, + error, + blockConfirmations, + }; +} diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts new file mode 100644 index 000000000..9e70ef8cd --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts @@ -0,0 +1,99 @@ +import { useEffect, useState } from "react"; +import { useAccount, useWatchContractEvent } from "wagmi"; +import SafeAppsSDK from "@gnosis.pm/safe-apps-sdk"; +import { parseAbi } from "viem"; +import { useIsWalletContract } from "./useIsWalletContract"; +export type SafeStatus = + | "safe_idle" + | "safe_loading" + | "safe_awaiting_confirmations" + | "safe_awaiting_execution" + | "safe_failed" + | "safe_success" + | "safe_cancelled"; + +export const sdk = new SafeAppsSDK({ + allowedDomains: [/app.safe.global$/], + debug: true, +}); + +export const gnosisAbi = parseAbi([ + "event ExecutionSuccess(bytes32 txHash, uint256 payment)", +]); + +export const SAFE_STATUS_MAP = { + IDLE: "safe_idle", + AWAITING_CONFIRMATIONS: "safe_awaiting_confirmations", + AWAITING_EXECUTION: "safe_awaiting_execution", + CANCELLED: "safe_cancelled", + FAILED: "safe_failed", + SUCCESS: "safe_success", +} as const; + +export const useSafeTransaction = ({ + safeHash, +}: { + safeHash: `0x${string}` | undefined; +}): { + data: any; + error: any; + status: SafeStatus; +} => { + const [gnosisStatus, setGnosisStatus] = useState("safe_idle"); + const [txHash, setTxHash] = useState(); + const { address } = useAccount(); + const { data: isWalletContract } = useIsWalletContract(address); + + async function loadGnosisQueuedTransactions(hash?: string) { + if (!hash) return setGnosisStatus("safe_idle"); + + const queued = await sdk.txs.getBySafeTxHash(hash); + + if (!queued) { + setGnosisStatus("safe_idle"); + return undefined; + } + + setGnosisStatus(SAFE_STATUS_MAP[queued.txStatus]); + setTxHash(queued.txHash); + } + + useEffect(() => { + if (!safeHash) { + return; + } + + loadGnosisQueuedTransactions(safeHash); + const interval = setInterval(() => { + loadGnosisQueuedTransactions(safeHash); + }, 1000); + + return () => clearInterval(interval); + }, [safeHash]); + + useWatchContractEvent({ + abi: gnosisAbi, + address, + eventName: "ExecutionSuccess", + onLogs: (logs) => { + logs.forEach((log) => { + if (log.args.txHash === safeHash) { + loadGnosisQueuedTransactions(safeHash); + } + }); + }, + }); + + if (!address || !isWalletContract || !safeHash) + return { + data: undefined, + error: undefined, + status: "safe_idle", + }; + + return { + data: txHash, + error: undefined, + status: gnosisStatus, + }; +}; diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts new file mode 100644 index 000000000..6a3ead25e --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts @@ -0,0 +1,46 @@ +import { + useAccount, + // useQuery, + useWaitForTransactionReceipt, +} from "wagmi"; + +import { useIsWalletContract } from "./useIsWalletContract"; +import { useSafeTransaction } from "./useSafeTransaction"; + +export const useWaitForTransactionReceiptWrapped = ( + args: Parameters[0] +) => { + const { address } = useAccount(); + const { data: isWalletContract } = useIsWalletContract(address); + + const plain = useWaitForTransactionReceipt({ + ...args, + hash: isWalletContract === false ? args?.hash : undefined, + }); + + const gnosis = useSafeTransaction({ + safeHash: args?.hash, + }); + console.log({ gnosis, isWalletContract, address }); + const gnosisData = useWaitForTransactionReceipt({ + ...args, + hash: gnosis.data, + }); + + if (isWalletContract) { + return { + safeHash: args?.hash, + ...gnosisData, + hash: gnosis.data, + safeStatus: gnosis.status, + status: gnosisData.status, + }; + } + + return { + ...plain, + hash: isWalletContract === false ? args?.hash : undefined, + safeHash: null, + safeStatus: null, + }; +}; diff --git a/apps/cow-amm-deployer/src/wagmi.ts b/apps/cow-amm-deployer/src/wagmi.ts new file mode 100644 index 000000000..b2bc3a148 --- /dev/null +++ b/apps/cow-amm-deployer/src/wagmi.ts @@ -0,0 +1,23 @@ +import { createConfig, http } from "wagmi"; +import { mainnet, sepolia } from "wagmi/chains"; +import { injected, safe } from "wagmi/connectors"; + +declare module "wagmi" { + interface Register { + config: typeof config; + } +} + +export const config = createConfig({ + chains: [sepolia], + connectors: [ + injected(), + safe({ + debug: true, + }), + ], + transports: { + [mainnet.id]: http(process.env.NEXT_PUBLIC_RPC_URL_MAINNET), + [sepolia.id]: http(process.env.NEXT_PUBLIC_RPC_URL_SEPOLIA), + }, +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e92a733f4..4b38fa2c2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,10 +105,10 @@ importers: version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@rainbow-me/rainbowkit': specifier: 1.3.1 - version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@sentry/nextjs': specifier: ^7.91.0 - version: 7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + version: 7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@sentry/profiling-node': specifier: ^1.3.2 version: 1.3.2(@sentry/node@7.104.0) @@ -117,7 +117,7 @@ importers: version: 8.0.0 '@wagmi/cli': specifier: 1.5.2 - version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@wagmi/core': specifier: ^1.4.12 version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) @@ -156,7 +156,7 @@ importers: version: 4.6.2 next: specifier: ^14.0.4 - version: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) plotly.js: specifier: ^2.27.1 version: 2.27.1 @@ -198,7 +198,7 @@ importers: version: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: ^1.4.12 - version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) zod: specifier: ^3.22.4 version: 3.22.4 @@ -271,7 +271,7 @@ importers: version: 3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + version: 29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) typescript: specifier: 5.3.3 version: 5.3.3 @@ -345,7 +345,7 @@ importers: version: link:../../packages/tsconfig '@bleu/ui': specifier: ^0.1.99 - version: 0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) '@gnosis.pm/safe-apps-react-sdk': specifier: ^4.6.2 version: 4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) @@ -415,6 +415,9 @@ importers: '@safe-global/safe-gateway-typescript-sdk': specifier: ^3.21.1 version: 3.21.1 + '@tanstack/react-query': + specifier: 5.40.1 + version: 5.40.1(react@19.0.0-rc-6f23540c7d-20240528) babel-plugin-react-compiler: specifier: 0.0.0-experimental-592953e-20240517 version: 0.0.0-experimental-592953e-20240517 @@ -487,6 +490,9 @@ importers: viem: specifier: ^2.13.1 version: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + wagmi: + specifier: ^2.9.11 + version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) zod: specifier: ^3.23.8 version: 3.23.8 @@ -824,7 +830,7 @@ importers: version: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) wagmi: specifier: latest - version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) devDependencies: '@types/node': specifier: ^20.14.2 @@ -14749,7 +14755,7 @@ snapshots: '@babel/traverse': 7.23.6 '@babel/types': 7.23.6 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -14766,16 +14772,15 @@ snapshots: '@babel/helpers': 7.24.6 '@babel/parser': 7.24.6 '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/traverse': 7.24.6 '@babel/types': 7.24.6 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - optional: true '@babel/core@7.24.6(supports-color@9.4.0)': dependencies: @@ -14885,7 +14890,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - optional: true '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.23.6)': dependencies: @@ -14899,7 +14903,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/helper-split-export-declaration': 7.24.6 semver: 6.3.1 - optional: true '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -14926,7 +14929,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/helper-split-export-declaration': 7.24.6 semver: 6.3.1 - optional: true '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.23.6)': dependencies: @@ -14934,7 +14936,6 @@ snapshots: '@babel/helper-annotate-as-pure': 7.24.6 regexpu-core: 5.3.2 semver: 6.3.1 - optional: true '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -14943,17 +14944,24 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + regexpu-core: 5.3.2 + semver: 6.3.1 + optional: true + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-compilation-targets': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - optional: true '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -14966,6 +14974,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + optional: true + '@babel/helper-environment-visitor@7.22.20': {} '@babel/helper-environment-visitor@7.24.6': {} @@ -15021,7 +15041,6 @@ snapshots: '@babel/helper-simple-access': 7.24.6 '@babel/helper-split-export-declaration': 7.24.6 '@babel/helper-validator-identifier': 7.24.6 - optional: true '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15040,7 +15059,6 @@ snapshots: '@babel/helper-simple-access': 7.24.6 '@babel/helper-split-export-declaration': 7.24.6 '@babel/helper-validator-identifier': 7.24.6 - optional: true '@babel/helper-optimise-call-expression@7.22.5': dependencies: @@ -15060,7 +15078,6 @@ snapshots: '@babel/helper-annotate-as-pure': 7.24.6 '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-wrap-function': 7.24.6 - optional: true '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15069,6 +15086,14 @@ snapshots: '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-wrap-function': 7.24.6 + '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-wrap-function': 7.24.6 + optional: true + '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15089,7 +15114,6 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - optional: true '@babel/helper-replace-supers@7.24.6(@babel/core@7.23.6)': dependencies: @@ -15097,7 +15121,6 @@ snapshots: '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-member-expression-to-functions': 7.24.6 '@babel/helper-optimise-call-expression': 7.24.6 - optional: true '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15112,7 +15135,6 @@ snapshots: '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-member-expression-to-functions': 7.24.6 '@babel/helper-optimise-call-expression': 7.24.6 - optional: true '@babel/helper-simple-access@7.22.5': dependencies: @@ -15190,17 +15212,35 @@ snapshots: dependencies: '@babel/types': 7.24.6 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15208,6 +15248,12 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15221,7 +15267,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15231,6 +15276,15 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15248,14 +15302,12 @@ snapshots: '@babel/core': 7.24.6 '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.6) '@babel/helper-plugin-utils': 7.22.5 - optional: true '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15263,12 +15315,18 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15276,12 +15334,18 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15294,14 +15358,12 @@ snapshots: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - optional: true '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15309,6 +15371,13 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/compat-data': 7.23.5 @@ -15327,12 +15396,21 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6)': + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15340,13 +15418,19 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) + optional: true + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) - optional: true '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15361,7 +15445,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) - optional: true + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15410,6 +15497,11 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 optional: true + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15419,24 +15511,39 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15451,7 +15558,6 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15462,18 +15568,27 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15521,6 +15636,12 @@ snapshots: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 + optional: true + '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15530,7 +15651,6 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6)': dependencies: @@ -15562,7 +15682,6 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.22.5 - optional: true '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6)': dependencies: @@ -15626,19 +15745,23 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.22.5 - optional: true '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15664,7 +15787,6 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15675,7 +15797,12 @@ snapshots: dependencies: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15692,13 +15819,26 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) + '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15713,7 +15853,6 @@ snapshots: '@babel/helper-module-imports': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) - optional: true '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15722,11 +15861,24 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) + optional: true + '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15741,19 +15893,37 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6) + '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15785,7 +15955,6 @@ snapshots: '@babel/helper-replace-supers': 7.24.6(@babel/core@7.23.6) '@babel/helper-split-export-declaration': 7.24.6 globals: 11.12.0 - optional: true '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15799,6 +15968,19 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.6 globals: 11.12.0 + '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) + '@babel/helper-split-export-declaration': 7.24.6 + globals: 11.12.0 + optional: true + '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15810,7 +15992,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/template': 7.24.6 - optional: true '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15818,6 +15999,13 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/template': 7.24.6 + '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/template': 7.24.6 + optional: true + '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15827,36 +16015,70 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15874,7 +16096,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) - optional: true '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15887,7 +16108,6 @@ snapshots: '@babel/core': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) - optional: true '@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6)': dependencies: @@ -15895,6 +16115,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15914,7 +16140,6 @@ snapshots: '@babel/helper-compilation-targets': 7.24.6 '@babel/helper-function-name': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15923,6 +16148,20 @@ snapshots: '@babel/helper-function-name': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15938,13 +16177,24 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15956,11 +16206,22 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -15980,7 +16241,6 @@ snapshots: '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-simple-access': 7.24.6 - optional: true '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -15995,7 +16255,14 @@ snapshots: '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6) '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-simple-access': 7.24.6 - optional: true + + '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16005,6 +16272,12 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-validator-identifier': 7.24.6 + '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16016,7 +16289,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16024,23 +16296,55 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16055,18 +16359,37 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) + '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16084,23 +16407,33 @@ snapshots: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 + optional: true + '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16108,6 +16441,13 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16115,7 +16455,6 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) - optional: true '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16125,11 +16464,25 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) + '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.24.6 + '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) + optional: true + '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16145,28 +16498,44 @@ snapshots: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.22.5 + optional: true + '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16185,12 +16554,33 @@ snapshots: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/types': 7.23.6 + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.6) + '@babel/types': 7.23.6 + optional: true + + '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + regenerator-transform: 0.15.2 + '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 regenerator-transform: 0.15.2 + '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16207,7 +16597,6 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color - optional: true '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -16221,6 +16610,19 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-module-imports': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + optional: true + '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16230,13 +16632,18 @@ snapshots: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16248,7 +16655,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - optional: true '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16256,27 +16662,49 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + optional: true + '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + optional: true + '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16289,7 +16717,6 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.23.6) - optional: true '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16306,13 +16733,23 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6) - optional: true + + '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) @@ -16324,7 +16761,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - optional: true '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16332,12 +16768,112 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) + '@babel/helper-plugin-utils': 7.24.6 + optional: true + + '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: '@babel/core': 7.24.6(supports-color@9.4.0) '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) '@babel/helper-plugin-utils': 7.24.6 + '@babel/preset-env@7.24.6(@babel/core@7.23.6)': + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.24.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.24.6 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.6) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.6) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.23.6) + '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.23.6) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.6) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.23.6) + core-js-compat: 3.37.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: '@babel/compat-data': 7.24.6 @@ -16438,7 +16974,13 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-validator-option': 7.24.6 '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6) - optional: true + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6)': + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/types': 7.24.6 + esutils: 2.0.3 '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16464,7 +17006,6 @@ snapshots: '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6) '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) - optional: true '@babel/register@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': dependencies: @@ -16483,7 +17024,6 @@ snapshots: make-dir: 2.1.0 pirates: 4.0.6 source-map-support: 0.5.21 - optional: true '@babel/regjsgen@0.8.0': {} @@ -16521,7 +17061,22 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.24.6 '@babel/types': 7.23.6 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/traverse@7.24.6': + dependencies: + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.6 + '@babel/helper-environment-visitor': 7.24.6 + '@babel/helper-function-name': 7.24.6 + '@babel/helper-hoist-variables': 7.24.6 + '@babel/helper-split-export-declaration': 7.24.6 + '@babel/parser': 7.24.6 + '@babel/types': 7.24.6 + debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -16565,7 +17120,7 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@bleu/ui@0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@bleu/ui@0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': dependencies: '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) @@ -16607,12 +17162,12 @@ snapshots: jodit-react: 4.1.2(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) object-to-formdata: 4.5.1 react: 19.0.0-rc-6f23540c7d-20240528 - react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) react-colorful: 5.6.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) react-day-picker: 8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6f23540c7d-20240528) react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) - react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) react-plotly.js: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6f23540c7d-20240528) react-router: 6.23.1(react@19.0.0-rc-6f23540c7d-20240528) react-router-dom: 6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) @@ -16668,7 +17223,7 @@ snapshots: bn.js: 5.2.1 buffer: 6.0.3 clsx: 1.2.1 - eth-block-tracker: 6.1.0(supports-color@9.4.0) + eth-block-tracker: 6.1.0 eth-json-rpc-filters: 5.1.0 eth-rpc-errors: 4.0.2 json-rpc-engine: 6.1.0 @@ -16685,6 +17240,20 @@ snapshots: - supports-color - utf-8-validate + '@coinbase/wallet-sdk@3.9.3': + dependencies: + bn.js: 5.2.1 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 7.1.0 + eth-json-rpc-filters: 6.0.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.19.3 + sha.js: 2.4.11 + transitivePeerDependencies: + - supports-color + '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)': dependencies: bn.js: 5.2.1 @@ -17062,7 +17631,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.0 @@ -17466,7 +18035,7 @@ snapshots: binary-install-raw: 0.0.13(debug@4.3.4) chalk: 3.0.0 chokidar: 3.5.3 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) docker-compose: 0.23.19 dockerode: 2.5.8 fs-extra: 9.1.0 @@ -18313,7 +18882,7 @@ snapshots: '@types/json-stable-stringify': 1.0.36 '@whatwg-node/fetch': 0.9.14 chalk: 4.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) dotenv: 16.3.1 graphql: 16.8.1 graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) @@ -18341,7 +18910,7 @@ snapshots: '@types/json-stable-stringify': 1.0.36 '@whatwg-node/fetch': 0.9.14 chalk: 4.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) dotenv: 16.3.1 graphql: 16.8.1 graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) @@ -18369,7 +18938,7 @@ snapshots: '@types/json-stable-stringify': 1.0.36 '@whatwg-node/fetch': 0.9.14 chalk: 4.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) dotenv: 16.3.1 graphql: 16.8.1 graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) @@ -18613,7 +19182,7 @@ snapshots: '@humanwhocodes/config-array@0.11.13': dependencies: '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -19080,7 +19649,7 @@ snapshots: dependencies: '@libp2p/interface-peer-id': 2.0.2 '@multiformats/multiaddr': 12.1.11 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) interface-datastore: 8.2.9 multiformats: 11.0.2 transitivePeerDependencies: @@ -19126,6 +19695,14 @@ snapshots: '@mdn/browser-compat-data@5.5.1': {} + '@metamask/eth-json-rpc-provider@1.0.1': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2 + transitivePeerDependencies: + - supports-color + '@metamask/eth-json-rpc-provider@1.0.1(supports-color@9.4.0)': dependencies: '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) @@ -19134,6 +19711,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/json-rpc-engine@7.3.3': + dependencies: + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + transitivePeerDependencies: + - supports-color + '@metamask/json-rpc-engine@7.3.3(supports-color@9.4.0)': dependencies: '@metamask/rpc-errors': 6.2.1(supports-color@9.4.0) @@ -19142,6 +19727,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/json-rpc-middleware-stream@6.0.2': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + '@metamask/json-rpc-middleware-stream@6.0.2(supports-color@9.4.0)': dependencies: '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) @@ -19160,6 +19754,23 @@ snapshots: dependencies: bowser: 2.11.0 + '@metamask/providers@15.0.0': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-middleware-stream': 6.0.2 + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + '@metamask/providers@15.0.0(supports-color@9.4.0)': dependencies: '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) @@ -19177,6 +19788,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/rpc-errors@6.2.1': + dependencies: + '@metamask/utils': 8.4.0 + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color + '@metamask/rpc-errors@6.2.1(supports-color@9.4.0)': dependencies: '@metamask/utils': 8.4.0(supports-color@9.4.0) @@ -19208,7 +19826,7 @@ snapshots: bufferutil: 4.0.8 cross-fetch: 4.0.0(encoding@0.1.13) date-fns: 2.30.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) eciesjs: 0.3.18 eventemitter2: 6.4.9 readable-stream: 3.6.2 @@ -19217,24 +19835,33 @@ snapshots: uuid: 8.3.2 transitivePeerDependencies: - supports-color - optional: true - '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': + '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': dependencies: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 - react-i18next: 14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + react-i18next: 14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4)': + '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + i18next: 22.5.1 + qr-code-styling: 1.6.0-rc.1 + react-i18next: 14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + + '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 15.0.0(supports-color@9.4.0) '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4))(supports-color@9.4.0) - '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -19268,13 +19895,13 @@ snapshots: '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 - '@metamask/providers': 15.0.0(supports-color@9.4.0) + '@metamask/providers': 15.0.0 '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) eciesjs: 0.3.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 @@ -19302,6 +19929,51 @@ snapshots: - utf-8-validate optional: true + '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(utf-8-validate@5.0.10)': + dependencies: + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 15.0.0 + '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + '@types/dom-screen-wake-lock': 1.0.3 + bowser: 2.11.0 + cross-fetch: 4.0.0(encoding@0.1.13) + debug: 4.3.4(supports-color@8.1.1) + eciesjs: 0.3.18 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + i18next: 22.5.1 + i18next-browser-languagedetector: 7.1.0 + obj-multiplex: 1.0.0 + pump: 3.0.0 + qrcode-terminal-nooctal: 0.12.1 + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + readable-stream: 3.6.2 + rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) + socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) + util: 0.12.5 + uuid: 8.3.2 + optionalDependencies: + react: 19.0.0-rc-6f23540c7d-20240528 + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + transitivePeerDependencies: + - bufferutil + - encoding + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + + '@metamask/utils@3.6.0': + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + '@metamask/utils@3.6.0(supports-color@9.4.0)': dependencies: '@types/debug': 4.1.12 @@ -19311,6 +19983,16 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/utils@5.0.2': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + semver: 7.6.2 + superstruct: 1.0.3 + transitivePeerDependencies: + - supports-color + '@metamask/utils@5.0.2(supports-color@9.4.0)': dependencies: '@ethereumjs/tx': 4.2.0 @@ -19321,6 +20003,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@metamask/utils@8.4.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.5 + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + pony-cause: 2.1.11 + semver: 7.6.2 + superstruct: 1.0.3 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + '@metamask/utils@8.4.0(supports-color@9.4.0)': dependencies: '@ethereumjs/tx': 4.2.0 @@ -19642,7 +20338,7 @@ snapshots: dependencies: '@oclif/core': 2.15.0(@types/node@20.14.2)(typescript@5.4.5) chalk: 4.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -21294,7 +21990,7 @@ snapshots: dependencies: '@babel/runtime': 7.24.0 - '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: '@vanilla-extract/css': 1.9.1 '@vanilla-extract/dynamic': 2.0.2 @@ -21307,7 +22003,7 @@ snapshots: react-remove-scroll: 2.5.4(@types/react@18.3.1)(react@18.3.1) ua-parser-js: 1.0.37 viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - '@types/react' @@ -21429,7 +22125,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@react-native-community/cli-tools@13.6.8(encoding@0.1.13)': dependencies: @@ -21500,17 +22195,15 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@react-native/assets-registry@0.74.84': {} - '@react-native/babel-plugin-codegen@0.74.84': + '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: - '@react-native/codegen': 0.74.84 + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - optional: true '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -21519,7 +22212,7 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.84(@babel/core@7.23.6)': + '@react-native/babel-preset@0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: '@babel/core': 7.23.6 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.6) @@ -21561,13 +22254,12 @@ snapshots: '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.23.6) '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.23.6) '@babel/template': 7.24.6 - '@react-native/babel-plugin-codegen': 0.74.84 + '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.6) react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/preset-env' - supports-color - optional: true '@react-native/babel-preset@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -21618,18 +22310,68 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.74.84': + '@react-native/babel-preset@0.74.84(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) + '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) + '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6) + '@babel/template': 7.24.6 + '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + optional: true + + '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: '@babel/parser': 7.24.6 + '@babel/preset-env': 7.24.6(@babel/core@7.23.6) glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 - jscodeshift: 0.14.0 + jscodeshift: 0.14.0(@babel/preset-env@7.24.6(@babel/core@7.23.6)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - optional: true '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -21644,12 +22386,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.23.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@react-native/community-cli-plugin@0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.23.6) + '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -21665,7 +22407,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: @@ -21689,6 +22430,29 @@ snapshots: - supports-color - utf-8-validate + '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + dependencies: + '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) + '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.6) + chalk: 4.1.2 + execa: 5.1.1 + metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + metro-core: 0.80.9 + node-fetch: 2.7.0(encoding@0.1.13) + querystring: 0.2.1 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + '@react-native/debugger-frontend@0.74.84': {} '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': @@ -21732,22 +22496,20 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@react-native/gradle-plugin@0.74.84': {} '@react-native/js-polyfills@0.74.84': {} - '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.23.6)': + '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: '@babel/core': 7.23.6 - '@react-native/babel-preset': 0.74.84(@babel/core@7.23.6) + '@react-native/babel-preset': 0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6)) hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@babel/preset-env' - supports-color - optional: true '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': dependencies: @@ -21759,18 +22521,38 @@ snapshots: - '@babel/preset-env' - supports-color + '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6)': + dependencies: + '@babel/core': 7.24.6 + '@react-native/babel-preset': 0.74.84(@babel/core@7.24.6) + hermes-parser: 0.19.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + optional: true + '@react-native/normalize-colors@0.74.84': {} - '@react-native/virtualized-lists@0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) optionalDependencies: '@types/react': 18.3.1 optional: true + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + invariant: 2.2.4 + nullthrows: 1.1.1 + react: 19.0.0-rc-6f23540c7d-20240528 + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + optionalDependencies: + '@types/react': 18.3.3 + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': dependencies: invariant: 2.2.4 @@ -21958,6 +22740,16 @@ snapshots: - utf-8-validate - zod + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) @@ -21988,6 +22780,16 @@ snapshots: - utf-8-validate - zod + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': + dependencies: + '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.21.1 @@ -22141,7 +22943,7 @@ snapshots: '@sentry/utils': 7.91.0 localforage: 1.10.0 - '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) '@sentry/core': 7.91.0 @@ -22153,7 +22955,7 @@ snapshots: '@sentry/vercel-edge': 7.91.0 '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13) chalk: 3.0.0 - next: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 resolve: 1.22.8 rollup: 2.78.0 @@ -22418,25 +23220,30 @@ snapshots: dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))': + '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))': dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) - '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@tanstack/query-core': 4.36.1 react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) '@tanstack/react-query@5.40.1(react@18.3.1)': dependencies: '@tanstack/query-core': 5.40.0 react: 18.3.1 + '@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@tanstack/query-core': 5.40.0 + react: 19.0.0-rc-6f23540c7d-20240528 + '@tanstack/react-table@8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': dependencies: '@tanstack/table-core': 8.17.3 @@ -22846,7 +23653,7 @@ snapshots: '@typescript-eslint/type-utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.56.0 graphemer: 1.4.0 ignore: 5.3.0 @@ -22864,7 +23671,7 @@ snapshots: '@typescript-eslint/types': 6.17.0 '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.56.0 optionalDependencies: typescript: 5.4.5 @@ -22880,7 +23687,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5) '@typescript-eslint/utils': 6.17.0(eslint@8.56.0)(typescript@5.4.5) - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.56.0 ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: @@ -22894,7 +23701,7 @@ snapshots: dependencies: '@typescript-eslint/types': 6.17.0 '@typescript-eslint/visitor-keys': 6.17.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -22985,7 +23792,7 @@ snapshots: '@vue/shared@3.4.27': {} - '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) abort-controller: 3.0.0 @@ -23012,7 +23819,7 @@ snapshots: optionalDependencies: '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) typescript: 5.3.3 - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -23084,7 +23891,7 @@ snapshots: '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/utils': 2.10.2(supports-color@9.4.0) + '@walletconnect/utils': 2.10.2 abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) eventemitter3: 4.0.7 viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -23119,7 +23926,7 @@ snapshots: '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - '@walletconnect/utils': 2.10.2(supports-color@9.4.0) + '@walletconnect/utils': 2.10.2 abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) eventemitter3: 4.0.7 viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -23190,7 +23997,7 @@ snapshots: '@wagmi/core': 2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) - cbw-sdk: '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)' + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' viem: 1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: typescript: 5.4.5 @@ -23220,10 +24027,10 @@ snapshots: - zod optional: true - ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)' + ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)' : dependencies: '@coinbase/wallet-sdk': 4.0.3 - '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4) + '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4) '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) @@ -23258,6 +24065,44 @@ snapshots: - utf-8-validate - zod + ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)' + : dependencies: + '@coinbase/wallet-sdk': 4.0.3 + '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + '@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@wagmi/connectors': 3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) @@ -23368,6 +24213,23 @@ snapshots: - utf-8-validate - zod + '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@tanstack/query-core': 5.40.0 + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - immer + - react + - utf-8-validate + - zod + '@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: eventemitter3: 5.0.1 @@ -23427,14 +24289,14 @@ snapshots: '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/keyvaluestorage': 1.1.1 '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.1 @@ -23499,14 +24361,14 @@ snapshots: '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) + '@walletconnect/keyvaluestorage': 1.1.1 '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + '@walletconnect/types': 2.13.0 + '@walletconnect/utils': 2.13.0 events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -23528,7 +24390,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@walletconnect/crypto@1.0.3': dependencies: @@ -23557,9 +24418,9 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.10.6(supports-color@9.4.0) + '@walletconnect/types': 2.10.6 '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + '@walletconnect/utils': 2.10.6 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -23621,9 +24482,9 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.3.1)(react@18.3.1) '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.13.0(supports-color@9.4.0) + '@walletconnect/types': 2.13.0 '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + '@walletconnect/utils': 2.13.0 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -23678,6 +24539,38 @@ snapshots: - supports-color - utf-8-validate + '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10)': + dependencies: + '@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/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0 + '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.13.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - react + - supports-color + - utf-8-validate + '@walletconnect/events@1.0.1': dependencies: keyvaluestorage-interface: 1.0.0 @@ -23761,6 +24654,25 @@ snapshots: - bufferutil - utf-8-validate + '@walletconnect/keyvaluestorage@1.1.1': + dependencies: + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.1 + unstorage: 1.10.1(idb-keyval@6.2.1) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/keyvaluestorage@1.1.1(supports-color@9.4.0)': dependencies: '@walletconnect/safe-json': 1.0.2 @@ -23851,6 +24763,13 @@ snapshots: - '@types/react' - react + '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + valtio: 1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + transitivePeerDependencies: + - '@types/react' + - react + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.1)(react@18.3.1)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) @@ -23871,6 +24790,16 @@ snapshots: - '@types/react' - react + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + lit: 2.8.0 + motion: 10.16.2 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@types/react' + - react + '@walletconnect/modal@2.6.2(@types/react@18.3.1)(react@18.3.1)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1) @@ -23887,6 +24816,14 @@ snapshots: - '@types/react' - react + '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + dependencies: + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + transitivePeerDependencies: + - '@types/react' + - react + '@walletconnect/randombytes@1.0.3': dependencies: '@walletconnect/encoding': 1.0.2 @@ -23952,8 +24889,8 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -24009,8 +24946,8 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + '@walletconnect/types': 2.13.0 + '@walletconnect/utils': 2.13.0 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -24029,12 +24966,34 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true '@walletconnect/time@1.0.2': dependencies: tslib: 1.14.1 + '@walletconnect/types@2.10.2': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/types@2.10.2(supports-color@9.4.0)': dependencies: '@walletconnect/events': 1.0.1 @@ -24058,6 +25017,29 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/types@2.10.6': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.0.1 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/types@2.10.6(supports-color@9.4.0)': dependencies: '@walletconnect/events': 1.0.1 @@ -24081,6 +25063,29 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/types@2.13.0': + dependencies: + '@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' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/types@2.13.0(supports-color@9.4.0)': dependencies: '@walletconnect/events': 1.0.1 @@ -24141,8 +25146,8 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.0.1 '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) + '@walletconnect/types': 2.10.6 + '@walletconnect/utils': 2.10.6 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -24199,8 +25204,8 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) + '@walletconnect/types': 2.13.0 + '@walletconnect/utils': 2.13.0 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -24219,7 +25224,37 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true + + '@walletconnect/utils@2.10.2': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.2 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color '@walletconnect/utils@2.10.2(supports-color@9.4.0)': dependencies: @@ -24252,6 +25287,37 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/utils@2.10.6': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.9 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.10.6 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.1 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/utils@2.10.6(supports-color@9.4.0)': dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -24283,6 +25349,37 @@ snapshots: - '@vercel/kv' - supports-color + '@walletconnect/utils@2.13.0': + dependencies: + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.10 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.13.0 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - supports-color + '@walletconnect/utils@2.13.0(supports-color@9.4.0)': dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -24476,13 +25573,13 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color agent-base@7.1.0: dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -24788,7 +25885,6 @@ snapshots: babel-core@7.0.0-bridge.0(@babel/core@7.24.6): dependencies: '@babel/core': 7.24.6 - optional: true babel-jest@29.7.0(@babel/core@7.23.6): dependencies: @@ -24842,7 +25938,6 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color - optional: true babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): dependencies: @@ -24853,6 +25948,16 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6): + dependencies: + '@babel/compat-data': 7.24.6 + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + optional: true + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -24860,7 +25965,6 @@ snapshots: core-js-compat: 3.37.1 transitivePeerDependencies: - supports-color - optional: true babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): dependencies: @@ -24870,13 +25974,21 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + core-js-compat: 3.37.1 + transitivePeerDependencies: + - supports-color + optional: true + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.6) transitivePeerDependencies: - supports-color - optional: true babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): dependencies: @@ -24885,6 +25997,14 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6): + dependencies: + '@babel/core': 7.24.6 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) + transitivePeerDependencies: + - supports-color + optional: true + babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: '@babel/generator': 7.2.0 @@ -24902,7 +26022,6 @@ snapshots: '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) transitivePeerDependencies: - '@babel/core' - optional: true babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6(supports-color@9.4.0)): dependencies: @@ -24910,6 +26029,13 @@ snapshots: transitivePeerDependencies: - '@babel/core' + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6): + dependencies: + '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) + transitivePeerDependencies: + - '@babel/core' + optional: true + babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -26230,7 +27356,7 @@ snapshots: dns-over-http-resolver@2.1.3: dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) native-fetch: 4.0.2(undici@5.28.2) receptacle: 1.3.2 undici: 5.28.2 @@ -26239,7 +27365,7 @@ snapshots: dns-over-http-resolver@3.0.0: dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) receptacle: 1.3.2 transitivePeerDependencies: - supports-color @@ -26494,7 +27620,7 @@ snapshots: engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) engine.io-parser: 5.2.2 ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) xmlhttprequest-ssl: 2.0.0 @@ -26502,7 +27628,6 @@ snapshots: - bufferutil - supports-color - utf-8-validate - optional: true engine.io-parser@5.2.2: {} @@ -26655,14 +27780,14 @@ snapshots: esbuild-register@3.5.0(esbuild@0.16.17): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) esbuild: 0.16.17 transitivePeerDependencies: - supports-color esbuild-register@3.5.0(esbuild@0.19.10): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) esbuild: 0.19.10 transitivePeerDependencies: - supports-color @@ -26852,7 +27977,7 @@ snapshots: eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 eslint: 8.56.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.56.0))(eslint@8.56.0))(eslint@8.56.0) @@ -26869,7 +27994,7 @@ snapshots: eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 eslint: 8.56.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0) @@ -26886,7 +28011,7 @@ snapshots: eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 eslint: 8.56.0 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.56.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0) @@ -27073,7 +28198,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -27133,6 +28258,15 @@ snapshots: etag@1.8.1: {} + eth-block-tracker@6.1.0: + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + '@metamask/utils': 3.6.0 + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + eth-block-tracker@6.1.0(supports-color@9.4.0): dependencies: '@metamask/safe-event-emitter': 2.0.0 @@ -27142,6 +28276,16 @@ snapshots: transitivePeerDependencies: - supports-color + eth-block-tracker@7.1.0: + dependencies: + '@metamask/eth-json-rpc-provider': 1.0.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 5.0.2 + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + eth-block-tracker@7.1.0(supports-color@9.4.0): dependencies: '@metamask/eth-json-rpc-provider': 1.0.1(supports-color@9.4.0) @@ -27634,7 +28778,7 @@ snapshots: follow-redirects@1.15.3(debug@4.3.4): optionalDependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) font-atlas@2.1.0: dependencies: @@ -28447,14 +29591,14 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.0: dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -28490,14 +29634,14 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.2: dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -28674,6 +29818,20 @@ snapshots: dependencies: loose-envify: 1.4.0 + ioredis@5.3.2: + dependencies: + '@ioredis/commands': 1.2.0 + cluster-key-slot: 1.1.2 + debug: 4.3.4(supports-color@8.1.1) + denque: 2.1.0 + lodash.defaults: 4.2.0 + lodash.isarguments: 3.1.0 + redis-errors: 1.2.0 + redis-parser: 3.0.0 + standard-as-callback: 2.1.0 + transitivePeerDependencies: + - supports-color + ioredis@5.3.2(supports-color@9.4.0): dependencies: '@ioredis/commands': 1.2.0 @@ -29100,7 +30258,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -29808,7 +30966,7 @@ snapshots: jsc-safe-url@0.2.4: {} - jscodeshift@0.14.0: + jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.23.6)): dependencies: '@babel/core': 7.24.6 '@babel/parser': 7.24.6 @@ -29816,6 +30974,7 @@ snapshots: '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6) '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) + '@babel/preset-env': 7.24.6(@babel/core@7.23.6) '@babel/preset-flow': 7.24.6(@babel/core@7.24.6) '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6) '@babel/register': 7.24.6(@babel/core@7.24.6) @@ -29831,7 +30990,6 @@ snapshots: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - optional: true jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0): dependencies: @@ -30033,7 +31191,7 @@ snapshots: dependencies: chalk: 5.3.0 commander: 11.1.0 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) execa: 8.0.1 lilconfig: 3.0.0 listr2: 8.0.1 @@ -30396,7 +31554,6 @@ snapshots: nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - optional: true metro-babel-transformer@0.80.9(supports-color@9.4.0): dependencies: @@ -30442,7 +31599,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true metro-core@0.80.9: dependencies: @@ -30478,7 +31634,7 @@ snapshots: metro-source-map@0.80.9: dependencies: - '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/traverse': 7.24.6 '@babel/types': 7.24.6 invariant: 2.2.4 metro-symbolicate: 0.80.9 @@ -30488,7 +31644,6 @@ snapshots: vlq: 1.0.1 transitivePeerDependencies: - supports-color - optional: true metro-source-map@0.80.9(supports-color@9.4.0): dependencies: @@ -30513,7 +31668,6 @@ snapshots: vlq: 1.0.1 transitivePeerDependencies: - supports-color - optional: true metro-symbolicate@0.80.9(supports-color@9.4.0): dependencies: @@ -30531,11 +31685,10 @@ snapshots: '@babel/core': 7.24.6 '@babel/generator': 7.24.6 '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/traverse': 7.24.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - optional: true metro-transform-plugins@0.80.9(supports-color@9.4.0): dependencies: @@ -30586,7 +31739,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): dependencies: @@ -30646,7 +31798,7 @@ snapshots: '@babel/generator': 7.24.6 '@babel/parser': 7.24.6 '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) + '@babel/traverse': 7.24.6 '@babel/types': 7.24.6 accepts: 1.3.8 chalk: 4.1.2 @@ -30689,7 +31841,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true micro-ftch@0.3.1: {} @@ -30793,6 +31944,16 @@ snapshots: - zod optional: true + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): dependencies: viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) @@ -30968,7 +32129,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.0.4 '@swc/helpers': 0.5.2 @@ -30978,7 +32139,7 @@ snapshots: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.23.6)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: '@next/swc-darwin-arm64': 14.0.4 @@ -32123,7 +33284,7 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-beautiful-dnd@13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + react-beautiful-dnd@13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): dependencies: '@babel/runtime': 7.24.5 css-box-model: 1.2.1 @@ -32131,7 +33292,7 @@ snapshots: raf-schd: 4.0.3 react: 19.0.0-rc-6f23540c7d-20240528 react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-redux: 7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + react-redux: 7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) redux: 4.2.1 use-memo-one: 1.1.3(react@19.0.0-rc-6f23540c7d-20240528) transitivePeerDependencies: @@ -32159,7 +33320,6 @@ snapshots: transitivePeerDependencies: - bufferutil - utf-8-validate - optional: true react-devtools-core@5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): dependencies: @@ -32194,17 +33354,27 @@ snapshots: dependencies: react: 19.0.0-rc-6f23540c7d-20240528 - react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): + react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): dependencies: '@babel/runtime': 7.24.5 html-parse-stringify: 3.0.1 i18next: 22.5.1 + react: 19.0.0-rc-6f23540c7d-20240528 + optionalDependencies: + react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + + react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): + dependencies: + '@babel/runtime': 7.24.5 + html-parse-stringify: 3.0.1 + i18next: 23.11.5 react: 18.3.1 optionalDependencies: react-dom: 18.3.1(react@18.3.1) react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): dependencies: '@babel/runtime': 7.24.5 html-parse-stringify: 3.0.1 @@ -32212,6 +33382,7 @@ snapshots: react: 19.0.0-rc-6f23540c7d-20240528 optionalDependencies: react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) react-is@16.13.1: {} @@ -32223,6 +33394,13 @@ snapshots: dependencies: p-defer: 3.0.0 + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + dependencies: + escape-string-regexp: 2.0.0 + invariant: 2.2.4 + react: 19.0.0-rc-6f23540c7d-20240528 + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): dependencies: escape-string-regexp: 2.0.0 @@ -32230,19 +33408,19 @@ snapshots: react: 18.3.1 react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): + react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) '@react-native/assets-registry': 0.74.84 - '@react-native/codegen': 0.74.84 - '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.23.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -32260,10 +33438,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 18.3.1 + react: 19.0.0-rc-6f23540c7d-20240528 react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@18.3.1) + react-shallow-renderer: 16.15.0(react@19.0.0-rc-6f23540c7d-20240528) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 @@ -32271,7 +33449,7 @@ snapshots: ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) yargs: 17.7.2 optionalDependencies: - '@types/react': 18.3.1 + '@types/react': 18.3.3 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -32279,7 +33457,6 @@ snapshots: - encoding - supports-color - utf-8-validate - optional: true react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4): dependencies: @@ -32331,6 +33508,57 @@ snapshots: - supports-color - utf-8-validate + react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) + '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) + '@react-native/assets-registry': 0.74.84 + '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/gradle-plugin': 0.74.84 + '@react-native/js-polyfills': 0.74.84 + '@react-native/normalize-colors': 0.74.84 + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + base64-js: 1.5.1 + chalk: 4.1.2 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + react-refresh: 0.14.2 + react-shallow-renderer: 16.15.0(react@18.3.1) + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.1 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + optional: true + react-plotly.js@2.6.0(plotly.js@2.27.1)(react@18.3.1): dependencies: plotly.js: 2.27.1 @@ -32349,7 +33577,7 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-redux@7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + react-redux@7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): dependencies: '@babel/runtime': 7.24.5 '@types/react-redux': 7.1.33 @@ -32360,6 +33588,7 @@ snapshots: react-is: 17.0.2 optionalDependencies: react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) react-refresh@0.14.2: {} @@ -32441,6 +33670,12 @@ snapshots: react: 18.3.1 react-is: 18.2.0 + react-shallow-renderer@16.15.0(react@19.0.0-rc-6f23540c7d-20240528): + dependencies: + object-assign: 4.1.1 + react: 19.0.0-rc-6f23540c7d-20240528 + react-is: 18.2.0 + react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1): dependencies: get-nonce: 1.0.1 @@ -33142,14 +34377,20 @@ snapshots: socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - socket.io-parser: 4.2.4(supports-color@9.4.0) + socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - optional: true + + socket.io-parser@4.2.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color socket.io-parser@4.2.4(supports-color@9.4.0): dependencies: @@ -33402,13 +34643,6 @@ snapshots: stubborn-fs@1.2.5: {} - styled-jsx@5.1.1(@babel/core@7.23.6)(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optionalDependencies: - '@babel/core': 7.23.6 - styled-jsx@5.1.1(@babel/core@7.24.6(supports-color@9.4.0))(react@18.3.1): dependencies: client-only: 0.0.1 @@ -33951,7 +35185,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3): + ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -33964,9 +35198,9 @@ snapshots: typescript: 5.3.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.24.6 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.6) + babel-jest: 29.7.0(@babel/core@7.24.6) esbuild: 0.16.17 ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): @@ -34332,6 +35566,24 @@ snapshots: unquote@1.1.1: {} + unstorage@1.10.1(idb-keyval@6.2.1): + dependencies: + anymatch: 3.1.3 + chokidar: 3.5.3 + destr: 2.0.2 + h3: 1.9.0 + ioredis: 5.3.2 + listhen: 1.5.5 + lru-cache: 10.1.0 + mri: 1.2.0 + node-fetch-native: 1.4.1 + ofetch: 1.3.3 + ufo: 1.3.2 + optionalDependencies: + idb-keyval: 6.2.1 + transitivePeerDependencies: + - supports-color + unstorage@1.10.1(idb-keyval@6.2.1)(supports-color@9.4.0): dependencies: anymatch: 3.1.3 @@ -34504,6 +35756,14 @@ snapshots: '@types/react': 18.3.3 react: 18.3.1 + valtio@1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + dependencies: + proxy-compare: 2.5.1 + use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + react: 19.0.0-rc-6f23540c7d-20240528 + value-or-promise@1.0.12: {} value-or-promise@1.0.6: {} @@ -34588,6 +35848,23 @@ snapshots: - utf-8-validate - zod + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 0.9.8(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + viem@1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 @@ -34659,7 +35936,7 @@ snapshots: vite-node@1.6.0(@types/node@18.19.33)(terser@5.31.0): dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) pathe: 1.1.1 picocolors: 1.0.0 vite: 5.2.12(@types/node@18.19.33)(terser@5.31.0) @@ -34675,7 +35952,7 @@ snapshots: vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@18.19.33)(terser@5.31.0)): dependencies: - debug: 4.3.4(supports-color@9.4.0) + debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 3.1.0(typescript@5.4.5) optionalDependencies: @@ -34715,11 +35992,11 @@ snapshots: wabt@1.0.24: {} - wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)) '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) react: 18.3.1 @@ -34750,10 +36027,10 @@ snapshots: - utf-8-validate - zod - wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): + wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): dependencies: '@tanstack/react-query': 5.40.1(react@18.3.1) - '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) @@ -34786,6 +36063,42 @@ snapshots: - utf-8-validate - zod + wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): + dependencies: + '@tanstack/react-query': 5.40.1(react@19.0.0-rc-6f23540c7d-20240528) + '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + react: 19.0.0-rc-6f23540c7d-20240528 + use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - encoding + - immer + - react-dom + - react-i18next + - react-native + - rollup + - supports-color + - utf-8-validate + - zod + wagmi@2.9.11(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): dependencies: '@wagmi/connectors': 5.0.10(@types/react@18.3.1)(@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) @@ -35228,7 +36541,6 @@ snapshots: optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - optional: true ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4): dependencies: @@ -35261,7 +36573,6 @@ snapshots: optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - optional: true ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): optionalDependencies: @@ -35402,6 +36713,13 @@ snapshots: '@types/react': 18.3.3 react: 18.3.1 + zustand@4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + dependencies: + use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + optionalDependencies: + '@types/react': 18.3.3 + react: 19.0.0-rc-6f23540c7d-20240528 + zustand@4.4.7(@types/react@18.3.1)(react@18.3.1): dependencies: use-sync-external-store: 1.2.0(react@18.3.1) From 7e5f99537ff3884808b18d8961f8d7faf6cd870e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 16:51:52 -0300 Subject: [PATCH 07/22] update tx manager api for usage in safe --- apps/composable-cow-api/ponder.config.ts | 28 +++--- .../new/(components)/CreateAMMForm.tsx | 99 +++++++------------ .../src/components/RootLayout.tsx | 6 +- .../tx-manager/useContractWriteWithSafe.ts | 31 ++++++ .../hooks/tx-manager/useManagedTransaction.ts | 50 ++++++++-- .../hooks/tx-manager/useSafeTransaction.ts | 12 ++- .../useWaitForTransactionReceiptWrapped.ts | 1 - .../src/app/(components)/mintNft.tsx | 30 +++++- .../useWaitForTransactionReceiptWrapped.ts | 2 +- 9 files changed, 161 insertions(+), 98 deletions(-) create mode 100644 apps/cow-amm-deployer/src/hooks/tx-manager/useContractWriteWithSafe.ts diff --git a/apps/composable-cow-api/ponder.config.ts b/apps/composable-cow-api/ponder.config.ts index fd18c4e2a..ba1322348 100644 --- a/apps/composable-cow-api/ponder.config.ts +++ b/apps/composable-cow-api/ponder.config.ts @@ -27,12 +27,12 @@ export default createConfig({ sepolia: { startBlock: 5245332, }, - gnosis: { - startBlock: 31005430, - }, - mainnet: { - startBlock: 18937172, - }, + // gnosis: { + // startBlock: 31005430, + // }, + // mainnet: { + // startBlock: 18937172, + // }, }, }, standaloneConstantProductFactoryAbi: { @@ -42,14 +42,14 @@ export default createConfig({ startBlock: 5874562, address: "0xb808E8183e3a72d196457D127c7fd4bEfa0D7Fd3", }, - gnosis: { - startBlock: 33874317, - address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", - }, - mainnet: { - startBlock: 19861952, - address: "0x40664207e3375fb4b733d4743ce9b159331fd034", - }, + // gnosis: { + // startBlock: 33874317, + // address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", + // }, + // mainnet: { + // startBlock: 19861952, + // address: "0x40664207e3375fb4b733d4743ce9b159331fd034", + // }, }, }, }, diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index fd21c42a8..ba9a2d9f3 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -1,10 +1,7 @@ -import { toast } from "@bleu/ui"; import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { zodResolver } from "@hookform/resolvers/zod"; -import { useRouter } from "next/navigation"; import { useEffect } from "react"; import { useForm, useWatch } from "react-hook-form"; -import { encodeAbiParameters, encodePacked, size } from "viem"; import { z } from "zod"; import { Button } from "#/components"; @@ -19,24 +16,30 @@ import { } from "#/components/ui/accordion"; import { Form } from "#/components/ui/form"; import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; -import { useRawTxData } from "#/hooks/useRawTxData"; import { IToken } from "#/lib/fetchAmmData"; import { ammFormSchema } from "#/lib/schema"; import { getNewMinTradeToken0 } from "#/lib/tokenUtils"; -import { - buildTxCreateAMMArgs, - TransactionFactory, -} from "#/lib/transactionFactory"; +import { buildTxCreateAMMArgs } from "#/lib/transactionFactory"; import { cn } from "#/lib/utils"; import { ChainId } from "#/utils/chainsPublicClients"; import { TokenAmountInput } from "./TokenAmountInput"; -export function CreateAMMForm({ userId }: { userId: string }) { +// const multisendABI = [ +// { +// inputs: [{ internalType: "bytes", name: "transactions", type: "bytes" }], +// name: "multiSend", +// outputs: [], +// stateMutability: "payable", +// type: "function", +// }, +// ] as const; + +export function CreateAMMForm({ userId: _userId }: { userId: string }) { const { safe: { safeAddress, chainId }, } = useSafeAppsSDK(); - const router = useRouter(); + // const router = useRouter(); const form = useForm>({ // @ts-ignore @@ -56,10 +59,26 @@ export function CreateAMMForm({ userId }: { userId: string }) { formState: { errors, isSubmitting }, } = form; // const { sendTransactions } = useRawTxData(); - const { hash, error, writeContract, status, safeHash } = - useManagedTransaction(); + const { + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); - console.log({ error }); const [token0, token1, priceOracle, amount0, amount1] = useWatch({ control, name: [ @@ -71,57 +90,9 @@ export function CreateAMMForm({ userId }: { userId: string }) { ], }); - const onSubmit = async (data: z.output) => { - const txArgs = buildTxCreateAMMArgs({ data }); - - try { - const txs = txArgs.map((arg) => { - const txData = TransactionFactory.createRawTx(arg.type, arg); - - const encodedTx = encodePacked( - ["uint8", "address", "uint256", "uint256", "bytes"], - [ - 1, - txData.to as `0x${string}`, - BigInt(txData.value), - // @ts-ignore - BigInt(size(txData.data)), - txData.data as `0x${string}`, - ] - ); - - return encodedTx.slice(2); - }); - - const txData = "0x" + txs.join(""); - - const multisendABI = [ - { - inputs: [ - { internalType: "bytes", name: "transactions", type: "bytes" }, - ], - name: "multiSend", - outputs: [], - stateMutability: "payable", - type: "function", - }, - ] as const; - - writeContract({ - address: "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", - abi: multisendABI, - functionName: "multiSend", - args: [txData], - }); - - // router.push(`${userId}/amms`); - } catch (e) { - console.error(e); - toast({ - title: `Transaction failed`, - description: "An error occurred while processing the transaction.", - variant: "destructive", - }); + const onSubmit = (data: z.output) => { + if (isWalletContract) { + writeContractWithSafe(buildTxCreateAMMArgs({ data })); } }; diff --git a/apps/cow-amm-deployer/src/components/RootLayout.tsx b/apps/cow-amm-deployer/src/components/RootLayout.tsx index df411662e..689b44756 100644 --- a/apps/cow-amm-deployer/src/components/RootLayout.tsx +++ b/apps/cow-amm-deployer/src/components/RootLayout.tsx @@ -2,16 +2,16 @@ import { Toaster } from "@bleu/ui"; import SafeProvider from "@gnosis.pm/safe-apps-react-sdk"; -import React, { useState } from "react"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import React, { useState } from "react"; +import { WagmiProvider } from "wagmi"; import { TokenSelectContextProvider } from "#/contexts/tokenSelect"; +import { config } from "#/wagmi"; import Fathom from "./Fathom"; import { Footer } from "./Footer"; import { Header } from "./Header"; -import { WagmiProvider } from "wagmi"; -import { config } from "#/wagmi"; export function RootLayout({ children }: React.PropsWithChildren) { const [queryClient] = useState(() => new QueryClient()); diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useContractWriteWithSafe.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useContractWriteWithSafe.ts new file mode 100644 index 000000000..e98a19759 --- /dev/null +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useContractWriteWithSafe.ts @@ -0,0 +1,31 @@ +import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; +import { useMutation } from "@tanstack/react-query"; + +import { + AllTransactionArgs, + TransactionFactory, +} from "#/lib/transactionFactory"; + +export function useContractWriteWithSafe() { + const { mutate, mutateAsync, ...result } = useMutation({ + mutationFn: (txs: AllTransactionArgs[]) => { + return sendTransactions(txs); + }, + mutationKey: ["writeContract"], + }); + const { sdk } = useSafeAppsSDK(); + + const sendTransactions = async (argsArray: AllTransactionArgs[]) => { + const txs = argsArray.map((arg) => { + return TransactionFactory.createRawTx(arg.type, arg); + }); + const { safeTxHash } = await sdk.txs.send({ txs }); + return safeTxHash as `0x${string}`; + }; + + return { + ...result, + writeContractWithSafe: mutate, + writeContractWithSafeAsync: mutateAsync, + }; +} diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts index b5c159ce0..9b18e288c 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -1,18 +1,38 @@ -import { useTransactionConfirmations, useWriteContract } from "wagmi"; -import { useWaitForTransactionReceiptWrapped } from "./useWaitForTransactionReceiptWrapped"; import { useEffect, useMemo } from "react"; -import { useSendCalls } from "wagmi/experimental"; +import { + useAccount, + useTransactionConfirmations, + useWriteContract, +} from "wagmi"; + +import { useContractWriteWithSafe } from "./useContractWriteWithSafe"; +import { useIsWalletContract } from "./useIsWalletContract"; +import { useWaitForTransactionReceiptWrapped } from "./useWaitForTransactionReceiptWrapped"; const CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX = 15; export function useManagedTransaction() { + const { address } = useAccount(); + const { data: isWalletContract } = useIsWalletContract(address); + const { - data, - error, - status: writeStatus, + data: safeData, + error: safeError, + status: safeWriteStatus, + writeContractWithSafe, + } = useContractWriteWithSafe(); + + const { + data: eoaData, + error: eoaError, + status: eoaWriteStatus, writeContract, } = useWriteContract(); + const data = safeData || eoaData; + const error = safeError || eoaError; + const writeStatus = safeWriteStatus || eoaWriteStatus; + const { hash, status: txReceiptStatus, @@ -25,7 +45,6 @@ export function useManagedTransaction() { const { data: blockConfirmations, status: blockConfirmationsStatus, - fetchStatus: blockConfirmationsFetchStatus, refetch, } = useTransactionConfirmations({ hash }); @@ -36,7 +55,6 @@ export function useManagedTransaction() { Number(blockConfirmations) <= CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX ) { const interval = setInterval(() => { - console.log("refetching"); refetch(); }, 1000); @@ -74,11 +92,25 @@ export function useManagedTransaction() { ([, value]) => value === true )?.[0]; - console.log({ status, blockConfirmations, blockConfirmationsStatus }); + if (isWalletContract) { + return { + isWalletContract, + status, + safeHash, + writeContract, + writeContractWithSafe, + hash, + error, + blockConfirmations, + }; + } + return { + isWalletContract, status, safeHash, writeContract, + writeContractWithSafe, hash, error, blockConfirmations, diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts index 9e70ef8cd..f4533bb29 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useSafeTransaction.ts @@ -1,8 +1,10 @@ -import { useEffect, useState } from "react"; -import { useAccount, useWatchContractEvent } from "wagmi"; import SafeAppsSDK from "@gnosis.pm/safe-apps-sdk"; +import { useEffect, useState } from "react"; import { parseAbi } from "viem"; +import { useAccount, useWatchContractEvent } from "wagmi"; + import { useIsWalletContract } from "./useIsWalletContract"; + export type SafeStatus = | "safe_idle" | "safe_loading" @@ -35,8 +37,8 @@ export const useSafeTransaction = ({ }: { safeHash: `0x${string}` | undefined; }): { - data: any; - error: any; + data: `0x${string}` | undefined; + error: unknown; status: SafeStatus; } => { const [gnosisStatus, setGnosisStatus] = useState("safe_idle"); @@ -92,7 +94,7 @@ export const useSafeTransaction = ({ }; return { - data: txHash, + data: txHash as `0x${string}`, error: undefined, status: gnosisStatus, }; diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts index 6a3ead25e..3dffdcef5 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts @@ -21,7 +21,6 @@ export const useWaitForTransactionReceiptWrapped = ( const gnosis = useSafeTransaction({ safeHash: args?.hash, }); - console.log({ gnosis, isWalletContract, address }); const gnosisData = useWaitForTransactionReceipt({ ...args, hash: gnosis.data, diff --git a/apps/example-tx-manager/src/app/(components)/mintNft.tsx b/apps/example-tx-manager/src/app/(components)/mintNft.tsx index 7b4d0067b..895458bf2 100644 --- a/apps/example-tx-manager/src/app/(components)/mintNft.tsx +++ b/apps/example-tx-manager/src/app/(components)/mintNft.tsx @@ -1,6 +1,6 @@ import * as React from "react"; import { encodeFunctionData, encodePacked, erc20Abi, size } from "viem"; -import { type BaseError } from "wagmi"; +import { useSimulateContract, type BaseError } from "wagmi"; import { useManagedTransaction } from "@/lib/useManagedTransaction"; @@ -18,6 +18,34 @@ export function MintNFT() { const { hash, error, writeContract, status, safeHash } = useManagedTransaction(); + const txData = { + to: "0xbe72E441BF55620febc26715db68d3494213D8Cb", + value: "0", + data: encodeFunctionData({ + abi: erc20Abi, + functionName: "approve", + args: [ + "0x88f2178139Ed9F6D870b3afc293eb735F54d655e", + BigInt("1000000000000000"), + ], + }), + } as const; + + const encodedTx = encodePacked( + ["uint8", "address", "uint256", "uint256", "bytes"], + [ + 0, + txData.to, + BigInt(txData.value), + BigInt(size(txData.data)), + txData.data, + ], + ); + + const duplicatedEncodedTx = (encodedTx + encodedTx.slice(2)) as `0x${string}`; + + const result = useSimulateContract({}); + async function submit(e: React.FormEvent) { e.preventDefault(); const formData = new FormData(e.target as HTMLFormElement); diff --git a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts b/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts index 6a3ead25e..9850a3433 100644 --- a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts +++ b/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts @@ -8,7 +8,7 @@ import { useIsWalletContract } from "./useIsWalletContract"; import { useSafeTransaction } from "./useSafeTransaction"; export const useWaitForTransactionReceiptWrapped = ( - args: Parameters[0] + args: Parameters[0], ) => { const { address } = useAccount(); const { data: isWalletContract } = useIsWalletContract(address); From 8e4614f813d85ca6baa9dfaf1a42e1020f035bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 17:13:50 -0300 Subject: [PATCH 08/22] cow-amm-deployer: substitute safe sdk for wagmi when possible --- .../(components)/TradingControlButton.tsx | 6 +-- .../withdraw/(components)/WithdrawForm.tsx | 44 +++++++++++++------ .../new/(components)/CreateAMMForm.tsx | 12 +++-- .../new/(components)/TokenAmountInput.tsx | 11 +++-- apps/cow-amm-deployer/src/app/layout.tsx | 2 +- apps/cow-amm-deployer/src/app/page.tsx | 13 +++--- .../src/components/BalancerWeightedForm.tsx | 12 ++--- .../src/components/ChainlinkForm.tsx | 6 +-- .../src/components/Header.tsx | 13 +++--- .../src/components/SushiForm.tsx | 11 +++-- .../src/components/TokenInfo.tsx | 7 ++- .../src/components/TokenSelect.tsx | 8 ++-- .../src/components/UniswapV2Form.tsx | 13 +++--- .../src/hooks/useSafeBalances.ts | 4 +- 14 files changed, 86 insertions(+), 76 deletions(-) diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx index fbe0d8c91..3577aa9cf 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx @@ -1,10 +1,10 @@ "use client"; import { toast } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { PlayIcon, StopIcon } from "@radix-ui/react-icons"; import Link from "next/link"; import React from "react"; +import { useAccount } from "wagmi"; import { Button } from "#/components/Button"; import { useRawTxData } from "#/hooks/useRawTxData"; @@ -34,9 +34,7 @@ function EnableAMMButton({ ammData }: { ammData: ICowAmm }) { } function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { - const { - safe: { chainId }, - } = useSafeAppsSDK(); + const { chainId } = useAccount(); const { sendTransactions } = useRawTxData(); async function onDisableAMM() { diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx index 8d59e13c1..6628edca0 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx @@ -1,18 +1,18 @@ "use client"; import { formatNumber, toast } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { zodResolver } from "@hookform/resolvers/zod"; import * as Slider from "@radix-ui/react-slider"; import { useRouter } from "next/navigation"; import { Controller, useForm, useWatch } from "react-hook-form"; import { parseUnits } from "viem"; +import { useAccount } from "wagmi"; import { Button } from "#/components/Button"; import Table from "#/components/Table"; import { TokenInfo } from "#/components/TokenInfo"; import { Form } from "#/components/ui/form"; -import { useRawTxData } from "#/hooks/useRawTxData"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { ICowAmm } from "#/lib/fetchAmmData"; import { ammWithdrawSchema } from "#/lib/schema"; import { @@ -23,7 +23,7 @@ import { ChainId } from "#/utils/chainsPublicClients"; export function WithdrawForm({ cowAmm, - userId, + userId: _userId, }: { cowAmm: ICowAmm; userId: string; @@ -35,20 +35,37 @@ export function WithdrawForm({ withdrawPct: 50, }, }); - const router = useRouter(); - const { sendTransactions } = useRawTxData(); + const _router = useRouter(); + const { chainId } = useAccount(); + const { - safe: { chainId }, - } = useSafeAppsSDK(); + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); const onSubmit = async (data: typeof ammWithdrawSchema._type) => { const amount0 = parseUnits( String((Number(cowAmm.token0.balance) * data.withdrawPct) / 100), - cowAmm.token0.decimals, + cowAmm.token0.decimals ); const amount1 = parseUnits( String((Number(cowAmm.token1.balance) * data.withdrawPct) / 100), - cowAmm.token1.decimals, + cowAmm.token1.decimals ); const txArgs = { type: TRANSACTION_TYPES.WITHDRAW_COW_AMM, @@ -58,8 +75,9 @@ export function WithdrawForm({ chainId: chainId as ChainId, } as WithdrawCoWAMMArgs; try { - await sendTransactions([txArgs]); - router.push(`${userId}/amms/${cowAmm.id}`); + writeContractWithSafe([txArgs]); + // TODO: wait until ready before redirecting to the AMM page + // router.push(`${userId}/amms/${cowAmm.id}`); } catch { toast({ title: `Transaction failed`, @@ -122,7 +140,7 @@ export function WithdrawForm({ {formatNumber( (Number(token.balance) * withdrawPct) / 100, - 4, + 4 )}{" "} {token.symbol} @@ -130,7 +148,7 @@ export function WithdrawForm({ $ {formatNumber( (Number(token.usdValue) * withdrawPct) / 100, - 4, + 4 )}
diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index ba9a2d9f3..be1054c3e 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -1,7 +1,7 @@ -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { zodResolver } from "@hookform/resolvers/zod"; import { useEffect } from "react"; import { useForm, useWatch } from "react-hook-form"; +import { useAccount } from "wagmi"; import { z } from "zod"; import { Button } from "#/components"; @@ -36,15 +36,13 @@ import { TokenAmountInput } from "./TokenAmountInput"; // ] as const; export function CreateAMMForm({ userId: _userId }: { userId: string }) { - const { - safe: { safeAddress, chainId }, - } = useSafeAppsSDK(); - // const router = useRouter(); + const { address: safeAddress, chainId } = useAccount(); const form = useForm>({ // @ts-ignore resolver: zodResolver(ammFormSchema), defaultValues: { + // TODO: this will need to be changed once we allow EOAs to create AMMs safeAddress, chainId, priceOracleSchema: { @@ -58,7 +56,7 @@ export function CreateAMMForm({ userId: _userId }: { userId: string }) { control, formState: { errors, isSubmitting }, } = form; - // const { sendTransactions } = useRawTxData(); + const { hash, error, @@ -97,7 +95,7 @@ export function CreateAMMForm({ userId: _userId }: { userId: string }) { }; useEffect(() => { - setValue("safeAddress", safeAddress); + setValue("safeAddress", safeAddress as string); }, [safeAddress, setValue]); return ( diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx index aa50e25cd..aaf876ec9 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx @@ -1,9 +1,9 @@ import { convertStringToNumberAndRoundDown } from "@bleu/ui"; import { formatNumber } from "@bleu/utils/formatNumber"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { useEffect, useState } from "react"; import { UseFormReturn } from "react-hook-form"; import { Address } from "viem"; +import { useAccount } from "wagmi"; import { Input } from "#/components/Input"; import { IToken } from "#/lib/fetchAmmData"; @@ -26,11 +26,10 @@ export function TokenAmountInput({ fieldName: "amount0" | "amount1"; defaultWalletAmount?: string; }) { - const { - safe: { safeAddress, chainId }, - } = useSafeAppsSDK(); + // TODO: rename this once we use EOAs + const { chainId, address: safeAddress } = useAccount(); const [walletAmount, setWalletAmount] = useState( - defaultWalletAmount || "", + defaultWalletAmount || "" ); const { setValue, register } = form; @@ -73,7 +72,7 @@ export function TokenAmountInput({ onClick={() => { setValue( fieldName, - convertStringToNumberAndRoundDown(walletAmount), + convertStringToNumberAndRoundDown(walletAmount) ); }} > diff --git a/apps/cow-amm-deployer/src/app/layout.tsx b/apps/cow-amm-deployer/src/app/layout.tsx index cdfcbf4d8..113376d23 100644 --- a/apps/cow-amm-deployer/src/app/layout.tsx +++ b/apps/cow-amm-deployer/src/app/layout.tsx @@ -59,7 +59,7 @@ export default function Layout({ children }: { children: React.ReactNode }) { className={cn( flechaS.variable, circularStd.variable, - "bg-background flex h-full flex-col font-sans font-normal text-foreground", + "bg-background flex h-full flex-col font-sans font-normal text-foreground" )} > {children} diff --git a/apps/cow-amm-deployer/src/app/page.tsx b/apps/cow-amm-deployer/src/app/page.tsx index 58c016469..8c5a73cd9 100644 --- a/apps/cow-amm-deployer/src/app/page.tsx +++ b/apps/cow-amm-deployer/src/app/page.tsx @@ -1,27 +1,30 @@ "use client"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import Image from "next/image"; +import { useAccount } from "wagmi"; import { Button } from "#/components/Button"; import Fathom from "#/components/Fathom"; import { LinkComponent } from "#/components/Link"; import { UnsuportedChain } from "#/components/UnsuportedChain"; import WalletNotConnected from "#/components/WalletNotConnected"; +import { useAutoConnect } from "#/hooks/tx-manager/useAutoConnect"; import { supportedChainIds } from "#/utils/chainsPublicClients"; export default function Page() { - const { connected, safe } = useSafeAppsSDK(); + const { address: safeAddress, chainId, isConnected } = useAccount(); - if (!connected) { + useAutoConnect(); + + if (!isConnected) { return ; } - if (!supportedChainIds.includes(safe.chainId)) { + if (chainId && !supportedChainIds.includes(chainId)) { return ; } - const userId = `${safe.safeAddress}-${safe.chainId}`; + const userId = `${safeAddress}-${chainId}`; return (
diff --git a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx index af7e587a3..6e294cd09 100644 --- a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx +++ b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx @@ -1,9 +1,9 @@ "use client"; import { toast } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; import { Address } from "viem"; +import { useAccount } from "wagmi"; import { z } from "zod"; import { Input } from "#/components/Input"; @@ -19,14 +19,14 @@ export function BalancerWeightedForm({ >; }) { const { register, setValue, control } = form; - const { - safe: { chainId }, - } = useSafeAppsSDK(); + const { chainId } = useAccount(); + + if (!chainId) return null; const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address, + (address) => address ) as Address[]; return (
@@ -46,7 +46,7 @@ export function BalancerWeightedForm({ toast({ title: "Pool not found", description: loadDEXPriceCheckerErrorText( - "Balancer V2 Weighted Pool", + "Balancer V2 Weighted Pool" ), variant: "destructive", }); diff --git a/apps/cow-amm-deployer/src/components/ChainlinkForm.tsx b/apps/cow-amm-deployer/src/components/ChainlinkForm.tsx index f0edc2ea4..645ce4d7d 100644 --- a/apps/cow-amm-deployer/src/components/ChainlinkForm.tsx +++ b/apps/cow-amm-deployer/src/components/ChainlinkForm.tsx @@ -1,8 +1,8 @@ "use client"; import { toast } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; +import { useAccount } from "wagmi"; import { z } from "zod"; import { Input } from "#/components/Input"; @@ -24,9 +24,7 @@ export function ChainlinkForm({ >; }) { const { register, setValue, control } = form; - const { - safe: { chainId }, - } = useSafeAppsSDK(); + const { chainId } = useAccount(); const token0 = useWatch({ control, name: "token0" }) as IToken; const token1 = useWatch({ control, name: "token1" }) as IToken; diff --git a/apps/cow-amm-deployer/src/components/Header.tsx b/apps/cow-amm-deployer/src/components/Header.tsx index 194cebe7a..102e68999 100644 --- a/apps/cow-amm-deployer/src/components/Header.tsx +++ b/apps/cow-amm-deployer/src/components/Header.tsx @@ -1,11 +1,11 @@ "use client"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { ArrowTopRightIcon } from "@radix-ui/react-icons"; import Image from "next/image"; import Link from "next/link"; import { ReactNode } from "react"; import { Address } from "viem"; +import { useAccount } from "wagmi"; import { buildAccountCowExplorerUrl } from "#/lib/cowExplorer"; import { ChainId } from "#/utils/chainsPublicClients"; @@ -19,7 +19,8 @@ interface IHeader { } export function Header({ linkUrl, imageSrc, children, onLinkClick }: IHeader) { - const { safe } = useSafeAppsSDK(); + // TODO: rename this once we use EOAs + const { address: safeAddress, chainId } = useAccount(); return (
@@ -41,15 +42,15 @@ export function Header({ linkUrl, imageSrc, children, onLinkClick }: IHeader) { href={ new URL( buildAccountCowExplorerUrl({ - chainId: safe.chainId as ChainId, - address: safe.safeAddress as Address, - }), + chainId: chainId as ChainId, + address: safeAddress as Address, + }) ) } rel="noreferrer noopener" target="_blank" > - {truncateAddress(safe.safeAddress)} + {truncateAddress(safeAddress)}
diff --git a/apps/cow-amm-deployer/src/components/SushiForm.tsx b/apps/cow-amm-deployer/src/components/SushiForm.tsx index 3eb20cf1e..dbdbc040d 100644 --- a/apps/cow-amm-deployer/src/components/SushiForm.tsx +++ b/apps/cow-amm-deployer/src/components/SushiForm.tsx @@ -1,7 +1,7 @@ import { toast } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; import { UseFormReturn, useWatch } from "react-hook-form"; import { Address } from "viem"; +import { useAccount } from "wagmi"; import { z } from "zod"; import { Input } from "#/components/Input"; @@ -17,14 +17,13 @@ export function SushiForm({ >; }) { const { register, setValue, control } = form; - const { - safe: { chainId }, - } = useSafeAppsSDK(); + const { chainId } = useAccount(); + if (!chainId) return null; const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address, + (address) => address ) as Address[]; return (
@@ -59,7 +58,7 @@ export function SushiForm({ async function getSushiV2PairAddress( chainId: number, token0: Address, - token1: Address, + token1: Address ) { if (token0 === token1) throw new Error("Invalid tokens"); const pairsData = await pairs.gql(String(chainId)).pairsWhereTokens({ diff --git a/apps/cow-amm-deployer/src/components/TokenInfo.tsx b/apps/cow-amm-deployer/src/components/TokenInfo.tsx index 13b1c203f..05f2a5629 100644 --- a/apps/cow-amm-deployer/src/components/TokenInfo.tsx +++ b/apps/cow-amm-deployer/src/components/TokenInfo.tsx @@ -1,5 +1,5 @@ import { formatNumber } from "@bleu/ui"; -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; +import { useAccount } from "wagmi"; import { TokenLogo } from "#/components/TokenLogo"; import { IToken, ITokenExtended } from "#/lib/fetchAmmData"; @@ -12,15 +12,14 @@ export function TokenInfo({ token: IToken | ITokenExtended; showBalance?: boolean; }) { - const { safe } = useSafeAppsSDK(); - + const { chainId } = useAccount(); return (
; }) { const { register, setValue, control } = form; - const { - safe: { chainId }, - } = useSafeAppsSDK(); + const { chainId } = useAccount(); + if (!chainId) return null; const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address, + (address) => address ) as Address[]; return (
@@ -40,7 +39,7 @@ export function UniswapV2Form({ const address = await getUniswapV2PairAddress( chainId, tokenAddresses[0], - tokenAddresses[1], + tokenAddresses[1] ); setValue("priceOracleSchema.pairAddress", address); } catch (error) { @@ -61,7 +60,7 @@ export function UniswapV2Form({ async function getUniswapV2PairAddress( chainId: number, token0: Address, - token1: Address, + token1: Address ) { if (token0 === token1) throw new Error("Invalid tokens"); const pairsData = await pairs.gql(String(chainId) || "1").pairsWhereTokens({ diff --git a/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts b/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts index b757262eb..5503bf5d3 100644 --- a/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts +++ b/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts @@ -19,8 +19,8 @@ export function useSafeBalances(): { assets: TokenBalance[]; loaded: boolean } { parseInt(item.balance) > 0 && item.tokenInfo.type === "ERC20" && item.tokenInfo.decimals > 0 && - isAddress(item.tokenInfo.address), - ), + isAddress(item.tokenInfo.address) + ) ); setLoaded(true); } From 8a199ea8e5e474e26f2facccc58c2d0115eb6313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Mon, 10 Jun 2024 17:20:55 -0300 Subject: [PATCH 09/22] cow-amm-deployer: substitute useRawTxData for useManagedTransaction hook --- .../amms/[id]/(components)/EditAMMForm.tsx | 32 +++++++++++++++---- .../(components)/TradingControlButton.tsx | 24 ++++++++++++-- .../src/components/DepositForm.tsx | 31 ++++++++++++++---- .../src/components/OldVersionOfAmmAlert.tsx | 25 +++++++++++++-- .../src/hooks/useRawTxData.ts | 19 ----------- 5 files changed, 93 insertions(+), 38 deletions(-) delete mode 100644 apps/cow-amm-deployer/src/hooks/useRawTxData.ts diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx index 2863bee42..82bc0d55e 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx @@ -18,7 +18,7 @@ import { AccordionTrigger, } from "#/components/ui/accordion"; import { Form } from "#/components/ui/form"; -import { useRawTxData } from "#/hooks/useRawTxData"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { ICowAmm } from "#/lib/fetchAmmData"; import { ammEditSchema } from "#/lib/schema"; import { buildTxEditAMMArgs } from "#/lib/transactionFactory"; @@ -31,7 +31,7 @@ export function EditAMMForm({ cowAmmData: ICowAmm; submitButtonText: string; }) { - const router = useRouter(); + const _router = useRouter(); const form = useForm>({ // @ts-ignore @@ -42,7 +42,7 @@ export function EditAMMForm({ token0: cowAmmData.token0, token1: cowAmmData.token1, minTradedToken0: Number( - formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals), + formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals) ), priceOracleSchema: cowAmmData.decodedPriceOracleData, }, @@ -51,8 +51,26 @@ export function EditAMMForm({ const { formState: { errors, isSubmitting }, } = form; - const { sendTransactions } = useRawTxData(); + const { + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); const onSubmit = async (data: typeof ammEditSchema._type) => { const txArgs = buildTxEditAMMArgs({ data: data, @@ -60,8 +78,8 @@ export function EditAMMForm({ }); try { - await sendTransactions(txArgs); - router.push(`/${cowAmmData.user.id}/amms/${cowAmmData.id}`); + writeContractWithSafe(txArgs); + // router.push(`/${cowAmmData.user.id}/amms/${cowAmmData.id}`); } catch { toast({ title: `Transaction failed`, @@ -87,7 +105,7 @@ export function EditAMMForm({ Advanced Options diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx index 3577aa9cf..50410ccf7 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx @@ -7,7 +7,7 @@ import React from "react"; import { useAccount } from "wagmi"; import { Button } from "#/components/Button"; -import { useRawTxData } from "#/hooks/useRawTxData"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { ICowAmm } from "#/lib/fetchAmmData"; import { DisableCoWAMMArgs, TRANSACTION_TYPES } from "#/lib/transactionFactory"; import { ChainId } from "#/utils/chainsPublicClients"; @@ -35,8 +35,26 @@ function EnableAMMButton({ ammData }: { ammData: ICowAmm }) { function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { const { chainId } = useAccount(); - const { sendTransactions } = useRawTxData(); + const { + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); async function onDisableAMM() { const txArgs = { type: TRANSACTION_TYPES.DISABLE_COW_AMM, @@ -46,7 +64,7 @@ function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { version: ammData.version, } as DisableCoWAMMArgs; try { - await sendTransactions([txArgs]); + await writeContractWithSafe([txArgs]); } catch { toast({ title: `Transaction failed`, diff --git a/apps/cow-amm-deployer/src/components/DepositForm.tsx b/apps/cow-amm-deployer/src/components/DepositForm.tsx index c0c8afb4b..883e27c12 100644 --- a/apps/cow-amm-deployer/src/components/DepositForm.tsx +++ b/apps/cow-amm-deployer/src/components/DepositForm.tsx @@ -10,7 +10,7 @@ import { TokenAmountInput } from "#/app/[userId]/new/(components)/TokenAmountInp import { Button } from "#/components"; import { TokenInfo } from "#/components/TokenInfo"; import { Form, FormMessage } from "#/components/ui/form"; -import { useRawTxData } from "#/hooks/useRawTxData"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { ICowAmm } from "#/lib/fetchAmmData"; import { getDepositSchema } from "#/lib/schema"; import { buildDepositAmmArgs } from "#/lib/transactionFactory"; @@ -24,10 +24,10 @@ export function DepositForm({ walletBalanceToken0: string; walletBalanceToken1: string; }) { - const router = useRouter(); + const _router = useRouter(); const schema = getDepositSchema( Number(walletBalanceToken0), - Number(walletBalanceToken1), + Number(walletBalanceToken1) ); const form = useForm>({ @@ -39,7 +39,26 @@ export function DepositForm({ formState: { errors, isSubmitting }, control, } = form; - const { sendTransactions } = useRawTxData(); + + const { + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); const [amount0, amount1] = useWatch({ control, name: ["amount0", "amount1"], @@ -53,8 +72,8 @@ export function DepositForm({ }); try { - await sendTransactions(txArgs); - router.push(`${cowAmmData.user.id}/amms/${cowAmmData.id}`); + writeContractWithSafe(txArgs); + // router.push(`${cowAmmData.user.id}/amms/${cowAmmData.id}`); } catch { toast({ title: `Transaction failed`, diff --git a/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx index f7495b35e..3d58e5c14 100644 --- a/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx +++ b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx @@ -5,15 +5,34 @@ import { useState } from "react"; import { Button } from "#/components"; import { AlertCard } from "#/components/AlertCard"; -import { useRawTxData } from "#/hooks/useRawTxData"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; import { ICowAmm } from "#/lib/fetchAmmData"; import { buildMigrateToStandaloneVersionArgs } from "#/lib/transactionFactory"; import { Spinner } from "./Spinner"; export function OldVersionOfAMMAlert({ ammData }: { ammData: ICowAmm }) { - const { sendTransactions } = useRawTxData(); + const { + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + } = useManagedTransaction(); + // eslint-disable-next-line no-console + console.log({ + hash, + error, + writeContract, + writeContractWithSafe, + status, + safeHash, + isWalletContract, + }); const [isLoading, setIsLoading] = useState(false); + return (
@@ -30,7 +49,7 @@ export function OldVersionOfAMMAlert({ ammData }: { ammData: ICowAmm }) { data: ammData, }); try { - await sendTransactions(txArgs); + writeContractWithSafe(txArgs); } catch { toast({ title: `Transaction failed`, diff --git a/apps/cow-amm-deployer/src/hooks/useRawTxData.ts b/apps/cow-amm-deployer/src/hooks/useRawTxData.ts deleted file mode 100644 index e53453b24..000000000 --- a/apps/cow-amm-deployer/src/hooks/useRawTxData.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { useSafeAppsSDK } from "@gnosis.pm/safe-apps-react-sdk"; - -import { - AllTransactionArgs, - TransactionFactory, -} from "#/lib/transactionFactory"; - -export function useRawTxData() { - const { safe, sdk } = useSafeAppsSDK(); - - const sendTransactions = async (argsArray: AllTransactionArgs[]) => { - const txs = argsArray.map((arg) => { - return TransactionFactory.createRawTx(arg.type, arg); - }); - await sdk.txs.send({ txs }); - }; - - return { safe, sendTransactions }; -} From 494a023ba93e562c7836b0466601c38dd08b5dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 07:47:27 -0300 Subject: [PATCH 10/22] cow-amm-deployer: update deps --- apps/cow-amm-deployer/package.json | 32 +- pnpm-lock.yaml | 1882 ++++++++++++++-------------- 2 files changed, 989 insertions(+), 925 deletions(-) diff --git a/apps/cow-amm-deployer/package.json b/apps/cow-amm-deployer/package.json index 0df3c563e..fd9f9e420 100644 --- a/apps/cow-amm-deployer/package.json +++ b/apps/cow-amm-deployer/package.json @@ -19,10 +19,10 @@ "dependencies": { "@bleu/gql": "workspace:*", "@bleu/tsconfig": "workspace:*", - "@bleu/ui": "^0.1.99", + "@bleu/ui": "^0.1.102", "@gnosis.pm/safe-apps-react-sdk": "^4.6.2", "@gnosis.pm/safe-apps-sdk": "^7.8.0", - "@hookform/resolvers": "3.4.2", + "@hookform/resolvers": "3.6.0", "@radix-ui/colors": "^3.0.0", "@radix-ui/react-accordion": "^1.1.2", "@radix-ui/react-checkbox": "^1.0.4", @@ -39,12 +39,12 @@ "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-tooltip": "1.0.7", - "@safe-global/api-kit": "^2.4.0", - "@safe-global/protocol-kit": "^3.0.1", - "@safe-global/safe-core-sdk-types": "^4.0.1", - "@safe-global/safe-gateway-typescript-sdk": "^3.21.1", + "@safe-global/api-kit": "^2.4.1", + "@safe-global/protocol-kit": "^4.0.1", + "@safe-global/safe-core-sdk-types": "^5.0.1", + "@safe-global/safe-gateway-typescript-sdk": "^3.21.2", "@tanstack/react-query": "5.40.1", - "babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517", + "babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "cmdk": "^0.2.1", @@ -59,31 +59,31 @@ "lodash": "^4.17.21", "lodash.merge": "^4.6.2", "next": "15.0.0-rc.0", - "react": "19.0.0-rc-6f23540c7d-20240528", - "react-dom": "19.0.0-rc-6f23540c7d-20240528", + "react": "19.0.0-rc-6230622a1a-20240610", + "react-dom": "19.0.0-rc-6230622a1a-20240610", "react-hook-form": "7.51.5", "server-only": "^0.0.1", "swr": "^2.2.5", "tailwind-merge": "^2.3.0", "tailwindcss-animate": "^1.0.7", "tiny-invariant": "^1.3.3", - "viem": "^2.13.1", + "viem": "^2.13.8", "wagmi": "^2.9.11", "zod": "^3.23.8" }, "devDependencies": { - "@0no-co/graphqlsp": "^1.12.5", + "@0no-co/graphqlsp": "^1.12.7", "@bleu/eslint-config": "workspace:^", "@bleu/utils": "workspace:^", "@graphql-codegen/cli": "5.0.2", "@graphql-codegen/typescript-graphql-request": "6.2.0", - "@testing-library/jest-dom": "6.4.5", - "@testing-library/react": "^15.0.7", + "@testing-library/jest-dom": "6.4.6", + "@testing-library/react": "^16.0.0", "@testing-library/user-event": "14.5.2", "@types/jest": "^29.5.12", - "@types/lodash": "^4.17.4", + "@types/lodash": "^4.17.5", "@types/lodash.merge": "^4.6.9", - "@types/node": "^20.12.12", + "@types/node": "^20.14.2", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "autoprefixer": "^10.4.19", @@ -92,7 +92,7 @@ "npm-run-all": "^4.1.5", "postcss": "^8.4.38", "tailwind-scrollbar": "^3.1.0", - "tailwindcss": "^3.4.3", + "tailwindcss": "^3.4.4", "ts-jest": "^29.1.4", "typescript": "5.4.5" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4b38fa2c2..b85bf2f7c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -344,83 +344,83 @@ importers: specifier: workspace:* version: link:../../packages/tsconfig '@bleu/ui': - specifier: ^0.1.99 - version: 0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + specifier: ^0.1.102 + version: 0.1.102(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-hook-form@7.51.5(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@gnosis.pm/safe-apps-react-sdk': specifier: ^4.6.2 - version: 4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + version: 4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) '@gnosis.pm/safe-apps-sdk': specifier: ^7.8.0 version: 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@hookform/resolvers': - specifier: 3.4.2 - version: 3.4.2(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528)) + specifier: 3.6.0 + version: 3.6.0(react-hook-form@7.51.5(react@19.0.0-rc-6230622a1a-20240610)) '@radix-ui/colors': specifier: ^3.0.0 version: 3.0.0 '@radix-ui/react-accordion': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-checkbox': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.3.0(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-popover': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-progress': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-select': specifier: 2.0.0 - version: 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-separator': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-slider': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-switch': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-tabs': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-tooltip': specifier: 1.0.7 - version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@safe-global/api-kit': - specifier: ^2.4.0 + specifier: ^2.4.1 version: 2.4.1(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) '@safe-global/protocol-kit': - specifier: ^3.0.1 - version: 3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@safe-global/safe-core-sdk-types': specifier: ^4.0.1 - version: 4.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-core-sdk-types': + specifier: ^5.0.1 + version: 5.0.1(typescript@5.4.5)(zod@3.23.8) '@safe-global/safe-gateway-typescript-sdk': - specifier: ^3.21.1 - version: 3.21.1 + specifier: ^3.21.2 + version: 3.21.2 '@tanstack/react-query': specifier: 5.40.1 - version: 5.40.1(react@19.0.0-rc-6f23540c7d-20240528) + version: 5.40.1(react@19.0.0-rc-6230622a1a-20240610) babel-plugin-react-compiler: - specifier: 0.0.0-experimental-592953e-20240517 - version: 0.0.0-experimental-592953e-20240517 + specifier: 0.0.0-experimental-938cd9a-20240601 + version: 0.0.0-experimental-938cd9a-20240601 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -429,7 +429,7 @@ importers: version: 2.1.1 cmdk: specifier: ^0.2.1 - version: 0.2.1(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 0.2.1(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) copy-to-clipboard: specifier: ^3.3.3 version: 3.3.3 @@ -438,7 +438,7 @@ importers: version: 3.6.0 downshift: specifier: ^8.4.0 - version: 8.4.0(react@19.0.0-rc-6f23540c7d-20240528) + version: 8.4.0(react@19.0.0-rc-6230622a1a-20240610) fathom-client: specifier: ^3.6.0 version: 3.6.0 @@ -462,44 +462,44 @@ importers: version: 4.6.2 next: specifier: 15.0.0-rc.0 - version: 15.0.0-rc.0(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + version: 15.0.0-rc.0(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) react: - specifier: 19.0.0-rc-6f23540c7d-20240528 - version: 19.0.0-rc-6f23540c7d-20240528 + specifier: 19.0.0-rc-6230622a1a-20240610 + version: 19.0.0-rc-6230622a1a-20240610 react-dom: - specifier: 19.0.0-rc-6f23540c7d-20240528 - version: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + specifier: 19.0.0-rc-6230622a1a-20240610 + version: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) react-hook-form: specifier: 7.51.5 - version: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) + version: 7.51.5(react@19.0.0-rc-6230622a1a-20240610) server-only: specifier: ^0.0.1 version: 0.0.1 swr: specifier: ^2.2.5 - version: 2.2.5(react@19.0.0-rc-6f23540c7d-20240528) + version: 2.2.5(react@19.0.0-rc-6230622a1a-20240610) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))) + version: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) tiny-invariant: specifier: ^1.3.3 version: 1.3.3 viem: - specifier: ^2.13.1 - version: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + specifier: ^2.13.8 + version: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) wagmi: specifier: ^2.9.11 - version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6230622a1a-20240610))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) zod: specifier: ^3.23.8 version: 3.23.8 devDependencies: '@0no-co/graphqlsp': - specifier: ^1.12.5 - version: 1.12.5(graphql@16.8.1)(typescript@5.4.5) + specifier: ^1.12.7 + version: 1.12.7(graphql@16.8.1)(typescript@5.4.5) '@bleu/eslint-config': specifier: workspace:^ version: link:../../packages/eslint-config @@ -508,16 +508,16 @@ importers: version: link:../../packages/utils '@graphql-codegen/cli': specifier: 5.0.2 - version: 5.0.2(@parcel/watcher@2.3.0)(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 5.0.2(@parcel/watcher@2.3.0)(@types/node@20.14.2)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) '@graphql-codegen/typescript-graphql-request': specifier: 6.2.0 version: 6.2.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1) '@testing-library/jest-dom': - specifier: 6.4.5 - version: 6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))) + specifier: 6.4.6 + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) '@testing-library/react': - specifier: ^15.0.7 - version: 15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + specifier: ^16.0.0 + version: 16.0.0(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) '@testing-library/user-event': specifier: 14.5.2 version: 14.5.2(@testing-library/dom@10.1.0) @@ -525,14 +525,14 @@ importers: specifier: ^29.5.12 version: 29.5.12 '@types/lodash': - specifier: ^4.17.4 - version: 4.17.4 + specifier: ^4.17.5 + version: 4.17.5 '@types/lodash.merge': specifier: ^4.6.9 version: 4.6.9 '@types/node': - specifier: ^20.12.12 - version: 20.12.12 + specifier: ^20.14.2 + version: 20.14.2 '@types/react': specifier: ^18.3.3 version: 18.3.3 @@ -544,7 +544,7 @@ importers: version: 10.4.19(postcss@8.4.38) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + version: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -556,13 +556,13 @@ importers: version: 8.4.38 tailwind-scrollbar: specifier: ^3.1.0 - version: 3.1.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))) + version: 3.1.0(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) tailwindcss: - specifier: ^3.4.3 - version: 3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + specifier: ^3.4.4 + version: 3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) ts-jest: specifier: ^29.1.4 - version: 29.1.4(@babel/core@7.23.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.4(@babel/core@7.23.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)))(typescript@5.4.5) typescript: specifier: 5.4.5 version: 5.4.5 @@ -1055,7 +1055,7 @@ importers: version: 10.0.0(eslint@8.56.0) eslint-plugin-tailwindcss: specifier: ^3.13.1 - version: 3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) + version: 3.13.1(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))) prettier: specifier: ^3.1.1 version: 3.1.1 @@ -1195,8 +1195,8 @@ packages: graphql: optional: true - '@0no-co/graphqlsp@1.12.5': - resolution: {integrity: sha512-YS9s8sf3XLaVdBt33u1mbUdfUSLiarQW1SFd3ITh2CLWz1nVnVTN0oCrpepuFHUJ7rt+b6Gk14sgjP4ONdeZfQ==} + '@0no-co/graphqlsp@1.12.7': + resolution: {integrity: sha512-jZeTKW8pl/IWTHWZUox5oQk0n+IsLNY+OkmxoZwW+AkZaQOXdzIlZ0OabJGw4+/vutwdZYR+UsoC8Nhi9hRnRw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 typescript: ^5.0.0 @@ -1208,6 +1208,9 @@ packages: '@adobe/css-tools@4.3.2': resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==} + '@adobe/css-tools@4.4.0': + resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} + '@adraffy/ens-normalize@1.10.0': resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} @@ -2242,8 +2245,8 @@ packages: '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - '@bleu/ui@0.1.99': - resolution: {integrity: sha512-14Oao0RVFdV7QBXYMrZ3tbzug6Ycbe4aPqwwrNMJVtFW+yoq0AC1vyyJ93FKkLYR1pbkLVqB82kWrp+Nt3OELw==, tarball: https://npm.pkg.github.com/download/@bleu/ui/0.1.99/049f1b54e84f83786a4e6ce16be54b1a0b5cddaa} + '@bleu/ui@0.1.102': + resolution: {integrity: sha512-vQlPTPrDfLjBiVPtgwnTF/+gmSwG5N/jOLVtlKig87o/SqjQRPFIbfLI9KUmV6iga3695iQ1AAFNLfqUlhPuHQ==, tarball: https://npm.pkg.github.com/download/@bleu/ui/0.1.102/34e5a6788c8103fa8c81b357f7b225c7f9b3cc7f} engines: {node: '>=18.0.0'} peerDependencies: react: '>=18' @@ -3491,8 +3494,8 @@ packages: peerDependencies: react-hook-form: ^7.0.0 - '@hookform/resolvers@3.4.2': - resolution: {integrity: sha512-1m9uAVIO8wVf7VCDAGsuGA0t6Z3m6jVGAN50HkV9vYLl0yixKK/Z1lr01vaRvYCkIKGoy1noVRxMzQYb4y/j1Q==} + '@hookform/resolvers@3.6.0': + resolution: {integrity: sha512-UBcpyOX3+RR+dNnqBd0lchXpoL8p4xC21XP8H6Meb8uve5Br1GCnmg0PcBoKKqPKgGu9GHQ/oygcmPrQhetwqw==} peerDependencies: react-hook-form: ^7.0.0 @@ -5425,9 +5428,6 @@ packages: '@safe-global/protocol-kit@2.0.0': resolution: {integrity: sha512-alnSxNZKC1ssKrFG5ytluu9kNKGwBifb1xhOyCqwMnm72JksbCEo0UWlNvaeCiYMwhYvMyS++mfxcLAsV/8Gfw==} - '@safe-global/protocol-kit@3.0.1': - resolution: {integrity: sha512-7S2QCvIDw3NsErF0f8tIfiTBz32btCAkw7IYuQFPc+G7clLrvDNhDaZYSoDsa8F0EoEhn+605VA7XP//iL6AIg==} - '@safe-global/protocol-kit@4.0.1': resolution: {integrity: sha512-dD3dJF33VbCeqH8B4RTSP2aupxO6rQbmtTr3mzKdsD05JHUoMHVty37fihQLCyxn23UUxTyuptFPBnczEsvPJw==} @@ -5446,9 +5446,6 @@ packages: '@safe-global/safe-core-sdk-types@3.0.1': resolution: {integrity: sha512-2AdlK6GJ5YEZXrQwFsHFwQScnNo3OonF3O6KzVeMc0/7OAuOTYBzKq1jzju2Eck6Z8UNPUinlHoF2Zb2pvTKhw==} - '@safe-global/safe-core-sdk-types@4.0.1': - resolution: {integrity: sha512-cXW6petRWqUw1n04ZhVPgjzIL65FkAMqbPwkFAAlQ1lBxTt6xdxktLoAhgEDlqLNGibvncsNvKhxa1ib4T9MGg==} - '@safe-global/safe-core-sdk-types@5.0.1': resolution: {integrity: sha512-xIlHZ9kaAIwEhR0OY0i2scdcQyrc0tDJ+eZZ04lhvg81cgYLY1Z5wfJQqazR2plPT1Hz0A9C79jYdUVvzoF/tw==} @@ -5465,8 +5462,8 @@ packages: resolution: {integrity: sha512-qBDM469cVCedpBpeTSn+k5FUr9+rq5bMTflp/mKd7h35uafcexvOR/PHZn2qftqV8b1kc9b8t22cPRJ2365jew==} engines: {node: '>=16'} - '@safe-global/safe-gateway-typescript-sdk@3.21.1': - resolution: {integrity: sha512-7nakIjcRSs6781LkizYpIfXh1DYlkUDqyALciqz/BjFU/S97sVjZdL4cuKsG9NEarytE+f6p0Qbq2Bo1aocVUA==} + '@safe-global/safe-gateway-typescript-sdk@3.21.2': + resolution: {integrity: sha512-N9Y2CKPBVbc8FbOKzqepy8TJUY2VILX7bmxV4ruByLJvR9PBnGvGfnOhw975cDn6PmSziXL0RaUWHpSW23rsng==} engines: {node: '>=16'} '@scure/base@1.1.5': @@ -5759,8 +5756,8 @@ packages: vitest: optional: true - '@testing-library/jest-dom@6.4.5': - resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==} + '@testing-library/jest-dom@6.4.6': + resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} peerDependencies: '@jest/globals': '>= 28' @@ -5787,16 +5784,20 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 - '@testing-library/react@15.0.7': - resolution: {integrity: sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==} + '@testing-library/react@16.0.0': + resolution: {integrity: sha512-guuxUKRWQ+FgNX0h0NS0FIq3Q3uLtWVpBzcLOggmfMoUpgBnzBzvLLd4fbm6yS8ydJd94cIfY4yP9qUQjM2KwQ==} engines: {node: '>=18'} peerDependencies: + '@testing-library/dom': ^10.0.0 '@types/react': ^18.0.0 + '@types/react-dom': ^18.0.0 react: ^18.0.0 react-dom: ^18.0.0 peerDependenciesMeta: '@types/react': optional: true + '@types/react-dom': + optional: true '@testing-library/user-event@14.5.2': resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} @@ -5940,8 +5941,8 @@ packages: '@types/lodash@4.14.202': resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} - '@types/lodash@4.17.4': - resolution: {integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==} + '@types/lodash@4.17.5': + resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} '@types/micromatch@4.0.6': resolution: {integrity: sha512-2eulCHWqjEpk9/vyic4tBhI8a9qQEl6DaK2n/sF7TweX9YESlypgKyhXMDGt4DAOy/jhLPvVrZc8pTDAMsplJA==} @@ -6852,8 +6853,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: - resolution: {integrity: sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==} + babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601: + resolution: {integrity: sha512-t+uBHxbfxq2z4j83ZYgOsV0dlSaRgPfhrYB5+CMv6ByXUAv5wm7m7YLFx67fWKrG3eDhq3+KH1OMeFypuDLkUA==} babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} @@ -7159,9 +7160,6 @@ packages: caniuse-lite@1.0.30001571: resolution: {integrity: sha512-tYq/6MoXhdezDLFZuCO/TKboTzuQ/xR5cFdgXPfDtM7/kchBO3b4VWghE/OAi/DV7tTdhmLjZiZBZi1fA/GheQ==} - caniuse-lite@1.0.30001593: - resolution: {integrity: sha512-UWM1zlo3cZfkpBysd7AS+z+v007q9G1+fLTUU42rQnY6t2axoogPW/xol6T7juU5EUoOhML4WgBIdG+9yYqAjQ==} - caniuse-lite@1.0.30001625: resolution: {integrity: sha512-4KE9N2gcRH+HQhpeiRZXd+1niLB/XNLAhSy4z7fI8EzcbcPoAqjNInxVHTiTwWfTIV4w096XG8OtCOCQQKPv3w==} @@ -12286,10 +12284,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-6f23540c7d-20240528: - resolution: {integrity: sha512-TPZ7f0MYH/y51jHuPx0UdMH+WdZ7xX1UOcydOZWpjbjs2GXSgJFV2ilIm7FUSinHB6DSoGFVxhPqm1sa63IkbA==} + react-dom@19.0.0-rc-6230622a1a-20240610: + resolution: {integrity: sha512-56G4Pum5E7FeGL1rwHX5IxidSJxQnXP4yORRo0pVeOJuu5DQJvNKpUwmJoftMP/ez0AiglYTY77L2Gs8iyt1Hg==} peerDependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-hook-form@7.43.9: resolution: {integrity: sha512-AUDN3Pz2NSeoxQ7Hs6OhQhDr6gtF9YRuutGDwPQqhSUAHJSgGl2VeY3qN19MG0SucpjgDiuMJ4iC5T5uB+eaNQ==} @@ -12445,8 +12443,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-6f23540c7d-20240528: - resolution: {integrity: sha512-fo4drQwFP/R7ZJF5USwhn8YccEqOiH9C1ci5Jg7iM2+5pId8Bjcno+dDT/Cv5iYGmgwZzQIa+EwczD5IHEsmQA==} + react@19.0.0-rc-6230622a1a-20240610: + resolution: {integrity: sha512-SMgWGY//7nO7F3HMuBfmC15Cr4vTe2tlpSCATfnz/wymSftDOKUqc+0smjRhcUeCFCc1zhOAWJ+N//U5CrmOzQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -12761,8 +12759,8 @@ packages: scheduler@0.24.0-canary-efb381bbf-20230505: resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} - scheduler@0.25.0-rc-6f23540c7d-20240528: - resolution: {integrity: sha512-5V2Aa+F16Qe+kT1zjwxPzBRoF6/xjw+LU9L2c1j2Dzw2GTiLEV8DxG3RAkRN8Lm5jlqbyK9ivRH3GGtipy+a6Q==} + scheduler@0.25.0-rc-6230622a1a-20240610: + resolution: {integrity: sha512-GTIQdJXthps5mgkIFo7yAq03M0QQYTfN8z+GrnMC/SCKFSuyFP5tk2BMaaWUsVy4u4r+dTLdiXH8JEivVls0Bw==} scrypt-js@3.0.1: resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} @@ -13377,8 +13375,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tailwindcss@3.4.3: - resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} + tailwindcss@3.4.4: + resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==} engines: {node: '>=14.0.0'} hasBin: true @@ -14104,16 +14102,16 @@ packages: typescript: optional: true - viem@2.13.2: - resolution: {integrity: sha512-9n64fjWL34Q8MQ0EksI77/okE8tiS9bQlGb11/JMGoaEE+MYJgG8yDAWX2srqp7MsBK7/ahoAWJZdMwgcFD65g==} + viem@2.13.7: + resolution: {integrity: sha512-SZWn9LPrz40PHl4PM2iwkPTTtjWPDFsnLr32UwpqC/Z5f0AwxitjLyZdDKcImvbWZ3vLQ0oPggR1aLlqvTcUug==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: typescript: optional: true - viem@2.13.7: - resolution: {integrity: sha512-SZWn9LPrz40PHl4PM2iwkPTTtjWPDFsnLr32UwpqC/Z5f0AwxitjLyZdDKcImvbWZ3vLQ0oPggR1aLlqvTcUug==} + viem@2.13.8: + resolution: {integrity: sha512-JX8dOrCJKazNVs7YAahXnX+NANp0nlK16GyYjtQXILnar1daCPsLy4uzKgZDBVBD6DdRP2lsbPfo4X7QX3q5EQ==} peerDependencies: typescript: '>=5.0.4' peerDependenciesMeta: @@ -14668,7 +14666,7 @@ snapshots: optionalDependencies: graphql: 16.8.1 - '@0no-co/graphqlsp@1.12.5(graphql@16.8.1)(typescript@5.4.5)': + '@0no-co/graphqlsp@1.12.7(graphql@16.8.1)(typescript@5.4.5)': dependencies: '@gql.tada/internal': 1.0.0(graphql@16.8.1)(typescript@5.4.5) graphql: 16.8.1 @@ -14678,6 +14676,8 @@ snapshots: '@adobe/css-tools@4.3.2': {} + '@adobe/css-tools@4.4.0': {} + '@adraffy/ens-normalize@1.10.0': {} '@adraffy/ens-normalize@1.10.1': {} @@ -14703,7 +14703,7 @@ snapshots: '@babel/core': 7.23.6 '@babel/generator': 7.23.6 '@babel/parser': 7.23.6 - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@babel/traverse': 7.23.6 '@babel/types': 7.23.6 babel-preset-fbjs: 3.4.0(@babel/core@7.23.6) @@ -14804,7 +14804,7 @@ snapshots: '@babel/generator@7.2.0': dependencies: - '@babel/types': 7.23.6 + '@babel/types': 7.24.6 jsesc: 2.5.2 lodash: 4.17.21 source-map: 0.5.7 @@ -17120,58 +17120,58 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@bleu/ui@0.1.99(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': - dependencies: - '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menubar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-progress': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-select': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@tanstack/react-table': 8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@bleu/ui@0.1.102(@types/react-dom@18.3.0)(@types/react@18.3.3)(plotly.js@2.27.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-hook-form@7.51.5(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react-router-dom@6.23.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': + dependencies: + '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-icons': 1.3.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-label': 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-menubar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-navigation-menu': 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-progress': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-select': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@tanstack/react-table': 8.17.3(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) class-variance-authority: 0.7.0 clsx: 2.1.1 - cmdk: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + cmdk: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) copy-to-clipboard: 3.3.3 date-fns: 3.6.0 - embla-carousel-react: 8.1.3(react@19.0.0-rc-6f23540c7d-20240528) + embla-carousel-react: 8.1.3(react@19.0.0-rc-6230622a1a-20240610) i18next: 23.11.5 jodit: 4.2.25 - jodit-react: 4.1.2(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + jodit-react: 4.1.2(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) object-to-formdata: 4.5.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) - react-colorful: 5.6.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react-day-picker: 8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6f23540c7d-20240528) - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) - react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) - react-plotly.js: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6f23540c7d-20240528) - react-router: 6.23.1(react@19.0.0-rc-6f23540c7d-20240528) - react-router-dom: 6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - swr: 2.2.5(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-beautiful-dnd: 13.1.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) + react-colorful: 5.6.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react-day-picker: 8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6230622a1a-20240610) + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-hook-form: 7.51.5(react@19.0.0-rc-6230622a1a-20240610) + react-i18next: 14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) + react-plotly.js: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6230622a1a-20240610) + react-router: 6.23.1(react@19.0.0-rc-6230622a1a-20240610) + react-router-dom: 6.23.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + swr: 2.2.5(react@19.0.0-rc-6230622a1a-20240610) tailwind-merge: 2.3.0 zod: 3.23.8 transitivePeerDependencies: @@ -17965,11 +17965,11 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react-dom@2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@floating-ui/react-dom@2.0.4(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@floating-ui/dom': 1.5.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@floating-ui/utils@0.1.6': {} @@ -17982,10 +17982,10 @@ snapshots: - encoding - utf-8-validate - '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10)': + '@gnosis.pm/safe-apps-react-sdk@4.6.2(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10)': dependencies: '@gnosis.pm/safe-apps-sdk': 7.8.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 transitivePeerDependencies: - bufferutil - encoding @@ -18008,7 +18008,7 @@ snapshots: '@gql.tada/cli-utils@1.3.9(graphql@16.8.1)(svelte@4.2.17)(typescript@5.4.5)': dependencies: - '@0no-co/graphqlsp': 1.12.5(graphql@16.8.1)(typescript@5.4.5) + '@0no-co/graphqlsp': 1.12.7(graphql@16.8.1)(typescript@5.4.5) '@gql.tada/internal': 1.0.0(graphql@16.8.1)(typescript@5.4.5) '@vue/compiler-dom': 3.4.27 '@vue/language-core': 2.0.19(typescript@5.4.5) @@ -18172,7 +18172,7 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.3.0)(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.3.0)(@types/node@20.14.2)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': dependencies: '@babel/generator': 7.23.6 '@babel/template': 7.22.15 @@ -18183,12 +18183,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/code-file-loader': 8.0.3(graphql@16.8.1) '@graphql-tools/git-loader': 8.0.3(graphql@16.8.1) - '@graphql-tools/github-loader': 8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@20.14.2)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.1(graphql@16.8.1) - '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 @@ -18196,7 +18196,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.8.1 - graphql-config: 5.0.3(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + graphql-config: 5.0.3(@types/node@20.14.2)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.0 @@ -18663,27 +18663,27 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.0.5(@types/node@20.12.12)(graphql@16.8.1)': + '@graphql-tools/executor-http@1.0.5(@types/node@20.12.7)(graphql@16.8.1)': dependencies: '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@repeaterjs/repeater': 3.0.5 '@whatwg-node/fetch': 0.9.14 extract-files: 11.0.0 graphql: 16.8.1 - meros: 1.3.0(@types/node@20.12.12) + meros: 1.3.0(@types/node@20.12.7) tslib: 2.6.2 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-http@1.0.5(@types/node@20.12.7)(graphql@16.8.1)': + '@graphql-tools/executor-http@1.0.5(@types/node@20.14.2)(graphql@16.8.1)': dependencies: '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@repeaterjs/repeater': 3.0.5 '@whatwg-node/fetch': 0.9.14 extract-files: 11.0.0 graphql: 16.8.1 - meros: 1.3.0(@types/node@20.12.7) + meros: 1.3.0(@types/node@20.14.2) tslib: 2.6.2 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -18743,10 +18743,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.0(@types/node@20.12.12)(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-tools/github-loader@8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@whatwg-node/fetch': 0.9.14 @@ -18758,10 +18758,10 @@ snapshots: - encoding - supports-color - '@graphql-tools/github-loader@8.0.0(@types/node@20.12.7)(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-tools/github-loader@8.0.0(@types/node@20.14.2)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.14.2)(graphql@16.8.1) '@graphql-tools/graphql-tag-pluck': 8.1.0(graphql@16.8.1) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@whatwg-node/fetch': 0.9.14 @@ -18874,9 +18874,9 @@ snapshots: graphql: 16.8.1 tslib: 2.6.2 - '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@types/js-yaml': 4.0.9 '@types/json-stable-stringify': 1.0.36 @@ -18902,9 +18902,9 @@ snapshots: - supports-color - utf-8-validate - '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': dependencies: - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@types/js-yaml': 4.0.9 '@types/json-stable-stringify': 1.0.36 @@ -18930,9 +18930,9 @@ snapshots: - supports-color - utf-8-validate - '@graphql-tools/prisma-loader@8.0.2(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': + '@graphql-tools/prisma-loader@8.0.2(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@types/js-yaml': 4.0.9 '@types/json-stable-stringify': 1.0.36 @@ -19021,12 +19021,12 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/url-loader@8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.12)(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) @@ -19043,44 +19043,44 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': + '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) - '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) - '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) '@types/ws': 8.5.10 '@whatwg-node/fetch': 0.9.14 graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)) tslib: 2.6.2 value-or-promise: 1.0.12 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) transitivePeerDependencies: - '@types/node' - bufferutil - encoding - utf-8-validate - '@graphql-tools/url-loader@8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4)': + '@graphql-tools/url-loader@8.0.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) - '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) - '@graphql-tools/executor-http': 1.0.5(@types/node@20.12.7)(graphql@16.8.1) - '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/executor-http': 1.0.5(@types/node@20.14.2)(graphql@16.8.1) + '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) '@types/ws': 8.5.10 '@whatwg-node/fetch': 0.9.14 graphql: 16.8.1 - isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + isomorphic-ws: 5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) tslib: 2.6.2 value-or-promise: 1.0.12 - ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) + ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@types/node' - bufferutil @@ -19175,9 +19175,9 @@ snapshots: dependencies: react-hook-form: 7.43.9(react@18.3.1) - '@hookform/resolvers@3.4.2(react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528))': + '@hookform/resolvers@3.6.0(react-hook-form@7.51.5(react@19.0.0-rc-6230622a1a-20240610))': dependencies: - react-hook-form: 7.51.5(react@19.0.0-rc-6f23540c7d-20240528) + react-hook-form: 7.51.5(react@19.0.0-rc-6230622a1a-20240610) '@humanwhocodes/config-array@0.11.13': dependencies: @@ -19419,6 +19419,41 @@ snapshots: - supports-color - ts-node + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.14.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + '@jest/create-cache-key-function@29.7.0': dependencies: '@jest/types': 29.6.3 @@ -19846,15 +19881,15 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)': + '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 - react-i18next: 14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + react-i18next: 14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4)': dependencies: @@ -19929,12 +19964,12 @@ snapshots: - utf-8-validate optional: true - '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(utf-8-validate@5.0.10)': + '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 15.0.0 '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -19947,15 +19982,15 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) util: 0.12.5 uuid: 8.3.2 optionalDependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - bufferutil - encoding @@ -20625,7 +20660,7 @@ snapshots: '@radix-ui/primitive@1.0.0': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/primitive@1.0.1': dependencies: @@ -20649,42 +20684,42 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -20692,35 +20727,35 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -20742,19 +20777,19 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -20776,19 +20811,19 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -20806,23 +20841,23 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -20831,32 +20866,32 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-context@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-context@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -20865,32 +20900,32 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dialog@1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-dialog@1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-remove-scroll: 2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - '@types/react' @@ -20917,25 +20952,25 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -20947,23 +20982,23 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -20993,40 +21028,40 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-guards@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-focus-guards@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21035,21 +21070,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -21075,32 +21110,32 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21109,15 +21144,15 @@ snapshots: dependencies: react: 18.3.1 - '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 - '@radix-ui/react-id@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-id@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21127,11 +21162,11 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 @@ -21145,81 +21180,81 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-menubar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-menubar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21248,26 +21283,26 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21310,31 +21345,31 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@floating-ui/react-dom': 2.0.4(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@floating-ui/react-dom': 2.0.4(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-portal@1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -21356,23 +21391,23 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -21385,23 +21420,23 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@babel/runtime': 7.24.5 + '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -21413,12 +21448,12 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21434,32 +21469,32 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-progress@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21482,38 +21517,38 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21548,32 +21583,32 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) aria-hidden: 1.2.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21588,12 +21623,12 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21618,31 +21653,31 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-slider@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-slot@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-slot@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21652,11 +21687,11 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 @@ -21676,18 +21711,18 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-switch@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21709,19 +21744,19 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21747,51 +21782,51 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 @@ -21817,31 +21852,31 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21850,18 +21885,18 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21871,40 +21906,40 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) react: 18.3.1 optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 - '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 - react: 19.0.0-rc-6f23540c7d-20240528 + '@babel/runtime': 7.24.5 + react: 19.0.0-rc-6230622a1a-20240610 '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: @@ -21913,10 +21948,10 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 @@ -21927,26 +21962,26 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/rect': 1.0.1 react: 18.3.1 optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@radix-ui/rect': 1.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 @@ -21958,11 +21993,11 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@types/react': 18.3.3 @@ -21976,19 +22011,19 @@ snapshots: '@types/react': 18.3.1 '@types/react-dom': 18.3.0 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.23.6 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/rect@1.0.1': dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: @@ -22544,12 +22579,12 @@ snapshots: '@types/react': 18.3.1 optional: true - '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react: 19.0.0-rc-6230622a1a-20240610 + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) optionalDependencies: '@types/react': 18.3.3 @@ -22689,22 +22724,6 @@ snapshots: - supports-color - utf-8-validate - '@safe-global/protocol-kit@3.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@noble/hashes': 1.3.3 - '@safe-global/safe-deployments': 1.33.0 - ethereumjs-util: 7.1.5 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - semver: 7.5.4 - web3: 1.10.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@safe-global/protocol-kit@4.0.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@noble/hashes': 1.3.3 @@ -22762,7 +22781,7 @@ snapshots: '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + '@safe-global/safe-gateway-typescript-sdk': 3.21.2 viem: 1.21.4(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil @@ -22772,7 +22791,7 @@ snapshots: '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + '@safe-global/safe-gateway-typescript-sdk': 3.21.2 viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil @@ -22782,7 +22801,7 @@ snapshots: '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + '@safe-global/safe-gateway-typescript-sdk': 3.21.2 viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) transitivePeerDependencies: - bufferutil @@ -22792,7 +22811,7 @@ snapshots: '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + '@safe-global/safe-gateway-typescript-sdk': 3.21.2 viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) transitivePeerDependencies: - bufferutil @@ -22802,7 +22821,7 @@ snapshots: '@safe-global/safe-apps-sdk@9.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.1 + '@safe-global/safe-gateway-typescript-sdk': 3.21.2 viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) transitivePeerDependencies: - bufferutil @@ -22833,18 +22852,6 @@ snapshots: - supports-color - utf-8-validate - '@safe-global/safe-core-sdk-types@4.0.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@safe-global/safe-deployments': 1.33.0 - ethers: 6.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-core: 1.10.3(encoding@0.1.13) - web3-utils: 1.10.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@safe-global/safe-core-sdk-types@5.0.1(typescript@5.4.5)(zod@3.23.8)': dependencies: abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) @@ -22866,7 +22873,7 @@ snapshots: '@safe-global/safe-gateway-typescript-sdk@3.13.3': {} - '@safe-global/safe-gateway-typescript-sdk@3.21.1': {} + '@safe-global/safe-gateway-typescript-sdk@3.21.2': {} '@scure/base@1.1.5': {} @@ -23239,22 +23246,22 @@ snapshots: '@tanstack/query-core': 5.40.0 react: 18.3.1 - '@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528)': + '@tanstack/react-query@5.40.1(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@tanstack/query-core': 5.40.0 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 - '@tanstack/react-table@8.17.3(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@tanstack/react-table@8.17.3(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@tanstack/table-core': 8.17.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) '@tanstack/table-core@8.17.3': {} '@testing-library/dom@10.1.0': dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.6 '@babel/runtime': 7.24.5 '@types/aria-query': 5.0.4 aria-query: 5.3.0 @@ -23304,9 +23311,9 @@ snapshots: '@types/jest': 29.5.11 jest: 29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - '@testing-library/jest-dom@6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))': + '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)))': dependencies: - '@adobe/css-tools': 4.3.2 + '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.5 aria-query: 5.3.0 chalk: 3.0.0 @@ -23317,7 +23324,7 @@ snapshots: optionalDependencies: '@jest/globals': 29.7.0 '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) '@testing-library/react@14.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -23327,15 +23334,15 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528)': + '@testing-library/react@16.0.0(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@babel/runtime': 7.24.5 '@testing-library/dom': 10.1.0 - '@types/react-dom': 18.3.0 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)': dependencies: @@ -23442,7 +23449,7 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 20.12.12 + '@types/node': 20.14.2 '@types/graceful-fs@4.1.9': dependencies: @@ -23508,7 +23515,7 @@ snapshots: '@types/lodash@4.14.202': {} - '@types/lodash@4.17.4': {} + '@types/lodash@4.17.5': {} '@types/micromatch@4.0.6': dependencies: @@ -23875,7 +23882,7 @@ snapshots: pathe: 1.1.2 picocolors: 1.0.0 prettier: 3.2.5 - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) zod: 3.23.8 optionalDependencies: typescript: 5.4.5 @@ -24065,17 +24072,17 @@ snapshots: - utf-8-validate - zod - ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)' + ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)' : dependencies: '@coinbase/wallet-sdk': 4.0.3 - '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(utf-8-validate@5.0.10) + '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(utf-8-validate@5.0.10) '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' - viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + viem: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: @@ -24213,12 +24220,12 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': + '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: eventemitter3: 5.0.1 mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) - zustand: 4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + viem: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + zustand: 4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@tanstack/query-core': 5.40.0 typescript: 5.4.5 @@ -24539,13 +24546,13 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10)': dependencies: '@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/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/types': 2.13.0 '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -24763,9 +24770,9 @@ snapshots: - '@types/react' - react - '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - valtio: 1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + valtio: 1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - '@types/react' - react @@ -24790,9 +24797,9 @@ snapshots: - '@types/react' - react - '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) lit: 2.8.0 motion: 10.16.2 qrcode: 1.5.3 @@ -24816,10 +24823,10 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528)': + '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - '@types/react' - react @@ -26005,10 +26012,10 @@ snapshots: - supports-color optional: true - babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: + babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601: dependencies: '@babel/generator': 7.2.0 - '@babel/types': 7.23.6 + '@babel/types': 7.24.6 chalk: 4.1.2 invariant: 2.2.4 pretty-format: 24.9.0 @@ -26421,8 +26428,6 @@ snapshots: caniuse-lite@1.0.30001571: {} - caniuse-lite@1.0.30001593: {} - caniuse-lite@1.0.30001625: {} canvas-fit@1.5.0: @@ -26661,20 +26666,20 @@ snapshots: cluster-key-slot@1.1.2: {} - cmdk@0.2.1(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + cmdk@0.2.1(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: - '@radix-ui/react-dialog': 1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dialog': 1.0.0(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - '@types/react' - cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528) - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -27001,6 +27006,21 @@ snapshots: - supports-color - ts-node + create-jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + create-require@1.1.1: {} cross-fetch@3.1.4: @@ -27431,12 +27451,12 @@ snapshots: react-is: 18.2.0 tslib: 2.6.2 - downshift@8.4.0(react@19.0.0-rc-6f23540c7d-20240528): + downshift@8.4.0(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.0 compute-scroll-into-view: 3.1.0 prop-types: 15.8.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-is: 18.2.0 tslib: 2.6.2 @@ -27571,11 +27591,11 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - embla-carousel-react@8.1.3(react@19.0.0-rc-6f23540c7d-20240528): + embla-carousel-react@8.1.3(react@19.0.0-rc-6230622a1a-20240610): dependencies: embla-carousel: 8.1.3 embla-carousel-reactive-utils: 8.1.3(embla-carousel@8.1.3) - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 embla-carousel-reactive-utils@8.1.3(embla-carousel@8.1.3): dependencies: @@ -28172,11 +28192,11 @@ snapshots: dependencies: eslint: 8.56.0 - eslint-plugin-tailwindcss@3.13.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))): + eslint-plugin-tailwindcss@3.13.1(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))): dependencies: fast-glob: 3.3.2 postcss: 8.4.38 - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) eslint-scope@7.2.2: dependencies: @@ -29306,13 +29326,13 @@ snapshots: - typescript - utf-8-validate - graphql-config@5.0.3(@types/node@20.12.12)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): + graphql-config@5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.1(graphql@16.8.1) '@graphql-tools/merge': 9.0.1(graphql@16.8.1) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.12)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) cosmiconfig: 8.3.6(typescript@5.4.5) graphql: 16.8.1 @@ -29329,13 +29349,13 @@ snapshots: - typescript - utf-8-validate - graphql-config@5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): + graphql-config@5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4): dependencies: '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.1(graphql@16.8.1) '@graphql-tools/merge': 9.0.1(graphql@16.8.1) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) cosmiconfig: 8.3.6(typescript@5.4.5) graphql: 16.8.1 @@ -29352,13 +29372,13 @@ snapshots: - typescript - utf-8-validate - graphql-config@5.0.3(@types/node@20.12.7)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@6.0.4): + graphql-config@5.0.3(@types/node@20.14.2)(bufferutil@4.0.8)(cosmiconfig-toml-loader@1.0.0)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.1(graphql@16.8.1) '@graphql-tools/merge': 9.0.1(graphql@16.8.1) - '@graphql-tools/url-loader': 8.0.1(@types/node@20.12.7)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@6.0.4) + '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.2)(bufferutil@4.0.8)(encoding@0.1.13)(graphql@16.8.1)(utf-8-validate@5.0.10) '@graphql-tools/utils': 10.0.11(graphql@16.8.1) cosmiconfig: 8.3.6(typescript@5.4.5) graphql: 16.8.1 @@ -30469,6 +30489,25 @@ snapshots: - supports-color - ts-node + jest-cli@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: '@babel/core': 7.23.6 @@ -30655,6 +30694,37 @@ snapshots: - babel-plugin-macros - supports-color + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): + dependencies: + '@babel/core': 7.23.6 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.23.6) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.2 + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + jest-diff@29.7.0: dependencies: chalk: 4.1.2 @@ -30921,13 +30991,25 @@ snapshots: - supports-color - ts-node + jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): + dependencies: + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + '@jest/types': 29.6.3 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jiti@1.21.0: {} - jodit-react@4.1.2(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + jodit-react@4.1.2(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: jodit: 4.2.25 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) jodit@4.2.25: dependencies: @@ -31442,7 +31524,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.5.4 + semver: 7.6.2 make-error@1.3.6: {} @@ -31504,7 +31586,7 @@ snapshots: media-query-parser@2.0.2: dependencies: - '@babel/runtime': 7.24.0 + '@babel/runtime': 7.24.5 media-typer@0.3.0: {} @@ -31537,14 +31619,14 @@ snapshots: optionalDependencies: '@types/node': 20.14.2 - meros@1.3.0(@types/node@20.12.12): - optionalDependencies: - '@types/node': 20.12.12 - meros@1.3.0(@types/node@20.12.7): optionalDependencies: '@types/node': 20.12.7 + meros@1.3.0(@types/node@20.14.2): + optionalDependencies: + '@types/node': 20.14.2 + methods@1.1.2: {} metro-babel-transformer@0.80.9: @@ -32182,17 +32264,17 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.0.0-rc.0(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + next@15.0.0-rc.0(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@next/env': 15.0.0-rc.0 '@swc/helpers': 0.5.11 busboy: 1.6.0 - caniuse-lite: 1.0.30001593 + caniuse-lite: 1.0.30001625 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - styled-jsx: 5.1.3(@babel/core@7.23.6)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + styled-jsx: 5.1.3(@babel/core@7.23.6)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@next/swc-darwin-arm64': 15.0.0-rc.0 '@next/swc-darwin-x64': 15.0.0-rc.0 @@ -32204,7 +32286,7 @@ snapshots: '@next/swc-win32-ia32-msvc': 15.0.0-rc.0 '@next/swc-win32-x64-msvc': 15.0.0-rc.0 '@opentelemetry/api': 1.8.0 - babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 + babel-plugin-react-compiler: 0.0.0-experimental-938cd9a-20240601 sharp: 0.33.4 transitivePeerDependencies: - '@babel/core' @@ -32951,14 +33033,6 @@ snapshots: postcss: 8.4.32 ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): - dependencies: - lilconfig: 3.0.0 - yaml: 2.3.4 - optionalDependencies: - postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): dependencies: lilconfig: 3.0.0 @@ -32988,7 +33062,7 @@ snapshots: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 postcss@8.4.32: dependencies: @@ -33284,29 +33358,29 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-beautiful-dnd@13.1.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + react-beautiful-dnd@13.1.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.5 css-box-model: 1.2.1 memoize-one: 5.2.1 raf-schd: 4.0.3 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-redux: 7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-redux: 7.2.9(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) redux: 4.2.1 - use-memo-one: 1.1.3(react@19.0.0-rc-6f23540c7d-20240528) + use-memo-one: 1.1.3(react@19.0.0-rc-6230622a1a-20240610) transitivePeerDependencies: - react-native - react-colorful@5.6.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + react-colorful@5.6.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) - react-day-picker@8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6f23540c7d-20240528): + react-day-picker@8.10.1(date-fns@3.6.0)(react@19.0.0-rc-6230622a1a-20240610): dependencies: date-fns: 3.6.0 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-day-picker@8.9.1(date-fns@2.30.0)(react@18.3.1): dependencies: @@ -33341,28 +33415,28 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528): + react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - scheduler: 0.25.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 + scheduler: 0.25.0-rc-6230622a1a-20240610 react-hook-form@7.43.9(react@18.3.1): dependencies: react: 18.3.1 - react-hook-form@7.51.5(react@19.0.0-rc-6f23540c7d-20240528): + react-hook-form@7.51.5(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 - react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.5 html-parse-stringify: 3.0.1 i18next: 22.5.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): dependencies: @@ -33374,15 +33448,15 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.5 html-parse-stringify: 3.0.1 i18next: 23.11.5 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) react-is@16.13.1: {} @@ -33394,12 +33468,12 @@ snapshots: dependencies: p-defer: 3.0.0 - react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 - react: 19.0.0-rc-6f23540c7d-20240528 - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react: 19.0.0-rc-6230622a1a-20240610 + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): dependencies: @@ -33408,7 +33482,7 @@ snapshots: react: 18.3.1 react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10): + react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -33420,7 +33494,7 @@ snapshots: '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528) + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -33438,10 +33512,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@19.0.0-rc-6f23540c7d-20240528) + react-shallow-renderer: 16.15.0(react@19.0.0-rc-6230622a1a-20240610) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 @@ -33565,11 +33639,11 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 - react-plotly.js@2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6f23540c7d-20240528): + react-plotly.js@2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6230622a1a-20240610): dependencies: plotly.js: 2.27.1 prop-types: 15.8.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-reconciler@0.29.2(react@18.3.1): dependencies: @@ -33577,18 +33651,18 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-redux@7.2.9(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528): + react-redux@7.2.9(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.5 '@types/react-redux': 7.1.33 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-is: 17.0.2 optionalDependencies: - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10) + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) react-refresh@0.14.2: {} @@ -33600,10 +33674,10 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - react-remove-scroll-bar@2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + react-remove-scroll-bar@2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) tslib: 2.6.2 optionalDependencies: '@types/react': 18.3.3 @@ -33619,14 +33693,14 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - react-remove-scroll@2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + react-remove-scroll@2.5.4(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 @@ -33641,28 +33715,28 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - react-remove-scroll@2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 - react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) - use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 - react-router-dom@6.23.1(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react@19.0.0-rc-6f23540c7d-20240528): + react-router-dom@6.23.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@remix-run/router': 1.16.1 - react: 19.0.0-rc-6f23540c7d-20240528 - react-dom: 19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528) - react-router: 6.23.1(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) + react-router: 6.23.1(react@19.0.0-rc-6230622a1a-20240610) - react-router@6.23.1(react@19.0.0-rc-6f23540c7d-20240528): + react-router@6.23.1(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@remix-run/router': 1.16.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-shallow-renderer@16.15.0(react@18.3.1): dependencies: @@ -33670,10 +33744,10 @@ snapshots: react: 18.3.1 react-is: 18.2.0 - react-shallow-renderer@16.15.0(react@19.0.0-rc-6f23540c7d-20240528): + react-shallow-renderer@16.15.0(react@19.0.0-rc-6230622a1a-20240610): dependencies: object-assign: 4.1.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 react-is: 18.2.0 react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1): @@ -33685,11 +33759,11 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 tslib: 2.6.2 optionalDependencies: '@types/react': 18.3.3 @@ -33708,7 +33782,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-6f23540c7d-20240528: {} + react@19.0.0-rc-6230622a1a-20240610: {} read-cache@1.0.0: dependencies: @@ -34123,7 +34197,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-6f23540c7d-20240528: {} + scheduler@0.25.0-rc-6230622a1a-20240610: {} scrypt-js@3.0.1: {} @@ -34657,10 +34731,10 @@ snapshots: optionalDependencies: '@babel/core': 7.24.6 - styled-jsx@5.1.3(@babel/core@7.23.6)(react@19.0.0-rc-6f23540c7d-20240528): + styled-jsx@5.1.3(@babel/core@7.23.6)(react@19.0.0-rc-6230622a1a-20240610): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 optionalDependencies: '@babel/core': 7.23.6 @@ -34802,11 +34876,11 @@ snapshots: react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) - swr@2.2.5(react@19.0.0-rc-6f23540c7d-20240528): + swr@2.2.5(react@19.0.0-rc-6230622a1a-20240610): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-6f23540c7d-20240528 - use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + react: 19.0.0-rc-6230622a1a-20240610 + use-sync-external-store: 1.2.0(react@19.0.0-rc-6230622a1a-20240610) symbol-observable@1.2.0: {} @@ -34848,9 +34922,9 @@ snapshots: dependencies: tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - tailwind-scrollbar@3.1.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))): + tailwind-scrollbar@3.1.0(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))): dependencies: - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) tailwindcss-animate@1.0.7(tailwindcss@3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3))): dependencies: @@ -34860,9 +34934,9 @@ snapshots: dependencies: tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) - tailwindcss-animate@1.0.7(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))): dependencies: - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) tailwindcss@3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)): dependencies: @@ -34918,34 +34992,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.5.3 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 15.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - postcss-nested: 6.0.1(postcss@8.4.38) - postcss-selector-parser: 6.0.13 - resolve: 1.22.8 - sucrase: 3.34.0 - transitivePeerDependencies: - - ts-node - - tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): + tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -35254,11 +35301,11 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.6) - ts-jest@29.1.4(@babel/core@7.23.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.1.4(@babel/core@7.23.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + jest: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -35658,16 +35705,16 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - use-callback-ref@1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + use-callback-ref@1.3.0(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 tslib: 2.6.2 optionalDependencies: '@types/react': 18.3.3 - use-memo-one@1.1.3(react@19.0.0-rc-6f23540c7d-20240528): + use-memo-one@1.1.3(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1): dependencies: @@ -35677,10 +35724,10 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: detect-node-es: 1.1.0 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 tslib: 2.6.2 optionalDependencies: '@types/react': 18.3.3 @@ -35693,9 +35740,9 @@ snapshots: dependencies: react: 18.3.1 - use-sync-external-store@1.2.0(react@19.0.0-rc-6f23540c7d-20240528): + use-sync-external-store@1.2.0(react@19.0.0-rc-6230622a1a-20240610): dependencies: - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 utf-8-validate@5.0.10: dependencies: @@ -35756,13 +35803,13 @@ snapshots: '@types/react': 18.3.3 react: 18.3.1 - valtio@1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + valtio@1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + use-sync-external-store: 1.2.0(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 value-or-promise@1.0.12: {} @@ -35899,7 +35946,24 @@ snapshots: - utf-8-validate - zod - viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): + viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.4.5)(zod@3.23.8) + isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + optionalDependencies: + typescript: 5.4.5 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -35916,7 +35980,7 @@ snapshots: - utf-8-validate - zod - viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): + viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 @@ -36063,14 +36127,14 @@ snapshots: - utf-8-validate - zod - wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6f23540c7d-20240528))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): + wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6230622a1a-20240610))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: - '@tanstack/react-query': 5.40.1(react@19.0.0-rc-6f23540c7d-20240528) - '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6f23540c7d-20240528(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6f23540c7d-20240528)(utf-8-validate@5.0.10))(react@19.0.0-rc-6f23540c7d-20240528)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) - '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6f23540c7d-20240528)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) - react: 19.0.0-rc-6f23540c7d-20240528 - use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) - viem: 2.13.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) + '@tanstack/react-query': 5.40.1(react@19.0.0-rc-6230622a1a-20240610) + '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) + react: 19.0.0-rc-6230622a1a-20240610 + use-sync-external-store: 1.2.0(react@19.0.0-rc-6230622a1a-20240610) + viem: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: @@ -36713,12 +36777,12 @@ snapshots: '@types/react': 18.3.3 react: 18.3.1 - zustand@4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6f23540c7d-20240528): + zustand@4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: - use-sync-external-store: 1.2.0(react@19.0.0-rc-6f23540c7d-20240528) + use-sync-external-store: 1.2.0(react@19.0.0-rc-6230622a1a-20240610) optionalDependencies: '@types/react': 18.3.3 - react: 19.0.0-rc-6f23540c7d-20240528 + react: 19.0.0-rc-6230622a1a-20240610 zustand@4.4.7(@types/react@18.3.1)(react@18.3.1): dependencies: From 44f0216459b09a9683ea4c1108b81b7f571ea866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 08:44:31 -0300 Subject: [PATCH 11/22] cow-amm-deployer: consolidate stop/start/edit into `manage amm` page --- .../[id]/(components)/DisableAmmButton.tsx | 57 ++++++++++++ .../amms/[id]/(components)/EditAMMForm.tsx | 62 +++++++------ .../(components)/TradingControlButton.tsx | 87 ------------------- .../src/app/[userId]/amms/[id]/edit/page.tsx | 2 +- .../app/[userId]/amms/[id]/enable/page.tsx | 21 ----- .../src/app/[userId]/amms/[id]/page.tsx | 27 +++--- .../src/components/AddressLabel.tsx | 55 ++++++++++++ .../src/components/Header.tsx | 5 +- apps/cow-amm-deployer/src/components/Link.tsx | 3 +- .../src/components/OldVersionOfAmmAlert.tsx | 34 +++----- .../hooks/tx-manager/useManagedTransaction.ts | 4 + .../src/lib/transactionFactory.ts | 8 +- .../src/lib/truncateMiddle.ts | 8 ++ apps/cow-amm-deployer/src/utils/truncate.ts | 8 -- apps/cow-amm-deployer/src/wagmi.ts | 3 +- apps/example-tx-manager/src/utils/format.ts | 7 -- .../src/utils/helpers/formatTools.ts | 5 -- 17 files changed, 192 insertions(+), 204 deletions(-) create mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/DisableAmmButton.tsx delete mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx delete mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/enable/page.tsx create mode 100644 apps/cow-amm-deployer/src/components/AddressLabel.tsx create mode 100644 apps/cow-amm-deployer/src/lib/truncateMiddle.ts delete mode 100644 apps/cow-amm-deployer/src/utils/truncate.ts delete mode 100644 apps/example-tx-manager/src/utils/format.ts delete mode 100644 apps/example-tx-manager/src/utils/helpers/formatTools.ts diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/DisableAmmButton.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/DisableAmmButton.tsx new file mode 100644 index 000000000..5364ec348 --- /dev/null +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/DisableAmmButton.tsx @@ -0,0 +1,57 @@ +"use client"; + +import { toast } from "@bleu/ui"; +import { StopIcon } from "@radix-ui/react-icons"; +import React from "react"; +import { useAccount } from "wagmi"; + +import { Button } from "#/components/Button"; +import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; +import { ICowAmm } from "#/lib/fetchAmmData"; +import { DisableCoWAMMArgs, TRANSACTION_TYPES } from "#/lib/transactionFactory"; +import { ChainId } from "#/utils/chainsPublicClients"; + +export function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { + const { chainId } = useAccount(); + + const { writeContract, writeContractWithSafe, status, isWalletContract } = + useManagedTransaction(); + + function onDisableAMM() { + const txArgs = { + type: TRANSACTION_TYPES.DISABLE_COW_AMM, + amm: ammData.order.owner, + chainId: chainId as ChainId, + hash: ammData.order.hash, + version: ammData.version, + } as DisableCoWAMMArgs; + try { + if (isWalletContract) { + writeContractWithSafe([txArgs]); + } else { + // TODO: this will need to be refactored once we have EOAs + // @ts-ignore + writeContract(txArgs); + } + } catch { + toast({ + title: `Transaction failed`, + description: "An error occurred while processing the transaction.", + variant: "destructive", + }); + } + } + + return ( + + ); +} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx index 82bc0d55e..4402054b7 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx @@ -2,7 +2,9 @@ import { toast } from "@bleu/ui"; import { zodResolver } from "@hookform/resolvers/zod"; +import { PlayIcon } from "@radix-ui/react-icons"; import { useRouter } from "next/navigation"; +import { useEffect } from "react"; import { useForm } from "react-hook-form"; import { Address, formatUnits } from "viem"; import { z } from "zod"; @@ -24,14 +26,15 @@ import { ammEditSchema } from "#/lib/schema"; import { buildTxEditAMMArgs } from "#/lib/transactionFactory"; import { cn } from "#/lib/utils"; +import { DisableAmmButton } from "./DisableAmmButton"; + export function EditAMMForm({ cowAmmData, - submitButtonText, }: { cowAmmData: ICowAmm; submitButtonText: string; }) { - const _router = useRouter(); + const router = useRouter(); const form = useForm>({ // @ts-ignore @@ -52,25 +55,9 @@ export function EditAMMForm({ formState: { errors, isSubmitting }, } = form; - const { - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - } = useManagedTransaction(); - // eslint-disable-next-line no-console - console.log({ - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - }); + const { writeContract, writeContractWithSafe, status, isWalletContract } = + useManagedTransaction(); + const onSubmit = async (data: typeof ammEditSchema._type) => { const txArgs = buildTxEditAMMArgs({ data: data, @@ -78,8 +65,13 @@ export function EditAMMForm({ }); try { - writeContractWithSafe(txArgs); - // router.push(`/${cowAmmData.user.id}/amms/${cowAmmData.id}`); + if (isWalletContract) { + writeContractWithSafe(txArgs); + } else { + // TODO: this will need to be refactored once we have EOAs + // @ts-ignore + writeContract(txArgs); + } } catch { toast({ title: `Transaction failed`, @@ -89,6 +81,14 @@ export function EditAMMForm({ } }; + useEffect(() => { + if (status === "final") { + router.push(`/${cowAmmData.user.id}/amms/${cowAmmData.id}`); + } + }, [status]); + + const submitButtonText = cowAmmData.disabled ? "Enable AMM" : "Update AMM"; + return ( // @ts-ignore
@@ -122,14 +122,20 @@ export function EditAMMForm({ -
+
+ {!cowAmmData.disabled && }
diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx deleted file mode 100644 index 50410ccf7..000000000 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/TradingControlButton.tsx +++ /dev/null @@ -1,87 +0,0 @@ -"use client"; - -import { toast } from "@bleu/ui"; -import { PlayIcon, StopIcon } from "@radix-ui/react-icons"; -import Link from "next/link"; -import React from "react"; -import { useAccount } from "wagmi"; - -import { Button } from "#/components/Button"; -import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction"; -import { ICowAmm } from "#/lib/fetchAmmData"; -import { DisableCoWAMMArgs, TRANSACTION_TYPES } from "#/lib/transactionFactory"; -import { ChainId } from "#/utils/chainsPublicClients"; - -export function TradingControlButton({ ammData }: { ammData: ICowAmm }) { - if (ammData.disabled) { - return ; - } - return ; -} - -function EnableAMMButton({ ammData }: { ammData: ICowAmm }) { - return ( - - - - ); -} - -function DisableAmmButton({ ammData }: { ammData: ICowAmm }) { - const { chainId } = useAccount(); - - const { - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - } = useManagedTransaction(); - // eslint-disable-next-line no-console - console.log({ - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - }); - async function onDisableAMM() { - const txArgs = { - type: TRANSACTION_TYPES.DISABLE_COW_AMM, - amm: ammData.order.owner, - chainId: chainId as ChainId, - hash: ammData.order.hash, - version: ammData.version, - } as DisableCoWAMMArgs; - try { - await writeContractWithSafe([txArgs]); - } catch { - toast({ - title: `Transaction failed`, - description: "An error occurred while processing the transaction.", - variant: "destructive", - }); - } - } - - return ( - - ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx index f46db017e..9e8cbff4d 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx @@ -12,7 +12,7 @@ export default async function Page({ return ( diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/enable/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/enable/page.tsx deleted file mode 100644 index 920cd818b..000000000 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/enable/page.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { FormPageWrapper } from "#/components/FormPageWrapper"; -import { fetchAmmData } from "#/lib/fetchAmmData"; - -import { EditAMMForm } from "../(components)/EditAMMForm"; - -export default async function Page({ - params, -}: { - params: { userId: string; id: `0x${string}` }; -}) { - const ammData = await fetchAmmData(params.id); - - return ( - - - - ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx index 31efe1f6f..f5da80868 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx @@ -16,7 +16,6 @@ import { ChainId } from "#/utils/chainsPublicClients"; import { PoolCompositionTable } from "./(components)/PoolCompositionTable"; import { PriceInformation } from "./(components)/PriceInformation"; -import { TradingControlButton } from "./(components)/TradingControlButton"; export default async function Page({ params, @@ -55,7 +54,7 @@ export default async function Page({ 2, "decimal", "compact", - 0.01, + 0.01 )}
@@ -71,7 +70,7 @@ export default async function Page({ buildAccountCowExplorerUrl({ chainId: ammData.order.chainId as ChainId, address: ammData.order.owner as Address, - }), + }) ) } rel="noreferrer noopener" @@ -92,18 +91,16 @@ export default async function Page({ Back to AMMs table - - {!ammData.disabled && ( - - - - )} + + + +
diff --git a/apps/cow-amm-deployer/src/components/Link.tsx b/apps/cow-amm-deployer/src/components/Link.tsx index 395a9d374..fb5e68f8a 100644 --- a/apps/cow-amm-deployer/src/components/Link.tsx +++ b/apps/cow-amm-deployer/src/components/Link.tsx @@ -25,8 +25,9 @@ export function LinkComponent({ if (children.props.disabled) { return
{ClonedElement}
; } + return ( - + {ClonedElement} ); diff --git a/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx index 3d58e5c14..e83cf8f33 100644 --- a/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx +++ b/apps/cow-amm-deployer/src/components/OldVersionOfAmmAlert.tsx @@ -9,28 +9,12 @@ import { useManagedTransaction } from "#/hooks/tx-manager/useManagedTransaction" import { ICowAmm } from "#/lib/fetchAmmData"; import { buildMigrateToStandaloneVersionArgs } from "#/lib/transactionFactory"; -import { Spinner } from "./Spinner"; - export function OldVersionOfAMMAlert({ ammData }: { ammData: ICowAmm }) { - const { - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - } = useManagedTransaction(); - // eslint-disable-next-line no-console - console.log({ - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - }); + const { writeContractWithSafeAsync, status, isWalletContract } = + useManagedTransaction(); + + if (!isWalletContract || !writeContractWithSafeAsync) return; + const [isLoading, setIsLoading] = useState(false); return ( @@ -43,13 +27,14 @@ export function OldVersionOfAMMAlert({ ammData }: { ammData: ICowAmm }) {

diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts index 9b18e288c..89d67712c 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -20,6 +20,7 @@ export function useManagedTransaction() { error: safeError, status: safeWriteStatus, writeContractWithSafe, + writeContractWithSafeAsync, } = useContractWriteWithSafe(); const { @@ -27,6 +28,7 @@ export function useManagedTransaction() { error: eoaError, status: eoaWriteStatus, writeContract, + writeContractAsync, } = useWriteContract(); const data = safeData || eoaData; @@ -111,6 +113,8 @@ export function useManagedTransaction() { safeHash, writeContract, writeContractWithSafe, + writeContractWithSafeAsync, + writeContractAsync, hash, error, blockConfirmations, diff --git a/apps/cow-amm-deployer/src/lib/transactionFactory.ts b/apps/cow-amm-deployer/src/lib/transactionFactory.ts index 534014444..814570de4 100644 --- a/apps/cow-amm-deployer/src/lib/transactionFactory.ts +++ b/apps/cow-amm-deployer/src/lib/transactionFactory.ts @@ -277,7 +277,7 @@ const TRANSACTION_CREATORS: { export class TransactionFactory { static createRawTx( type: T, - args: TransactionBindings[T], + args: TransactionBindings[T] ): BaseTransaction { const TransactionCreator = TRANSACTION_CREATORS[type]; const txCreator = new TransactionCreator(); @@ -311,7 +311,7 @@ export function buildTxCreateAMMArgs({ amount1: parseUnits(String(data.amount1), data.token1.decimals), minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals, + data.token0.decimals ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -333,7 +333,7 @@ export function buildTxEditAMMArgs({ amm: ammAddress, minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals, + data.token0.decimals ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -370,7 +370,7 @@ export function buildDepositAmmArgs({ ] as ERC20ApproveArgs[]; const nonZeroApproves = approvesArgs.filter( - (approve) => approve.amount !== BigInt(0), + (approve) => approve.amount !== BigInt(0) ); return [ diff --git a/apps/cow-amm-deployer/src/lib/truncateMiddle.ts b/apps/cow-amm-deployer/src/lib/truncateMiddle.ts new file mode 100644 index 000000000..fa64bf531 --- /dev/null +++ b/apps/cow-amm-deployer/src/lib/truncateMiddle.ts @@ -0,0 +1,8 @@ +export function truncateMiddle(text?: string, length: number = 9) { + if (!text) return ""; + if (text?.length > length * 2 + 1) { + return `${text.slice(0, length)}...${text.slice(-length)}`; + } else { + return text; + } +} diff --git a/apps/cow-amm-deployer/src/utils/truncate.ts b/apps/cow-amm-deployer/src/utils/truncate.ts deleted file mode 100644 index 17b3c046d..000000000 --- a/apps/cow-amm-deployer/src/utils/truncate.ts +++ /dev/null @@ -1,8 +0,0 @@ -export function truncateAddress(address?: string | null) { - if (!address) return address; - - const match = address.match(/^([a-zA-Z0-9]{6})[a-zA-Z0-9]+([a-zA-Z0-9]{4})$/); - if (!match) return address; - - return `${match[1]}…${match[2]}`; -} diff --git a/apps/cow-amm-deployer/src/wagmi.ts b/apps/cow-amm-deployer/src/wagmi.ts index b2bc3a148..be4a2a9d2 100644 --- a/apps/cow-amm-deployer/src/wagmi.ts +++ b/apps/cow-amm-deployer/src/wagmi.ts @@ -9,10 +9,11 @@ declare module "wagmi" { } export const config = createConfig({ - chains: [sepolia], + chains: [sepolia, mainnet], connectors: [ injected(), safe({ + allowedDomains: [/app.safe.global$/], debug: true, }), ], diff --git a/apps/example-tx-manager/src/utils/format.ts b/apps/example-tx-manager/src/utils/format.ts deleted file mode 100644 index 444e4debe..000000000 --- a/apps/example-tx-manager/src/utils/format.ts +++ /dev/null @@ -1,7 +0,0 @@ -export function TruncateMiddle(text: string, length: number = 5) { - if (text?.length > length * 2 + 1) { - return `${text.substring(0, length)}...${text.substring(text.length - length, text.length)}`; - } - - return text; -} diff --git a/apps/example-tx-manager/src/utils/helpers/formatTools.ts b/apps/example-tx-manager/src/utils/helpers/formatTools.ts deleted file mode 100644 index d6a6ad01d..000000000 --- a/apps/example-tx-manager/src/utils/helpers/formatTools.ts +++ /dev/null @@ -1,5 +0,0 @@ -export function truncateAddress(address: string) { - if (!address) return ""; - if (address.length <= 18) return address; - return `${address.slice(0, 9)}...${address.slice(-9)}`; -} From f5cdfe18efaa823d787d72e599accdd65e652818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 09:20:09 -0300 Subject: [PATCH 12/22] remove example txmanager app --- .../amms/[id]/(components)/EditAMMForm.tsx | 4 +- .../src/app/[userId]/amms/[id]/page.tsx | 4 +- .../withdraw/(components)/WithdrawForm.tsx | 8 +- .../new/(components)/CreateAMMForm.tsx | 4 +- .../new/(components)/TokenAmountInput.tsx | 4 +- apps/cow-amm-deployer/src/app/layout.tsx | 2 +- .../src/components/BalancerWeightedForm.tsx | 4 +- .../src/components/DepositForm.tsx | 2 +- .../src/components/Header.tsx | 2 +- .../src/components/SushiForm.tsx | 4 +- .../src/components/TokenSelect.tsx | 2 +- .../src/components/UniswapV2Form.tsx | 6 +- .../hooks/tx-manager/useManagedTransaction.ts | 4 +- .../useWaitForTransactionReceiptWrapped.ts | 2 +- .../src/hooks/useSafeBalances.ts | 4 +- .../src/lib/transactionFactory.ts | 8 +- apps/example-tx-manager/.gitignore | 35 - apps/example-tx-manager/.npmrc | 1 - apps/example-tx-manager/README.md | 1 - apps/example-tx-manager/next-env.d.ts | 5 - apps/example-tx-manager/next.config.js | 100 - apps/example-tx-manager/package.json | 39 - .../src/app/(components)/mintNft.tsx | 110 - apps/example-tx-manager/src/app/globals.css | 21 - apps/example-tx-manager/src/app/layout.tsx | 24 - apps/example-tx-manager/src/app/manifest.json | 5 - apps/example-tx-manager/src/app/page.tsx | 68 - apps/example-tx-manager/src/app/providers.tsx | 19 - .../src/components/alert.tsx | 89 - .../src/context/Notifications.tsx | 96 - .../src/lib/useAutoConnect.ts | 20 - .../src/lib/useIsWalletContract.ts | 20 - .../src/lib/useManagedTransaction.ts | 86 - .../src/lib/useSafeTransaction.ts | 99 - .../useWaitForTransactionReceiptWrapped.ts | 46 - .../src/utils/formatBalance.tsx | 7 - apps/example-tx-manager/src/utils/network.ts | 73 - apps/example-tx-manager/src/utils/server.ts | 25 - apps/example-tx-manager/src/utils/site.ts | 9 - apps/example-tx-manager/src/utils/types.ts | 15 - apps/example-tx-manager/src/utils/web3.ts | 28 - apps/example-tx-manager/src/wagmi.ts | 23 - apps/example-tx-manager/tsconfig.json | 27 - pnpm-lock.yaml | 3049 +---------------- 44 files changed, 117 insertions(+), 4087 deletions(-) delete mode 100644 apps/example-tx-manager/.gitignore delete mode 100644 apps/example-tx-manager/.npmrc delete mode 100644 apps/example-tx-manager/README.md delete mode 100644 apps/example-tx-manager/next-env.d.ts delete mode 100644 apps/example-tx-manager/next.config.js delete mode 100644 apps/example-tx-manager/package.json delete mode 100644 apps/example-tx-manager/src/app/(components)/mintNft.tsx delete mode 100644 apps/example-tx-manager/src/app/globals.css delete mode 100644 apps/example-tx-manager/src/app/layout.tsx delete mode 100644 apps/example-tx-manager/src/app/manifest.json delete mode 100644 apps/example-tx-manager/src/app/page.tsx delete mode 100644 apps/example-tx-manager/src/app/providers.tsx delete mode 100644 apps/example-tx-manager/src/components/alert.tsx delete mode 100644 apps/example-tx-manager/src/context/Notifications.tsx delete mode 100644 apps/example-tx-manager/src/lib/useAutoConnect.ts delete mode 100644 apps/example-tx-manager/src/lib/useIsWalletContract.ts delete mode 100644 apps/example-tx-manager/src/lib/useManagedTransaction.ts delete mode 100644 apps/example-tx-manager/src/lib/useSafeTransaction.ts delete mode 100644 apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts delete mode 100644 apps/example-tx-manager/src/utils/formatBalance.tsx delete mode 100644 apps/example-tx-manager/src/utils/network.ts delete mode 100644 apps/example-tx-manager/src/utils/server.ts delete mode 100644 apps/example-tx-manager/src/utils/site.ts delete mode 100644 apps/example-tx-manager/src/utils/types.ts delete mode 100644 apps/example-tx-manager/src/utils/web3.ts delete mode 100644 apps/example-tx-manager/src/wagmi.ts delete mode 100644 apps/example-tx-manager/tsconfig.json diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx index 4402054b7..31055d142 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx @@ -45,7 +45,7 @@ export function EditAMMForm({ token0: cowAmmData.token0, token1: cowAmmData.token1, minTradedToken0: Number( - formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals) + formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals), ), priceOracleSchema: cowAmmData.decodedPriceOracleData, }, @@ -105,7 +105,7 @@ export function EditAMMForm({ Advanced Options diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx index f5da80868..fa17f357f 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx @@ -54,7 +54,7 @@ export default async function Page({ 2, "decimal", "compact", - 0.01 + 0.01, )}
@@ -70,7 +70,7 @@ export default async function Page({ buildAccountCowExplorerUrl({ chainId: ammData.order.chainId as ChainId, address: ammData.order.owner as Address, - }) + }), ) } rel="noreferrer noopener" diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx index 6628edca0..5ed079479 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/(components)/WithdrawForm.tsx @@ -61,11 +61,11 @@ export function WithdrawForm({ const onSubmit = async (data: typeof ammWithdrawSchema._type) => { const amount0 = parseUnits( String((Number(cowAmm.token0.balance) * data.withdrawPct) / 100), - cowAmm.token0.decimals + cowAmm.token0.decimals, ); const amount1 = parseUnits( String((Number(cowAmm.token1.balance) * data.withdrawPct) / 100), - cowAmm.token1.decimals + cowAmm.token1.decimals, ); const txArgs = { type: TRANSACTION_TYPES.WITHDRAW_COW_AMM, @@ -140,7 +140,7 @@ export function WithdrawForm({ {formatNumber( (Number(token.balance) * withdrawPct) / 100, - 4 + 4, )}{" "} {token.symbol} @@ -148,7 +148,7 @@ export function WithdrawForm({ $ {formatNumber( (Number(token.usdValue) * withdrawPct) / 100, - 4 + 4, )}
diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index be1054c3e..5498c337d 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -114,7 +114,7 @@ export function CreateAMMForm({ userId: _userId }: { userId: string }) { }); setValue( "minTradedToken0", - await getNewMinTradeToken0(token, chainId as ChainId) + await getNewMinTradeToken0(token, chainId as ChainId), ); }} selectedToken={(token0 as IToken) ?? undefined} @@ -164,7 +164,7 @@ export function CreateAMMForm({ userId: _userId }: { userId: string }) { Advanced Options diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx index aaf876ec9..d32a5c9ff 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/TokenAmountInput.tsx @@ -29,7 +29,7 @@ export function TokenAmountInput({ // TODO: rename this once we use EOAs const { chainId, address: safeAddress } = useAccount(); const [walletAmount, setWalletAmount] = useState( - defaultWalletAmount || "" + defaultWalletAmount || "", ); const { setValue, register } = form; @@ -72,7 +72,7 @@ export function TokenAmountInput({ onClick={() => { setValue( fieldName, - convertStringToNumberAndRoundDown(walletAmount) + convertStringToNumberAndRoundDown(walletAmount), ); }} > diff --git a/apps/cow-amm-deployer/src/app/layout.tsx b/apps/cow-amm-deployer/src/app/layout.tsx index 113376d23..cdfcbf4d8 100644 --- a/apps/cow-amm-deployer/src/app/layout.tsx +++ b/apps/cow-amm-deployer/src/app/layout.tsx @@ -59,7 +59,7 @@ export default function Layout({ children }: { children: React.ReactNode }) { className={cn( flechaS.variable, circularStd.variable, - "bg-background flex h-full flex-col font-sans font-normal text-foreground" + "bg-background flex h-full flex-col font-sans font-normal text-foreground", )} > {children} diff --git a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx index 6e294cd09..ccae1d961 100644 --- a/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx +++ b/apps/cow-amm-deployer/src/components/BalancerWeightedForm.tsx @@ -26,7 +26,7 @@ export function BalancerWeightedForm({ const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address + (address) => address, ) as Address[]; return (
@@ -46,7 +46,7 @@ export function BalancerWeightedForm({ toast({ title: "Pool not found", description: loadDEXPriceCheckerErrorText( - "Balancer V2 Weighted Pool" + "Balancer V2 Weighted Pool", ), variant: "destructive", }); diff --git a/apps/cow-amm-deployer/src/components/DepositForm.tsx b/apps/cow-amm-deployer/src/components/DepositForm.tsx index 883e27c12..18e90c575 100644 --- a/apps/cow-amm-deployer/src/components/DepositForm.tsx +++ b/apps/cow-amm-deployer/src/components/DepositForm.tsx @@ -27,7 +27,7 @@ export function DepositForm({ const _router = useRouter(); const schema = getDepositSchema( Number(walletBalanceToken0), - Number(walletBalanceToken1) + Number(walletBalanceToken1), ); const form = useForm>({ diff --git a/apps/cow-amm-deployer/src/components/Header.tsx b/apps/cow-amm-deployer/src/components/Header.tsx index 00de6b3ea..b066879ec 100644 --- a/apps/cow-amm-deployer/src/components/Header.tsx +++ b/apps/cow-amm-deployer/src/components/Header.tsx @@ -44,7 +44,7 @@ export function Header({ linkUrl, imageSrc, children, onLinkClick }: IHeader) { buildAccountCowExplorerUrl({ chainId: chainId as ChainId, address: safeAddress as Address, - }) + }), ) } rel="noreferrer noopener" diff --git a/apps/cow-amm-deployer/src/components/SushiForm.tsx b/apps/cow-amm-deployer/src/components/SushiForm.tsx index dbdbc040d..5fd84b3fd 100644 --- a/apps/cow-amm-deployer/src/components/SushiForm.tsx +++ b/apps/cow-amm-deployer/src/components/SushiForm.tsx @@ -23,7 +23,7 @@ export function SushiForm({ const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address + (address) => address, ) as Address[]; return (
@@ -58,7 +58,7 @@ export function SushiForm({ async function getSushiV2PairAddress( chainId: number, token0: Address, - token1: Address + token1: Address, ) { if (token0 === token1) throw new Error("Invalid tokens"); const pairsData = await pairs.gql(String(chainId)).pairsWhereTokens({ diff --git a/apps/cow-amm-deployer/src/components/TokenSelect.tsx b/apps/cow-amm-deployer/src/components/TokenSelect.tsx index cb4233462..591b8791f 100644 --- a/apps/cow-amm-deployer/src/components/TokenSelect.tsx +++ b/apps/cow-amm-deployer/src/components/TokenSelect.tsx @@ -46,7 +46,7 @@ export function TokenSelect({ try { const importedToken = await fetchTokenInfo( search as Address, - chainId as ChainId + chainId as ChainId, ); handleSelectToken(importedToken); addImportedToken(importedToken, chainId as ChainId); diff --git a/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx b/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx index 8c2aa0d0f..7d73d23b6 100644 --- a/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx +++ b/apps/cow-amm-deployer/src/components/UniswapV2Form.tsx @@ -22,7 +22,7 @@ export function UniswapV2Form({ const [token0, token1] = useWatch({ control, name: ["token0", "token1"] }); const tokenAddresses = [token0?.address, token1?.address].filter( - (address) => address + (address) => address, ) as Address[]; return (
@@ -39,7 +39,7 @@ export function UniswapV2Form({ const address = await getUniswapV2PairAddress( chainId, tokenAddresses[0], - tokenAddresses[1] + tokenAddresses[1], ); setValue("priceOracleSchema.pairAddress", address); } catch (error) { @@ -60,7 +60,7 @@ export function UniswapV2Form({ async function getUniswapV2PairAddress( chainId: number, token0: Address, - token1: Address + token1: Address, ) { if (token0 === token1) throw new Error("Invalid tokens"); const pairsData = await pairs.gql(String(chainId) || "1").pairsWhereTokens({ diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts index 89d67712c..30e523e7f 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -87,11 +87,11 @@ export function useManagedTransaction() { txReceiptStatus, blockConfirmationsStatus, blockConfirmations, - ] + ], ); const status = Object.entries(STATE).findLast( - ([, value]) => value === true + ([, value]) => value === true, )?.[0]; if (isWalletContract) { diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts index 3dffdcef5..805f1f5aa 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useWaitForTransactionReceiptWrapped.ts @@ -8,7 +8,7 @@ import { useIsWalletContract } from "./useIsWalletContract"; import { useSafeTransaction } from "./useSafeTransaction"; export const useWaitForTransactionReceiptWrapped = ( - args: Parameters[0] + args: Parameters[0], ) => { const { address } = useAccount(); const { data: isWalletContract } = useIsWalletContract(address); diff --git a/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts b/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts index 5503bf5d3..b757262eb 100644 --- a/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts +++ b/apps/cow-amm-deployer/src/hooks/useSafeBalances.ts @@ -19,8 +19,8 @@ export function useSafeBalances(): { assets: TokenBalance[]; loaded: boolean } { parseInt(item.balance) > 0 && item.tokenInfo.type === "ERC20" && item.tokenInfo.decimals > 0 && - isAddress(item.tokenInfo.address) - ) + isAddress(item.tokenInfo.address), + ), ); setLoaded(true); } diff --git a/apps/cow-amm-deployer/src/lib/transactionFactory.ts b/apps/cow-amm-deployer/src/lib/transactionFactory.ts index 814570de4..534014444 100644 --- a/apps/cow-amm-deployer/src/lib/transactionFactory.ts +++ b/apps/cow-amm-deployer/src/lib/transactionFactory.ts @@ -277,7 +277,7 @@ const TRANSACTION_CREATORS: { export class TransactionFactory { static createRawTx( type: T, - args: TransactionBindings[T] + args: TransactionBindings[T], ): BaseTransaction { const TransactionCreator = TRANSACTION_CREATORS[type]; const txCreator = new TransactionCreator(); @@ -311,7 +311,7 @@ export function buildTxCreateAMMArgs({ amount1: parseUnits(String(data.amount1), data.token1.decimals), minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals + data.token0.decimals, ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -333,7 +333,7 @@ export function buildTxEditAMMArgs({ amm: ammAddress, minTradedToken0: parseUnits( String(data.minTradedToken0), - data.token0.decimals + data.token0.decimals, ), priceOracleAddress: data.priceOracleSchema.priceOracleAddress as Address, priceOracleData: data.priceOracleSchema.priceOracleData as `0x${string}`, @@ -370,7 +370,7 @@ export function buildDepositAmmArgs({ ] as ERC20ApproveArgs[]; const nonZeroApproves = approvesArgs.filter( - (approve) => approve.amount !== BigInt(0) + (approve) => approve.amount !== BigInt(0), ); return [ diff --git a/apps/example-tx-manager/.gitignore b/apps/example-tx-manager/.gitignore deleted file mode 100644 index 8f322f0d8..000000000 --- a/apps/example-tx-manager/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/apps/example-tx-manager/.npmrc b/apps/example-tx-manager/.npmrc deleted file mode 100644 index ca1e9d98b..000000000 --- a/apps/example-tx-manager/.npmrc +++ /dev/null @@ -1 +0,0 @@ -legacy-peer-deps = true \ No newline at end of file diff --git a/apps/example-tx-manager/README.md b/apps/example-tx-manager/README.md deleted file mode 100644 index bd3aa7b7f..000000000 --- a/apps/example-tx-manager/README.md +++ /dev/null @@ -1 +0,0 @@ -This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-wagmi`](https://github.com/wevm/wagmi/tree/main/packages/create-wagmi). diff --git a/apps/example-tx-manager/next-env.d.ts b/apps/example-tx-manager/next-env.d.ts deleted file mode 100644 index 4f11a03dc..000000000 --- a/apps/example-tx-manager/next-env.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -/// -/// - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/apps/example-tx-manager/next.config.js b/apps/example-tx-manager/next.config.js deleted file mode 100644 index 267806c73..000000000 --- a/apps/example-tx-manager/next.config.js +++ /dev/null @@ -1,100 +0,0 @@ -/* eslint-env node */ -// eslint-disable-next-line @typescript-eslint/no-var-requires - -/** @type {import('next').NextConfig} */ -const moduleExports = { - async headers() { - return [ - { - source: "/manifest.json", - headers: [ - { key: "Access-Control-Allow-Origin", value: "*" }, - { key: "Access-Control-Allow-Methods", value: "GET" }, - { - key: "Access-Control-Allow-Headers", - value: "X-Requested-With, content-type, Authorization", - }, - ], - }, - ]; - }, - reactStrictMode: true, - /** - * This configuration is following Rainbowkit Migration Guide to Viem - * 3. Ensure bundler and polyfill compatibility - * https://www.rainbowkit.com/docs/migration-guide - */ - webpack: (config) => { - config.resolve.fallback = { fs: false, net: false, tls: false }; - config.externals.push("pino-pretty", "lokijs", "encoding"); - return config; - }, - images: { - domains: [ - "assets.coingecko.com", - "raw.githubusercontent.com", - "assets-cdn.trustwallet.com", - "beethoven-assets.s3.eu-central-1.amazonaws.com", - "safe-transaction-assets.safe.global", - ], - remotePatterns: [ - { - protocol: "https", - hostname: "assets.coingecko.com", - port: "", - pathname: "/coins/images/**", - }, - { - protocol: "https", - hostname: "raw.githubusercontent.com", - port: "", - pathname: "/balancer/frontend-v2/**", - }, - { - protocol: "https", - hostname: "raw.githubusercontent.com", - port: "", - pathname: "/trustwallet/assets/**", - }, - { - protocol: "https", - hostname: "raw.githubusercontent.com", - port: "", - pathname: "/cowprotocol/token-lists/**", - }, - { - protocol: "https", - hostname: "raw.githubusercontent.com", - port: "", - pathname: "/centfinance/assets/**", - }, - { - protocol: "https", - hostname: "cdn.sanity.io", - port: "", - pathname: - "/images/r2mka0oi/production/bf37b9c7fb36c7d3c96d3d05b45c76d89072b777-1800x1800.png", - }, - { - protocol: "https", - hostname: "gnosis.mypinata.cloud", - port: "", - pathname: "/ipfs/**", - }, - { - protocol: "https", - hostname: "app.stakewise.io", - port: "", - pathname: "/static/images/currencies/**", - }, - { - protocol: "https", - hostname: "safe-transaction-assets.safe.global", - port: "", - pathname: "/tokens/logos/**", - }, - ], - }, -}; - -module.exports = moduleExports; diff --git a/apps/example-tx-manager/package.json b/apps/example-tx-manager/package.json deleted file mode 100644 index 8d4431e0d..000000000 --- a/apps/example-tx-manager/package.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "wagmi-tx-manager-2", - "private": true, - "version": "0.0.0", - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@heroicons/react": "^2.1.3", - "@safe-global/safe-apps-sdk": "^9.0.0", - "@tanstack/react-query": "5.40.1", - "@types/react-toastify": "^4.1.0", - "@wagmi/core": "^1.4.12", - "abitype": "^1.0.2", - "dayjs": "^1.11.11", - "next": "14.2.3", - "react": "^18.3.1", - "react-dom": "^18.3.1", - "react-toastify": "^10.0.5", - "viem": "latest", - "wagmi": "latest" - }, - "devDependencies": { - "@types/node": "^20.14.2", - "@types/react": "^18.3.3", - "@types/react-dom": "^18.3.0", - "@wagmi/cli": "latest", - "bufferutil": "^4.0.8", - "encoding": "^0.1.13", - "lokijs": "^1.5.12", - "pino-pretty": "^11.1.0", - "supports-color": "^9.4.0", - "typescript": "^5.4.5", - "utf-8-validate": "^6.0.4" - } -} diff --git a/apps/example-tx-manager/src/app/(components)/mintNft.tsx b/apps/example-tx-manager/src/app/(components)/mintNft.tsx deleted file mode 100644 index 895458bf2..000000000 --- a/apps/example-tx-manager/src/app/(components)/mintNft.tsx +++ /dev/null @@ -1,110 +0,0 @@ -import * as React from "react"; -import { encodeFunctionData, encodePacked, erc20Abi, size } from "viem"; -import { useSimulateContract, type BaseError } from "wagmi"; - -import { useManagedTransaction } from "@/lib/useManagedTransaction"; - -const multisendABI = [ - { - inputs: [{ internalType: "bytes", name: "transactions", type: "bytes" }], - name: "multiSend", - outputs: [], - stateMutability: "payable", - type: "function", - }, -] as const; - -export function MintNFT() { - const { hash, error, writeContract, status, safeHash } = - useManagedTransaction(); - - const txData = { - to: "0xbe72E441BF55620febc26715db68d3494213D8Cb", - value: "0", - data: encodeFunctionData({ - abi: erc20Abi, - functionName: "approve", - args: [ - "0x88f2178139Ed9F6D870b3afc293eb735F54d655e", - BigInt("1000000000000000"), - ], - }), - } as const; - - const encodedTx = encodePacked( - ["uint8", "address", "uint256", "uint256", "bytes"], - [ - 0, - txData.to, - BigInt(txData.value), - BigInt(size(txData.data)), - txData.data, - ], - ); - - const duplicatedEncodedTx = (encodedTx + encodedTx.slice(2)) as `0x${string}`; - - const result = useSimulateContract({}); - - async function submit(e: React.FormEvent) { - e.preventDefault(); - const formData = new FormData(e.target as HTMLFormElement); - - const txData = { - to: "0xbe72E441BF55620febc26715db68d3494213D8Cb", - value: "0", - data: encodeFunctionData({ - abi: erc20Abi, - functionName: "approve", - args: [ - "0x88f2178139Ed9F6D870b3afc293eb735F54d655e", - BigInt("1000000000000000"), - ], - }), - } as const; - - const encodedTx = encodePacked( - ["uint8", "address", "uint256", "uint256", "bytes"], - [ - 0, - txData.to, - BigInt(txData.value), - BigInt(size(txData.data)), - txData.data, - ], - ); - - const duplicatedEncodedTx = (encodedTx + - encodedTx.slice(2)) as `0x${string}`; - - writeContract({ - address: "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", - abi: multisendABI, - functionName: "multiSend", - args: [duplicatedEncodedTx], - }); - } - - const isPending = status === "pending"; - const isConfirming = status === "confirming"; - const isConfirmed = status === "confirmed"; - - return ( - - - - {hash &&
Transaction Hash: {hash}
} - {isConfirming &&
Waiting for confirmation...
} - {isConfirmed &&
Transaction confirmed.
} - {error && ( -
Error: {(error as BaseError).shortMessage || error.message}
- )} - - {safeHash &&
Safe Transaction Hash: {safeHash}
} - - {status &&
State: {status}
} - - ); -} diff --git a/apps/example-tx-manager/src/app/globals.css b/apps/example-tx-manager/src/app/globals.css deleted file mode 100644 index 0733a7ee6..000000000 --- a/apps/example-tx-manager/src/app/globals.css +++ /dev/null @@ -1,21 +0,0 @@ -:root { - background-color: #181818; - color: rgba(255, 255, 255, 0.87); - color-scheme: light dark; - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; - font-synthesis: none; - font-weight: 400; - line-height: 1.5; - text-rendering: optimizeLegibility; - - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; -} - -@media (prefers-color-scheme: light) { - :root { - background-color: #f8f8f8; - color: #181818; - } -} diff --git a/apps/example-tx-manager/src/app/layout.tsx b/apps/example-tx-manager/src/app/layout.tsx deleted file mode 100644 index 08ab63560..000000000 --- a/apps/example-tx-manager/src/app/layout.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import "./globals.css"; - -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import { type ReactNode } from "react"; - -import { Providers } from "./providers"; - -const inter = Inter({ subsets: ["latin"] }); - -export const metadata: Metadata = { - title: "Create Wagmi", - description: "Generated by create-wagmi", -}; - -export default function RootLayout(props: { children: ReactNode }) { - return ( - - - {props.children} - - - ); -} diff --git a/apps/example-tx-manager/src/app/manifest.json b/apps/example-tx-manager/src/app/manifest.json deleted file mode 100644 index 0f1bc0990..000000000 --- a/apps/example-tx-manager/src/app/manifest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "TX Example", - "description": "UI to deploy and manage your CoW AMM", - "iconPath": "favicon.ico" -} diff --git a/apps/example-tx-manager/src/app/page.tsx b/apps/example-tx-manager/src/app/page.tsx deleted file mode 100644 index a24918598..000000000 --- a/apps/example-tx-manager/src/app/page.tsx +++ /dev/null @@ -1,68 +0,0 @@ -"use client"; -import { wagmiMintExampleAbi } from "abitype/abis"; -import React from "react"; -import { useAccount, useConnect, useDisconnect } from "wagmi"; - -import { MintNFT } from "./(components)/mintNft"; -import { useAutoConnect } from "@/lib/useAutoConnect"; - -function TransactionManager({ contractAddress, abi }) { - return ( -
-

contract: {contractAddress}

-

abi: {abi.length > 0 ? "present" : ""}

-
- ); -} - -function App() { - const { address, status, chain } = useAccount(); - const { connect, connectors, error } = useConnect(); - const { disconnect } = useDisconnect(); - useAutoConnect(); - - return ( - <> -
-

Account

-
- status: {status} -
- address: {address} -
- chainId: {chain?.id} -
- {status === "connected" && ( - - )} -
-
-

Connect

- {connectors.map((connector) => ( - - ))} -
{status}
-
{error?.message}
-
- {status === "connected" && ( - <> - - - - )} - - ); -} - -export default App; diff --git a/apps/example-tx-manager/src/app/providers.tsx b/apps/example-tx-manager/src/app/providers.tsx deleted file mode 100644 index c7f07d3c9..000000000 --- a/apps/example-tx-manager/src/app/providers.tsx +++ /dev/null @@ -1,19 +0,0 @@ -"use client"; - -import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; -import { type ReactNode, useState } from "react"; -import { WagmiProvider } from "wagmi"; - -import { config } from "@/wagmi"; - -export function Providers(props: { children: ReactNode }) { - const [queryClient] = useState(() => new QueryClient()); - - return ( - - - {props.children} - - - ); -} diff --git a/apps/example-tx-manager/src/components/alert.tsx b/apps/example-tx-manager/src/components/alert.tsx deleted file mode 100644 index 91404074d..000000000 --- a/apps/example-tx-manager/src/components/alert.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import { - ArrowUpRightIcon, - CheckCircleIcon, - ExclamationCircleIcon, - ExclamationTriangleIcon, - InformationCircleIcon, -} from "@heroicons/react/24/outline"; -import dayjs from "dayjs"; -import relativeTime from "dayjs/plugin/relativeTime"; - -import { TruncateMiddle } from "@/utils/format"; -import { NotificationType } from "@/utils/types"; - -dayjs.extend(relativeTime); - -interface StatusProps { - className?: string; - type: NotificationType; -} - -interface Props { - className?: string; - type: NotificationType; - message: string; - href?: string; - timestamp?: number; - from?: string; -} - -export function StatusIcon(props: StatusProps) { - let className = "h-6 w-6"; - if (props.className) className += ` ${props.className}`; - - if (props.type === "info") { - className += " stroke-info"; - } - if (props.type === "success") { - className += " stroke-success"; - } - if (props.type === "warning") { - className += " stroke-warning"; - } - if (props.type === "error") { - className += " stroke-error"; - } - if (props.type === "success") - return ; - if (props.type === "warning") - return ; - if (props.type === "error") - return ; - - return ; -} - -export function Alert(props: Props) { - let className = `alert flex flex-row text-left`; - if (props.className) className += ` ${props.className}`; - return ( -
-
- -
- -
-

{props.message}

-
- {dayjs(props.timestamp).fromNow()} - {props.from && ( - <> - · - - {props.from.startsWith("0x") - ? TruncateMiddle(props.from) - : props.from} - - - )} -
-
- - {props.href && ( - - - - )} -
- ); -} diff --git a/apps/example-tx-manager/src/context/Notifications.tsx b/apps/example-tx-manager/src/context/Notifications.tsx deleted file mode 100644 index 688975fd9..000000000 --- a/apps/example-tx-manager/src/context/Notifications.tsx +++ /dev/null @@ -1,96 +0,0 @@ -"use client"; - -import "react-toastify/dist/ReactToastify.min.css"; - -import dayjs from "dayjs"; -import { - createContext, - PropsWithChildren, - useContext, - useEffect, - useState, -} from "react"; -import { toast, ToastContainer } from "react-toastify"; -import { useAccount } from "wagmi"; - -import { StatusIcon } from "@/components/alert"; -import { Notification } from "@/utils/types"; - -type NotificationOptions = Partial>; - -interface NotificationContext { - Add: (message: string, options?: NotificationOptions) => void; - Clear: () => void; - notifications: Notification[]; -} - -const defaultNotificationContext: NotificationContext = { - // eslint-disable-next-line @typescript-eslint/no-unused-vars - Add: (_message: string, _options?: NotificationOptions) => {}, - Clear: () => {}, - notifications: [], -}; - -const NotificationContext = createContext(defaultNotificationContext); - -export const useNotifications = () => { - const context = useContext(NotificationContext); - if (!context) { - throw new Error( - "useNotifications must be used within a NotificationProvider", - ); - } - - return context; -}; - -export function NotificationProvider(props: PropsWithChildren) { - const [notifications, setNotifications] = useState([]); - const { address } = useAccount(); - - useEffect(() => { - const storedNotifications = localStorage?.getItem("notifications"); - if (storedNotifications) { - setNotifications(JSON.parse(storedNotifications)); - } - }, []); - - function Add(message: string, options?: NotificationOptions) { - const notification: Notification = { - message, - type: options?.type || "info", - timestamp: options?.timestamp || dayjs().valueOf(), - from: options?.from || address, - ...options, - }; - localStorage.setItem( - "notifications", - JSON.stringify([...notifications, notification]), - ); - setNotifications([...notifications, notification]); - toast(message, { - type: notification.type, - icon: , - }); - } - - function Clear() { - localStorage.removeItem("notifications"); - setNotifications([]); - } - - return ( - - {props.children} - - "flex relative bg-base-300 rounded-xl justify-between overflow-hidden p-2 mb-2" - } - bodyClassName={() => "flex text-sm gap-2 px-4 py-2"} - /> - - ); -} diff --git a/apps/example-tx-manager/src/lib/useAutoConnect.ts b/apps/example-tx-manager/src/lib/useAutoConnect.ts deleted file mode 100644 index d7b0dd8b1..000000000 --- a/apps/example-tx-manager/src/lib/useAutoConnect.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { useEffect } from "react"; -import { useConnect } from "wagmi"; - -const AUTOCONNECTED_CONNECTOR_IDS = ["safe"]; - -function useAutoConnect() { - const { connect, connectors } = useConnect(); - - useEffect(() => { - AUTOCONNECTED_CONNECTOR_IDS.forEach((connector) => { - const connectorInstance = connectors.find((c) => c.id === connector); - - if (connectorInstance) { - connect({ connector: connectorInstance }); - } - }); - }, [connect, connectors]); -} - -export { useAutoConnect }; diff --git a/apps/example-tx-manager/src/lib/useIsWalletContract.ts b/apps/example-tx-manager/src/lib/useIsWalletContract.ts deleted file mode 100644 index 14853b429..000000000 --- a/apps/example-tx-manager/src/lib/useIsWalletContract.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Address } from "viem"; -import { usePublicClient } from "wagmi"; -import { useQuery } from "wagmi/query"; - -export const useIsWalletContract = (address: Address | undefined) => { - const publicClient = usePublicClient(); - - return useQuery({ - queryKey: ["isWalletContract", address], - queryFn: async () => { - if (!address) { - return undefined; - } - const bytecode = await publicClient.getBytecode({ - address, - }); - return bytecode !== undefined; - }, - }); -}; diff --git a/apps/example-tx-manager/src/lib/useManagedTransaction.ts b/apps/example-tx-manager/src/lib/useManagedTransaction.ts deleted file mode 100644 index 1fd4d1cc8..000000000 --- a/apps/example-tx-manager/src/lib/useManagedTransaction.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { useTransactionConfirmations, useWriteContract } from "wagmi"; -import { useWaitForTransactionReceiptWrapped } from "@/lib/useWaitForTransactionReceiptWrapped"; -import { useEffect, useMemo } from "react"; -import { useSendCalls } from "wagmi/experimental"; - -const CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX = 15; - -export function useManagedTransaction() { - const { - data, - error, - status: writeStatus, - writeContract, - } = useWriteContract(); - - const { - hash, - status: txReceiptStatus, - safeHash, - safeStatus, - } = useWaitForTransactionReceiptWrapped({ - hash: data, - }); - - const { - data: blockConfirmations, - status: blockConfirmationsStatus, - fetchStatus: blockConfirmationsFetchStatus, - refetch, - } = useTransactionConfirmations({ hash }); - - useEffect(() => { - if ( - txReceiptStatus === "success" && - blockConfirmationsStatus === "success" && - Number(blockConfirmations) <= CONFIRMATIONS_THRESHOLD_FOR_FINAL_TX - ) { - const interval = setInterval(() => { - console.log("refetching"); - refetch(); - }, 1000); - - return () => clearInterval(interval); - } - }, [blockConfirmationsStatus, txReceiptStatus]); - - const STATE = useMemo( - () => ({ - idle: - writeStatus === "idle" && - (safeStatus ? safeStatus === "safe_idle" : true), - confirming: writeStatus === "success" && txReceiptStatus === "pending", - confirmed: txReceiptStatus === "success" || safeStatus === "safe_success", - pending: writeStatus === "pending", - safeAwaitingConfirmations: safeStatus === "safe_awaiting_confirmations", - safeAwaitingExecution: safeStatus === "safe_awaiting_execution", - safeCancelled: safeStatus === "safe_cancelled", - final: - blockConfirmationsStatus === "success" && - Number(blockConfirmations) >= 1, - error: writeStatus === "error" || safeStatus === "safe_failed", - }), - [ - hash, - writeStatus, - safeStatus, - txReceiptStatus, - blockConfirmationsStatus, - blockConfirmations, - ], - ); - - const status = Object.entries(STATE).findLast( - ([, value]) => value === true, - )?.[0]; - - console.log({ status, blockConfirmations, blockConfirmationsStatus }); - return { - status, - safeHash, - writeContract, - hash, - error, - blockConfirmations, - }; -} diff --git a/apps/example-tx-manager/src/lib/useSafeTransaction.ts b/apps/example-tx-manager/src/lib/useSafeTransaction.ts deleted file mode 100644 index 83e27e1ff..000000000 --- a/apps/example-tx-manager/src/lib/useSafeTransaction.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { useEffect, useState } from "react"; -import { useAccount, useWatchContractEvent } from "wagmi"; -import SafeAppsSDK from "@safe-global/safe-apps-sdk"; -import { parseAbi } from "viem"; -import { useIsWalletContract } from "./useIsWalletContract"; -export type SafeStatus = - | "safe_idle" - | "safe_loading" - | "safe_awaiting_confirmations" - | "safe_awaiting_execution" - | "safe_failed" - | "safe_success" - | "safe_cancelled"; - -export const sdk = new SafeAppsSDK({ - allowedDomains: [/app.safe.global$/], - debug: true, -}); - -export const gnosisAbi = parseAbi([ - "event ExecutionSuccess(bytes32 txHash, uint256 payment)", -]); - -export const SAFE_STATUS_MAP = { - IDLE: "safe_idle", - AWAITING_CONFIRMATIONS: "safe_awaiting_confirmations", - AWAITING_EXECUTION: "safe_awaiting_execution", - CANCELLED: "safe_cancelled", - FAILED: "safe_failed", - SUCCESS: "safe_success", -} as const; - -export const useSafeTransaction = ({ - safeHash, -}: { - safeHash: `0x${string}` | undefined; -}): { - data: any; - error: any; - status: SafeStatus; -} => { - const [gnosisStatus, setGnosisStatus] = useState("safe_idle"); - const [txHash, setTxHash] = useState(); - const { address } = useAccount(); - const { data: isWalletContract } = useIsWalletContract(address); - - async function loadGnosisQueuedTransactions(hash?: string) { - if (!hash) return setGnosisStatus("safe_idle"); - - const queued = await sdk.txs.getBySafeTxHash(hash); - - if (!queued) { - setGnosisStatus("safe_idle"); - return undefined; - } - - setGnosisStatus(SAFE_STATUS_MAP[queued.txStatus]); - setTxHash(queued.txHash); - } - - useEffect(() => { - if (!safeHash) { - return; - } - - loadGnosisQueuedTransactions(safeHash); - const interval = setInterval(() => { - loadGnosisQueuedTransactions(safeHash); - }, 1000); - - return () => clearInterval(interval); - }, [safeHash]); - - useWatchContractEvent({ - abi: gnosisAbi, - address, - eventName: "ExecutionSuccess", - onLogs: (logs) => { - logs.forEach((log) => { - if (log.args.txHash === safeHash) { - loadGnosisQueuedTransactions(safeHash); - } - }); - }, - }); - - if (!address || !isWalletContract || !safeHash) - return { - data: undefined, - error: undefined, - status: "safe_idle", - }; - - return { - data: txHash, - error: undefined, - status: gnosisStatus, - }; -}; diff --git a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts b/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts deleted file mode 100644 index 9850a3433..000000000 --- a/apps/example-tx-manager/src/lib/useWaitForTransactionReceiptWrapped.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { - useAccount, - // useQuery, - useWaitForTransactionReceipt, -} from "wagmi"; - -import { useIsWalletContract } from "./useIsWalletContract"; -import { useSafeTransaction } from "./useSafeTransaction"; - -export const useWaitForTransactionReceiptWrapped = ( - args: Parameters[0], -) => { - const { address } = useAccount(); - const { data: isWalletContract } = useIsWalletContract(address); - - const plain = useWaitForTransactionReceipt({ - ...args, - hash: isWalletContract === false ? args?.hash : undefined, - }); - - const gnosis = useSafeTransaction({ - safeHash: args?.hash, - }); - console.log({ gnosis, isWalletContract, address }); - const gnosisData = useWaitForTransactionReceipt({ - ...args, - hash: gnosis.data, - }); - - if (isWalletContract) { - return { - safeHash: args?.hash, - ...gnosisData, - hash: gnosis.data, - safeStatus: gnosis.status, - status: gnosisData.status, - }; - } - - return { - ...plain, - hash: isWalletContract === false ? args?.hash : undefined, - safeHash: null, - safeStatus: null, - }; -}; diff --git a/apps/example-tx-manager/src/utils/formatBalance.tsx b/apps/example-tx-manager/src/utils/formatBalance.tsx deleted file mode 100644 index e9401ed84..000000000 --- a/apps/example-tx-manager/src/utils/formatBalance.tsx +++ /dev/null @@ -1,7 +0,0 @@ -"use client"; -import { formatEther } from "viem"; - -export const formatBalance = (balance: bigint, toFixed?: number) => { - if (!balance) return undefined; - return parseFloat(formatEther(balance, "wei")).toFixed(toFixed ?? 4); -}; diff --git a/apps/example-tx-manager/src/utils/network.ts b/apps/example-tx-manager/src/utils/network.ts deleted file mode 100644 index 4d9ba8dce..000000000 --- a/apps/example-tx-manager/src/utils/network.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { - mainnet, - arbitrum, - base, - linea, - polygon, - optimism, - scroll, -} from "viem/chains"; -import { Chain, hardhat, sepolia } from "viem/chains"; - -let chains = [mainnet, arbitrum, base, linea, polygon, optimism, scroll] as [ - Chain, - ...Chain[], -]; - -if (process.env.NODE_ENV !== "production") chains.push(sepolia, hardhat); - -export const ETH_CHAINS = chains; - -export const NETWORK_COLORS = { - ethereum: { - color: "green", - bgVariant: "bg-green-600", - }, - arbitrum: { - color: "sky", - bgVariant: "bg-sky-600", - }, - base: { - color: "blue", - bgVariant: "bg-blue-600", - }, - linea: { - color: "slate", - bgVariant: "bg-slate-600", - }, - polygon: { - color: "purple", - bgVariant: "bg-purple-600", - }, - optimism: { - color: "red", - bgVariant: "bg-red-600", - }, - scroll: { - color: "amber", - bgVariant: "bg-amber-600", - }, - other: { - color: "gray", - bgVariant: "bg-gray-600", - }, -}; - -export function GetNetworkColor( - chain?: string, - type: "color" | "bgVariant" = "color", -) { - chain = chain?.toLocaleLowerCase(); - if (chain === "ethereum" || chain === "mainnet" || chain === "homestead") - return NETWORK_COLORS.ethereum[type]; - if (chain?.includes("arbitrum")) return NETWORK_COLORS.arbitrum[type]; - if (chain?.includes("base")) return NETWORK_COLORS.base[type]; - if (chain?.includes("linea")) return NETWORK_COLORS.linea[type]; - if (chain?.includes("polygon") || chain?.includes("matic")) - return NETWORK_COLORS.polygon[type]; - if (chain?.includes("optimism") || chain?.startsWith("op")) - return NETWORK_COLORS.optimism[type]; - if (chain?.includes("scroll")) return NETWORK_COLORS.scroll[type]; - - return NETWORK_COLORS.other[type]; -} diff --git a/apps/example-tx-manager/src/utils/server.ts b/apps/example-tx-manager/src/utils/server.ts deleted file mode 100644 index 6608ef121..000000000 --- a/apps/example-tx-manager/src/utils/server.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { withIronSessionApiRoute } from "iron-session/next"; -import { NextApiHandler } from "next"; -import { SiweMessage } from "siwe"; -import { SITE_NAME } from "./site"; - -declare module "iron-session" { - interface IronSessionData { - nonce: string; - siwe: SiweMessage; - } -} - -export function withSessionRoute(handler: NextApiHandler) { - return withIronSessionApiRoute(handler, SERVER_SESSION_SETTINGS); -} - -export const SERVER_SESSION_SETTINGS = { - cookieName: SITE_NAME, - password: - process.env.SESSION_PASSWORD ?? - "UPDATE_TO_complex_password_at_least_32_characters_long", - cookieOptions: { - secure: process.env.NODE_ENV === "production", - }, -}; diff --git a/apps/example-tx-manager/src/utils/site.ts b/apps/example-tx-manager/src/utils/site.ts deleted file mode 100644 index ca5a3d8ee..000000000 --- a/apps/example-tx-manager/src/utils/site.ts +++ /dev/null @@ -1,9 +0,0 @@ -export const SITE_EMOJI = "⚡"; -export const SITE_NAME = "Nexth"; -export const SITE_INFO = "Quickly ship Web3 Apps"; -export const SITE_DESCRIPTION = - "A Next.js + Ethereum starter kit with Viem, Wagmi, Web3Modal, SIWE, Tailwind, daisyUI and more!"; -export const SITE_URL = "https://nexth.vercel.app"; - -export const SOCIAL_TWITTER = "wslyvh"; -export const SOCIAL_GITHUB = "wslyvh/nexth"; diff --git a/apps/example-tx-manager/src/utils/types.ts b/apps/example-tx-manager/src/utils/types.ts deleted file mode 100644 index e9fb19f01..000000000 --- a/apps/example-tx-manager/src/utils/types.ts +++ /dev/null @@ -1,15 +0,0 @@ -export interface State { - loading: boolean; - data?: T; - error?: string; -} - -export type NotificationType = "info" | "success" | "warning" | "error"; - -export interface Notification { - type: NotificationType; - message: string; - timestamp: number; - from?: string; - href?: string; -} diff --git a/apps/example-tx-manager/src/utils/web3.ts b/apps/example-tx-manager/src/utils/web3.ts deleted file mode 100644 index a185bc214..000000000 --- a/apps/example-tx-manager/src/utils/web3.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { defaultWagmiConfig } from "@web3modal/wagmi/react/config"; -import { cookieStorage, createStorage } from "wagmi"; -import { SITE_INFO, SITE_NAME, SITE_URL } from "./site"; -import { ETH_CHAINS } from "./network"; - -export const WALLETCONNECT_PROJECT_ID = - process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID ?? ""; -if (!WALLETCONNECT_PROJECT_ID) { - console.warn( - "You need to provide a NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID env variable", - ); -} - -export const WALLETCONNECT_CONFIG = defaultWagmiConfig({ - projectId: WALLETCONNECT_PROJECT_ID, - chains: ETH_CHAINS, - metadata: { - name: SITE_NAME, - description: SITE_INFO, - url: SITE_URL, - icons: [], - }, - ssr: true, - enableEmail: true, - storage: createStorage({ - storage: cookieStorage, - }), -}); diff --git a/apps/example-tx-manager/src/wagmi.ts b/apps/example-tx-manager/src/wagmi.ts deleted file mode 100644 index b2bc3a148..000000000 --- a/apps/example-tx-manager/src/wagmi.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { createConfig, http } from "wagmi"; -import { mainnet, sepolia } from "wagmi/chains"; -import { injected, safe } from "wagmi/connectors"; - -declare module "wagmi" { - interface Register { - config: typeof config; - } -} - -export const config = createConfig({ - chains: [sepolia], - connectors: [ - injected(), - safe({ - debug: true, - }), - ], - transports: { - [mainnet.id]: http(process.env.NEXT_PUBLIC_RPC_URL_MAINNET), - [sepolia.id]: http(process.env.NEXT_PUBLIC_RPC_URL_SEPOLIA), - }, -}); diff --git a/apps/example-tx-manager/tsconfig.json b/apps/example-tx-manager/tsconfig.json deleted file mode 100644 index e59724b28..000000000 --- a/apps/example-tx-manager/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": ["./src/*"] - } - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b85bf2f7c..6228be5bb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -105,10 +105,10 @@ importers: version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@rainbow-me/rainbowkit': specifier: 1.3.1 - version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@sentry/nextjs': specifier: ^7.91.0 - version: 7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + version: 7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@sentry/profiling-node': specifier: ^1.3.2 version: 1.3.2(@sentry/node@7.104.0) @@ -117,7 +117,7 @@ importers: version: 8.0.0 '@wagmi/cli': specifier: 1.5.2 - version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@wagmi/core': specifier: ^1.4.12 version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) @@ -156,7 +156,7 @@ importers: version: 4.6.2 next: specifier: ^14.0.4 - version: 14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) plotly.js: specifier: ^2.27.1 version: 2.27.1 @@ -198,7 +198,7 @@ importers: version: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: ^1.4.12 - version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) zod: specifier: ^3.22.4 version: 3.22.4 @@ -271,7 +271,7 @@ importers: version: 3.4.0(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)) ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) + version: 29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3) typescript: specifier: 5.3.3 version: 5.3.3 @@ -280,7 +280,7 @@ importers: dependencies: next: specifier: 14.2.3 - version: 14.2.3(@babel/core@7.24.6(supports-color@9.4.0))(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.3(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18 version: 18.3.1 @@ -790,82 +790,6 @@ importers: specifier: 5.4.5 version: 5.4.5 - apps/example-tx-manager: - dependencies: - '@heroicons/react': - specifier: ^2.1.3 - version: 2.1.3(react@18.3.1) - '@safe-global/safe-apps-sdk': - specifier: ^9.0.0 - version: 9.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - '@tanstack/react-query': - specifier: 5.40.1 - version: 5.40.1(react@18.3.1) - '@types/react-toastify': - specifier: ^4.1.0 - version: 4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@wagmi/core': - specifier: ^1.4.12 - version: 1.4.12(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - abitype: - specifier: ^1.0.2 - version: 1.0.2(typescript@5.4.5)(zod@3.23.8) - dayjs: - specifier: ^1.11.11 - version: 1.11.11 - next: - specifier: 14.2.3 - version: 14.2.3(@babel/core@7.24.6(supports-color@9.4.0))(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: - specifier: ^18.3.1 - version: 18.3.1 - react-dom: - specifier: ^18.3.1 - version: 18.3.1(react@18.3.1) - react-toastify: - specifier: ^10.0.5 - version: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - viem: - specifier: latest - version: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - wagmi: - specifier: latest - version: 2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - devDependencies: - '@types/node': - specifier: ^20.14.2 - version: 20.14.2 - '@types/react': - specifier: ^18.3.3 - version: 18.3.3 - '@types/react-dom': - specifier: ^18.3.0 - version: 18.3.0 - '@wagmi/cli': - specifier: latest - version: 2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4) - bufferutil: - specifier: ^4.0.8 - version: 4.0.8 - encoding: - specifier: ^0.1.13 - version: 0.1.13 - lokijs: - specifier: ^1.5.12 - version: 1.5.12 - pino-pretty: - specifier: ^11.1.0 - version: 11.1.0 - supports-color: - specifier: ^9.4.0 - version: 9.4.0 - typescript: - specifier: ^5.4.5 - version: 5.4.5 - utf-8-validate: - specifier: ^6.0.4 - version: 6.0.4 - apps/milkman-api/apps/milkman-api: dependencies: '@ponder/core': @@ -3480,11 +3404,6 @@ packages: '@hapi/topo@5.1.0': resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - '@heroicons/react@2.1.3': - resolution: {integrity: sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==} - peerDependencies: - react: '>= 16' - '@hono/node-server@1.11.2': resolution: {integrity: sha512-JhX0nUC66GeDxpIdMKWDRMEwtQBa64CY907iAF1sYqb4m2p2PdSU7zkbnNhAZLg/6IjSlTuj6CF307JlBXVvpg==} engines: {node: '>=18.14.1'} @@ -5437,9 +5356,6 @@ packages: '@safe-global/safe-apps-sdk@8.1.0': resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==} - '@safe-global/safe-apps-sdk@9.0.0': - resolution: {integrity: sha512-fEqmQBU3JqTjORSl3XYrcaxdxkUqeeM39qsQjqCzzTHioN8DEfg3JCLq6EBoXzcKTVOYi8SPzLV7KJccdDw+4w==} - '@safe-global/safe-core-sdk-types@2.3.0': resolution: {integrity: sha512-dU0KkDV1KJNf11ajbUjWiSi4ygdyWfhk1M50lTJWUdCn1/2Bsb/hICM8LoEk6DCoFumxaoCet02SmYakXsW2CA==} @@ -6007,10 +5923,6 @@ packages: '@types/react-redux@7.1.33': resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} - '@types/react-toastify@4.1.0': - resolution: {integrity: sha512-u7Ie/7LHBsPVz/iJxi/WlRDS7Gh9csCJACTDXx+pSLuZCm94xpkwzhM3jV1L5ZxP/in0Gp2tFbJ91VrSGr1gyQ==} - deprecated: This is a stub types definition. react-toastify provides its own type definitions, so you do not need this installed. - '@types/react@18.2.45': resolution: {integrity: sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==} @@ -6176,15 +6088,6 @@ packages: wagmi: optional: true - '@wagmi/cli@2.1.8': - resolution: {integrity: sha512-607a+1ZjeIThHpENuIUJkeFjyRroai4H5TcW8jBJPfKqkWTFRah1Co7h9eOfIZzLd9FyWK+YOHH1PL+Jea8Alg==} - hasBin: true - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true - '@wagmi/connectors@3.1.10': resolution: {integrity: sha512-ZLJC1QaeiZarkF07Cr9mOlVjPO1Lf5TBx+JKBms2y5fUIXlKrxCfQgO/gDCureboI+Us2X3IRI659+XacSGpbA==} peerDependencies: @@ -7085,12 +6988,6 @@ packages: peerDependencies: esbuild: '>=0.13' - bundle-require@4.2.1: - resolution: {integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - esbuild: '>=0.17' - busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} @@ -7778,9 +7675,6 @@ packages: date-fns@3.6.0: resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==} - dateformat@4.6.3: - resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} - dayjs@1.11.11: resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} @@ -8815,9 +8709,6 @@ packages: resolution: {integrity: sha512-HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ==} engines: {node: '>=0.4.0'} - fast-copy@3.0.2: - resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} - fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} @@ -9034,10 +8925,6 @@ packages: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - fs-extra@4.0.3: resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} @@ -9463,9 +9350,6 @@ packages: heap@0.2.7: resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} - help-me@5.0.0: - resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} - hermes-estree@0.19.1: resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==} @@ -10327,10 +10211,6 @@ packages: jose@5.1.3: resolution: {integrity: sha512-GPExOkcMsCLBTi1YetY2LmkoY559fss0+0KVa6kOfb2YFe84nAM7Nm/XzuZozah4iHgmBGrCOHL5/cy670SBRw==} - joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} - js-sha3@0.5.7: resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==} @@ -10696,9 +10576,6 @@ packages: resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} hasBin: true - lokijs@1.5.12: - resolution: {integrity: sha512-Q5ALD6JiS6xAUWCwX3taQmgwxyveCtIIuL08+ml0nHwT3k0S/GIFJN+Hd38b1qYIMaE5X++iqsqWVksz7SYW+Q==} - long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} @@ -11828,10 +11705,6 @@ packages: pino-abstract-transport@1.2.0: resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} - pino-pretty@11.1.0: - resolution: {integrity: sha512-PjBzFL7IMSl1YkS9cSVWC+4gONmW0Fi+fvUzy74zK6RJHk4RkfW+e22NydRrGEtBRa5n6/oPNLPqjUeQrzqcLQ==} - hasBin: true - pino-std-serializers@4.0.0: resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} @@ -12429,12 +12302,6 @@ packages: '@types/react': optional: true - react-toastify@10.0.5: - resolution: {integrity: sha512-mNKt2jBXJg4O7pSdbNUfDdTsK9FIdikfsIE/yUCxbAEXl4HMyJaivrVFcn3Elvt5xvCQYhUZm+hqTIu1UXM3Pw==} - peerDependencies: - react: '>=18' - react-dom: '>=18' - react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} @@ -12776,9 +12643,6 @@ packages: resolution: {integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==} engines: {node: '>=14.0.0'} - secure-json-parse@2.7.0: - resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} - selfsigned@2.4.1: resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} engines: {node: '>=10'} @@ -12967,9 +12831,6 @@ packages: sonic-boom@3.8.1: resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} - sonic-boom@4.0.1: - resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} - source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} @@ -13273,10 +13134,6 @@ packages: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} - supports-color@9.4.0: - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} - engines: {node: '>=12'} - supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} @@ -14102,14 +13959,6 @@ packages: typescript: optional: true - viem@2.13.7: - resolution: {integrity: sha512-SZWn9LPrz40PHl4PM2iwkPTTtjWPDFsnLr32UwpqC/Z5f0AwxitjLyZdDKcImvbWZ3vLQ0oPggR1aLlqvTcUug==} - peerDependencies: - typescript: '>=5.0.4' - peerDependenciesMeta: - typescript: - optional: true - viem@2.13.8: resolution: {integrity: sha512-JX8dOrCJKazNVs7YAahXnX+NANp0nlK16GyYjtQXILnar1daCPsLy4uzKgZDBVBD6DdRP2lsbPfo4X7QX3q5EQ==} peerDependencies: @@ -14782,26 +14631,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.24.6(supports-color@9.4.0)': - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helpers': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) - '@babel/types': 7.24.6 - convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@9.4.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/generator@7.2.0': dependencies: '@babel/types': 7.24.6 @@ -14865,19 +14694,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -14904,19 +14720,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.6 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-member-expression-to-functions': 7.24.6 - '@babel/helper-optimise-call-expression': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -14937,21 +14740,6 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - regexpu-core: 5.3.2 - semver: 6.3.1 - - '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - regexpu-core: 5.3.2 - semver: 6.3.1 - optional: true - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -14963,29 +14751,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - debug: 4.3.4(supports-color@9.4.0) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - optional: true - '@babel/helper-environment-visitor@7.22.20': {} '@babel/helper-environment-visitor@7.24.6': {} @@ -15042,15 +14807,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.6 '@babel/helper-validator-identifier': 7.24.6 - '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-simple-access': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 - '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15079,21 +14835,6 @@ snapshots: '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-wrap-function': 7.24.6 - '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-wrap-function': 7.24.6 - - '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-wrap-function': 7.24.6 - optional: true - '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15101,13 +14842,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15122,13 +14856,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.24.6 '@babel/helper-optimise-call-expression': 7.24.6 - '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-member-expression-to-functions': 7.24.6 - '@babel/helper-optimise-call-expression': 7.24.6 - '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15218,22 +14945,11 @@ snapshots: '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15241,25 +14957,12 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-environment-visitor': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15268,35 +14971,12 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15309,50 +14989,18 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15365,19 +15013,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.6)': dependencies: '@babel/compat-data': 7.23.5 @@ -15387,44 +15022,12 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6) - optional: true - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15432,13 +15035,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15450,20 +15046,11 @@ snapshots: dependencies: '@babel/core': 7.23.6 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15486,11 +15073,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15502,53 +15084,21 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15559,11 +15109,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15579,31 +15124,16 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15615,11 +15145,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15631,22 +15156,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.22.5 - optional: true - - '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15657,11 +15166,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15673,11 +15177,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15688,11 +15187,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15704,11 +15198,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15720,11 +15209,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15736,11 +15220,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15751,27 +15230,11 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15788,11 +15251,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -15804,12 +15262,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15820,17 +15272,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15839,14 +15280,6 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) - '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15854,21 +15287,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6) - optional: true - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15879,11 +15297,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15894,29 +15307,12 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15924,13 +15320,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6) - '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15956,31 +15345,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.6 globals: 11.12.0 - '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-split-export-declaration': 7.24.6 - globals: 11.12.0 - - '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6) - '@babel/helper-split-export-declaration': 7.24.6 - globals: 11.12.0 - optional: true - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -15993,19 +15357,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/template': 7.24.6 - '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/template': 7.24.6 - - '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/template': 7.24.6 - optional: true - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16016,75 +15367,35 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16097,12 +15408,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -16121,12 +15426,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16141,33 +15440,12 @@ snapshots: '@babel/helper-function-name': 7.24.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16178,29 +15456,12 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) - '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16211,23 +15472,12 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16242,13 +15492,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-simple-access': 7.24.6 - '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-simple-access': 7.24.6 - '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -16264,79 +15507,35 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-validator-identifier': 7.24.6 - '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-hoist-variables': 7.24.6 - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 - '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-module-transforms': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) - '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16345,14 +15544,6 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16365,24 +15556,12 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-replace-supers': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16390,64 +15569,22 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) - '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.22.5 - optional: true - '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16456,23 +15593,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) - '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - - '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6) - optional: true - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16483,59 +15603,21 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.22.5 - optional: true - '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16545,47 +15627,17 @@ snapshots: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6) '@babel/types': 7.23.6 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/types': 7.23.6 - - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.24.6) - '@babel/types': 7.23.6 - optional: true - '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16598,31 +15650,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-module-imports': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - optional: true - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16633,17 +15660,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16656,35 +15672,11 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - - '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 - optional: true - '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16695,21 +15687,11 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 @@ -16718,14 +15700,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.23.6) - '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-annotate-as-pure': 7.24.6 - '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -16739,54 +15713,24 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - - '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6) - '@babel/helper-plugin-utils': 7.24.6 - optional: true - '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.24.6 - '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/preset-env@7.24.6(@babel/core@7.23.6)': dependencies: '@babel/compat-data': 7.24.6 @@ -16874,100 +15818,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/compat-data': 7.24.6 - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-compilation-targets': 7.24.6 - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6(supports-color@9.4.0)) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - core-js-compat: 3.37.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/preset-flow@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/preset-flow@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -16982,22 +15832,6 @@ snapshots: '@babel/types': 7.24.6 esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/types': 7.24.6 - esutils: 2.0.3 - - '@babel/preset-typescript@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-plugin-utils': 7.24.6 - '@babel/helper-validator-option': 7.24.6 - '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/preset-typescript@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -17007,15 +15841,6 @@ snapshots: '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) - '@babel/register@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.6 - source-map-support: 0.5.21 - '@babel/register@7.24.6(@babel/core@7.24.6)': dependencies: '@babel/core': 7.24.6 @@ -17081,21 +15906,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/traverse@7.24.6(supports-color@9.4.0)': - dependencies: - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.6 - '@babel/helper-environment-visitor': 7.24.6 - '@babel/helper-function-name': 7.24.6 - '@babel/helper-hoist-variables': 7.24.6 - '@babel/helper-split-export-declaration': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/types': 7.24.6 - debug: 4.3.4(supports-color@9.4.0) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/types@7.23.6': dependencies: '@babel/helper-string-parser': 7.23.4 @@ -17190,31 +16000,6 @@ snapshots: dependencies: commander: 2.20.3 - '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@metamask/safe-event-emitter': 2.0.0 - '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4) - bind-decorator: 1.0.11 - bn.js: 5.2.1 - buffer: 6.0.3 - clsx: 1.2.1 - eth-block-tracker: 6.1.0(supports-color@9.4.0) - eth-json-rpc-filters: 5.1.0 - eth-rpc-errors: 4.0.2 - json-rpc-engine: 6.1.0 - keccak: 3.0.4 - preact: 10.19.3 - qs: 6.11.2 - rxjs: 6.6.7 - sha.js: 2.4.11 - stream-browserify: 3.0.0 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@metamask/safe-event-emitter': 2.0.0 @@ -17254,20 +16039,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)': - dependencies: - bn.js: 5.2.1 - buffer: 6.0.3 - clsx: 1.2.1 - eth-block-tracker: 7.1.0(supports-color@9.4.0) - eth-json-rpc-filters: 6.0.1 - eventemitter3: 5.0.1 - keccak: 3.0.4 - preact: 10.19.3 - sha.js: 2.4.11 - transitivePeerDependencies: - - supports-color - '@coinbase/wallet-sdk@4.0.3': dependencies: buffer: 6.0.3 @@ -19165,10 +17936,6 @@ snapshots: dependencies: '@hapi/hoek': 9.3.0 - '@heroicons/react@2.1.3(react@18.3.1)': - dependencies: - react: 18.3.1 - '@hono/node-server@1.11.2': {} '@hookform/resolvers@3.3.2(react-hook-form@7.43.9(react@18.3.1))': @@ -19738,14 +18505,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/eth-json-rpc-provider@1.0.1(supports-color@9.4.0)': - dependencies: - '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) - '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 5.0.2(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - '@metamask/json-rpc-engine@7.3.3': dependencies: '@metamask/rpc-errors': 6.2.1 @@ -19754,14 +18513,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/json-rpc-engine@7.3.3(supports-color@9.4.0)': - dependencies: - '@metamask/rpc-errors': 6.2.1(supports-color@9.4.0) - '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.4.0(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - '@metamask/json-rpc-middleware-stream@6.0.2': dependencies: '@metamask/json-rpc-engine': 7.3.3 @@ -19771,15 +18522,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/json-rpc-middleware-stream@6.0.2(supports-color@9.4.0)': - dependencies: - '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) - '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.4.0(supports-color@9.4.0) - readable-stream: 3.6.2 - transitivePeerDependencies: - - supports-color - '@metamask/object-multiplex@2.0.0': dependencies: once: 1.4.0 @@ -19806,23 +18548,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/providers@15.0.0(supports-color@9.4.0)': - dependencies: - '@metamask/json-rpc-engine': 7.3.3(supports-color@9.4.0) - '@metamask/json-rpc-middleware-stream': 6.0.2(supports-color@9.4.0) - '@metamask/object-multiplex': 2.0.0 - '@metamask/rpc-errors': 6.2.1(supports-color@9.4.0) - '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.4.0(supports-color@9.4.0) - detect-browser: 5.3.0 - extension-port-stream: 3.0.0 - fast-deep-equal: 3.1.3 - is-stream: 2.0.1 - readable-stream: 3.6.2 - webextension-polyfill: 0.10.0 - transitivePeerDependencies: - - supports-color - '@metamask/rpc-errors@6.2.1': dependencies: '@metamask/utils': 8.4.0 @@ -19830,32 +18555,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/rpc-errors@6.2.1(supports-color@9.4.0)': - dependencies: - '@metamask/utils': 8.4.0(supports-color@9.4.0) - fast-safe-stringify: 2.1.1 - transitivePeerDependencies: - - supports-color - '@metamask/safe-event-emitter@2.0.0': {} '@metamask/safe-event-emitter@3.1.1': {} - '@metamask/sdk-communication-layer@0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4))(supports-color@9.4.0)': - dependencies: - bufferutil: 4.0.8 - cross-fetch: 4.0.0(encoding@0.1.13) - date-fns: 2.30.0 - debug: 4.3.4(supports-color@9.4.0) - eciesjs: 0.3.18 - eventemitter2: 6.4.9 - readable-stream: 3.6.2 - socket.io-client: 4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - utf-8-validate: 6.0.4 - uuid: 8.3.2 - transitivePeerDependencies: - - supports-color - '@metamask/sdk-communication-layer@0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: bufferutil: 4.0.8 @@ -19871,15 +18574,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': + '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 - react-i18next: 14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + optional: true '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)': dependencies: @@ -19891,48 +18593,12 @@ snapshots: react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) - '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@metamask/onboarding': 1.0.1 - '@metamask/providers': 15.0.0(supports-color@9.4.0) - '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4))(supports-color@9.4.0) - '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) - '@types/dom-screen-wake-lock': 1.0.3 - bowser: 2.11.0 - cross-fetch: 4.0.0(encoding@0.1.13) - debug: 4.3.4(supports-color@9.4.0) - eciesjs: 0.3.18 - eth-rpc-errors: 4.0.3 - eventemitter2: 6.4.9 - i18next: 22.5.1 - i18next-browser-languagedetector: 7.1.0 - obj-multiplex: 1.0.0 - pump: 3.0.0 - qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) - readable-stream: 3.6.2 - rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) - socket.io-client: 4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - util: 0.12.5 - uuid: 8.3.2 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - transitivePeerDependencies: - - bufferutil - - encoding - - react-i18next - - react-native - - rollup - - supports-color - - utf-8-validate - '@metamask/sdk@0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 15.0.0 '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -19945,7 +18611,7 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) + react-native-webview: 11.26.1(react@18.3.1) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0(rollup@4.18.0) socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -20009,15 +18675,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/utils@3.6.0(supports-color@9.4.0)': - dependencies: - '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@9.4.0) - semver: 7.6.2 - superstruct: 1.0.3 - transitivePeerDependencies: - - supports-color - '@metamask/utils@5.0.2': dependencies: '@ethereumjs/tx': 4.2.0 @@ -20028,16 +18685,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/utils@5.0.2(supports-color@9.4.0)': - dependencies: - '@ethereumjs/tx': 4.2.0 - '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@9.4.0) - semver: 7.6.2 - superstruct: 1.0.3 - transitivePeerDependencies: - - supports-color - '@metamask/utils@8.4.0': dependencies: '@ethereumjs/tx': 4.2.0 @@ -20052,20 +18699,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/utils@8.4.0(supports-color@9.4.0)': - dependencies: - '@ethereumjs/tx': 4.2.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 - '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@9.4.0) - pony-cause: 2.1.11 - semver: 7.6.2 - superstruct: 1.0.3 - uuid: 9.0.1 - transitivePeerDependencies: - - supports-color - '@microsoft/fetch-event-source@2.0.1': {} '@motionone/animation@10.16.3': @@ -22025,7 +20658,7 @@ snapshots: dependencies: '@babel/runtime': 7.24.5 - '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@rainbow-me/rainbowkit@1.3.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: '@vanilla-extract/css': 1.9.1 '@vanilla-extract/dynamic': 2.0.2 @@ -22038,7 +20671,7 @@ snapshots: react-remove-scroll: 2.5.4(@types/react@18.3.1)(react@18.3.1) ua-parser-js: 1.0.37 viem: 1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - '@types/react' @@ -22062,9 +20695,9 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-debugger-ui@13.6.8(supports-color@9.4.0)': + '@react-native-community/cli-debugger-ui@13.6.8': dependencies: - serve-static: 1.15.0(supports-color@9.4.0) + serve-static: 1.15.0 transitivePeerDependencies: - supports-color @@ -22127,33 +20760,16 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-server-api@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) - '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - compression: 1.7.4(supports-color@9.4.0) - connect: 3.7.0(supports-color@9.4.0) - errorhandler: 1.5.1 - nocache: 3.0.4 - pretty-format: 26.6.2 - serve-static: 1.15.0(supports-color@9.4.0) - ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@react-native-community/cli-server-api@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-debugger-ui': 13.6.8 '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - compression: 1.7.4(supports-color@9.4.0) - connect: 3.7.0(supports-color@9.4.0) + compression: 1.7.4 + connect: 3.7.0 errorhandler: 1.5.1 nocache: 3.0.4 pretty-format: 26.6.2 - serve-static: 1.15.0(supports-color@9.4.0) + serve-static: 1.15.0 ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -22181,36 +20797,11 @@ snapshots: dependencies: joi: 17.13.1 - '@react-native-community/cli@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-clean': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) - '@react-native-community/cli-doctor': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-hermes': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-types': 13.6.8 - chalk: 4.1.2 - commander: 9.5.0 - deepmerge: 4.3.1 - execa: 5.1.1 - find-up: 4.1.0 - fs-extra: 8.1.0 - graceful-fs: 4.2.11 - prompts: 2.4.2 - semver: 7.6.2 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@react-native-community/cli@13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-clean': 13.6.8(encoding@0.1.13) '@react-native-community/cli-config': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-debugger-ui': 13.6.8(supports-color@9.4.0) + '@react-native-community/cli-debugger-ui': 13.6.8 '@react-native-community/cli-doctor': 13.6.8(encoding@0.1.13) '@react-native-community/cli-hermes': 13.6.8(encoding@0.1.13) '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -22240,13 +20831,6 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - '@react-native/babel-preset@0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: '@babel/core': 7.23.6 @@ -22296,105 +20880,6 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/template': 7.24.6 - '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6(supports-color@9.4.0)) - react-refresh: 0.14.2 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - '@react-native/babel-preset@0.74.84(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6) - '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6) - '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.24.6) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.6) - '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6) - '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6) - '@babel/template': 7.24.6 - '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6) - react-refresh: 0.14.2 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - optional: true - '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6))': dependencies: '@babel/parser': 7.24.6 @@ -22408,19 +20893,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/parser': 7.24.6 - '@babel/preset-env': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - glob: 7.2.3 - hermes-parser: 0.19.1 - invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -22443,87 +20915,21 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - chalk: 4.1.2 - execa: 5.1.1 - metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - metro-core: 0.80.9 - node-fetch: 2.7.0(encoding@0.1.13) - querystring: 0.2.1 - readline: 1.3.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.6) - chalk: 4.1.2 - execa: 5.1.1 - metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - metro-core: 0.80.9 - node-fetch: 2.7.0(encoding@0.1.13) - querystring: 0.2.1 - readline: 1.3.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - optional: true - '@react-native/debugger-frontend@0.74.84': {} - '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.74.84 - '@rnx-kit/chromium-edge-launcher': 1.0.0(supports-color@9.4.0) - chrome-launcher: 0.15.2(supports-color@9.4.0) - connect: 3.7.0(supports-color@9.4.0) - debug: 2.6.9(supports-color@9.4.0) - node-fetch: 2.7.0(encoding@0.1.13) - nullthrows: 1.1.1 - open: 7.4.2 - selfsigned: 2.4.1 - serve-static: 1.15.0(supports-color@9.4.0) - temp-dir: 2.0.0 - ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@isaacs/ttlcache': 1.4.1 '@react-native/debugger-frontend': 0.74.84 - '@rnx-kit/chromium-edge-launcher': 1.0.0(supports-color@9.4.0) - chrome-launcher: 0.15.2(supports-color@9.4.0) - connect: 3.7.0(supports-color@9.4.0) - debug: 2.6.9(supports-color@9.4.0) + '@rnx-kit/chromium-edge-launcher': 1.0.0 + chrome-launcher: 0.15.2 + connect: 3.7.0 + debug: 2.6.9 node-fetch: 2.7.0(encoding@0.1.13) nullthrows: 1.1.1 open: 7.4.2 selfsigned: 2.4.1 - serve-static: 1.15.0(supports-color@9.4.0) + serve-static: 1.15.0 temp-dir: 2.0.0 ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -22546,35 +20952,14 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0)': - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@react-native/babel-preset': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - hermes-parser: 0.19.1 - nullthrows: 1.1.1 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.6)': - dependencies: - '@babel/core': 7.24.6 - '@react-native/babel-preset': 0.74.84(@babel/core@7.24.6) - hermes-parser: 0.19.1 - nullthrows: 1.1.1 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - optional: true - '@react-native/normalize-colors@0.74.84': {} - '@react-native/virtualized-lists@0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) optionalDependencies: '@types/react': 18.3.1 optional: true @@ -22588,27 +20973,18 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)': - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react: 18.3.1 - react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - optionalDependencies: - '@types/react': 18.3.3 - '@remix-run/router@1.16.1': {} '@repeaterjs/repeater@3.0.5': {} '@rescript/std@9.0.0': {} - '@rnx-kit/chromium-edge-launcher@1.0.0(supports-color@9.4.0)': + '@rnx-kit/chromium-edge-launcher@1.0.0': dependencies: '@types/node': 18.19.33 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 - lighthouse-logger: 1.4.2(supports-color@9.4.0) + lighthouse-logger: 1.4.2 mkdirp: 1.0.4 rimraf: 3.0.2 transitivePeerDependencies: @@ -22769,16 +21145,6 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': - dependencies: - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.21.2 @@ -22809,26 +21175,6 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.2 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod - - '@safe-global/safe-apps-sdk@9.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)': - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.21.2 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod - '@safe-global/safe-core-sdk-types@2.3.0(encoding@0.1.13)': dependencies: '@ethersproject/bignumber': 5.7.0 @@ -22950,7 +21296,7 @@ snapshots: '@sentry/utils': 7.91.0 localforage: 1.10.0 - '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@sentry/nextjs@7.91.0(encoding@0.1.13)(next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) '@sentry/core': 7.91.0 @@ -22962,7 +21308,7 @@ snapshots: '@sentry/vercel-edge': 7.91.0 '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13) chalk: 3.0.0 - next: 14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 resolve: 1.22.8 rollup: 2.78.0 @@ -23090,28 +21436,6 @@ snapshots: - encoding - utf-8-validate - '@solana/web3.js@1.87.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)': - dependencies: - '@babel/runtime': 7.24.5 - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@solana/buffer-layout': 4.0.1 - agentkeepalive: 4.5.0 - bigint-buffer: 1.1.5 - bn.js: 5.2.1 - borsh: 0.7.0 - bs58: 4.0.1 - buffer: 6.0.3 - fast-stable-stringify: 1.0.0 - jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - node-fetch: 2.7.0(encoding@0.1.13) - rpc-websockets: 7.9.0 - superstruct: 0.14.2 - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate - '@stablelib/aead@1.0.1': {} '@stablelib/binary@1.0.1': @@ -23227,24 +21551,19 @@ snapshots: dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))': + '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))': dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) - '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': + '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@tanstack/query-core': 4.36.1 react: 18.3.1 use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-native: 0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) - - '@tanstack/react-query@5.40.1(react@18.3.1)': - dependencies: - '@tanstack/query-core': 5.40.0 - react: 18.3.1 + react-native: 0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10) '@tanstack/react-query@5.40.1(react@19.0.0-rc-6230622a1a-20240610)': dependencies: @@ -23585,13 +21904,6 @@ snapshots: hoist-non-react-statics: 3.3.2 redux: 4.2.1 - '@types/react-toastify@4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - react-toastify: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - react - - react-dom - '@types/react@18.2.45': dependencies: '@types/prop-types': 15.7.11 @@ -23799,7 +22111,7 @@ snapshots: '@vue/shared@3.4.27': {} - '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@wagmi/cli@1.5.2(@wagmi/core@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) abort-controller: 3.0.0 @@ -23826,7 +22138,7 @@ snapshots: optionalDependencies: '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) typescript: 5.3.3 - wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -23863,33 +22175,6 @@ snapshots: - bufferutil - utf-8-validate - '@wagmi/cli@2.1.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)': - dependencies: - abitype: 1.0.2(typescript@5.4.5)(zod@3.23.8) - bundle-require: 4.2.1(esbuild@0.19.10) - cac: 6.7.14 - change-case: 4.1.2 - chokidar: 3.5.3 - dedent: 0.7.0 - dotenv: 16.3.1 - dotenv-expand: 10.0.0 - esbuild: 0.19.10 - execa: 8.0.1 - find-up: 6.3.0 - fs-extra: 11.2.0 - globby: 13.2.2 - ora: 6.3.1 - pathe: 1.1.2 - picocolors: 1.0.0 - prettier: 3.2.5 - viem: 2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - zod: 3.23.8 - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@wagmi/connectors@3.1.10(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -23960,41 +22245,6 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@3.1.10(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': - dependencies: - '@coinbase/wallet-sdk': 3.7.2(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.10.6(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/legacy-provider': 2.0.0(encoding@0.1.13) - '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) - '@walletconnect/utils': 2.10.2(supports-color@9.4.0) - abitype: 0.8.7(typescript@5.4.5)(zod@3.23.8) - eventemitter3: 4.0.7 - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - supports-color - - utf-8-validate - - zod - '@wagmi/connectors@5.0.10(@types/react@18.3.1)(@wagmi/core@2.10.5(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.3 @@ -24034,44 +22284,6 @@ snapshots: - zod optional: true - ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)' - : dependencies: - '@coinbase/wallet-sdk': 4.0.3 - '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) - cbw-sdk: '@coinbase/wallet-sdk@3.9.3(supports-color@9.4.0)' - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - react-dom - - react-i18next - - react-native - - rollup - - supports-color - - utf-8-validate - - zod - ? '@wagmi/connectors@5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)' : dependencies: '@coinbase/wallet-sdk': 4.0.3 @@ -24172,54 +22384,6 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@1.4.12(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': - dependencies: - '@wagmi/connectors': 3.1.10(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - abitype: 0.8.7(typescript@5.4.5)(zod@3.23.8) - eventemitter3: 4.0.7 - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - zustand: 4.4.7(@types/react@18.3.3)(react@18.3.1) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - immer - - react - - supports-color - - utf-8-validate - - zod - - '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': - dependencies: - eventemitter3: 5.0.1 - mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - zustand: 4.4.1(@types/react@18.3.3)(react@18.3.1) - optionalDependencies: - '@tanstack/query-core': 5.40.0 - typescript: 5.4.5 - transitivePeerDependencies: - - '@types/react' - - bufferutil - - immer - - react - - utf-8-validate - - zod - '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@19.0.0-rc-6230622a1a-20240610)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: eventemitter3: 5.0.1 @@ -24254,41 +22418,6 @@ snapshots: - zod optional: true - '@walletconnect/core@2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) - '@walletconnect/logger': 2.0.1 - '@walletconnect/relay-api': 1.0.9 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) - events: 3.3.0 - lodash.isequal: 4.5.0 - uint8arrays: 3.1.1 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - supports-color - - utf-8-validate - '@walletconnect/core@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 @@ -24324,43 +22453,6 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - 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.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) - '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.10 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) - events: 3.3.0 - isomorphic-unfetch: 3.1.0(encoding@0.1.13) - lodash.isequal: 4.5.0 - uint8arrays: 3.1.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@walletconnect/core@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.2 @@ -24449,38 +22541,6 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.10.6(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) - '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/universal-provider': 2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - supports-color - - utf-8-validate - '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) @@ -24514,38 +22574,6 @@ snapshots: - utf-8-validate optional: true - '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@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/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1) - '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - supports-color - - utf-8-validate - '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) @@ -24651,16 +22679,6 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - events: 3.3.0 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1': dependencies: '@walletconnect/safe-json': 1.0.2 @@ -24680,25 +22698,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/keyvaluestorage@1.1.1(supports-color@9.4.0)': - dependencies: - '@walletconnect/safe-json': 1.0.2 - idb-keyval: 6.2.1 - unstorage: 1.10.1(idb-keyval@6.2.1)(supports-color@9.4.0) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/legacy-client@2.0.0': dependencies: '@walletconnect/crypto': 1.0.3 @@ -24763,13 +22762,6 @@ snapshots: - '@types/react' - react - '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.3.1)': - dependencies: - valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - react - '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: valtio: 1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) @@ -24787,16 +22779,6 @@ snapshots: - '@types/react' - react - '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1) - lit: 2.8.0 - motion: 10.16.2 - qrcode: 1.5.3 - transitivePeerDependencies: - - '@types/react' - - react - '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) @@ -24815,14 +22797,6 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1) - '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@18.3.1) - transitivePeerDependencies: - - '@types/react' - - react - '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610) @@ -24860,34 +22834,6 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - supports-color - - utf-8-validate - '@walletconnect/sign-client@2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/core': 2.10.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -24916,35 +22862,6 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@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.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -25001,29 +22918,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.10.2(supports-color@9.4.0)': - dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) - '@walletconnect/logger': 2.0.1 - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/types@2.10.6': dependencies: '@walletconnect/events': 1.0.1 @@ -25047,29 +22941,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.10.6(supports-color@9.4.0)': - dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) - '@walletconnect/logger': 2.0.1 - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/types@2.13.0': dependencies: '@walletconnect/events': 1.0.1 @@ -25093,58 +22964,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.13.0(supports-color@9.4.0)': - dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.2 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1(supports-color@9.4.0) - '@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' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - - '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.10.6(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/utils': 2.10.6(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@walletconnect/universal-provider@2.10.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7(encoding@0.1.13) @@ -25174,35 +22993,6 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4)': - dependencies: - '@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/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/utils': 2.13.0(supports-color@9.4.0) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) @@ -25263,37 +23053,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.10.2(supports-color@9.4.0)': - dependencies: - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/hkdf': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.9 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.2(supports-color@9.4.0) - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 7.1.3 - uint8arrays: 3.1.1 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/utils@2.10.6': dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -25325,37 +23084,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.10.6(supports-color@9.4.0)': - dependencies: - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/hkdf': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.9 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(supports-color@9.4.0) - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 7.1.3 - uint8arrays: 3.1.1 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/utils@2.13.0': dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -25387,37 +23115,6 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.13.0(supports-color@9.4.0)': - dependencies: - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/hkdf': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.10 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(supports-color@9.4.0) - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 7.1.3 - uint8arrays: 3.1.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - supports-color - '@walletconnect/window-getters@1.0.1': dependencies: tslib: 1.14.1 @@ -25513,12 +23210,6 @@ snapshots: optionalDependencies: zod: 3.22.4 - abitype@0.8.7(typescript@5.4.5)(zod@3.23.8): - dependencies: - typescript: 5.4.5 - optionalDependencies: - zod: 3.23.8 - abitype@0.9.8(typescript@5.3.3)(zod@3.22.4): optionalDependencies: typescript: 5.3.3 @@ -25885,10 +23576,6 @@ snapshots: dependencies: dequal: 2.0.3 - babel-core@7.0.0-bridge.0(@babel/core@7.24.6(supports-color@9.4.0)): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - babel-core@7.0.0-bridge.0(@babel/core@7.24.6): dependencies: '@babel/core': 7.24.6 @@ -25946,25 +23633,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): - dependencies: - '@babel/compat-data': 7.24.6 - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6): - dependencies: - '@babel/compat-data': 7.24.6 - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - optional: true - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -25973,23 +23641,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - core-js-compat: 3.37.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6): - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - core-js-compat: 3.37.1 - transitivePeerDependencies: - - supports-color - optional: true - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -25997,21 +23648,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6): - dependencies: - '@babel/core': 7.24.6 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6) - transitivePeerDependencies: - - supports-color - optional: true - babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601: dependencies: '@babel/generator': 7.2.0 @@ -26030,19 +23666,6 @@ snapshots: transitivePeerDependencies: - '@babel/core' - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6(supports-color@9.4.0)): - dependencies: - '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6): - dependencies: - '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6) - transitivePeerDependencies: - - '@babel/core' - optional: true - babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.6): dependencies: '@babel/core': 7.23.6 @@ -26222,7 +23845,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 http-errors: 2.0.0 @@ -26239,7 +23862,7 @@ snapshots: dependencies: bytes: 3.1.2 content-type: 1.0.5 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 http-errors: 2.0.0 @@ -26366,11 +23989,6 @@ snapshots: esbuild: 0.16.17 load-tsconfig: 0.2.5 - bundle-require@4.2.1(esbuild@0.19.10): - dependencies: - esbuild: 0.19.10 - load-tsconfig: 0.2.5 - busboy@1.6.0: dependencies: streamsearch: 1.1.0 @@ -26528,12 +24146,12 @@ snapshots: chownr@2.0.0: {} - chrome-launcher@0.15.2(supports-color@9.4.0): + chrome-launcher@0.15.2: dependencies: '@types/node': 20.14.2 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 - lighthouse-logger: 1.4.2(supports-color@9.4.0) + lighthouse-logger: 1.4.2 transitivePeerDependencies: - supports-color @@ -26795,12 +24413,12 @@ snapshots: dependencies: mime-db: 1.52.0 - compression@1.7.4(supports-color@9.4.0): + compression@1.7.4: dependencies: accepts: 1.3.8 bytes: 3.0.0 compressible: 2.0.18 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 on-headers: 1.0.2 safe-buffer: 5.1.2 vary: 1.1.2 @@ -26844,10 +24462,10 @@ snapshots: semver: 7.5.4 uint8array-extras: 0.3.0 - connect@3.7.0(supports-color@9.4.0): + connect@3.7.0: dependencies: - debug: 2.6.9(supports-color@9.4.0) - finalhandler: 1.1.2(supports-color@9.4.0) + debug: 2.6.9 + finalhandler: 1.1.2 parseurl: 1.3.3 utils-merge: 1.0.1 transitivePeerDependencies: @@ -27192,8 +24810,6 @@ snapshots: date-fns@3.6.0: {} - dateformat@4.6.3: {} - dayjs@1.11.11: {} de-indent@1.0.2: {} @@ -27204,11 +24820,9 @@ snapshots: debounce@1.2.1: {} - debug@2.6.9(supports-color@9.4.0): + debug@2.6.9: dependencies: ms: 2.0.0 - optionalDependencies: - supports-color: 9.4.0 debug@3.2.7: dependencies: @@ -27220,12 +24834,6 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - debug@4.3.4(supports-color@9.4.0): - dependencies: - ms: 2.1.2 - optionalDependencies: - supports-color: 9.4.0 - decamelize@1.2.0: {} decimal.js@10.4.3: {} @@ -27625,18 +25233,6 @@ snapshots: dependencies: once: 1.4.0 - engine.io-client@6.5.3(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@9.4.0) - engine.io-parser: 5.2.2 - ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - xmlhttprequest-ssl: 2.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 @@ -28287,15 +25883,6 @@ snapshots: transitivePeerDependencies: - supports-color - eth-block-tracker@6.1.0(supports-color@9.4.0): - dependencies: - '@metamask/safe-event-emitter': 2.0.0 - '@metamask/utils': 3.6.0(supports-color@9.4.0) - json-rpc-random-id: 1.0.1 - pify: 3.0.0 - transitivePeerDependencies: - - supports-color - eth-block-tracker@7.1.0: dependencies: '@metamask/eth-json-rpc-provider': 1.0.1 @@ -28306,16 +25893,6 @@ snapshots: transitivePeerDependencies: - supports-color - eth-block-tracker@7.1.0(supports-color@9.4.0): - dependencies: - '@metamask/eth-json-rpc-provider': 1.0.1(supports-color@9.4.0) - '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 5.0.2(supports-color@9.4.0) - json-rpc-random-id: 1.0.1 - pify: 3.0.0 - transitivePeerDependencies: - - supports-color - eth-ens-namehash@2.0.8: dependencies: idna-uts46-hx: 2.3.1 @@ -28566,7 +26143,7 @@ snapshots: content-type: 1.0.5 cookie: 0.5.0 cookie-signature: 1.0.6 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 depd: 2.0.0 encodeurl: 1.0.2 escape-html: 1.0.3 @@ -28583,8 +26160,8 @@ snapshots: qs: 6.11.0 range-parser: 1.2.1 safe-buffer: 5.2.1 - send: 0.18.0(supports-color@9.4.0) - serve-static: 1.15.0(supports-color@9.4.0) + send: 0.18.0 + serve-static: 1.15.0 setprototypeof: 1.2.0 statuses: 2.0.1 type-is: 1.6.18 @@ -28623,8 +26200,6 @@ snapshots: acorn: 7.4.1 isarray: 2.0.5 - fast-copy@3.0.2: {} - fast-decode-uri-component@1.0.1: {} fast-deep-equal@3.1.3: {} @@ -28726,9 +26301,9 @@ snapshots: filter-obj@1.1.0: {} - finalhandler@1.1.2(supports-color@9.4.0): + finalhandler@1.1.2: dependencies: - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 encodeurl: 1.0.2 escape-html: 1.0.3 on-finished: 2.3.0 @@ -28740,7 +26315,7 @@ snapshots: finalhandler@1.2.0: dependencies: - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 encodeurl: 1.0.2 escape-html: 1.0.3 on-finished: 2.4.1 @@ -28868,12 +26443,6 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.2.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - fs-extra@4.0.3: dependencies: graceful-fs: 4.2.11 @@ -29542,8 +27111,6 @@ snapshots: heap@0.2.7: {} - help-me@5.0.0: {} - hermes-estree@0.19.1: {} hermes-estree@0.20.1: {} @@ -29852,20 +27419,6 @@ snapshots: transitivePeerDependencies: - supports-color - ioredis@5.3.2(supports-color@9.4.0): - dependencies: - '@ioredis/commands': 1.2.0 - cluster-key-slot: 1.1.2 - debug: 4.3.4(supports-color@9.4.0) - denque: 2.1.0 - lodash.defaults: 4.2.0 - lodash.isarguments: 3.1.0 - redis-errors: 1.2.0 - redis-parser: 3.0.0 - standard-as-callback: 2.1.0 - transitivePeerDependencies: - - supports-color - ipaddr.js@1.9.1: {} ipfs-core-types@0.14.1: @@ -30218,10 +27771,6 @@ snapshots: dependencies: ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - isomorphic-ws@4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4)): - dependencies: - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) - isomorphic-ws@5.0.0(ws@8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ws: 8.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -30382,24 +27931,6 @@ snapshots: - bufferutil - utf-8-validate - jayson@4.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - '@types/connect': 3.4.38 - '@types/node': 12.20.55 - '@types/ws': 7.4.7 - JSONStream: 1.3.5 - 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.9(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - json-stringify-safe: 5.0.1 - uuid: 8.3.2 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - jest-changed-files@29.7.0: dependencies: execa: 5.1.1 @@ -31025,8 +28556,6 @@ snapshots: jose@5.1.3: {} - joycon@3.1.1: {} - js-sha3@0.5.7: {} js-sha3@0.8.0: {} @@ -31073,31 +28602,6 @@ snapshots: transitivePeerDependencies: - supports-color - jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/parser': 7.24.6 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/preset-env': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0) - '@babel/preset-flow': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - '@babel/register': 7.24.6(@babel/core@7.24.6(supports-color@9.4.0)) - babel-core: 7.0.0-bridge.0(@babel/core@7.24.6(supports-color@9.4.0)) - chalk: 4.1.2 - flow-parser: 0.237.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.21.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 - transitivePeerDependencies: - - supports-color - jsdom@20.0.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: abab: 2.0.6 @@ -31256,9 +28760,9 @@ snapshots: dependencies: immediate: 3.0.6 - lighthouse-logger@1.4.2(supports-color@9.4.0): + lighthouse-logger@1.4.2: dependencies: - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 marky: 1.2.5 transitivePeerDependencies: - supports-color @@ -31471,8 +28975,6 @@ snapshots: dayjs: 1.11.11 yargs: 15.4.1 - lokijs@1.5.12: {} - long@4.0.0: {} long@5.2.3: {} @@ -31637,14 +29139,6 @@ snapshots: transitivePeerDependencies: - supports-color - metro-babel-transformer@0.80.9(supports-color@9.4.0): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - hermes-parser: 0.20.1 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - metro-cache-key@0.80.9: {} metro-cache@0.80.9: @@ -31652,24 +29146,9 @@ snapshots: metro-core: 0.80.9 rimraf: 3.0.2 - metro-config@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - connect: 3.7.0(supports-color@9.4.0) - cosmiconfig: 5.2.1 - jest-validate: 29.7.0 - metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - metro-cache: 0.80.9 - metro-core: 0.80.9 - metro-runtime: 0.80.9 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - metro-config@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - connect: 3.7.0(supports-color@9.4.0) + connect: 3.7.0 cosmiconfig: 5.2.1 jest-validate: 29.7.0 metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -31687,10 +29166,10 @@ snapshots: lodash.throttle: 4.1.1 metro-resolver: 0.80.9 - metro-file-map@0.80.9(supports-color@9.4.0): + metro-file-map@0.80.9: dependencies: anymatch: 3.1.3 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 fb-watchman: 2.0.2 graceful-fs: 4.2.11 invariant: 2.2.4 @@ -31727,19 +29206,6 @@ snapshots: transitivePeerDependencies: - supports-color - metro-source-map@0.80.9(supports-color@9.4.0): - dependencies: - '@babel/traverse': 7.24.6(supports-color@9.4.0) - '@babel/types': 7.24.6 - invariant: 2.2.4 - metro-symbolicate: 0.80.9(supports-color@9.4.0) - nullthrows: 1.1.1 - ob1: 0.80.9 - source-map: 0.5.7 - vlq: 1.0.1 - transitivePeerDependencies: - - supports-color - metro-symbolicate@0.80.9: dependencies: invariant: 2.2.4 @@ -31751,17 +29217,6 @@ snapshots: transitivePeerDependencies: - supports-color - metro-symbolicate@0.80.9(supports-color@9.4.0): - dependencies: - invariant: 2.2.4 - metro-source-map: 0.80.9(supports-color@9.4.0) - nullthrows: 1.1.1 - source-map: 0.5.7 - through2: 2.0.5 - vlq: 1.0.1 - transitivePeerDependencies: - - supports-color - metro-transform-plugins@0.80.9: dependencies: '@babel/core': 7.24.6 @@ -31772,36 +29227,6 @@ snapshots: transitivePeerDependencies: - supports-color - metro-transform-plugins@0.80.9(supports-color@9.4.0): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/generator': 7.24.6 - '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - metro-transform-worker@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/generator': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/types': 7.24.6 - metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - metro-babel-transformer: 0.80.9(supports-color@9.4.0) - metro-cache: 0.80.9 - metro-cache-key: 0.80.9 - metro-minify-terser: 0.80.9 - metro-source-map: 0.80.9(supports-color@9.4.0) - metro-transform-plugins: 0.80.9(supports-color@9.4.0) - nullthrows: 1.1.1 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - metro-transform-worker@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.24.6 @@ -31822,57 +29247,6 @@ snapshots: - supports-color - utf-8-validate - metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - '@babel/code-frame': 7.24.6 - '@babel/core': 7.24.6(supports-color@9.4.0) - '@babel/generator': 7.24.6 - '@babel/parser': 7.24.6 - '@babel/template': 7.24.6 - '@babel/traverse': 7.24.6(supports-color@9.4.0) - '@babel/types': 7.24.6 - accepts: 1.3.8 - chalk: 4.1.2 - ci-info: 2.0.0 - connect: 3.7.0(supports-color@9.4.0) - debug: 2.6.9(supports-color@9.4.0) - denodeify: 1.2.1 - error-stack-parser: 2.1.4 - graceful-fs: 4.2.11 - hermes-parser: 0.20.1 - image-size: 1.1.1 - invariant: 2.2.4 - jest-worker: 29.7.0 - jsc-safe-url: 0.2.4 - lodash.throttle: 4.1.1 - metro-babel-transformer: 0.80.9(supports-color@9.4.0) - metro-cache: 0.80.9 - metro-cache-key: 0.80.9 - metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - metro-core: 0.80.9 - metro-file-map: 0.80.9(supports-color@9.4.0) - metro-resolver: 0.80.9 - metro-runtime: 0.80.9 - metro-source-map: 0.80.9(supports-color@9.4.0) - metro-symbolicate: 0.80.9(supports-color@9.4.0) - metro-transform-plugins: 0.80.9(supports-color@9.4.0) - metro-transform-worker: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - mime-types: 2.1.35 - node-fetch: 2.7.0(encoding@0.1.13) - nullthrows: 1.1.1 - rimraf: 3.0.2 - serialize-error: 2.1.0 - source-map: 0.5.7 - strip-ansi: 6.0.1 - throat: 5.0.0 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) - yargs: 17.7.2 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: '@babel/code-frame': 7.24.6 @@ -31885,8 +29259,8 @@ snapshots: accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 - connect: 3.7.0(supports-color@9.4.0) - debug: 2.6.9(supports-color@9.4.0) + connect: 3.7.0 + debug: 2.6.9 denodeify: 1.2.1 error-stack-parser: 2.1.4 graceful-fs: 4.2.11 @@ -31901,7 +29275,7 @@ snapshots: metro-cache-key: 0.80.9 metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) metro-core: 0.80.9 - metro-file-map: 0.80.9(supports-color@9.4.0) + metro-file-map: 0.80.9 metro-resolver: 0.80.9 metro-runtime: 0.80.9 metro-source-map: 0.80.9 @@ -32036,16 +29410,6 @@ snapshots: - utf-8-validate - zod - mipd@0.0.5(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): - dependencies: - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - mkdirp-classic@0.5.3: {} mkdirp-promise@5.0.1: @@ -32211,7 +29575,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.0.4(@babel/core@7.24.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@14.0.4(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.0.4 '@swc/helpers': 0.5.2 @@ -32221,7 +29585,7 @@ snapshots: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.23.6)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: '@next/swc-darwin-arm64': 14.0.4 @@ -32238,7 +29602,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.2.3(@babel/core@7.24.6(supports-color@9.4.0))(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@14.2.3(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.2.3 '@swc/helpers': 0.5.5 @@ -32248,7 +29612,7 @@ snapshots: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(@babel/core@7.24.6(supports-color@9.4.0))(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 14.2.3 '@next/swc-darwin-x64': 14.2.3 @@ -32864,23 +30228,6 @@ snapshots: readable-stream: 4.5.2 split2: 4.2.0 - pino-pretty@11.1.0: - 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.0 - readable-stream: 4.5.2 - secure-json-parse: 2.7.0 - sonic-boom: 4.0.1 - strip-json-comments: 3.1.1 - pino-std-serializers@4.0.0: {} pino-std-serializers@6.2.2: {} @@ -33395,14 +30742,6 @@ snapshots: - bufferutil - utf-8-validate - react-devtools-core@5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - shell-quote: 1.8.1 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 @@ -33438,16 +30777,6 @@ snapshots: react-dom: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) - react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): - dependencies: - '@babel/runtime': 7.24.5 - html-parse-stringify: 3.0.1 - i18next: 23.11.5 - react: 18.3.1 - optionalDependencies: - react-dom: 18.3.1(react@18.3.1) - react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) - react-i18next@14.1.2(i18next@23.11.5)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610): dependencies: '@babel/runtime': 7.24.5 @@ -33475,12 +30804,12 @@ snapshots: react: 19.0.0-rc-6230622a1a-20240610 react-native: 0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10) - react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1): + react-native-webview@11.26.1(react@18.3.1): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 18.3.1 - react-native: 0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4) + optional: true react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10): dependencies: @@ -33532,57 +30861,7 @@ snapshots: - supports-color - utf-8-validate - react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) - '@react-native/assets-registry': 0.74.84 - '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(supports-color@9.4.0) - '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(bufferutil@4.0.8)(encoding@0.1.13)(supports-color@9.4.0)(utf-8-validate@6.0.4) - '@react-native/gradle-plugin': 0.74.84 - '@react-native/js-polyfills': 0.74.84 - '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1) - abort-controller: 3.0.0 - anser: 1.4.10 - ansi-regex: 5.0.1 - base64-js: 1.5.1 - chalk: 4.1.2 - event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.6 - invariant: 2.2.4 - jest-environment-node: 29.7.0 - jsc-android: 250231.0.0 - memoize-one: 5.2.1 - metro-runtime: 0.80.9 - metro-source-map: 0.80.9(supports-color@9.4.0) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.3.0 - react: 18.3.1 - react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@18.3.1) - regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 - stacktrace-parser: 0.1.10 - whatwg-fetch: 3.6.20 - ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) - yargs: 17.7.2 - optionalDependencies: - '@types/react': 18.3.3 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - - react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): + react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -33590,11 +30869,11 @@ snapshots: '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) '@react-native/assets-registry': 0.74.84 '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.6(@babel/core@7.23.6)) - '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.6)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.1)(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -33743,6 +31022,7 @@ snapshots: object-assign: 4.1.1 react: 18.3.1 react-is: 18.2.0 + optional: true react-shallow-renderer@16.15.0(react@19.0.0-rc-6230622a1a-20240610): dependencies: @@ -33768,12 +31048,6 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - react-toastify@10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - clsx: 2.1.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -34215,8 +31489,6 @@ snapshots: node-addon-api: 5.1.0 node-gyp-build: 4.7.1 - secure-json-parse@2.7.0: {} - selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 @@ -34242,9 +31514,9 @@ snapshots: semver@7.6.2: {} - send@0.18.0(supports-color@9.4.0): + send@0.18.0: dependencies: - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 depd: 2.0.0 destroy: 1.2.0 encodeurl: 1.0.2 @@ -34268,12 +31540,12 @@ snapshots: serialize-error@2.1.0: {} - serve-static@1.15.0(supports-color@9.4.0): + serve-static@1.15.0: dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.18.0(supports-color@9.4.0) + send: 0.18.0 transitivePeerDependencies: - supports-color @@ -34437,17 +31709,6 @@ snapshots: dot-case: 3.0.4 tslib: 2.6.2 - socket.io-client@4.7.5(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4): - dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@9.4.0) - engine.io-client: 6.5.3(bufferutil@4.0.8)(supports-color@9.4.0)(utf-8-validate@6.0.4) - socket.io-parser: 4.2.4(supports-color@9.4.0) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@socket.io/component-emitter': 3.1.2 @@ -34466,13 +31727,6 @@ snapshots: transitivePeerDependencies: - supports-color - socket.io-parser@4.2.4(supports-color@9.4.0): - dependencies: - '@socket.io/component-emitter': 3.1.2 - debug: 4.3.4(supports-color@9.4.0) - transitivePeerDependencies: - - supports-color - sonic-boom@2.8.0: dependencies: atomic-sleep: 1.0.0 @@ -34481,10 +31735,6 @@ snapshots: dependencies: atomic-sleep: 1.0.0 - sonic-boom@4.0.1: - dependencies: - atomic-sleep: 1.0.0 - source-map-js@1.0.2: {} source-map-js@1.2.0: {} @@ -34586,7 +31836,7 @@ snapshots: stream-parser@0.3.1: dependencies: - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 transitivePeerDependencies: - supports-color @@ -34717,12 +31967,12 @@ snapshots: stubborn-fs@1.2.5: {} - styled-jsx@5.1.1(@babel/core@7.24.6(supports-color@9.4.0))(react@18.3.1): + styled-jsx@5.1.1(@babel/core@7.23.6)(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 optionalDependencies: - '@babel/core': 7.24.6(supports-color@9.4.0) + '@babel/core': 7.23.6 styled-jsx@5.1.1(@babel/core@7.24.6)(react@18.3.1): dependencies: @@ -34788,8 +32038,6 @@ snapshots: dependencies: has-flag: 4.0.0 - supports-color@9.4.0: {} - supports-hyperlinks@2.3.0: dependencies: has-flag: 4.0.0 @@ -35232,7 +32480,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3): + ts-jest@29.1.1(@babel/core@7.23.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.6))(esbuild@0.16.17)(jest@29.7.0(@types/node@20.12.7)(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.3.3)))(typescript@5.3.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -35245,9 +32493,9 @@ snapshots: typescript: 5.3.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.6 + '@babel/core': 7.23.6 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.6) + babel-jest: 29.7.0(@babel/core@7.23.6) esbuild: 0.16.17 ts-jest@29.1.1(@babel/core@7.24.6)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)))(typescript@5.4.5): @@ -35631,24 +32879,6 @@ snapshots: transitivePeerDependencies: - supports-color - unstorage@1.10.1(idb-keyval@6.2.1)(supports-color@9.4.0): - dependencies: - anymatch: 3.1.3 - chokidar: 3.5.3 - destr: 2.0.2 - h3: 1.9.0 - ioredis: 5.3.2(supports-color@9.4.0) - listhen: 1.5.5 - lru-cache: 10.1.0 - mri: 1.2.0 - node-fetch-native: 1.4.1 - ofetch: 1.3.3 - ufo: 1.3.2 - optionalDependencies: - idb-keyval: 6.2.1 - transitivePeerDependencies: - - supports-color - untildify@4.0.0: {} untun@0.1.3: @@ -35795,14 +33025,6 @@ snapshots: '@types/react': 18.3.1 react: 18.3.1 - valtio@1.11.2(@types/react@18.3.3)(react@18.3.1): - dependencies: - proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.3 - react: 18.3.1 - valtio@1.11.2(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: proxy-compare: 2.5.1 @@ -35946,23 +33168,6 @@ snapshots: - utf-8-validate - zod - viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): - dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/bip32': 1.3.2 - '@scure/bip39': 1.2.1 - abitype: 1.0.0(typescript@5.4.5)(zod@3.23.8) - isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 @@ -35980,23 +33185,6 @@ snapshots: - utf-8-validate - zod - viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8): - dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/bip32': 1.3.2 - '@scure/bip39': 1.2.1 - abitype: 1.0.0(typescript@5.4.5)(zod@3.23.8) - isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - zod - vite-node@1.6.0(@types/node@18.19.33)(terser@5.31.0): dependencies: cac: 6.7.14 @@ -36056,11 +33244,11 @@ snapshots: wabt@1.0.24: {} - wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.23.6)(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)) '@wagmi/core': 1.4.12(@types/react@18.3.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.3.3)(utf-8-validate@5.0.10)(viem@1.20.3(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) abitype: 0.8.7(typescript@5.3.3)(zod@3.22.4) react: 18.3.1 @@ -36091,42 +33279,6 @@ snapshots: - utf-8-validate - zod - wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): - dependencies: - '@tanstack/react-query': 5.40.1(react@18.3.1) - '@wagmi/connectors': 5.0.10(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.6(supports-color@9.4.0))(@babel/preset-env@7.24.6(@babel/core@7.24.6(supports-color@9.4.0))(supports-color@9.4.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(supports-color@9.4.0)(utf-8-validate@6.0.4))(react@18.3.1)(rollup@4.18.0)(supports-color@9.4.0)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@6.0.4)(viem@2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) - react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) - viem: 2.13.7(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@tanstack/query-core' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - immer - - react-dom - - react-i18next - - react-native - - rollup - - supports-color - - utf-8-validate - - zod - wagmi@2.9.11(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.1(react@19.0.0-rc-6230622a1a-20240610))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610))(react-native@0.74.2(@babel/core@7.23.6)(@babel/preset-env@7.24.6(@babel/core@7.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-6230622a1a-20240610)(utf-8-validate@5.0.10))(react@19.0.0-rc-6230622a1a-20240610)(rollup@4.18.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.13.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: '@tanstack/react-query': 5.40.1(react@19.0.0-rc-6230622a1a-20240610) @@ -36461,7 +33613,7 @@ snapshots: websocket@1.0.34: dependencies: bufferutil: 4.0.8 - debug: 2.6.9(supports-color@9.4.0) + debug: 2.6.9 es5-ext: 0.10.62 typedarray-to-buffer: 3.1.5 utf-8-validate: 5.0.10 @@ -36606,13 +33758,6 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - async-limiter: 1.0.1 - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 6.0.4 - ws@7.4.5(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 @@ -36628,21 +33773,11 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@6.0.4): - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 6.0.4 - ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 6.0.4 - ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 @@ -36770,13 +33905,6 @@ snapshots: react: 18.3.1 optional: true - zustand@4.4.1(@types/react@18.3.3)(react@18.3.1): - dependencies: - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.3 - react: 18.3.1 - zustand@4.4.1(@types/react@18.3.3)(react@19.0.0-rc-6230622a1a-20240610): dependencies: use-sync-external-store: 1.2.0(react@19.0.0-rc-6230622a1a-20240610) @@ -36790,10 +33918,3 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 react: 18.3.1 - - zustand@4.4.7(@types/react@18.3.3)(react@18.3.1): - dependencies: - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: - '@types/react': 18.3.3 - react: 18.3.1 From 9e630fd3bd4b60e6feaa887450a7b16513a225e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 09:21:25 -0300 Subject: [PATCH 13/22] composable-cow-api: undo changes to ponder.config.ts --- apps/composable-cow-api/ponder.config.ts | 28 ++++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/composable-cow-api/ponder.config.ts b/apps/composable-cow-api/ponder.config.ts index ba1322348..fd18c4e2a 100644 --- a/apps/composable-cow-api/ponder.config.ts +++ b/apps/composable-cow-api/ponder.config.ts @@ -27,12 +27,12 @@ export default createConfig({ sepolia: { startBlock: 5245332, }, - // gnosis: { - // startBlock: 31005430, - // }, - // mainnet: { - // startBlock: 18937172, - // }, + gnosis: { + startBlock: 31005430, + }, + mainnet: { + startBlock: 18937172, + }, }, }, standaloneConstantProductFactoryAbi: { @@ -42,14 +42,14 @@ export default createConfig({ startBlock: 5874562, address: "0xb808E8183e3a72d196457D127c7fd4bEfa0D7Fd3", }, - // gnosis: { - // startBlock: 33874317, - // address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", - // }, - // mainnet: { - // startBlock: 19861952, - // address: "0x40664207e3375fb4b733d4743ce9b159331fd034", - // }, + gnosis: { + startBlock: 33874317, + address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", + }, + mainnet: { + startBlock: 19861952, + address: "0x40664207e3375fb4b733d4743ce9b159331fd034", + }, }, }, }, From ac27727d4ace9f3929e67386cbc6035d0058071b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 15:04:08 -0300 Subject: [PATCH 14/22] composable-cow-api: add helpers from cows repos --- apps/composable-cow-api/ponder.config.ts | 28 +- apps/cow-amm-deployer/package.json | 1 + .../public/assets/etherscan-logo.svg | 1 + .../[userId]/amms/(components)/AmmsTable.tsx | 13 +- .../src/app/[userId]/amms/page.tsx | 7 +- .../new/(components)/CreateAMMForm.tsx | 31 +- apps/cow-amm-deployer/src/app/page.tsx | 4 +- .../assets/cow-swap/cowswap-explorer-logo.png | Bin 0 -> 2366 bytes .../network-arbitrum-one-logo-blue.svg | 1 + .../network-arbitrum-one-logo-white.svg | 1 + .../cow-swap/network-gnosis-chain-logo.svg | 1 + .../assets/cow-swap/network-mainnet-logo.svg | 1 + .../assets/cow-swap/network-sepolia-logo.svg | 8 + .../src/components/AddressLabel.tsx | 2 +- .../src/components/ExplorerLink.tsx | 95 ++++ .../src/components/TokenInfo.tsx | 77 ++- apps/cow-amm-deployer/src/lib/addressUtils.ts | 105 ++++ apps/cow-amm-deployer/src/lib/chainInfo.ts | 94 ++++ apps/cow-amm-deployer/src/lib/cowExplorer.ts | 3 +- .../src/lib/cowExplorerNew.ts | 78 +++ .../src/lib/cowprotocolTokenLogoUrl.ts | 7 + .../src/lib/nativeAndWrappedTokens.ts | 90 ++++ .../cow-amm-deployer/src/lib/tokenWithLogo.ts | 26 + .../src/utils/chainsPublicClients.ts | 17 +- pnpm-lock.yaml | 483 ++++++++++++++++-- 25 files changed, 1072 insertions(+), 102 deletions(-) create mode 100644 apps/cow-amm-deployer/public/assets/etherscan-logo.svg create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/cowswap-explorer-logo.png create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/network-arbitrum-one-logo-blue.svg create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/network-arbitrum-one-logo-white.svg create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/network-gnosis-chain-logo.svg create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/network-mainnet-logo.svg create mode 100644 apps/cow-amm-deployer/src/assets/cow-swap/network-sepolia-logo.svg create mode 100644 apps/cow-amm-deployer/src/components/ExplorerLink.tsx create mode 100644 apps/cow-amm-deployer/src/lib/addressUtils.ts create mode 100644 apps/cow-amm-deployer/src/lib/chainInfo.ts create mode 100644 apps/cow-amm-deployer/src/lib/cowExplorerNew.ts create mode 100644 apps/cow-amm-deployer/src/lib/cowprotocolTokenLogoUrl.ts create mode 100644 apps/cow-amm-deployer/src/lib/nativeAndWrappedTokens.ts create mode 100644 apps/cow-amm-deployer/src/lib/tokenWithLogo.ts diff --git a/apps/composable-cow-api/ponder.config.ts b/apps/composable-cow-api/ponder.config.ts index fd18c4e2a..ba1322348 100644 --- a/apps/composable-cow-api/ponder.config.ts +++ b/apps/composable-cow-api/ponder.config.ts @@ -27,12 +27,12 @@ export default createConfig({ sepolia: { startBlock: 5245332, }, - gnosis: { - startBlock: 31005430, - }, - mainnet: { - startBlock: 18937172, - }, + // gnosis: { + // startBlock: 31005430, + // }, + // mainnet: { + // startBlock: 18937172, + // }, }, }, standaloneConstantProductFactoryAbi: { @@ -42,14 +42,14 @@ export default createConfig({ startBlock: 5874562, address: "0xb808E8183e3a72d196457D127c7fd4bEfa0D7Fd3", }, - gnosis: { - startBlock: 33874317, - address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", - }, - mainnet: { - startBlock: 19861952, - address: "0x40664207e3375fb4b733d4743ce9b159331fd034", - }, + // gnosis: { + // startBlock: 33874317, + // address: "0xdb1Cba3a87f2db53b6E1E6Af48e28Ed877592Ec0", + // }, + // mainnet: { + // startBlock: 19861952, + // address: "0x40664207e3375fb4b733d4743ce9b159331fd034", + // }, }, }, }, diff --git a/apps/cow-amm-deployer/package.json b/apps/cow-amm-deployer/package.json index fd9f9e420..4b2e24aeb 100644 --- a/apps/cow-amm-deployer/package.json +++ b/apps/cow-amm-deployer/package.json @@ -44,6 +44,7 @@ "@safe-global/safe-core-sdk-types": "^5.0.1", "@safe-global/safe-gateway-typescript-sdk": "^3.21.2", "@tanstack/react-query": "5.40.1", + "@uniswap/sdk-core": "^5.3.0", "babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", diff --git a/apps/cow-amm-deployer/public/assets/etherscan-logo.svg b/apps/cow-amm-deployer/public/assets/etherscan-logo.svg new file mode 100644 index 000000000..d1a34a887 --- /dev/null +++ b/apps/cow-amm-deployer/public/assets/etherscan-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx index 327678804..d7404f710 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx @@ -24,9 +24,6 @@ export function AmmsTable({ > Token pair - - Token pair - Value Status Updated at @@ -34,7 +31,7 @@ export function AmmsTable({ {standaloneAmmData.length === 0 ? ( - + No AMMs created yet @@ -47,13 +44,9 @@ export function AmmsTable({ }} classNames="hover:cursor-pointer hover:bg-foreground/50" > - - + + - - - - diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx index 806db36c5..f535c1021 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/page.tsx @@ -1,6 +1,5 @@ -import Link from "next/link"; - import { Button } from "#/components"; +import { LinkComponent } from "#/components/Link"; import { OldVersionOfAMMAlert } from "#/components/OldVersionOfAmmAlert"; import { TxPendingAlertCard } from "#/components/TxPendingAlertCard"; import { fetchUserAmmsData, ICowAmm, validateUserId } from "#/lib/fetchAmmData"; @@ -27,9 +26,9 @@ export default async function Page({ params }: { params: { userId: string } }) { {hasAmmTxPending && }

My CoW AMMs

- + - +
) => { if (isWalletContract) { writeContractWithSafe(buildTxCreateAMMArgs({ data })); + } else { + // TODO: remove this once we allow EOAs to create AMMs + // @ts-ignore + writeContract(buildTxCreateAMMArgs({ data })); } }; @@ -183,13 +170,15 @@ export function CreateAMMForm({ userId: _userId }: { userId: string }) {
diff --git a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx index 017364117..30ec0f440 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/new/(components)/CreateAMMForm.tsx @@ -1,3 +1,4 @@ +"use client"; import { zodResolver } from "@hookform/resolvers/zod"; import { useEffect } from "react"; import { useForm, useWatch } from "react-hook-form"; diff --git a/apps/cow-amm-deployer/src/components/DepositForm.tsx b/apps/cow-amm-deployer/src/components/DepositForm.tsx index 18e90c575..0e977cc52 100644 --- a/apps/cow-amm-deployer/src/components/DepositForm.tsx +++ b/apps/cow-amm-deployer/src/components/DepositForm.tsx @@ -40,25 +40,9 @@ export function DepositForm({ control, } = form; - const { - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - } = useManagedTransaction(); - // eslint-disable-next-line no-console - console.log({ - hash, - error, - writeContract, - writeContractWithSafe, - status, - safeHash, - isWalletContract, - }); + const { writeContract, writeContractWithSafe, status, isWalletContract } = + useManagedTransaction(); + const [amount0, amount1] = useWatch({ control, name: ["amount0", "amount1"], @@ -72,7 +56,13 @@ export function DepositForm({ }); try { - writeContractWithSafe(txArgs); + if (isWalletContract) { + writeContractWithSafe(txArgs); + } else { + // TODO: remove this once we add EOA support + // @ts-ignore + writeContract(txArgs); + } // router.push(`${cowAmmData.user.id}/amms/${cowAmmData.id}`); } catch { toast({ @@ -121,11 +111,15 @@ export function DepositForm({ } diff --git a/apps/cow-amm-deployer/src/components/TokenInfo.tsx b/apps/cow-amm-deployer/src/components/TokenInfo.tsx index 5fa07012f..3ed708ef0 100644 --- a/apps/cow-amm-deployer/src/components/TokenInfo.tsx +++ b/apps/cow-amm-deployer/src/components/TokenInfo.tsx @@ -40,7 +40,7 @@ import { BlockExplorerLink } from "./ExplorerLink"; // ETHEREUM_SEPOLIA: sepolia.id, // }; -export async function TokenInfo({ +export function TokenInfo({ token, showBalance = false, }: { From 84a18c62c711f935f80d2150bb3cb4edcaf0e1b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 15:43:52 -0300 Subject: [PATCH 16/22] composable-cow-api: use Map instead of object in useManagedTransaction state definition --- .../hooks/tx-manager/useManagedTransaction.ts | 63 +++++++++++-------- 1 file changed, 36 insertions(+), 27 deletions(-) diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts index 30e523e7f..54941e4a1 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -64,35 +64,44 @@ export function useManagedTransaction() { } }, [blockConfirmationsStatus, txReceiptStatus]); - const STATE = useMemo( - () => ({ - idle: + const STATE = useMemo(() => { + const stateMap = new Map([ + [ + "idle", writeStatus === "idle" && - (safeStatus ? safeStatus === "safe_idle" : true), - confirming: writeStatus === "success" && txReceiptStatus === "pending", - confirmed: txReceiptStatus === "success" || safeStatus === "safe_success", - pending: writeStatus === "pending", - safeAwaitingConfirmations: safeStatus === "safe_awaiting_confirmations", - safeAwaitingExecution: safeStatus === "safe_awaiting_execution", - safeCancelled: safeStatus === "safe_cancelled", - final: - blockConfirmationsStatus === "success" && - Number(blockConfirmations) >= 1, - error: writeStatus === "error" || safeStatus === "safe_failed", - }), - [ - hash, - writeStatus, - safeStatus, - txReceiptStatus, - blockConfirmationsStatus, - blockConfirmations, - ], - ); + (safeStatus ? safeStatus === "safe_idle" : true), + ], + [ + "confirming", + writeStatus === "success" && txReceiptStatus === "pending", + ], + [ + "confirmed", + txReceiptStatus === "success" || safeStatus === "safe_success", + ], + ["pending", writeStatus === "pending"], + [ + "safeAwaitingConfirmations", + safeStatus === "safe_awaiting_confirmations", + ], + ["safeAwaitingExecution", safeStatus === "safe_awaiting_execution"], + ["safeCancelled", safeStatus === "safe_cancelled"], + ["final", blockConfirmations && Number(blockConfirmations) >= 1], + ["error", writeStatus === "error" || safeStatus === "safe_failed"], + ]); + return stateMap; + }, [ + hash, + writeStatus, + safeStatus, + txReceiptStatus, + blockConfirmationsStatus, + blockConfirmations, + ]); - const status = Object.entries(STATE).findLast( - ([, value]) => value === true, - )?.[0]; + const status = Array.from(STATE.entries()) + .reverse() + .find(([, value]) => value === true)?.[0]; if (isWalletContract) { return { From 77ef5327b206a0e4e0e27c4e16c366cc439687fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 11 Jun 2024 15:49:12 -0300 Subject: [PATCH 17/22] composable-cow-api: add status priority order to useManagedTransaction states --- .../hooks/tx-manager/useManagedTransaction.ts | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts index 54941e4a1..cfe97d513 100644 --- a/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts +++ b/apps/cow-amm-deployer/src/hooks/tx-manager/useManagedTransaction.ts @@ -77,7 +77,8 @@ export function useManagedTransaction() { ], [ "confirmed", - txReceiptStatus === "success" || safeStatus === "safe_success", + txReceiptStatus === "success" || + (safeStatus === "safe_success" && txReceiptStatus === "pending"), ], ["pending", writeStatus === "pending"], [ @@ -99,9 +100,19 @@ export function useManagedTransaction() { blockConfirmations, ]); - const status = Array.from(STATE.entries()) - .reverse() - .find(([, value]) => value === true)?.[0]; + const statusOrder = [ + "idle", + "pending", + "confirming", + "confirmed", + "safeAwaitingConfirmations", + "safeAwaitingExecution", + "safeCancelled", + "final", + "error", + ]; + + const status = statusOrder.find((key) => STATE.get(key)); if (isWalletContract) { return { From ed8fc7ff193056661c9efe15efbc633d04a92203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Wed, 12 Jun 2024 10:59:35 -0300 Subject: [PATCH 18/22] composable-cow-api: add new ui --- apps/cow-amm-deployer/graphql-env.d.ts | 8 +- apps/cow-amm-deployer/package.json | 5 + .../src/app/test/Breadcrumb.tsx | 100 ++++ apps/cow-amm-deployer/src/app/test/page.tsx | 552 ++++++++++++++++++ pnpm-lock.yaml | 48 ++ 5 files changed, 709 insertions(+), 4 deletions(-) create mode 100644 apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx create mode 100644 apps/cow-amm-deployer/src/app/test/page.tsx diff --git a/apps/cow-amm-deployer/graphql-env.d.ts b/apps/cow-amm-deployer/graphql-env.d.ts index 5adfee9dc..1c0c4cb2d 100644 --- a/apps/cow-amm-deployer/graphql-env.d.ts +++ b/apps/cow-amm-deployer/graphql-env.d.ts @@ -39,10 +39,10 @@ export type introspection = { }; }; -import * as gqlTada from "gql.tada"; +import * as gqlTada from 'gql.tada'; -declare module "gql.tada" { +declare module 'gql.tada' { interface setupSchema { - introspection: introspection; + introspection: introspection } -} +} \ No newline at end of file diff --git a/apps/cow-amm-deployer/package.json b/apps/cow-amm-deployer/package.json index 4b2e24aeb..2df604e44 100644 --- a/apps/cow-amm-deployer/package.json +++ b/apps/cow-amm-deployer/package.json @@ -44,6 +44,7 @@ "@safe-global/safe-core-sdk-types": "^5.0.1", "@safe-global/safe-gateway-typescript-sdk": "^3.21.2", "@tanstack/react-query": "5.40.1", + "@types/react-plotly.js": "^2.6.3", "@uniswap/sdk-core": "^5.3.0", "babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601", "class-variance-authority": "^0.7.0", @@ -59,10 +60,14 @@ "graphql-tag": "^2.12.6", "lodash": "^4.17.21", "lodash.merge": "^4.6.2", + "lucide-react": "^0.394.0", "next": "15.0.0-rc.0", + "plotly.js": "^2.27.1", "react": "19.0.0-rc-6230622a1a-20240610", + "react-chartjs-2": "^5.2.0", "react-dom": "19.0.0-rc-6230622a1a-20240610", "react-hook-form": "7.51.5", + "react-plotly.js": "^2.6.0", "server-only": "^0.0.1", "swr": "^2.2.5", "tailwind-merge": "^2.3.0", diff --git a/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx b/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx new file mode 100644 index 000000000..96582665f --- /dev/null +++ b/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx @@ -0,0 +1,100 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +"use client"; +import { Slot } from "@radix-ui/react-slot"; +import { ChevronRight, MoreHorizontal } from "lucide-react"; +import React from "react"; +import { cn } from "#/lib/utils"; + +export const Breadcrumb = React.forwardRef< + HTMLElement, + React.ComponentPropsWithoutRef<"nav"> & { + separator?: React.ReactNode; + } +>(({ ...props }, ref) =>
+ + + Pool + + Order Type + + Status + Date + Amount + + + + {orders.map((order, index) => ( + + +
{order.poolName}
+
+ {order.email} +
+
+ + {order.type} + + + + {order.status} + + + + {order.date} + + {order.amount} +
+ ))} +
+
+ + + ); +}; + +const App: React.FC = () => { + const tokens = ["ILV", "ETH"]; + const totalSupply = "1000"; + const orders = [ + { + poolName: "ETH/DAI", + type: "Stake", + status: "Approved", + date: "2023-06-23", + amount: "250.00", + email: "user1@example.com", + }, + { + poolName: "BTC/USDC", + type: "Unstake", + status: "Declined", + date: "2023-06-24", + amount: "150.00", + email: "user2@example.com", + }, + // Add more orders as needed + ]; + + const data = [ + { + x: ["1D", "1W", "1M", "1Y"], + y: [20, 25, 22, 24], + type: "scatter", + mode: "lines+markers", + marker: { color: "rgb(75, 192, 192)" }, + }, + ]; + + const layout = { + title: "Total Supply", + xaxis: { title: "Time" }, + yaxis: { title: "Value" }, + paper_bgcolor: "rgba(0,0,0,0)", + plot_bgcolor: "rgba(0,0,0,0)", + font: { color: "#ffffff" }, + }; + + return ( +
+
+
+
+ alert("Add")} + onRemove={() => alert("Remove")} + onStake={() => alert("Stake")} + onUnstake={() => alert("Unstake")} + tokens={tokens.slice(0, 2)} + balance="$0.00" + rewards="$0.00" + /> +
+
+ + +
+
+
+ console.log("Network:", e.target.value)} + onTokenChange={(e, token) => console.log(`${token}:`, e.target.value)} + onDeposit={() => alert("Deposit")} + tokens={tokens} + /> + + +
+
+ ); +}; + +export default App; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4aad3b1c7..4ce98625b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -418,6 +418,9 @@ importers: '@tanstack/react-query': specifier: 5.40.1 version: 5.40.1(react@19.0.0-rc-6230622a1a-20240610) + '@types/react-plotly.js': + specifier: ^2.6.3 + version: 2.6.3 '@uniswap/sdk-core': specifier: ^5.3.0 version: 5.3.0 @@ -463,18 +466,30 @@ importers: lodash.merge: specifier: ^4.6.2 version: 4.6.2 + lucide-react: + specifier: ^0.394.0 + version: 0.394.0(react@19.0.0-rc-6230622a1a-20240610) next: specifier: 15.0.0-rc.0 version: 15.0.0-rc.0(@babel/core@7.23.6)(@opentelemetry/api@1.8.0)(babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601)(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610) + plotly.js: + specifier: ^2.27.1 + version: 2.27.1 react: specifier: 19.0.0-rc-6230622a1a-20240610 version: 19.0.0-rc-6230622a1a-20240610 + react-chartjs-2: + specifier: ^5.2.0 + version: 5.2.0(chart.js@4.4.3)(react@19.0.0-rc-6230622a1a-20240610) react-dom: specifier: 19.0.0-rc-6230622a1a-20240610 version: 19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610) react-hook-form: specifier: 7.51.5 version: 7.51.5(react@19.0.0-rc-6230622a1a-20240610) + react-plotly.js: + specifier: ^2.6.0 + version: 2.6.0(plotly.js@2.27.1)(react@19.0.0-rc-6230622a1a-20240610) server-only: specifier: ^0.0.1 version: 0.0.1 @@ -3695,6 +3710,9 @@ packages: '@kamilkisiela/fast-url-parser@1.1.4': resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} + '@kurkle/color@0.3.2': + resolution: {integrity: sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==} + '@libp2p/interface-connection@4.0.0': resolution: {integrity: sha512-6xx/NmEc84HX7QmsjSC3hHredQYjHv4Dkf4G27adAPf+qN+vnPxmQ7gaTnk243a0++DOFTbZ2gKX/15G2B6SRg==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} @@ -7119,6 +7137,10 @@ packages: chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + chart.js@4.4.3: + resolution: {integrity: sha512-qK1gkGSRYcJzqrrzdR6a+I0vQ4/R+SoODXyAjscQ/4mzuNzySaMCd+hyVxitSY1+L2fjPD1Gbn+ibNqRmwQeLw==} + engines: {pnpm: '>=8'} + chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} @@ -10630,6 +10652,11 @@ packages: lru-queue@0.1.0: resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} + lucide-react@0.394.0: + resolution: {integrity: sha512-PzTbJ0bsyXRhH59k5qe7MpTd5MxlpYZUcM9kGSwvPGAfnn0J6FElDwu2EX6Vuh//F7y60rcVJiFQ7EK9DCMgfw==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 + lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true @@ -12142,6 +12169,12 @@ packages: react: ^16.8.5 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.5 || ^17.0.0 || ^18.0.0 + react-chartjs-2@5.2.0: + resolution: {integrity: sha512-98iN5aguJyVSxp5U3CblRLH67J8gkfyGNbiK3c+l1QI/G4irHMPQw44aEPmjVag+YKTyQ260NcF82GTQ3bdscA==} + peerDependencies: + chart.js: ^4.1.1 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-colorful@5.6.1: resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} peerDependencies: @@ -18679,6 +18712,8 @@ snapshots: '@kamilkisiela/fast-url-parser@1.1.4': {} + '@kurkle/color@0.3.2': {} + '@libp2p/interface-connection@4.0.0': dependencies: '@libp2p/interface-peer-id': 2.0.2 @@ -24542,6 +24577,10 @@ snapshots: chardet@0.7.0: {} + chart.js@4.4.3: + dependencies: + '@kurkle/color': 0.3.2 + chokidar@3.5.3: dependencies: anymatch: 3.1.3 @@ -29425,6 +29464,10 @@ snapshots: dependencies: es5-ext: 0.10.62 + lucide-react@0.394.0(react@19.0.0-rc-6230622a1a-20240610): + dependencies: + react: 19.0.0-rc-6230622a1a-20240610 + lz-string@1.5.0: {} magic-string@0.27.0: @@ -31135,6 +31178,11 @@ snapshots: transitivePeerDependencies: - react-native + react-chartjs-2@5.2.0(chart.js@4.4.3)(react@19.0.0-rc-6230622a1a-20240610): + dependencies: + chart.js: 4.4.3 + react: 19.0.0-rc-6230622a1a-20240610 + react-colorful@5.6.1(react-dom@19.0.0-rc-6230622a1a-20240610(react@19.0.0-rc-6230622a1a-20240610))(react@19.0.0-rc-6230622a1a-20240610): dependencies: react: 19.0.0-rc-6230622a1a-20240610 From 9bee5cd923363f0336fee9f5c82b88868de9c5eb Mon Sep 17 00:00:00 2001 From: Pedro Yves Fracari Date: Wed, 12 Jun 2024 18:00:00 -0300 Subject: [PATCH 19/22] refactor test page to amm manager --- .../[userId]/amms/(components)/AmmsTable.tsx | 13 +- .../amms/[id]/(components)/EditAMMForm.tsx | 37 +- .../amms/[id]/(components)/Header.tsx | 86 +++ .../amms/[id]/(components)/Manage.tsx | 76 +++ .../[id]/(components)/PoolComposition.tsx | 23 + .../(components)/PoolCompositionTable.tsx | 75 +-- .../[id]/(components)/PriceInformation.tsx | 10 +- .../app/[userId]/amms/[id]/deposit/page.tsx | 40 -- .../src/app/[userId]/amms/[id]/edit/page.tsx | 21 - .../src/app/[userId]/amms/[id]/page.tsx | 132 +---- .../app/[userId]/amms/[id]/withdraw/page.tsx | 21 - .../src/app/test/Breadcrumb.tsx | 102 ---- apps/cow-amm-deployer/src/app/test/page.tsx | 552 ------------------ .../src/components/DepositForm.tsx | 17 +- .../src/components/StatusBadge.tsx | 9 + .../cow-amm-deployer/src/components/Table.tsx | 16 +- .../src/components/TokenAmount.tsx | 36 ++ .../src/components/TokenLogo.tsx | 2 +- .../src/components/TokenPairLogo.tsx | 41 ++ .../WithdrawForm.tsx | 78 +-- 20 files changed, 390 insertions(+), 997 deletions(-) create mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Header.tsx create mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Manage.tsx create mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolComposition.tsx delete mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx delete mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx delete mode 100644 apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/page.tsx delete mode 100644 apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx delete mode 100644 apps/cow-amm-deployer/src/app/test/page.tsx create mode 100644 apps/cow-amm-deployer/src/components/StatusBadge.tsx create mode 100644 apps/cow-amm-deployer/src/components/TokenAmount.tsx create mode 100644 apps/cow-amm-deployer/src/components/TokenPairLogo.tsx rename apps/cow-amm-deployer/src/{app/[userId]/amms/[id]/withdraw/(components) => components}/WithdrawForm.tsx (60%) diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx index d7404f710..d7ea1dd74 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/(components)/AmmsTable.tsx @@ -3,6 +3,7 @@ import { formatNumber } from "@bleu/ui"; import { useRouter } from "next/navigation"; +import { StatusBadge } from "#/components/StatusBadge"; import Table from "#/components/Table"; import { TokenInfo } from "#/components/TokenInfo"; import { ICowAmm } from "#/lib/fetchAmmData"; @@ -56,20 +57,12 @@ export function AmmsTable({ - {amm.disabled ? ( - - Paused - - ) : ( - - Active - - )} + {new Date( - (amm.order.blockTimestamp as number) * 1000, + (amm.order.blockTimestamp as number) * 1000 ).toLocaleString()} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx index 3d627ada5..8f41b9b7f 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/EditAMMForm.tsx @@ -26,24 +26,19 @@ import { cn } from "#/lib/utils"; import { DisableAmmButton } from "./DisableAmmButton"; -export function EditAMMForm({ - cowAmmData, -}: { - cowAmmData: ICowAmm; - submitButtonText: string; -}) { +export function EditAMMForm({ ammData }: { ammData: ICowAmm }) { const form = useForm>({ // @ts-ignore resolver: zodResolver(ammEditSchema), defaultValues: { - safeAddress: cowAmmData.user.address, - chainId: cowAmmData.chainId, - token0: cowAmmData.token0, - token1: cowAmmData.token1, + safeAddress: ammData.user.address, + chainId: ammData.chainId, + token0: ammData.token0, + token1: ammData.token1, minTradedToken0: Number( - formatUnits(cowAmmData.minTradedToken0, cowAmmData.token0.decimals) + formatUnits(ammData.minTradedToken0, ammData.token0.decimals) ), - priceOracleSchema: cowAmmData.decodedPriceOracleData, + priceOracleSchema: ammData.decodedPriceOracleData, }, }); @@ -57,7 +52,7 @@ export function EditAMMForm({ const onSubmit = async (data: typeof ammEditSchema._type) => { const txArgs = buildTxEditAMMArgs({ data: data, - ammAddress: cowAmmData.order.owner as Address, + ammAddress: ammData.order.owner as Address, }); try { @@ -77,7 +72,7 @@ export function EditAMMForm({ } }; - const submitButtonText = cowAmmData.disabled ? "Enable AMM" : "Update AMM"; + const submitButtonText = ammData.disabled ? "Enable AMM" : "Update AMM"; return ( // @ts-ignore @@ -85,8 +80,8 @@ export function EditAMMForm({
Token Pair
- - + +
@@ -104,7 +99,7 @@ export function EditAMMForm({ @@ -113,18 +108,18 @@ export function EditAMMForm({
- {!cowAmmData.disabled && } + {!ammData.disabled && }
diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Header.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Header.tsx new file mode 100644 index 000000000..5379a7acd --- /dev/null +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Header.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { Card } from "@bleu/ui"; +import { + ArrowLeftIcon, + ArrowTopRightIcon, + ExternalLinkIcon, +} from "@radix-ui/react-icons"; +import Link from "next/link"; +import { Address } from "viem"; + +import { Button } from "#/components/Button"; +import { BlockExplorerLink } from "#/components/ExplorerLink"; +import { LinkComponent } from "#/components/Link"; +import { StatusBadge } from "#/components/StatusBadge"; +import { TokenInfo } from "#/components/TokenInfo"; +import { TokenPairLogo } from "#/components/TokenPairLogo"; +import { getExplorerAddressLink } from "#/lib/cowExplorer"; +import { ICowAmm } from "#/lib/fetchAmmData"; +import { ChainId } from "#/utils/chainsPublicClients"; + +import { PriceInformation } from "./PriceInformation"; + +export function Header({ + ammData, +}: { + ammData: ICowAmm; + oldVersionOfAmm: boolean; +}) { + const poolName = `${ammData.token0.symbol}/${ammData.token1.symbol}`; + + return ( + + + + + + + + {poolName} + } + identifier={ammData.order.owner} + networkId={ammData.chainId as ChainId} + /> + + +
+ Status: +
+
+ Price Oracle: +
+ + Orders History + + +
+ Tokens: + +
+
+
+
+ ); +} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Manage.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Manage.tsx new file mode 100644 index 000000000..12bc91c01 --- /dev/null +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/Manage.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { + Card, + Separator, + TabsContent, + TabsList, + TabsRoot, + TabsTrigger, +} from "@bleu/ui"; + +import { DepositForm } from "#/components/DepositForm"; +import { ICowAmm } from "#/lib/fetchAmmData"; + +import { WithdrawForm } from "../../../../../components/WithdrawForm"; +import { EditAMMForm } from "./EditAMMForm"; + +export function Manage({ + ammData, + oldVersionOfAmm, + walletBalanceToken0, + walletBalanceToken1, +}: { + ammData: ICowAmm; + oldVersionOfAmm: boolean; + walletBalanceToken0: string; + walletBalanceToken1: string; +}) { + return ( + + + Manage + + Manage your CoW AMM pool + + + + + + + + Deposit + + + Withdraw + + + Edit Parameters + + + + + + + + + + + + + + + ); +} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolComposition.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolComposition.tsx new file mode 100644 index 000000000..3f3a036e4 --- /dev/null +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolComposition.tsx @@ -0,0 +1,23 @@ +"use client"; + +import { Card } from "@bleu/ui"; + +import { ICowAmm } from "#/lib/fetchAmmData"; + +import { PoolCompositionTable } from "./PoolCompositionTable"; + +export function PoolComposition({ ammData }: { ammData: ICowAmm }) { + return ( + + + Pool composition + + Check your current CoW AMM pool composition + + + + + + + ); +} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx index 2c9fc9fdc..2cb7e9b87 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PoolCompositionTable.tsx @@ -1,59 +1,47 @@ "use client"; import { formatNumber } from "@bleu/ui"; -import { tomatoDark } from "@radix-ui/colors"; -import { InfoCircledIcon } from "@radix-ui/react-icons"; import Table from "#/components/Table"; -import { TokenInfo } from "#/components/TokenInfo"; -import { Tooltip } from "#/components/Tooltip"; +import { TokenAmount } from "#/components/TokenAmount"; +import { TokenLogo } from "#/components/TokenLogo"; import { ICowAmm } from "#/lib/fetchAmmData"; -export function PoolCompositionTable({ cowAmm }: { cowAmm: ICowAmm }) { +export function PoolCompositionTable({ ammData }: { ammData: ICowAmm }) { const anyTokenWithoutUsdPrice = - !cowAmm.token0.usdPrice || !cowAmm.token1.usdPrice; + !ammData.token0.usdPrice || !ammData.token1.usdPrice; return ( - +
- Tokens - Balance - Price - Value + + Balance $({formatNumber(ammData.totalUsdValue, 4)}) + Weight - {[cowAmm.token0, cowAmm.token1].map((token) => { + {[ammData.token0, ammData.token1].map((token) => { const valuePct = - (Number(token.usdValue) * 100) / cowAmm.totalUsdValue; + (Number(token.usdValue) * 100) / ammData.totalUsdValue; return ( - - - {formatNumber(token.balance, 4)} - -
- <>$ {formatNumber(token.usdPrice, 4)} - {!token.usdPrice && } -
-
- -
- <> - ${" "} - {formatNumber( - token.usdValue, - 2, - "decimal", - "compact", - 0.01, - )} - - {!token.usdPrice && } +
+
+ +
+
@@ -62,7 +50,6 @@ export function PoolCompositionTable({ cowAmm }: { cowAmm: ICowAmm }) { {anyTokenWithoutUsdPrice ? "-" : formatNumber(valuePct, 2)}{" "} {valuePct && !anyTokenWithoutUsdPrice ? "%" : ""} - {!token.usdPrice && }
@@ -72,11 +59,3 @@ export function PoolCompositionTable({ cowAmm }: { cowAmm: ICowAmm }) {
); } - -function PriceErrorTooltip() { - return ( - - - - ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx index 28de23165..726608ff5 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/(components)/PriceInformation.tsx @@ -29,11 +29,11 @@ export function PriceInformation({ cowAmm }: { cowAmm: ICowAmm }) { const { decodedPriceOracleData, priceFeedLinks } = cowAmm; const labels = { - [PRICE_ORACLES.UNI]: "Using price information from Uniswap V2", - [PRICE_ORACLES.BALANCER]: "Using price information from Balancer V2", - [PRICE_ORACLES.SUSHI]: "Using price information from Sushi V2", - [PRICE_ORACLES.CHAINLINK]: "Using price information from Chainlink", - [PRICE_ORACLES.CUSTOM]: "Using price information from custom contract", + [PRICE_ORACLES.UNI]: "Uniswap V2", + [PRICE_ORACLES.BALANCER]: "Balancer V2", + [PRICE_ORACLES.SUSHI]: "Sushi V2", + [PRICE_ORACLES.CHAINLINK]: "Chainlink", + [PRICE_ORACLES.CUSTOM]: "Custom contract", } as const; const priceOracle = decodedPriceOracleData.priceOracle; diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx deleted file mode 100644 index b8e735460..000000000 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/deposit/page.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { Address } from "viem"; - -import { DepositForm } from "#/components/DepositForm"; -import { FormPageWrapper } from "#/components/FormPageWrapper"; -import { fetchAmmData, ICowAmm } from "#/lib/fetchAmmData"; -import { fetchWalletTokenBalance } from "#/lib/tokenUtils"; -import { ChainId } from "#/utils/chainsPublicClients"; - -export default async function Page({ - params, -}: { - params: { userId: string; id: `0x${string}` }; -}) { - const ammData = (await fetchAmmData(params.id)) as ICowAmm; - const [walletBalanceToken0, walletBalanceToken1] = await Promise.all([ - fetchWalletTokenBalance({ - token: ammData.token0, - walletAddress: ammData.user.address as Address, - chainId: ammData.order.chainId as ChainId, - }), - fetchWalletTokenBalance({ - token: ammData.token1, - walletAddress: ammData.user.address as Address, - chainId: ammData.order.chainId as ChainId, - }), - ]); - - return ( - - - - ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx deleted file mode 100644 index 9e8cbff4d..000000000 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/edit/page.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { FormPageWrapper } from "#/components/FormPageWrapper"; -import { fetchAmmData } from "#/lib/fetchAmmData"; - -import { EditAMMForm } from "../(components)/EditAMMForm"; - -export default async function Page({ - params, -}: { - params: { userId: string; id: `0x${string}` }; -}) { - const ammData = await fetchAmmData(params.id); - - return ( - - - - ); -} diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx index 4558ca4a1..71f20c127 100644 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx +++ b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/page.tsx @@ -1,21 +1,13 @@ -import { formatNumber } from "@bleu/utils/formatNumber"; -import { - ArrowTopRightIcon, - Pencil2Icon, - ResetIcon, -} from "@radix-ui/react-icons"; -import Link from "next/link"; import { Address } from "viem"; -import { Button } from "#/components/Button"; -import { LinkComponent } from "#/components/Link"; import { OldVersionOfAMMAlert } from "#/components/OldVersionOfAmmAlert"; -import { getExplorerAddressLink } from "#/lib/cowExplorer"; import { fetchAmmData } from "#/lib/fetchAmmData"; +import { fetchWalletTokenBalance } from "#/lib/tokenUtils"; import { ChainId } from "#/utils/chainsPublicClients"; -import { PoolCompositionTable } from "./(components)/PoolCompositionTable"; -import { PriceInformation } from "./(components)/PriceInformation"; +import { Header } from "./(components)/Header"; +import { Manage } from "./(components)/Manage"; +import { PoolComposition } from "./(components)/PoolComposition"; export default async function Page({ params, @@ -24,100 +16,34 @@ export default async function Page({ }) { const ammData = await fetchAmmData(params.id); const oldVersionOfAmm = ammData.version !== "Standalone"; + const [walletBalanceToken0, walletBalanceToken1] = await Promise.all([ + fetchWalletTokenBalance({ + token: ammData.token0, + walletAddress: ammData.user.address as Address, + chainId: ammData.order.chainId as ChainId, + }), + fetchWalletTokenBalance({ + token: ammData.token1, + walletAddress: ammData.user.address as Address, + chainId: ammData.order.chainId as ChainId, + }), + ]); return ( -
-
- {oldVersionOfAmm && } -
-
-

- The first MEV-Capturing AMM, - brought to you by CoW DAO -

- {ammData.disabled ? ( - - This AMM is currently{" "} - disabled - - ) : ( - - )} -
- -
- Total Value - - ${" "} - {formatNumber( - ammData.totalUsdValue, - 2, - "decimal", - "compact", - 0.01 - )} - -
-
-
- - AMM Composition - - - See in CoW Explorer - - +
+
+ {oldVersionOfAmm && } +
+
+
- -
- - - - - - - - - - - - - +
+
diff --git a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/page.tsx b/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/page.tsx deleted file mode 100644 index 3124bd0e3..000000000 --- a/apps/cow-amm-deployer/src/app/[userId]/amms/[id]/withdraw/page.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { FormPageWrapper } from "#/components/FormPageWrapper"; -import { fetchAmmData } from "#/lib/fetchAmmData"; - -import { WithdrawForm } from "./(components)/WithdrawForm"; - -export default async function Page({ - params, -}: { - params: { userId: string; id: `0x${string}` }; -}) { - const ammData = await fetchAmmData(params.id); - - return ( - - - - ); -} diff --git a/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx b/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx deleted file mode 100644 index c14b82b71..000000000 --- a/apps/cow-amm-deployer/src/app/test/Breadcrumb.tsx +++ /dev/null @@ -1,102 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -"use client"; -import { Slot } from "@radix-ui/react-slot"; -import { ChevronRight, MoreHorizontal } from "lucide-react"; -import React from "react"; - -import { cn } from "#/lib/utils"; - -export const Breadcrumb = React.forwardRef< - HTMLElement, - React.ComponentPropsWithoutRef<"nav"> & { - separator?: React.ReactNode; - } ->(({ ...props }, ref) =>