Loading...
- case TxStateType.Success:
- return (
-
Pyth Entropy Debug App
-
+
-
-
-
-
+ Request Transaction Hash:
+
+
validateTxHash(e.target.value)}
+ onChange={(e) => {
+ validateTxHash(e.target.value);
+ }}
/>
{error &&
{error.message}
}
-
@@ -172,3 +180,62 @@ export default function PythEntropyDebugApp() {
);
}
+
+const Info = ({ state }: { state: TxStateContext }) => {
+ const preRef = useRef
(null);
+
+ useEffect(() => {
+ if (preRef.current && state.status === TxStateType.Success) {
+ hljs.highlightElement(preRef.current);
+ }
+ }, [state]);
+
+ switch (state.status) {
+ case TxStateType.NotLoaded: {
+ return Not loaded
;
+ }
+ case TxStateType.Loading: {
+ return Loading...
;
+ }
+ case TxStateType.Success: {
+ return (
+
+
+ Please run the following command in your terminal:
+
+
+
+ {state.data}
+
+
+
+
+ );
+ }
+ case TxStateType.Error: {
+ return (
+
+
{String(state.error)}
+
+ );
+ }
+ }
+};
+
+function isValidTxHash(hash: string) {
+ const cleanHash = hash.toLowerCase().replace("0x", "");
+ return /^[\da-f]{64}$/.test(cleanHash);
+}
diff --git a/apps/entropy-debug/src/components/ui/button.tsx b/apps/entropy-debug/src/components/ui/button.tsx
index 36496a2872..9b598d87eb 100644
--- a/apps/entropy-debug/src/components/ui/button.tsx
+++ b/apps/entropy-debug/src/components/ui/button.tsx
@@ -1,8 +1,8 @@
-import * as React from "react"
-import { Slot } from "@radix-ui/react-slot"
-import { cva, type VariantProps } from "class-variance-authority"
+import { Slot } from "@radix-ui/react-slot";
+import { cva, type VariantProps } from "class-variance-authority";
+import type { ComponentProps } from "react";
-import { cn } from "@/lib/utils"
+import { cn } from "../../lib/utils";
const buttonVariants = cva(
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
@@ -30,27 +30,26 @@ const buttonVariants = cva(
variant: "default",
size: "default",
},
- }
-)
+ },
+);
-export interface ButtonProps
- extends React.ButtonHTMLAttributes,
- VariantProps {
- asChild?: boolean
-}
+export type ButtonProps = {
+ asChild?: boolean;
+} & ComponentProps<"button"> &
+ VariantProps;
-const Button = React.forwardRef(
- ({ className, variant, size, asChild = false, ...props }, ref) => {
- const Comp = asChild ? Slot : "button"
- return (
-
- )
- }
-)
-Button.displayName = "Button"
-
-export { Button, buttonVariants }
+export const Button = ({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: ButtonProps) => {
+ const Comp = asChild ? Slot : "button";
+ return (
+
+ );
+};
diff --git a/apps/entropy-debug/src/components/ui/input.tsx b/apps/entropy-debug/src/components/ui/input.tsx
index 68551b9276..5c2e6d5387 100644
--- a/apps/entropy-debug/src/components/ui/input.tsx
+++ b/apps/entropy-debug/src/components/ui/input.tsx
@@ -1,22 +1,13 @@
-import * as React from "react"
+import type { ComponentProps } from "react";
-import { cn } from "@/lib/utils"
+import { cn } from "../../lib/utils";
-const Input = React.forwardRef>(
- ({ className, type, ...props }, ref) => {
- return (
-
- )
- }
-)
-Input.displayName = "Input"
-
-export { Input }
+export const Input = ({ className, ...props }: ComponentProps<"input">) => (
+
+);
diff --git a/apps/entropy-debug/src/components/ui/select.tsx b/apps/entropy-debug/src/components/ui/select.tsx
index cbe5a36b69..edb852f46a 100644
--- a/apps/entropy-debug/src/components/ui/select.tsx
+++ b/apps/entropy-debug/src/components/ui/select.tsx
@@ -1,160 +1,146 @@
-"use client"
+"use client";
-import * as React from "react"
-import * as SelectPrimitive from "@radix-ui/react-select"
-import { Check, ChevronDown, ChevronUp } from "lucide-react"
+import {
+ Trigger,
+ ScrollUpButton,
+ ScrollDownButton,
+ Icon,
+ Portal,
+ Content,
+ Viewport,
+ Label,
+ ItemIndicator,
+ ItemText,
+ Item,
+ Separator,
+} from "@radix-ui/react-select";
+import { Check, ChevronDown, ChevronUp } from "lucide-react";
+import type { ComponentProps } from "react";
-import { cn } from "@/lib/utils"
+import { cn } from "../../lib/utils";
-const Select = SelectPrimitive.Root
-
-const SelectGroup = SelectPrimitive.Group
-
-const SelectValue = SelectPrimitive.Value
+export {
+ Root as Select,
+ Group as SelectGroup,
+ Value as SelectValue,
+} from "@radix-ui/react-select";
-const SelectTrigger = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, children, ...props }, ref) => (
- ) => (
+ span]:line-clamp-1",
- className
+ className,
)}
{...props}
>
{children}
-
+
-
-
-))
-SelectTrigger.displayName = SelectPrimitive.Trigger.displayName
+
+
+);
-const SelectScrollUpButton = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => (
- ) => (
+
-
-))
-SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName
+
+);
-const SelectScrollDownButton = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => (
- ) => (
+
-
-))
-SelectScrollDownButton.displayName =
- SelectPrimitive.ScrollDownButton.displayName
+
+);
-const SelectContent = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, children, position = "popper", ...props }, ref) => (
-
- ) => (
+
+
-
{children}
-
+
-
-
-))
-SelectContent.displayName = SelectPrimitive.Content.displayName
+
+
+);
-const SelectLabel = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => (
- ) => (
+
-))
-SelectLabel.displayName = SelectPrimitive.Label.displayName
+);
-const SelectItem = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, children, ...props }, ref) => (
- ) => (
+ -
-
+
-
+
- {children}
-
-))
-SelectItem.displayName = SelectPrimitive.Item.displayName
+ {children}
+
+);
-const SelectSeparator = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => (
-
-))
-SelectSeparator.displayName = SelectPrimitive.Separator.displayName
-
-export {
- Select,
- SelectGroup,
- SelectValue,
- SelectTrigger,
- SelectContent,
- SelectLabel,
- SelectItem,
- SelectSeparator,
- SelectScrollUpButton,
- SelectScrollDownButton,
-}
+export const SelectSeparator = ({
+ className,
+ ...props
+}: ComponentProps) => (
+
+);
diff --git a/apps/entropy-debug/src/components/ui/switch.tsx b/apps/entropy-debug/src/components/ui/switch.tsx
index bc69cf2dbf..c1587e539e 100644
--- a/apps/entropy-debug/src/components/ui/switch.tsx
+++ b/apps/entropy-debug/src/components/ui/switch.tsx
@@ -1,29 +1,25 @@
-"use client"
+"use client";
-import * as React from "react"
-import * as SwitchPrimitives from "@radix-ui/react-switch"
+import { Root, Thumb } from "@radix-ui/react-switch";
+import type { ComponentProps } from "react";
-import { cn } from "@/lib/utils"
+import { cn } from "../../lib/utils";
-const Switch = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => (
- ) => (
+
-
-
-))
-Switch.displayName = SwitchPrimitives.Root.displayName
-
-export { Switch }
+
+);
diff --git a/apps/entropy-debug/src/lib/EntropyAbi.ts b/apps/entropy-debug/src/lib/EntropyAbi.ts
deleted file mode 100644
index 49d78fca40..0000000000
--- a/apps/entropy-debug/src/lib/EntropyAbi.ts
+++ /dev/null
@@ -1,1001 +0,0 @@
-export const EntropyAbi = [
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "address",
- "name": "oldFeeManager",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "address",
- "name": "newFeeManager",
- "type": "address"
- }
- ],
- "name": "ProviderFeeManagerUpdated",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "uint128",
- "name": "oldFee",
- "type": "uint128"
- },
- {
- "indexed": false,
- "internalType": "uint128",
- "name": "newFee",
- "type": "uint128"
- }
- ],
- "name": "ProviderFeeUpdated",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "uint32",
- "name": "oldMaxNumHashes",
- "type": "uint32"
- },
- {
- "indexed": false,
- "internalType": "uint32",
- "name": "newMaxNumHashes",
- "type": "uint32"
- }
- ],
- "name": "ProviderMaxNumHashesAdvanced",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "bytes",
- "name": "oldUri",
- "type": "bytes"
- },
- {
- "indexed": false,
- "internalType": "bytes",
- "name": "newUri",
- "type": "bytes"
- }
- ],
- "name": "ProviderUriUpdated",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "components": [
- {
- "internalType": "uint128",
- "name": "feeInWei",
- "type": "uint128"
- },
- {
- "internalType": "uint128",
- "name": "accruedFeesInWei",
- "type": "uint128"
- },
- {
- "internalType": "bytes32",
- "name": "originalCommitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "originalCommitmentSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes",
- "name": "commitmentMetadata",
- "type": "bytes"
- },
- {
- "internalType": "bytes",
- "name": "uri",
- "type": "bytes"
- },
- {
- "internalType": "uint64",
- "name": "endSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "currentCommitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "currentCommitmentSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "feeManager",
- "type": "address"
- },
- {
- "internalType": "uint32",
- "name": "maxNumHashes",
- "type": "uint32"
- }
- ],
- "indexed": false,
- "internalType": "struct EntropyStructs.ProviderInfo",
- "name": "provider",
- "type": "tuple"
- }
- ],
- "name": "Registered",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "components": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint32",
- "name": "numHashes",
- "type": "uint32"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "blockNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "requester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "useBlockhash",
- "type": "bool"
- },
- {
- "internalType": "bool",
- "name": "isRequestWithCallback",
- "type": "bool"
- }
- ],
- "indexed": false,
- "internalType": "struct EntropyStructs.Request",
- "name": "request",
- "type": "tuple"
- }
- ],
- "name": "Requested",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": true,
- "internalType": "address",
- "name": "requestor",
- "type": "address"
- },
- {
- "indexed": true,
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "userRandomNumber",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint32",
- "name": "numHashes",
- "type": "uint32"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "blockNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "requester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "useBlockhash",
- "type": "bool"
- },
- {
- "internalType": "bool",
- "name": "isRequestWithCallback",
- "type": "bool"
- }
- ],
- "indexed": false,
- "internalType": "struct EntropyStructs.Request",
- "name": "request",
- "type": "tuple"
- }
- ],
- "name": "RequestedWithCallback",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "components": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint32",
- "name": "numHashes",
- "type": "uint32"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "blockNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "requester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "useBlockhash",
- "type": "bool"
- },
- {
- "internalType": "bool",
- "name": "isRequestWithCallback",
- "type": "bool"
- }
- ],
- "indexed": false,
- "internalType": "struct EntropyStructs.Request",
- "name": "request",
- "type": "tuple"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "userRevelation",
- "type": "bytes32"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "providerRevelation",
- "type": "bytes32"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "blockHash",
- "type": "bytes32"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "randomNumber",
- "type": "bytes32"
- }
- ],
- "name": "Revealed",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "components": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint32",
- "name": "numHashes",
- "type": "uint32"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "blockNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "requester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "useBlockhash",
- "type": "bool"
- },
- {
- "internalType": "bool",
- "name": "isRequestWithCallback",
- "type": "bool"
- }
- ],
- "indexed": false,
- "internalType": "struct EntropyStructs.Request",
- "name": "request",
- "type": "tuple"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "userRandomNumber",
- "type": "bytes32"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "providerRevelation",
- "type": "bytes32"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "randomNumber",
- "type": "bytes32"
- }
- ],
- "name": "RevealedWithCallback",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "uint128",
- "name": "withdrawnAmount",
- "type": "uint128"
- }
- ],
- "name": "Withdrawal",
- "type": "event"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "advancedSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "providerRevelation",
- "type": "bytes32"
- }
- ],
- "name": "advanceProviderCommitment",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "userRandomness",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "providerRandomness",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "blockHash",
- "type": "bytes32"
- }
- ],
- "name": "combineRandomValues",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "combinedRandomness",
- "type": "bytes32"
- }
- ],
- "stateMutability": "pure",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "userRandomness",
- "type": "bytes32"
- }
- ],
- "name": "constructUserCommitment",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "userCommitment",
- "type": "bytes32"
- }
- ],
- "stateMutability": "pure",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getAccruedPythFees",
- "outputs": [
- {
- "internalType": "uint128",
- "name": "accruedPythFeesInWei",
- "type": "uint128"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getDefaultProvider",
- "outputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- }
- ],
- "name": "getFee",
- "outputs": [
- {
- "internalType": "uint128",
- "name": "feeAmount",
- "type": "uint128"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- }
- ],
- "name": "getProviderInfo",
- "outputs": [
- {
- "components": [
- {
- "internalType": "uint128",
- "name": "feeInWei",
- "type": "uint128"
- },
- {
- "internalType": "uint128",
- "name": "accruedFeesInWei",
- "type": "uint128"
- },
- {
- "internalType": "bytes32",
- "name": "originalCommitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "originalCommitmentSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes",
- "name": "commitmentMetadata",
- "type": "bytes"
- },
- {
- "internalType": "bytes",
- "name": "uri",
- "type": "bytes"
- },
- {
- "internalType": "uint64",
- "name": "endSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "currentCommitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "currentCommitmentSequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "feeManager",
- "type": "address"
- },
- {
- "internalType": "uint32",
- "name": "maxNumHashes",
- "type": "uint32"
- }
- ],
- "internalType": "struct EntropyStructs.ProviderInfo",
- "name": "info",
- "type": "tuple"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- }
- ],
- "name": "getRequest",
- "outputs": [
- {
- "components": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "uint32",
- "name": "numHashes",
- "type": "uint32"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "blockNumber",
- "type": "uint64"
- },
- {
- "internalType": "address",
- "name": "requester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "useBlockhash",
- "type": "bool"
- },
- {
- "internalType": "bool",
- "name": "isRequestWithCallback",
- "type": "bool"
- }
- ],
- "internalType": "struct EntropyStructs.Request",
- "name": "req",
- "type": "tuple"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "uint128",
- "name": "feeInWei",
- "type": "uint128"
- },
- {
- "internalType": "bytes32",
- "name": "commitment",
- "type": "bytes32"
- },
- {
- "internalType": "bytes",
- "name": "commitmentMetadata",
- "type": "bytes"
- },
- {
- "internalType": "uint64",
- "name": "chainLength",
- "type": "uint64"
- },
- {
- "internalType": "bytes",
- "name": "uri",
- "type": "bytes"
- }
- ],
- "name": "register",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "bytes32",
- "name": "userCommitment",
- "type": "bytes32"
- },
- {
- "internalType": "bool",
- "name": "useBlockHash",
- "type": "bool"
- }
- ],
- "name": "request",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "assignedSequenceNumber",
- "type": "uint64"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "bytes32",
- "name": "userRandomNumber",
- "type": "bytes32"
- }
- ],
- "name": "requestWithCallback",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "assignedSequenceNumber",
- "type": "uint64"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "userRevelation",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "providerRevelation",
- "type": "bytes32"
- }
- ],
- "name": "reveal",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "randomNumber",
- "type": "bytes32"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "sequenceNumber",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "userRandomNumber",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "providerRevelation",
- "type": "bytes32"
- }
- ],
- "name": "revealWithCallback",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "manager",
- "type": "address"
- }
- ],
- "name": "setFeeManager",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "uint32",
- "name": "maxNumHashes",
- "type": "uint32"
- }
- ],
- "name": "setMaxNumHashes",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "uint128",
- "name": "newFeeInWei",
- "type": "uint128"
- }
- ],
- "name": "setProviderFee",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint128",
- "name": "newFeeInWei",
- "type": "uint128"
- }
- ],
- "name": "setProviderFeeAsFeeManager",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes",
- "name": "newUri",
- "type": "bytes"
- }
- ],
- "name": "setProviderUri",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "uint128",
- "name": "amount",
- "type": "uint128"
- }
- ],
- "name": "withdraw",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "provider",
- "type": "address"
- },
- {
- "internalType": "uint128",
- "name": "amount",
- "type": "uint128"
- }
- ],
- "name": "withdrawAsFeeManager",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- }
- ] as const
-
\ No newline at end of file
diff --git a/apps/entropy-debug/src/lib/entropy-abi.ts b/apps/entropy-debug/src/lib/entropy-abi.ts
new file mode 100644
index 0000000000..d98a6a89c6
--- /dev/null
+++ b/apps/entropy-debug/src/lib/entropy-abi.ts
@@ -0,0 +1,1000 @@
+export const EntropyAbi = [
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "oldFeeManager",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "newFeeManager",
+ type: "address",
+ },
+ ],
+ name: "ProviderFeeManagerUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "oldFee",
+ type: "uint128",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "newFee",
+ type: "uint128",
+ },
+ ],
+ name: "ProviderFeeUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint32",
+ name: "oldMaxNumHashes",
+ type: "uint32",
+ },
+ {
+ indexed: false,
+ internalType: "uint32",
+ name: "newMaxNumHashes",
+ type: "uint32",
+ },
+ ],
+ name: "ProviderMaxNumHashesAdvanced",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "bytes",
+ name: "oldUri",
+ type: "bytes",
+ },
+ {
+ indexed: false,
+ internalType: "bytes",
+ name: "newUri",
+ type: "bytes",
+ },
+ ],
+ name: "ProviderUriUpdated",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "uint128",
+ name: "accruedFeesInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "originalCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "originalCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "endSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "currentCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "currentCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "feeManager",
+ type: "address",
+ },
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.ProviderInfo",
+ name: "provider",
+ type: "tuple",
+ },
+ ],
+ name: "Registered",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ ],
+ name: "Requested",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: true,
+ internalType: "address",
+ name: "requestor",
+ type: "address",
+ },
+ {
+ indexed: true,
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ ],
+ name: "RequestedWithCallback",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "blockHash",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "Revealed",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ indexed: false,
+ internalType: "struct EntropyStructs.Request",
+ name: "request",
+ type: "tuple",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ {
+ indexed: false,
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "RevealedWithCallback",
+ type: "event",
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "address",
+ name: "recipient",
+ type: "address",
+ },
+ {
+ indexed: false,
+ internalType: "uint128",
+ name: "withdrawnAmount",
+ type: "uint128",
+ },
+ ],
+ name: "Withdrawal",
+ type: "event",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "advancedSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "advanceProviderCommitment",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes32",
+ name: "userRandomness",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRandomness",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "blockHash",
+ type: "bytes32",
+ },
+ ],
+ name: "combineRandomValues",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "combinedRandomness",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "pure",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes32",
+ name: "userRandomness",
+ type: "bytes32",
+ },
+ ],
+ name: "constructUserCommitment",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "userCommitment",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "pure",
+ type: "function",
+ },
+ {
+ inputs: [],
+ name: "getAccruedPythFees",
+ outputs: [
+ {
+ internalType: "uint128",
+ name: "accruedPythFeesInWei",
+ type: "uint128",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [],
+ name: "getDefaultProvider",
+ outputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ name: "getFee",
+ outputs: [
+ {
+ internalType: "uint128",
+ name: "feeAmount",
+ type: "uint128",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ ],
+ name: "getProviderInfo",
+ outputs: [
+ {
+ components: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "uint128",
+ name: "accruedFeesInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "originalCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "originalCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "endSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "currentCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "currentCommitmentSequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "feeManager",
+ type: "address",
+ },
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ internalType: "struct EntropyStructs.ProviderInfo",
+ name: "info",
+ type: "tuple",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ ],
+ name: "getRequest",
+ outputs: [
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "uint32",
+ name: "numHashes",
+ type: "uint32",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "uint64",
+ name: "blockNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "address",
+ name: "requester",
+ type: "address",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockhash",
+ type: "bool",
+ },
+ {
+ internalType: "bool",
+ name: "isRequestWithCallback",
+ type: "bool",
+ },
+ ],
+ internalType: "struct EntropyStructs.Request",
+ name: "req",
+ type: "tuple",
+ },
+ ],
+ stateMutability: "view",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "feeInWei",
+ type: "uint128",
+ },
+ {
+ internalType: "bytes32",
+ name: "commitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes",
+ name: "commitmentMetadata",
+ type: "bytes",
+ },
+ {
+ internalType: "uint64",
+ name: "chainLength",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes",
+ name: "uri",
+ type: "bytes",
+ },
+ ],
+ name: "register",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "bytes32",
+ name: "userCommitment",
+ type: "bytes32",
+ },
+ {
+ internalType: "bool",
+ name: "useBlockHash",
+ type: "bool",
+ },
+ ],
+ name: "request",
+ outputs: [
+ {
+ internalType: "uint64",
+ name: "assignedSequenceNumber",
+ type: "uint64",
+ },
+ ],
+ stateMutability: "payable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ ],
+ name: "requestWithCallback",
+ outputs: [
+ {
+ internalType: "uint64",
+ name: "assignedSequenceNumber",
+ type: "uint64",
+ },
+ ],
+ stateMutability: "payable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRevelation",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "reveal",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "randomNumber",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "sequenceNumber",
+ type: "uint64",
+ },
+ {
+ internalType: "bytes32",
+ name: "userRandomNumber",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes32",
+ name: "providerRevelation",
+ type: "bytes32",
+ },
+ ],
+ name: "revealWithCallback",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "manager",
+ type: "address",
+ },
+ ],
+ name: "setFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint32",
+ name: "maxNumHashes",
+ type: "uint32",
+ },
+ ],
+ name: "setMaxNumHashes",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "newFeeInWei",
+ type: "uint128",
+ },
+ ],
+ name: "setProviderFee",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint128",
+ name: "newFeeInWei",
+ type: "uint128",
+ },
+ ],
+ name: "setProviderFeeAsFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "bytes",
+ name: "newUri",
+ type: "bytes",
+ },
+ ],
+ name: "setProviderUri",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "uint128",
+ name: "amount",
+ type: "uint128",
+ },
+ ],
+ name: "withdraw",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [
+ {
+ internalType: "address",
+ name: "provider",
+ type: "address",
+ },
+ {
+ internalType: "uint128",
+ name: "amount",
+ type: "uint128",
+ },
+ ],
+ name: "withdrawAsFeeManager",
+ outputs: [],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+] as const;
diff --git a/apps/entropy-debug/src/lib/revelation.ts b/apps/entropy-debug/src/lib/revelation.ts
index b41b8d0f45..c7a1cdba8e 100644
--- a/apps/entropy-debug/src/lib/revelation.ts
+++ b/apps/entropy-debug/src/lib/revelation.ts
@@ -1,124 +1,77 @@
-import { createPublicClient, http, parseEventLogs, publicActions } from 'viem'
-import { EntropyAbi } from './EntropyAbi'
-import { EntropyDeployment, EntropyDeployments } from "@/store/EntropyDeployments";
+import { createPublicClient, http, parseEventLogs, publicActions } from "viem";
+import { z } from "zod";
-interface Revelation {
- value: {
- data: string;
- };
-}
-
-export async function requestCallback(txHash: string, chain: string): Promise {
- console.log("requestCallback", txHash, chain)
- const deployment = EntropyDeployments[chain]
- console.log("deployment", deployment)
- if (!deployment) {
- console.error("Deployment for chain not found", chain)
- throw new Error(`Deployment for chain ${chain} not found`)
- }
-
- let provider: string
- let sequenceNumber: bigint
- let userRandomNumber: string
-
- try {
- ({ provider, sequenceNumber, userRandomNumber } = await fetchInfoFromTx(txHash, deployment))
- } catch (error) {
- console.error("Error fetching info from tx:", error)
- throw new Error("We found an error message: " + error)
- }
+import { EntropyAbi } from "./entropy-abi";
+import {
+ type EntropyDeployment,
+ EntropyDeployments,
+} from "../store/entropy-deployments";
- let revelation: string | Revelation
- try {
- revelation = await getRevelation(chain, Number(sequenceNumber))
- } catch (error) {
- console.error("Error fetching revelation:", error)
- throw new Error("We found an error message: " + error)
- }
-
- console.log("revelation", revelation)
+export async function requestCallback(
+ txHash: string,
+ chain: keyof typeof EntropyDeployments,
+): Promise {
+ const deployment = EntropyDeployments[chain];
+ const { provider, sequenceNumber, userRandomNumber } = await fetchInfoFromTx(
+ txHash,
+ deployment,
+ );
+ const revelation = await getRevelation(chain, Number(sequenceNumber));
- // It means the there is an error message
- if (typeof revelation === "string") {
- console.error("We found an error message: " + revelation)
- throw new Error("We found an error message: " + revelation)
- }
-
- const message = `cast send ${deployment.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${provider} ${sequenceNumber} ${userRandomNumber} ${revelation.value.data} -r ${deployment.rpc} --private-key `
- console.log("message", message)
-
- return message
+ return `cast send ${deployment.address} 'revealWithCallback(address, uint64, bytes32, bytes32)' ${provider} ${sequenceNumber.toString()} ${userRandomNumber} ${revelation.value.data} -r ${deployment.rpc} --private-key `;
}
- export async function fetchInfoFromTx(txHash: string, deployment: EntropyDeployment) {
- const publicClient = createPublicClient({
- transport: http(deployment.rpc)
- }).extend(publicActions)
- if (!publicClient) {
- throw new Error(`Error creating public client for ${deployment}`)
- }
-
- const receipt = await publicClient.getTransactionReceipt({
- hash: txHash as `0x${string}`
- })
- if (!receipt) {
- throw new Error(`Transaction receipt not found for ${txHash}`)
- }
- console.log("receipt: ", receipt)
-
- const logs = parseEventLogs({
- abi: EntropyAbi,
- logs: receipt.logs,
- eventName: "RequestedWithCallback"
- })
- if (!logs) {
- throw new Error(`Error parsing logs for ${txHash}. Are you sure you send the requestCallback Transaction?`)
- }
- console.log("logs: ", logs)
-
- if (logs.length === 0) {
- throw new Error(`No logs found for ${txHash}. Are you sure you send the requestCallback Transaction?`)
- }
+export async function fetchInfoFromTx(
+ txHash: string,
+ deployment: EntropyDeployment,
+) {
+ const receipt = await createPublicClient({
+ transport: http(deployment.rpc),
+ })
+ .extend(publicActions)
+ .getTransactionReceipt({
+ hash: txHash as `0x${string}`,
+ });
- const provider = logs[0].args.provider
- const sequenceNumber = logs[0].args.sequenceNumber
- const userRandomNumber = logs[0].args.userRandomNumber
+ const logs = parseEventLogs({
+ abi: EntropyAbi,
+ logs: receipt.logs,
+ eventName: "RequestedWithCallback",
+ });
- return { provider, sequenceNumber, userRandomNumber }
- }
-
-export async function getRevelation(chain: string, sequenceNumber: number) {
- const deployment = EntropyDeployments[chain]
- if (!deployment) {
- throw new Error(`Deployment for chain ${chain} not found`)
+ const firstLog = logs[0];
+ if (firstLog) {
+ const { provider, sequenceNumber, userRandomNumber } = firstLog.args;
+ return { provider, sequenceNumber, userRandomNumber };
+ } else {
+ throw new Error(
+ `No logs found for ${txHash}. Are you sure you send the requestCallback Transaction?`,
+ );
}
+}
- let response: Response
-
- try {
- const isMainnet = deployment.network === "mainnet"
- const baseUrl = isMainnet
- ? "https://fortuna.dourolabs.app"
- : "https://fortuna-staging.dourolabs.app"
-
- response = await fetch(
- `${baseUrl}/v1/chains/${chain}/revelations/${sequenceNumber}`,
- {
- headers: {
- 'Content-Type': 'application/json',
- }
- }
- )
- } catch (error) {
- console.error("We found an error while fetching the revelation: " + error)
- throw new Error("We found an error while fetching the revelation: " + error)
- }
+export async function getRevelation(
+ chain: keyof typeof EntropyDeployments,
+ sequenceNumber: number,
+) {
+ const deployment = EntropyDeployments[chain];
+ const url = new URL(
+ `/v1/chains/${chain}/revelations/${sequenceNumber.toString()}`,
+ deployment.network === "mainnet"
+ ? "https://fortuna.dourolabs.app"
+ : "https://fortuna-staging.dourolabs.app",
+ );
+ const response = await fetch(url);
- if (response.status.toString().startsWith("4") || response.status.toString().startsWith("5")) {
- const errorMessage = await response.text()
- console.error("The provider returned an error:", errorMessage)
- throw new Error("The provider returned an error: " + errorMessage)
+ if (response.ok) {
+ return revelationSchema.parse(await response.json());
+ } else {
+ throw new Error(`The provider returned an error: ${await response.text()}`);
}
+}
- return await response.json()
-}
\ No newline at end of file
+const revelationSchema = z.object({
+ value: z.object({
+ data: z.string(),
+ }),
+});
diff --git a/apps/entropy-debug/src/lib/utils.ts b/apps/entropy-debug/src/lib/utils.ts
index 2e6014ca8a..a500a73858 100644
--- a/apps/entropy-debug/src/lib/utils.ts
+++ b/apps/entropy-debug/src/lib/utils.ts
@@ -1,12 +1,4 @@
-import { clsx, type ClassValue } from "clsx"
-import { twMerge } from "tailwind-merge"
-
-export function cn(...inputs: ClassValue[]) {
- return twMerge(clsx(inputs))
-}
-
-export function isValidTxHash(hash: string) {
- const cleanHash = hash.toLowerCase().replace('0x', '');
- return /^[a-f0-9]{64}$/.test(cleanHash);
-}
+import { clsx, type ClassValue } from "clsx";
+import { twMerge } from "tailwind-merge";
+export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
diff --git a/apps/entropy-debug/src/store/EntropyDeployments.tsx b/apps/entropy-debug/src/store/EntropyDeployments.tsx
deleted file mode 100644
index 40d856aad8..0000000000
--- a/apps/entropy-debug/src/store/EntropyDeployments.tsx
+++ /dev/null
@@ -1,399 +0,0 @@
-export interface EntropyDeployment {
- address: string;
- network: "mainnet" | "testnet";
- explorer: string;
- delay: string;
- gasLimit: string;
- rpc: string;
- nativeCurrency: string;
- }
-
- export const EntropyDeployments: Record = {
- blast: {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- network: "mainnet",
- explorer: "https://blastscan.io/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- rpc: "https://rpc.blast.io",
- nativeCurrency: "ETH",
- },
- "lightlink-phoenix": {
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- network: "mainnet",
- explorer: "https://phoenix.lightlink.io/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- rpc: "https://replicator.phoenix.lightlink.io/rpc/v1",
- nativeCurrency: "ETH",
- },
- chiliz: {
- address: "0x0708325268dF9F66270F1401206434524814508b",
- network: "mainnet",
- explorer: "https://scan.chiliz.com/address/$ADDRESS",
- delay: "12 blocks",
- gasLimit: "500K",
- rpc: "https://rpc.ankr.com/chiliz",
- nativeCurrency: "CHZ",
- },
- arbitrum: {
- address: "0x7698E925FfC29655576D0b361D75Af579e20AdAc",
- network: "mainnet",
- explorer: "https://arbiscan.io/address/$ADDRESS",
- delay: "6 blocks",
- gasLimit: "2.5M",
- rpc: "https://arb1.arbitrum.io/rpc",
- nativeCurrency: "ETH",
- },
- optimism: {
- address: "0xdF21D137Aadc95588205586636710ca2890538d5",
- network: "mainnet",
- explorer: "https://optimistic.etherscan.io/address/$ADDRESS",
- delay: "2 blocks",
- gasLimit: "500K",
- rpc: "https://rpc.ankr.com/optimism",
- nativeCurrency: "ETH",
- },
- mode: {
- address: "0x8D254a21b3C86D32F7179855531CE99164721933",
- network: "mainnet",
- explorer: "https://explorer.mode.network/address/$ADDRESS",
- delay: "2 blocks",
- gasLimit: "500K",
- rpc: "https://mainnet.mode.network/",
- nativeCurrency: "ETH",
- },
- zetachain: {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- network: "mainnet",
- explorer: "https://zetachain.blockscout.com/address/$ADDRESS",
- delay: "0 block",
- gasLimit: "500K",
- rpc: "https://zetachain-evm.blockpi.network/v1/rpc/public",
- nativeCurrency: "ZETA",
- },
- base: {
- address: "0x6E7D74FA7d5c90FEF9F0512987605a6d546181Bb",
- network: "mainnet",
- explorer: "https://basescan.org/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- rpc: "https://base.llamarpc.com",
- nativeCurrency: "ETH",
- },
- "lightlink-pegasus": {
- rpc: "https://replicator.pegasus.lightlink.io/rpc/v1",
- network: "testnet",
- delay: "",
- address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
- explorer: "https://pegasus.lightlink.io/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "chiliz-spicy": {
- rpc: "https://spicy-rpc.chiliz.com",
- network: "testnet",
- delay: "",
- address: "0xD458261E832415CFd3BAE5E416FdF3230ce6F134",
- explorer: "https://spicy-explorer.chiliz.com/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "CHZ",
- },
- "conflux-espace-testnet": {
- rpc: "https://evmtestnet.confluxrpc.com",
- network: "testnet",
- delay: "",
- address: "0xdF21D137Aadc95588205586636710ca2890538d5",
- explorer: "https://evmtestnet.confluxscan.io/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "CFX",
- },
- "mode-sepolia": {
- rpc: "https://sepolia.mode.network/",
- network: "testnet",
- delay: "",
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- explorer: "https://sepolia.explorer.mode.network/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "sei-evm-testnet": {
- rpc: "https://evm-rpc-testnet.sei-apis.com",
- network: "testnet",
- delay: "",
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://seitrace.com/address/$ADDRESS?chain=atlantic-2",
- gasLimit: "500K",
- nativeCurrency: "SEI",
- },
- "arbitrum-sepolia": {
- rpc: "https://sepolia-rollup.arbitrum.io/rpc",
- network: "testnet",
- delay: "",
- address: "0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440",
- explorer: "https://sepolia.arbiscan.io/address/$ADDRESS",
- gasLimit: "2.5M",
- nativeCurrency: "ETH",
- },
- "fantom-sonic": {
- rpc: "https://rpc.testnet.soniclabs.com",
- network: "testnet",
- delay: "",
- address: "0x5124FAE0890dE83B3bb2cc30Bb3EDAfFc07Da744",
- explorer: "https://testnet.soniclabs.com/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "S",
- },
- "blast-testnet": {
- rpc: "https://sepolia.blast.io",
- network: "testnet",
- delay: "",
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- explorer: "https://testnet.blastscan.io/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "optimism-sepolia": {
- rpc: "https://api.zan.top/opt-sepolia",
- network: "testnet",
- delay: "",
- address: "0x4821932D0CDd71225A6d914706A621e0389D7061",
- explorer: "https://optimism-sepolia.blockscout.com/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "base-sepolia": {
- rpc: "https://sepolia.base.org",
- network: "testnet",
- delay: "",
- address: "0x41c9e39574F40Ad34c79f1C99B66A45eFB830d4c",
- explorer: "https://base-sepolia.blockscout.com/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "berachain-testnet-v2": {
- rpc: "https://evm-rpc-bera.rhino-apis.com/",
- network: "testnet",
- delay: "",
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://bartio.beratrail.io/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "BERA",
- },
- "coredao-testnet": {
- rpc: "https://rpc.test.btcs.network",
- network: "testnet",
- delay: "",
- address: "0xf0a1b566B55e0A0CB5BeF52Eb2a57142617Bee67",
- explorer: "https://scan.test.btcs.network/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "tCORE",
- },
- "zetachain-testnet": {
- rpc: "https://zetachain-athens-evm.blockpi.network/v1/rpc/public",
- network: "testnet",
- delay: "",
- address: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",
- explorer: "https://explorer.zetachain.com/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ZETA",
- },
- "taiko-hekla": {
- rpc: "https://rpc.hekla.taiko.xyz/",
- network: "testnet",
- delay: "",
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- explorer: "https://hekla.taikoscan.network/address/$ADDRESS",
- gasLimit: "500K",
- nativeCurrency: "ETH",
- },
- "orange-testnet": {
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- explorer: "https://subnets-test.avax.network/orangetest/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://subnets.avax.network/orangetest/testnet/rpc",
- nativeCurrency: "JUICE",
- },
- "sei-evm-mainnet": {
- address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
- explorer: "https://seitrace.com/address/$ADDRESS?chain=pacific-1",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://evm-rpc.sei-apis.com",
- nativeCurrency: "SEI",
- },
- merlin: {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://scan.merlinchain.io/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://rpc.merlinchain.io",
- nativeCurrency: "BTC",
- },
- "merlin-testnet": {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- explorer: "https://testnet-scan.merlinchain.io/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://testnet-rpc.merlinchain.io/",
- nativeCurrency: "BTC",
- },
- taiko: {
- address: "0x26DD80569a8B23768A1d80869Ed7339e07595E85",
- explorer: "https://taikoscan.io/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://rpc.mainnet.taiko.xyz",
- nativeCurrency: "ETH",
- },
- "etherlink-testnet": {
- address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
- explorer: "https://testnet.explorer.etherlink.com/address/$ADDRESS",
- delay: "",
- gasLimit: "15M",
- network: "testnet",
- rpc: "https://node.ghostnet.etherlink.com",
- nativeCurrency: "XTZ",
- },
- etherlink: {
- address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
- explorer: "https://explorer.etherlink.com/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "15M",
- network: "mainnet",
- rpc: "https://node.mainnet.etherlink.com/",
- nativeCurrency: "XTZ",
- },
- kaia: {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://kaiascan.io/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://rpc.ankr.com/klaytn",
- nativeCurrency: "KLAY",
- },
- "kaia-testnet": {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://kairos.kaiascan.io/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://rpc.ankr.com/klaytn_testnet",
- nativeCurrency: "KLAY",
- },
- "tabi-testnet": {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://testnet.tabiscan.com/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://rpc-internal.testnet.tabichain.com/",
- nativeCurrency: "TABI",
- },
- "b3-testnet": {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- explorer: "https://sepolia.explorer.b3.fun/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://sepolia.b3.fun/http/",
- nativeCurrency: "ETH",
- },
- "b3-mainnet": {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- explorer: "https://explorer.b3.fun/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://mainnet-rpc.b3.fun/http",
- nativeCurrency: "ETH",
- },
- "apechain-testnet": {
- address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
- explorer: "https://curtis.explorer.caldera.xyz/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://curtis.rpc.caldera.xyz/http",
- nativeCurrency: "APE",
- },
- "soneium-minato-testnet": {
- address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
- explorer: "https://explorer-testnet.soneium.org/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://rpc.minato.soneium.org/",
- nativeCurrency: "ETH",
- },
- sanko: {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- explorer: "https://explorer.sanko.xyz/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://mainnet.sanko.xyz",
- nativeCurrency: "DMT",
- },
- "sanko-testnet": {
- address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
- explorer: "https://sanko-arb-sepolia.explorer.caldera.xyz/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://sanko-arb-sepolia.rpc.caldera.xyz/http",
- nativeCurrency: "DMT",
- },
- apechain: {
- address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
- explorer: "https://apechain.calderaexplorer.xyz/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://apechain.calderachain.xyz/http",
- nativeCurrency: "APE",
- },
- "abstract-testnet": {
- address: "0x858687fD592112f7046E394A3Bf10D0C11fF9e63",
- explorer: "https://explorer.testnet.abs.xyz/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://api.testnet.abs.xyz",
- nativeCurrency: "ETH",
- },
- "fantom-sonic-devnet": {
- address: "0xebe57e8045f2f230872523bbff7374986e45c486",
- explorer: "https://blaze.soniclabs.com/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://rpc.blaze.soniclabs.com",
- nativeCurrency: "S",
- },
- "unichain-sepolia": {
- address: "0x8D254a21b3C86D32F7179855531CE99164721933",
- explorer: "https://unichain-sepolia.blockscout.com/address/$ADDRESS",
- delay: "",
- gasLimit: "500K",
- network: "testnet",
- rpc: "https://sepolia.unichain.org",
- nativeCurrency: "ETH",
- },
- "sonic-fantom": {
- address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
- explorer: "https://monitor.soniclabs.com/address/$ADDRESS",
- delay: "1 block",
- gasLimit: "500K",
- network: "mainnet",
- rpc: "https://rpc.soniclabs.com",
- nativeCurrency: "S",
- },
- };
\ No newline at end of file
diff --git a/apps/entropy-debug/src/store/entropy-deployments.ts b/apps/entropy-debug/src/store/entropy-deployments.ts
new file mode 100644
index 0000000000..5ad2379ab6
--- /dev/null
+++ b/apps/entropy-debug/src/store/entropy-deployments.ts
@@ -0,0 +1,395 @@
+export type EntropyDeployment = {
+ address: string;
+ network: "mainnet" | "testnet";
+ explorer: string;
+ delay: string;
+ gasLimit: string;
+ rpc?: string;
+ nativeCurrency: string;
+};
+
+export const EntropyDeployments = {
+ blast: {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ network: "mainnet",
+ explorer: "https://blastscan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://rpc.blast.io",
+ nativeCurrency: "ETH",
+ },
+ "lightlink-phoenix": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ network: "mainnet",
+ explorer: "https://phoenix.lightlink.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://replicator.phoenix.lightlink.io/rpc/v1",
+ nativeCurrency: "ETH",
+ },
+ chiliz: {
+ address: "0x0708325268dF9F66270F1401206434524814508b",
+ network: "mainnet",
+ explorer: "https://scan.chiliz.com/address/$ADDRESS",
+ delay: "12 blocks",
+ gasLimit: "500K",
+ rpc: "https://rpc.ankr.com/chiliz",
+ nativeCurrency: "CHZ",
+ },
+ arbitrum: {
+ address: "0x7698E925FfC29655576D0b361D75Af579e20AdAc",
+ network: "mainnet",
+ explorer: "https://arbiscan.io/address/$ADDRESS",
+ delay: "6 blocks",
+ gasLimit: "2.5M",
+ rpc: "https://arb1.arbitrum.io/rpc",
+ nativeCurrency: "ETH",
+ },
+ optimism: {
+ address: "0xdF21D137Aadc95588205586636710ca2890538d5",
+ network: "mainnet",
+ explorer: "https://optimistic.etherscan.io/address/$ADDRESS",
+ delay: "2 blocks",
+ gasLimit: "500K",
+ rpc: "https://rpc.ankr.com/optimism",
+ nativeCurrency: "ETH",
+ },
+ mode: {
+ address: "0x8D254a21b3C86D32F7179855531CE99164721933",
+ network: "mainnet",
+ explorer: "https://explorer.mode.network/address/$ADDRESS",
+ delay: "2 blocks",
+ gasLimit: "500K",
+ rpc: "https://mainnet.mode.network/",
+ nativeCurrency: "ETH",
+ },
+ zetachain: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ network: "mainnet",
+ explorer: "https://zetachain.blockscout.com/address/$ADDRESS",
+ delay: "0 block",
+ gasLimit: "500K",
+ rpc: "https://zetachain-evm.blockpi.network/v1/rpc/public",
+ nativeCurrency: "ZETA",
+ },
+ base: {
+ address: "0x6E7D74FA7d5c90FEF9F0512987605a6d546181Bb",
+ network: "mainnet",
+ explorer: "https://basescan.org/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ rpc: "https://developer-access-mainnet.base.org/",
+ nativeCurrency: "ETH",
+ },
+ "lightlink-pegasus": {
+ rpc: "https://replicator.pegasus.lightlink.io/rpc/v1",
+ network: "testnet",
+ delay: "",
+ address: "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a",
+ explorer: "https://pegasus.lightlink.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "chiliz-spicy": {
+ rpc: "https://spicy-rpc.chiliz.com",
+ network: "testnet",
+ delay: "",
+ address: "0xD458261E832415CFd3BAE5E416FdF3230ce6F134",
+ explorer: "https://spicy-explorer.chiliz.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "CHZ",
+ },
+ "conflux-espace-testnet": {
+ rpc: "https://evmtestnet.confluxrpc.com",
+ network: "testnet",
+ delay: "",
+ address: "0xdF21D137Aadc95588205586636710ca2890538d5",
+ explorer: "https://evmtestnet.confluxscan.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "CFX",
+ },
+ "mode-sepolia": {
+ rpc: "https://sepolia.mode.network/",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://sepolia.explorer.mode.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "sei-evm-testnet": {
+ rpc: "https://evm-rpc-testnet.sei-apis.com",
+ network: "testnet",
+ delay: "",
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://seitrace.com/address/$ADDRESS?chain=atlantic-2",
+ gasLimit: "500K",
+ nativeCurrency: "SEI",
+ },
+ "arbitrum-sepolia": {
+ rpc: "https://sepolia-rollup.arbitrum.io/rpc",
+ network: "testnet",
+ delay: "",
+ address: "0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440",
+ explorer: "https://sepolia.arbiscan.io/address/$ADDRESS",
+ gasLimit: "2.5M",
+ nativeCurrency: "ETH",
+ },
+ "blast-testnet": {
+ rpc: "https://sepolia.blast.io",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://testnet.blastscan.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "optimism-sepolia": {
+ rpc: "https://api.zan.top/opt-sepolia",
+ network: "testnet",
+ delay: "",
+ address: "0x4821932D0CDd71225A6d914706A621e0389D7061",
+ explorer: "https://optimism-sepolia.blockscout.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "base-sepolia": {
+ rpc: "https://sepolia.base.org",
+ network: "testnet",
+ delay: "",
+ address: "0x41c9e39574F40Ad34c79f1C99B66A45eFB830d4c",
+ explorer: "https://base-sepolia.blockscout.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "berachain-testnet-v2": {
+ rpc: "https://evm-rpc-bera.rhino-apis.com/",
+ network: "testnet",
+ delay: "",
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://bartio.beratrail.io/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "BERA",
+ },
+ "coredao-testnet": {
+ rpc: "https://rpc.test.btcs.network",
+ network: "testnet",
+ delay: "",
+ address: "0xf0a1b566B55e0A0CB5BeF52Eb2a57142617Bee67",
+ explorer: "https://scan.test.btcs.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "tCORE",
+ },
+ "zetachain-testnet": {
+ rpc: "https://zetachain-athens-evm.blockpi.network/v1/rpc/public",
+ network: "testnet",
+ delay: "",
+ address: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF",
+ explorer: "https://explorer.zetachain.com/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ZETA",
+ },
+ "taiko-hekla": {
+ rpc: "https://rpc.hekla.taiko.xyz/",
+ network: "testnet",
+ delay: "",
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://hekla.taikoscan.network/address/$ADDRESS",
+ gasLimit: "500K",
+ nativeCurrency: "ETH",
+ },
+ "orange-testnet": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://subnets-test.avax.network/orangetest/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://subnets.avax.network/orangetest/testnet/rpc",
+ nativeCurrency: "JUICE",
+ },
+ "sei-evm-mainnet": {
+ address: "0x98046Bd286715D3B0BC227Dd7a956b83D8978603",
+ explorer: "https://seitrace.com/address/$ADDRESS?chain=pacific-1",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://evm-rpc.sei-apis.com",
+ nativeCurrency: "SEI",
+ },
+ merlin: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://scan.merlinchain.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.merlinchain.io",
+ nativeCurrency: "BTC",
+ },
+ "merlin-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://testnet-scan.merlinchain.io/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://testnet-rpc.merlinchain.io/",
+ nativeCurrency: "BTC",
+ },
+ taiko: {
+ address: "0x26DD80569a8B23768A1d80869Ed7339e07595E85",
+ explorer: "https://taikoscan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.mainnet.taiko.xyz",
+ nativeCurrency: "ETH",
+ },
+ "etherlink-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://testnet.explorer.etherlink.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "15M",
+ network: "testnet",
+ rpc: "https://node.ghostnet.etherlink.com",
+ nativeCurrency: "XTZ",
+ },
+ etherlink: {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://explorer.etherlink.com/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "15M",
+ network: "mainnet",
+ rpc: "https://node.mainnet.etherlink.com/",
+ nativeCurrency: "XTZ",
+ },
+ kaia: {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://kaiascan.io/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.ankr.com/klaytn",
+ nativeCurrency: "KLAY",
+ },
+ "kaia-testnet": {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://kairos.kaiascan.io/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.ankr.com/klaytn_testnet",
+ nativeCurrency: "KLAY",
+ },
+ "tabi-testnet": {
+ address: "0xEbe57e8045F2F230872523bbff7374986E45C486",
+ explorer: "https://testnetv2.tabiscan.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.testnetv2.tabichain.com",
+ nativeCurrency: "TABI",
+ },
+ "b3-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://sepolia.explorer.b3.fun/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sepolia.b3.fun/http/",
+ nativeCurrency: "ETH",
+ },
+ "b3-mainnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://explorer.b3.fun/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://mainnet-rpc.b3.fun/http",
+ nativeCurrency: "ETH",
+ },
+ "apechain-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://curtis.explorer.caldera.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://curtis.rpc.caldera.xyz/http",
+ nativeCurrency: "APE",
+ },
+ "soneium-minato-testnet": {
+ address: "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509",
+ explorer: "https://explorer-testnet.soneium.org/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.minato.soneium.org/",
+ nativeCurrency: "ETH",
+ },
+ sanko: {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://explorer.sanko.xyz/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://mainnet.sanko.xyz",
+ nativeCurrency: "DMT",
+ },
+ "sanko-testnet": {
+ address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb",
+ explorer: "https://sanko-arb-sepolia.explorer.caldera.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sanko-arb-sepolia.rpc.caldera.xyz/http",
+ nativeCurrency: "DMT",
+ },
+ "apechain-mainnet": {
+ address: "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320",
+ explorer: "https://apechain.calderaexplorer.xyz/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://apechain.calderachain.xyz/http",
+ nativeCurrency: "APE",
+ },
+ "abstract-testnet": {
+ address: "0x858687fD592112f7046E394A3Bf10D0C11fF9e63",
+ explorer: "https://explorer.testnet.abs.xyz/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://api.testnet.abs.xyz",
+ nativeCurrency: "ETH",
+ },
+ "sonic-fantom-testnet": {
+ address: "0xebe57e8045f2f230872523bbff7374986e45c486",
+ explorer: "https://blaze.soniclabs.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://rpc.blaze.soniclabs.com",
+ nativeCurrency: "S",
+ },
+ "unichain-sepolia": {
+ address: "0x8D254a21b3C86D32F7179855531CE99164721933",
+ explorer: "https://unichain-sepolia.blockscout.com/address/$ADDRESS",
+ delay: "",
+ gasLimit: "500K",
+ network: "testnet",
+ rpc: "https://sepolia.unichain.org",
+ nativeCurrency: "ETH",
+ },
+ sonic: {
+ address: "0x36825bf3fbdf5a29e2d5148bfe7dcf7b5639e320",
+ explorer: "https://sonicscan.org/address/$ADDRESS",
+ delay: "1 block",
+ gasLimit: "500K",
+ network: "mainnet",
+ rpc: "https://rpc.soniclabs.com",
+ nativeCurrency: "S",
+ },
+} as const satisfies Record;
+
+export const isValidDeployment = (
+ name: string,
+): name is keyof typeof EntropyDeployments =>
+ Object.prototype.hasOwnProperty.call(EntropyDeployments, name);
diff --git a/apps/entropy-debug/tailwind.config.ts b/apps/entropy-debug/tailwind.config.ts
index 266c06d616..8db08f14ea 100644
--- a/apps/entropy-debug/tailwind.config.ts
+++ b/apps/entropy-debug/tailwind.config.ts
@@ -1,62 +1,63 @@
import type { Config } from "tailwindcss";
+import animate from "tailwindcss-animate";
export default {
- darkMode: ["class"],
- content: [
+ darkMode: ["class"],
+ content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
- extend: {
- colors: {
- background: 'hsl(var(--background))',
- foreground: 'hsl(var(--foreground))',
- card: {
- DEFAULT: 'hsl(var(--card))',
- foreground: 'hsl(var(--card-foreground))'
- },
- popover: {
- DEFAULT: 'hsl(var(--popover))',
- foreground: 'hsl(var(--popover-foreground))'
- },
- primary: {
- DEFAULT: 'hsl(var(--primary))',
- foreground: 'hsl(var(--primary-foreground))'
- },
- secondary: {
- DEFAULT: 'hsl(var(--secondary))',
- foreground: 'hsl(var(--secondary-foreground))'
- },
- muted: {
- DEFAULT: 'hsl(var(--muted))',
- foreground: 'hsl(var(--muted-foreground))'
- },
- accent: {
- DEFAULT: 'hsl(var(--accent))',
- foreground: 'hsl(var(--accent-foreground))'
- },
- destructive: {
- DEFAULT: 'hsl(var(--destructive))',
- foreground: 'hsl(var(--destructive-foreground))'
- },
- border: 'hsl(var(--border))',
- input: 'hsl(var(--input))',
- ring: 'hsl(var(--ring))',
- chart: {
- '1': 'hsl(var(--chart-1))',
- '2': 'hsl(var(--chart-2))',
- '3': 'hsl(var(--chart-3))',
- '4': 'hsl(var(--chart-4))',
- '5': 'hsl(var(--chart-5))'
- }
- },
- borderRadius: {
- lg: 'var(--radius)',
- md: 'calc(var(--radius) - 2px)',
- sm: 'calc(var(--radius) - 4px)'
- }
- }
+ extend: {
+ colors: {
+ background: "hsl(var(--background))",
+ foreground: "hsl(var(--foreground))",
+ card: {
+ DEFAULT: "hsl(var(--card))",
+ foreground: "hsl(var(--card-foreground))",
+ },
+ popover: {
+ DEFAULT: "hsl(var(--popover))",
+ foreground: "hsl(var(--popover-foreground))",
+ },
+ primary: {
+ DEFAULT: "hsl(var(--primary))",
+ foreground: "hsl(var(--primary-foreground))",
+ },
+ secondary: {
+ DEFAULT: "hsl(var(--secondary))",
+ foreground: "hsl(var(--secondary-foreground))",
+ },
+ muted: {
+ DEFAULT: "hsl(var(--muted))",
+ foreground: "hsl(var(--muted-foreground))",
+ },
+ accent: {
+ DEFAULT: "hsl(var(--accent))",
+ foreground: "hsl(var(--accent-foreground))",
+ },
+ destructive: {
+ DEFAULT: "hsl(var(--destructive))",
+ foreground: "hsl(var(--destructive-foreground))",
+ },
+ border: "hsl(var(--border))",
+ input: "hsl(var(--input))",
+ ring: "hsl(var(--ring))",
+ chart: {
+ "1": "hsl(var(--chart-1))",
+ "2": "hsl(var(--chart-2))",
+ "3": "hsl(var(--chart-3))",
+ "4": "hsl(var(--chart-4))",
+ "5": "hsl(var(--chart-5))",
+ },
+ },
+ borderRadius: {
+ lg: "var(--radius)",
+ md: "calc(var(--radius) - 2px)",
+ sm: "calc(var(--radius) - 4px)",
+ },
+ },
},
- plugins: [require("tailwindcss-animate")],
+ plugins: [animate],
} satisfies Config;
diff --git a/apps/entropy-debug/tsconfig.json b/apps/entropy-debug/tsconfig.json
index c1334095f8..dfd9bf96d0 100644
--- a/apps/entropy-debug/tsconfig.json
+++ b/apps/entropy-debug/tsconfig.json
@@ -1,27 +1,5 @@
{
- "compilerOptions": {
- "target": "ES2017",
- "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"],
+ "extends": "@cprussin/tsconfig/nextjs.json",
+ "include": ["svg.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
diff --git a/apps/entropy-debug/turbo.json b/apps/entropy-debug/turbo.json
new file mode 100644
index 0000000000..8e880d4aeb
--- /dev/null
+++ b/apps/entropy-debug/turbo.json
@@ -0,0 +1,19 @@
+{
+ "$schema": "https://turbo.build/schema.json",
+ "extends": ["//"],
+ "tasks": {
+ "build": {
+ "dependsOn": ["^build"],
+ "outputs": [".next/**", "!.next/cache/**"]
+ },
+ "start:dev": {
+ "persistent": true,
+ "cache": false
+ },
+ "start:prod": {
+ "dependsOn": ["build"],
+ "persistent": true,
+ "cache": false
+ }
+ }
+}
diff --git a/apps/entropy-debug/vercel.json b/apps/entropy-debug/vercel.json
index 39d12cfbc9..fc8b38fe1e 100644
--- a/apps/entropy-debug/vercel.json
+++ b/apps/entropy-debug/vercel.json
@@ -1,9 +1,3 @@
{
- "version": 2,
- "builds": [
- {
- "src": "package.json",
- "use": "@vercel/next"
- }
- ]
-}
\ No newline at end of file
+ "ignoreCommand": "pnpm dlx turbo-ignore --fallback=HEAD^"
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e664f65b69..279ec37436 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -174,6 +174,9 @@ catalogs:
swr:
specifier: 2.2.5
version: 2.2.5
+ tailwindcss:
+ specifier: 3.4.14
+ version: 3.4.14
typescript:
specifier: 5.6.3
version: 5.6.3
@@ -228,7 +231,7 @@ importers:
version: 2.1.4(react@19.0.0)
'@next/third-parties':
specifier: ^14.2.4
- version: 14.2.4(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)
+ version: 14.2.4(next@15.1.0(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)
'@pythnetwork/client':
specifier: ^2.22.0
version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -249,7 +252,7 @@ importers:
version: 2.1.1
connectkit:
specifier: ^1.8.2
- version: 1.8.2(cwnwljk3n25tzd5weih3j2cexi)
+ version: 1.8.2(6anadc4dr5vwtj2ynlqfbej324)
cryptocurrency-icons:
specifier: ^0.18.1
version: 0.18.1
@@ -258,7 +261,7 @@ importers:
version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
next:
specifier: 'catalog:'
- version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
+ version: 15.1.0(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
@@ -282,7 +285,7 @@ importers:
version: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: ^2.10.4
- version: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -292,10 +295,10 @@ importers:
version: 4.9.1
'@cprussin/eslint-config':
specifier: 'catalog:'
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
'@cprussin/jest-config':
specifier: 'catalog:'
- version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ version: 1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
'@cprussin/prettier-config':
specifier: 'catalog:'
version: 2.1.1(prettier@3.3.2)
@@ -349,71 +352,92 @@ importers:
dependencies:
'@radix-ui/react-select':
specifier: ^2.1.2
- version: 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ version: 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ version: 1.1.1(@types/react@19.0.1)(react@19.0.0)
'@radix-ui/react-switch':
specifier: ^1.1.1
- version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
clsx:
- specifier: ^2.1.1
+ specifier: 'catalog:'
version: 2.1.1
- ethers:
- specifier: ^6.13.4
- version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@6.0.4)
highlight.js:
specifier: ^11.10.0
- version: 11.11.0
+ version: 11.11.1
lucide-react:
specifier: ^0.465.0
- version: 0.465.0(react@19.0.0-rc-66855b96-20241106)
+ version: 0.465.0(react@19.0.0)
next:
- specifier: 15.0.3
- version: 15.0.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(sass@1.80.7)
+ specifier: 'catalog:'
+ version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
react:
- specifier: 19.0.0-rc-66855b96-20241106
- version: 19.0.0-rc-66855b96-20241106
+ specifier: 'catalog:'
+ version: 19.0.0
react-dom:
- specifier: 19.0.0-rc-66855b96-20241106
- version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ specifier: 'catalog:'
+ version: 19.0.0(react@19.0.0)
tailwind-merge:
specifier: ^2.5.5
- version: 2.5.5
+ version: 2.6.0
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))
+ version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
viem:
specifier: ^2.21.53
- version: 2.21.56(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@6.0.4)(zod@3.23.8)
+ version: 2.22.9(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@6.0.4)(zod@3.23.8)
+ zod:
+ specifier: 'catalog:'
+ version: 3.23.8
devDependencies:
+ '@cprussin/eslint-config':
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)
+ '@cprussin/jest-config':
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(sass@1.80.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4)
+ '@cprussin/prettier-config':
+ specifier: 'catalog:'
+ version: 2.1.1(prettier@3.3.3)
+ '@cprussin/tsconfig':
+ specifier: 'catalog:'
+ version: 3.0.1
+ '@types/jest':
+ specifier: 'catalog:'
+ version: 29.5.14
'@types/node':
- specifier: ^20
- version: 20.14.15
+ specifier: 'catalog:'
+ version: 22.8.2
'@types/react':
- specifier: ^18
- version: 18.3.11
+ specifier: 'catalog:'
+ version: 19.0.1
'@types/react-dom':
- specifier: ^18
- version: 18.3.5(@types/react@18.3.11)
+ specifier: 'catalog:'
+ version: 19.0.2(@types/react@19.0.1)
eslint:
- specifier: ^8
- version: 8.57.0
- eslint-config-next:
- specifier: 15.0.3
- version: 15.0.3(eslint@8.57.0)(typescript@5.5.4)
+ specifier: 'catalog:'
+ version: 9.13.0(jiti@1.21.0)
+ jest:
+ specifier: 'catalog:'
+ version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
postcss:
- specifier: ^8
+ specifier: 'catalog:'
version: 8.4.47
+ prettier:
+ specifier: 'catalog:'
+ version: 3.3.3
tailwindcss:
- specifier: ^3.4.1
- version: 3.4.14(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
+ specifier: 'catalog:'
+ version: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
typescript:
- specifier: ^5
- version: 5.5.4
+ specifier: 'catalog:'
+ version: 5.6.3
+ vercel:
+ specifier: 'catalog:'
+ version: 37.12.1(encoding@0.1.13)
apps/hermes/client/js:
dependencies:
@@ -891,16 +915,16 @@ importers:
dependencies:
'@certusone/wormhole-sdk':
specifier: ^0.9.8
- version: 0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
+ version: 0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
'@coral-xyz/anchor':
specifier: ^0.29.0
- version: 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@cosmjs/cosmwasm-stargate':
specifier: ^0.32.3
- version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stargate':
specifier: ^0.32.3
- version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@injectivelabs/networks':
specifier: ^1.14.6
version: 1.14.6(google-protobuf@3.21.4)
@@ -909,7 +933,7 @@ importers:
version: 1.3.0(svelte@4.2.18)(typescript@5.4.5)
'@pythnetwork/client':
specifier: ^2.22.0
- version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@pythnetwork/cosmwasm-deploy-tools':
specifier: workspace:*
version: link:../target_chains/cosmwasm/tools
@@ -948,10 +972,10 @@ importers:
version: link:../governance/xc_admin/packages/xc_admin_common
'@solana/web3.js':
specifier: 1.92.3
- version: 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@sqds/mesh':
specifier: ^1.0.6
- version: 1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@ton/blueprint':
specifier: ^0.22.0
version: 0.22.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)(@ton/ton@15.1.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0))(@types/node@22.8.2)(encoding@0.1.13)(typescript@5.4.5)
@@ -996,7 +1020,7 @@ importers:
version: 5.4.5
web3:
specifier: ^1.8.2
- version: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-eth-contract:
specifier: ^1.8.2
version: 1.10.0(encoding@0.1.13)
@@ -1006,7 +1030,7 @@ importers:
devDependencies:
'@types/web3':
specifier: ^1.2.2
- version: 1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
eslint:
specifier: ^8.0.0
version: 8.56.0
@@ -1021,7 +1045,7 @@ importers:
dependencies:
'@openzeppelin/contracts':
specifier: ^4.5.0
- version: 4.8.1
+ version: 4.9.6
'@pythnetwork/express-relay-js':
specifier: workspace:*
version: link:../../sdk/js
@@ -1039,17 +1063,17 @@ importers:
version: link:../../../target_chains/ethereum/sdk/solidity
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5)
+ version: 10.9.2(@types/node@22.8.2)(typescript@5.5.4)
typescript:
specifier: ^5.3.3
- version: 5.4.5
+ version: 5.5.4
viem:
specifier: ^2.7.6
- version: 2.8.13(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8)
+ version: 2.22.9(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@6.0.4)(zod@3.23.8)
devDependencies:
'@types/yargs':
specifier: ^17.0.10
- version: 17.0.32
+ version: 17.0.33
eslint:
specifier: ^8.56.0
version: 8.57.0
@@ -1058,7 +1082,7 @@ importers:
version: 2.8.8
typedoc:
specifier: ^0.25.7
- version: 0.25.7(typescript@5.4.5)
+ version: 0.25.7(typescript@5.5.4)
yargs:
specifier: ^17.4.1
version: 17.7.2
@@ -1070,7 +1094,7 @@ importers:
version: 0.30.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@kamino-finance/limo-sdk':
specifier: ^0.3.0
- version: 0.3.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(chai@5.1.1)(decimal.js@10.4.3)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)(utf-8-validate@5.0.10)
+ version: 0.3.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(chai@5.1.1)(decimal.js@10.4.3)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -1079,7 +1103,7 @@ importers:
version: 10.4.3
isomorphic-ws:
specifier: ^5.0.0
- version: 5.0.0(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ version: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
openapi-client-axios:
specifier: ^7.5.5
version: 7.5.5(axios@1.7.7)(js-yaml@4.1.0)
@@ -1088,32 +1112,32 @@ importers:
version: 0.8.2
viem:
specifier: ^2.16.2
- version: 2.16.2(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
+ version: 2.22.9(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
ws:
specifier: ^8.17.1
- version: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
devDependencies:
'@pythnetwork/pyth-evm-js':
specifier: workspace:*
version: link:../../../target_chains/ethereum/sdk/js
'@types/node':
specifier: ^20.14.9
- version: 20.14.9
+ version: 20.14.15
'@types/yargs':
specifier: ^17.0.32
- version: 17.0.32
+ version: 17.0.33
'@typescript-eslint/eslint-plugin':
specifier: ^6.21.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/parser':
specifier: ^6.21.0
- version: 6.21.0(eslint@8.57.0)(typescript@5.5.2)
+ version: 6.21.0(eslint@8.57.0)(typescript@5.5.4)
eslint:
specifier: ^8.57.0
version: 8.57.0
jest:
specifier: ^27.5.1
- version: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ version: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
openapi-typescript:
specifier: 6.5.5
version: 6.5.5
@@ -1122,7 +1146,7 @@ importers:
version: 2.8.8
typescript:
specifier: ^5.5.2
- version: 5.5.2
+ version: 5.5.4
yargs:
specifier: ^17.7.2
version: 17.7.2
@@ -1137,7 +1161,7 @@ importers:
version: 2.8.8
prettier-plugin-solidity:
specifier: ^1.0.0-rc.1
- version: 1.1.3(prettier@2.8.8)
+ version: 1.3.1(prettier@2.8.8)
governance/pyth_staking_sdk:
dependencies:
@@ -1729,7 +1753,7 @@ importers:
version: 8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))
'@storybook/nextjs':
specifier: 'catalog:'
- version: 8.3.5(esbuild@0.22.0)(next@15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))
+ version: 8.3.5(esbuild@0.22.0)(next@15.1.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))
'@storybook/react':
specifier: 'catalog:'
version: 8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)
@@ -2660,7 +2684,7 @@ importers:
dependencies:
'@certusone/wormhole-sdk':
specifier: ^0.9.12
- version: 0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.4)
+ version: 0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
'@mysten/sui':
specifier: ^1.3.0
version: 1.3.0(svelte@4.2.18)(typescript@5.4.5)
@@ -2669,7 +2693,7 @@ importers:
version: link:../../../contract_manager
'@pythnetwork/price-service-client':
specifier: ^1.4.0
- version: 1.9.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ version: 1.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@pythnetwork/price-service-sdk':
specifier: ^1.2.0
version: 1.7.1
@@ -3085,14 +3109,6 @@ packages:
resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.7':
- resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.25.2':
- resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.25.8':
resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
engines: {node: '>=6.9.0'}
@@ -3156,14 +3172,6 @@ packages:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.7':
- resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.25.2':
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.25.7':
resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
engines: {node: '>=6.9.0'}
@@ -3242,10 +3250,6 @@ packages:
resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
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.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
@@ -3266,12 +3270,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-module-transforms@7.25.2':
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-module-transforms@7.25.7':
resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
engines: {node: '>=6.9.0'}
@@ -3390,14 +3388,6 @@ packages:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.7':
- resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-option@7.24.8':
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-option@7.25.7':
resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
engines: {node: '>=6.9.0'}
@@ -3418,10 +3408,6 @@ packages:
resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.7':
- resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.25.7':
resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
engines: {node: '>=6.9.0'}
@@ -3691,12 +3677,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.25.7':
resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
engines: {node: '>=6.9.0'}
@@ -4510,10 +4490,6 @@ packages:
resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.25.0':
- resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.25.7':
resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
engines: {node: '>=6.9.0'}
@@ -5212,10 +5188,6 @@ packages:
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@eslint/core@0.7.0':
resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -5236,10 +5208,6 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@9.12.0':
- resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@eslint/js@9.13.0':
resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -6333,8 +6301,8 @@ packages:
resolution: {integrity: sha512-HjA8x/U/Q78HRRe19yh8HVKoZ+Iaoo3YZjakJYxR+rw52NHo6jM+VE9b8+7ygkCFXl/EHID5wh/MkXaE/jGyYw==}
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
- '@kamino-finance/limo-sdk@0.3.0':
- resolution: {integrity: sha512-D8x1TyF+YY1sOlfDLyaJFRRqserhrneNSWN5WIydFke4LTfoT7WMKu9bzEBESIo4zopiUhUFSGKOicsdegvyJg==}
+ '@kamino-finance/limo-sdk@0.3.1':
+ resolution: {integrity: sha512-MdjtC2YSO6S0Tbz1cUwipVenosM/QTW32Ro1huvOx9r2UWJ2ceP7Vqhto3Phw68y0v4N2A1MIwbVgLXjYPmCpA==}
hasBin: true
peerDependencies:
'@solana/web3.js': ~1.73.3
@@ -6667,32 +6635,29 @@ packages:
'@next/env@14.2.15':
resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==}
- '@next/env@15.0.3':
- resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==}
-
'@next/env@15.1.0':
resolution: {integrity: sha512-UcCO481cROsqJuszPPXJnb7GGuLq617ve4xuAyyNG4VSSocJNtMU5Fsx+Lp6mlN8c7W58aZLc5y6D/2xNmaK+w==}
+ '@next/env@15.1.2':
+ resolution: {integrity: sha512-Hm3jIGsoUl6RLB1vzY+dZeqb+/kWPZ+h34yiWxW0dV87l8Im/eMOwpOA+a0L78U0HM04syEjXuRlCozqpwuojQ==}
+
'@next/eslint-plugin-next@14.2.3':
resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==}
- '@next/eslint-plugin-next@15.0.3':
- resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==}
-
'@next/swc-darwin-arm64@14.2.15':
resolution: {integrity: sha512-Rvh7KU9hOUBnZ9TJ28n2Oa7dD9cvDBKua9IKx7cfQQ0GoYUwg9ig31O2oMwH3wm+pE3IkAQ67ZobPfEgurPZIA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@15.0.3':
- resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==}
+ '@next/swc-darwin-arm64@15.1.0':
+ resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@15.1.0':
- resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==}
+ '@next/swc-darwin-arm64@15.1.2':
+ resolution: {integrity: sha512-b9TN7q+j5/7+rGLhFAVZiKJGIASuo8tWvInGfAd8wsULjB1uNGRCj1z1WZwwPWzVQbIKWFYqc+9L7W09qwt52w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -6703,14 +6668,14 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@15.0.3':
- resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==}
+ '@next/swc-darwin-x64@15.1.0':
+ resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@15.1.0':
- resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==}
+ '@next/swc-darwin-x64@15.1.2':
+ resolution: {integrity: sha512-caR62jNDUCU+qobStO6YJ05p9E+LR0EoXh1EEmyU69cYydsAy7drMcOlUlRtQihM6K6QfvNwJuLhsHcCzNpqtA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -6721,14 +6686,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@15.0.3':
- resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==}
+ '@next/swc-linux-arm64-gnu@15.1.0':
+ resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@15.1.0':
- resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==}
+ '@next/swc-linux-arm64-gnu@15.1.2':
+ resolution: {integrity: sha512-fHHXBusURjBmN6VBUtu6/5s7cCeEkuGAb/ZZiGHBLVBXMBy4D5QpM8P33Or8JD1nlOjm/ZT9sEE5HouQ0F+hUA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -6739,14 +6704,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@15.0.3':
- resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==}
+ '@next/swc-linux-arm64-musl@15.1.0':
+ resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@15.1.0':
- resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==}
+ '@next/swc-linux-arm64-musl@15.1.2':
+ resolution: {integrity: sha512-9CF1Pnivij7+M3G74lxr+e9h6o2YNIe7QtExWq1KUK4hsOLTBv6FJikEwCaC3NeYTflzrm69E5UfwEAbV2U9/g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -6757,14 +6722,14 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.0.3':
- resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==}
+ '@next/swc-linux-x64-gnu@15.1.0':
+ resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.1.0':
- resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==}
+ '@next/swc-linux-x64-gnu@15.1.2':
+ resolution: {integrity: sha512-tINV7WmcTUf4oM/eN3Yuu/f8jQ5C6AkueZPKeALs/qfdfX57eNv4Ij7rt0SA6iZ8+fMobVfcFVv664Op0caCCg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -6775,14 +6740,14 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@15.0.3':
- resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==}
+ '@next/swc-linux-x64-musl@15.1.0':
+ resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@15.1.0':
- resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==}
+ '@next/swc-linux-x64-musl@15.1.2':
+ resolution: {integrity: sha512-jf2IseC4WRsGkzeUw/cK3wci9pxR53GlLAt30+y+B+2qAQxMw6WAC3QrANIKxkcoPU3JFh/10uFfmoMDF9JXKg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -6793,14 +6758,14 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@15.0.3':
- resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==}
+ '@next/swc-win32-arm64-msvc@15.1.0':
+ resolution: {integrity: sha512-WEAoHyG14t5sTavZa1c6BnOIEukll9iqFRTavqRVPfYmfegOAd5MaZfXgOGG6kGo1RduyGdTHD4+YZQSdsNZXg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@15.1.0':
- resolution: {integrity: sha512-WEAoHyG14t5sTavZa1c6BnOIEukll9iqFRTavqRVPfYmfegOAd5MaZfXgOGG6kGo1RduyGdTHD4+YZQSdsNZXg==}
+ '@next/swc-win32-arm64-msvc@15.1.2':
+ resolution: {integrity: sha512-wvg7MlfnaociP7k8lxLX4s2iBJm4BrNiNFhVUY+Yur5yhAJHfkS8qPPeDEUH8rQiY0PX3u/P7Q/wcg6Mv6GSAA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -6817,14 +6782,14 @@ packages:
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.0.3':
- resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==}
+ '@next/swc-win32-x64-msvc@15.1.0':
+ resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.1.0':
- resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==}
+ '@next/swc-win32-x64-msvc@15.1.2':
+ resolution: {integrity: sha512-D3cNA8NoT3aWISWmo7HF5Eyko/0OdOO+VagkoJuiTk7pyX3P/b+n8XA/MYvyR+xSVcbKn68B1rY9fgqjNISqzQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -8711,9 +8676,6 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rtsao/scc@1.1.0':
- resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
-
'@rushstack/eslint-patch@1.10.3':
resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
@@ -8751,9 +8713,6 @@ packages:
'@scure/bip32@1.3.2':
resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==}
- '@scure/bip32@1.3.3':
- resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==}
-
'@scure/bip32@1.4.0':
resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
@@ -8772,9 +8731,6 @@ packages:
'@scure/bip39@1.2.1':
resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==}
- '@scure/bip39@1.2.2':
- resolution: {integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==}
-
'@scure/bip39@1.3.0':
resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
@@ -8946,64 +8902,27 @@ packages:
'@solana/codecs-core@2.0.0-preview.2':
resolution: {integrity: sha512-gLhCJXieSCrAU7acUJjbXl+IbGnqovvxQLlimztPoGgfLQ1wFYu+XJswrEVQqknZYK1pgxpxH3rZ+OKFs0ndQg==}
- '@solana/codecs-core@2.0.0-rc.1':
- resolution: {integrity: sha512-bauxqMfSs8EHD0JKESaNmNuNvkvHSuN3bbWAF5RjOfDu2PugxHrvRebmYauvSumZ3cTfQ4HJJX6PG5rN852qyQ==}
- peerDependencies:
- typescript: '>=5'
-
'@solana/codecs-data-structures@2.0.0-preview.2':
resolution: {integrity: sha512-Xf5vIfromOZo94Q8HbR04TbgTwzigqrKII0GjYr21K7rb3nba4hUW2ir8kguY7HWFBcjHGlU5x3MevKBOLp3Zg==}
- '@solana/codecs-data-structures@2.0.0-rc.1':
- resolution: {integrity: sha512-rinCv0RrAVJ9rE/rmaibWJQxMwC5lSaORSZuwjopSUE6T0nb/MVg6Z1siNCXhh/HFTOg0l8bNvZHgBcN/yvXog==}
- peerDependencies:
- typescript: '>=5'
-
'@solana/codecs-numbers@2.0.0-preview.2':
resolution: {integrity: sha512-aLZnDTf43z4qOnpTcDsUVy1Ci9im1Md8thWipSWbE+WM9ojZAx528oAql+Cv8M8N+6ALKwgVRhPZkto6E59ARw==}
- '@solana/codecs-numbers@2.0.0-rc.1':
- resolution: {integrity: sha512-J5i5mOkvukXn8E3Z7sGIPxsThRCgSdgTWJDQeZvucQ9PT6Y3HiVXJ0pcWiOWAoQ3RX8e/f4I3IC+wE6pZiJzDQ==}
- peerDependencies:
- typescript: '>=5'
-
'@solana/codecs-strings@2.0.0-preview.2':
resolution: {integrity: sha512-EgBwY+lIaHHgMJIqVOGHfIfpdmmUDNoNO/GAUGeFPf+q0dF+DtwhJPEMShhzh64X2MeCZcmSO6Kinx0Bvmmz2g==}
peerDependencies:
fastestsmallesttextencoderdecoder: ^1.0.22
- '@solana/codecs-strings@2.0.0-rc.1':
- resolution: {integrity: sha512-9/wPhw8TbGRTt6mHC4Zz1RqOnuPTqq1Nb4EyuvpZ39GW6O2t2Q7Q0XxiB3+BdoEjwA2XgPw6e2iRfvYgqty44g==}
- peerDependencies:
- fastestsmallesttextencoderdecoder: ^1.0.22
- typescript: '>=5'
-
'@solana/codecs@2.0.0-preview.2':
resolution: {integrity: sha512-4HHzCD5+pOSmSB71X6w9ptweV48Zj1Vqhe732+pcAQ2cMNnN0gMPMdDq7j3YwaZDZ7yrILVV/3+HTnfT77t2yA==}
- '@solana/codecs@2.0.0-rc.1':
- resolution: {integrity: sha512-qxoR7VybNJixV51L0G1RD2boZTcxmwUWnKCaJJExQ5qNKwbpSyDdWfFJfM5JhGyKe9DnPVOZB+JHWXnpbZBqrQ==}
- peerDependencies:
- typescript: '>=5'
-
'@solana/errors@2.0.0-preview.2':
resolution: {integrity: sha512-H2DZ1l3iYF5Rp5pPbJpmmtCauWeQXRJapkDg8epQ8BJ7cA2Ut/QEtC3CMmw/iMTcuS6uemFNLcWvlOfoQhvQuA==}
hasBin: true
- '@solana/errors@2.0.0-rc.1':
- resolution: {integrity: sha512-ejNvQ2oJ7+bcFAYWj225lyRkHnixuAeb7RQCixm+5mH4n1IA4Qya/9Bmfy5RAAHQzxK43clu3kZmL5eF9VGtYQ==}
- hasBin: true
- peerDependencies:
- typescript: '>=5'
-
'@solana/options@2.0.0-preview.2':
resolution: {integrity: sha512-FAHqEeH0cVsUOTzjl5OfUBw2cyT8d5Oekx4xcn5hn+NyPAfQJgM3CEThzgRD6Q/4mM5pVUnND3oK/Mt1RzSE/w==}
- '@solana/options@2.0.0-rc.1':
- resolution: {integrity: sha512-mLUcR9mZ3qfHlmMnREdIFPf9dpMc/Bl66tLSOOWxw4ml5xMT2ohFn7WGqoKcu/UHkT9CrC6+amEdqCNvUqI7AA==}
- peerDependencies:
- typescript: '>=5'
-
'@solana/spl-governance@0.3.28':
resolution: {integrity: sha512-CUi1hMvzId2rAtMFTlxMwOy0EmFeT0VcmiC+iQnDhRBuM8LLLvRrbTYBWZo3xIvtPQW9HfhVBoL7P/XNFIqYVQ==}
@@ -9019,12 +8938,6 @@ packages:
peerDependencies:
'@solana/web3.js': 1.92.3
- '@solana/spl-token-metadata@0.1.6':
- resolution: {integrity: sha512-7sMt1rsm/zQOQcUWllQX9mD2O6KhSAtY1hFR2hfFwgqfFWzSY9E9GDvFVNYUI1F0iQKcm6HmePU9QbKRXTEBiA==}
- engines: {node: '>=16'}
- peerDependencies:
- '@solana/web3.js': 1.92.3
-
'@solana/spl-token@0.3.11':
resolution: {integrity: sha512-bvohO3rIMSVL24Pb+I4EYTJ6cL82eFpInEXD/I8K8upOGjpqHsKUoAempR/RnUlI1qSFNyFlWJfu6MNUgfbCQQ==}
engines: {node: '>=16'}
@@ -10530,6 +10443,9 @@ packages:
'@types/node@18.11.18':
resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
+ '@types/node@18.15.13':
+ resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
+
'@types/node@18.19.34':
resolution: {integrity: sha512-eXF4pfBNV5DAMKGbI02NnDtWrQ40hAN558/2vvS4gMpMIxaf6JmD7YjnZbq0Q9TDSSkKBamime8ewRoomHdt4g==}
@@ -10551,9 +10467,6 @@ packages:
'@types/node@20.14.7':
resolution: {integrity: sha512-uTr2m2IbJJucF3KUxgnGOZvYbN0QgkGyWxG6973HCpMYFy2KfcgYuIwkJQMQkt1VbBMlvWRbpshFTLxnxCZjKQ==}
- '@types/node@20.14.9':
- resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==}
-
'@types/node@22.2.0':
resolution: {integrity: sha512-bm6EG6/pCpkxDf/0gDNDdtDILMOHgaQBVOJGdwsqClnxA3xL6jtMv76rLBc006RVMWbmaf0xbmom4Z/5o2nRkQ==}
@@ -10597,11 +10510,6 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.5':
- resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
- peerDependencies:
- '@types/react': ^18.0.0
-
'@types/react-dom@19.0.2':
resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==}
peerDependencies:
@@ -11548,28 +11456,6 @@ packages:
zod:
optional: true
- abitype@1.0.0:
- resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3 >=3.22.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
-
- abitype@1.0.4:
- resolution: {integrity: sha512-UivtYZOGJGE8rsrM/N5vdRkUpqEZVmuTumfTuolm7m/6O09wprd958rx8kUBwVAAAhQDveGAgD0GJdBuR8s6tw==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3 >=3.22.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
-
abitype@1.0.5:
resolution: {integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==}
peerDependencies:
@@ -11689,11 +11575,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.0:
- resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.13.0:
resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==}
engines: {node: '>=0.4.0'}
@@ -11775,9 +11656,6 @@ packages:
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- ajv@8.16.0:
- resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
-
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@@ -12055,10 +11933,6 @@ packages:
resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.4:
- resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
- engines: {node: '>= 0.4'}
-
arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
@@ -12193,10 +12067,6 @@ packages:
aws4@1.12.0:
resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
- axe-core@4.10.2:
- resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
- engines: {node: '>=4'}
-
axe-core@4.7.0:
resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
engines: {node: '>=4'}
@@ -12578,11 +12448,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.24.0:
resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -12722,22 +12587,10 @@ packages:
resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==}
engines: {node: '>=8'}
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
- engines: {node: '>= 0.4'}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
- engines: {node: '>= 0.4'}
-
- call-bound@1.0.3:
- resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
- engines: {node: '>= 0.4'}
-
call-me-maybe@1.0.2:
resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
@@ -13389,9 +13242,6 @@ packages:
core-js-compat@3.27.2:
resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
-
core-js-compat@3.38.0:
resolution: {integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==}
@@ -14198,10 +14048,6 @@ packages:
resolution: {integrity: sha512-F4wZ06PvqxYLFEZKkFxTDcns9oFNk34hvmJSEwdzsxVQ8YI5YaxtACgQatkYgv2VI2CFkUd2Y+xosPQnHv809g==}
engines: {node: '>=0.10'}
- dunder-proto@1.0.1:
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
- engines: {node: '>= 0.4'}
-
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -14244,9 +14090,6 @@ packages:
electron-to-chromium@1.5.41:
resolution: {integrity: sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==}
- electron-to-chromium@1.5.6:
- resolution: {integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==}
-
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -14302,6 +14145,7 @@ packages:
encoding-down@6.3.0:
resolution: {integrity: sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
encoding-sniffer@0.2.0:
resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
@@ -14328,6 +14172,10 @@ packages:
resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
engines: {node: '>=10.0.0'}
+ enhanced-resolve@5.17.0:
+ resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
+ engines: {node: '>=10.13.0'}
+
enhanced-resolve@5.17.1:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
@@ -14343,10 +14191,6 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- entities@4.4.0:
- resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
- engines: {node: '>=0.12'}
-
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -14392,18 +14236,10 @@ packages:
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
- es-abstract@1.23.6:
- resolution: {integrity: sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==}
- engines: {node: '>= 0.4'}
-
es-define-property@1.0.0:
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
- es-define-property@1.0.1:
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
- engines: {node: '>= 0.4'}
-
es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
@@ -14412,10 +14248,6 @@ packages:
resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.2.1:
- resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
- engines: {node: '>= 0.4'}
-
es-module-lexer@1.4.1:
resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
@@ -14437,10 +14269,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es-to-primitive@1.3.0:
- resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
- engines: {node: '>= 0.4'}
-
es5-ext@0.10.62:
resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
engines: {node: '>=0.10'}
@@ -14651,15 +14479,6 @@ packages:
typescript:
optional: true
- eslint-config-next@15.0.3:
- resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==}
- peerDependencies:
- eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
- typescript: '>=3.3.1'
- peerDependenciesMeta:
- typescript:
- optional: true
-
eslint-config-prettier@8.8.0:
resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
hasBin: true
@@ -14687,27 +14506,6 @@ packages:
eslint: '*'
eslint-plugin-import: '*'
- eslint-module-utils@2.12.0:
- resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
-
eslint-module-utils@2.8.1:
resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
@@ -14745,16 +14543,6 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-import@2.31.0:
- resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
-
eslint-plugin-jest-dom@5.4.0:
resolution: {integrity: sha512-yBqvFsnpS5Sybjoq61cJiUsenRkC9K32hYQBFS9doBR7nbQZZ5FyO+X7MlmfM1C48Ejx/qTuOCgukDUNyzKZ7A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'}
@@ -14784,12 +14572,6 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-jsx-a11y@6.10.2:
- resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
- engines: {node: '>=4.0'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
-
eslint-plugin-jsx-a11y@6.8.0:
resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
engines: {node: '>=4.0'}
@@ -14808,24 +14590,12 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react-hooks@5.1.0:
- resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==}
- engines: {node: '>=10'}
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
-
eslint-plugin-react@7.34.2:
resolution: {integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- eslint-plugin-react@7.37.2:
- resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
-
eslint-plugin-storybook@0.8.0:
resolution: {integrity: sha512-CZeVO5EzmPY7qghO2t64oaFM+8FTaD4uzOEjHKp516exyTKo+skKAL9GI3QALS2BXhyALJjNtwbmr1XinGE8bA==}
engines: {node: '>= 18'}
@@ -14912,16 +14682,6 @@ packages:
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@9.12.0:
- resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- hasBin: true
- peerDependencies:
- jiti: '*'
- peerDependenciesMeta:
- jiti:
- optional: true
-
eslint@9.13.0:
resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -15068,9 +14828,6 @@ packages:
ethereum-cryptography@1.2.0:
resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==}
- ethereum-cryptography@2.1.3:
- resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==}
-
ethereum-cryptography@2.2.1:
resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
@@ -15128,6 +14885,10 @@ packages:
ethers@5.7.2:
resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==}
+ ethers@6.13.2:
+ resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==}
+ engines: {node: '>=14.0.0'}
+
ethers@6.13.4:
resolution: {integrity: sha512-21YtnZVg4/zKkCQPjrDj38B1r4nQvTZLopUGMLQ1ePU2zV/joCfDC3t3iKQjWRzjjjbzR+mdAIoikeBRNkdllA==}
engines: {node: '>=14.0.0'}
@@ -15273,10 +15034,6 @@ packages:
resolution: {integrity: sha512-I2FldZwnCbcY6iL+H0rp9m4D+O3PotuFu9FasWjMCzUedYHMP89/37JbSt6/n7Yq/IZmJDW0B2h30sPYdzrfzw==}
engines: {node: '>=8.0.0'}
- fast-check@3.22.0:
- resolution: {integrity: sha512-8HKz3qXqnHYp/VCNn2qfjHdAdcI8zcSqOyX64GOMukp7SL2bfzfeDKjSd+UyECtejccaZv3LcvZTm9YDD22iCQ==}
- engines: {node: '>=8.0.0'}
-
fast-copy@3.0.2:
resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==}
@@ -15287,10 +15044,6 @@ packages:
resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
engines: {node: '>=6.0.0'}
- fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- engines: {node: '>=8.6.0'}
-
fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
@@ -15533,10 +15286,6 @@ packages:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
- form-data@3.0.2:
- resolution: {integrity: sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==}
- engines: {node: '>= 6'}
-
form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
@@ -15711,10 +15460,6 @@ packages:
resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
- function.prototype.name@1.1.8:
- resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
- engines: {node: '>= 0.4'}
-
functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
@@ -15780,10 +15525,6 @@ packages:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
- get-intrinsic@1.2.6:
- resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
- engines: {node: '>= 0.4'}
-
get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
@@ -15971,10 +15712,6 @@ packages:
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- gopd@1.2.0:
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
- engines: {node: '>= 0.4'}
-
got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
engines: {node: '>=10.19.0'}
@@ -15989,9 +15726,6 @@ packages:
peerDependencies:
typescript: ^5.0.0
- graceful-fs@4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
-
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -16117,18 +15851,10 @@ packages:
resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
- has-proto@1.2.0:
- resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
- engines: {node: '>= 0.4'}
-
has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
- engines: {node: '>= 0.4'}
-
has-tostringtag@1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
@@ -16214,8 +15940,8 @@ packages:
resolution: {integrity: sha512-EqYpWyTF2s8nMfttfBA2yLKPNoZCO33pLS4MnbXQ4hECf1TKujCt1Kq7QAdrio7roL4+CqsfjqwYj4tYgq0pJQ==}
engines: {node: '>=12.0.0'}
- highlight.js@11.11.0:
- resolution: {integrity: sha512-6ErL7JlGu2CNFHyRQEuDogOyGPNiqcuWdt4iSSFUPyferNTGlNTPFqeV36Y/XwA4V/TJ8l0sxp6FTnxud/mf8g==}
+ highlight.js@11.11.1:
+ resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
engines: {node: '>=12.0.0'}
highlightjs-solidity@2.0.6:
@@ -16500,10 +16226,6 @@ packages:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
- internal-slot@1.1.0:
- resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
- engines: {node: '>= 0.4'}
-
internmap@2.0.3:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
@@ -16593,10 +16315,6 @@ packages:
is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- is-bigint@1.1.0:
- resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
- engines: {node: '>= 0.4'}
-
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
@@ -16605,10 +16323,6 @@ packages:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
- is-boolean-object@1.2.1:
- resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
- engines: {node: '>= 0.4'}
-
is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
@@ -16636,18 +16350,10 @@ packages:
resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.2:
- resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
- engines: {node: '>= 0.4'}
-
is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
- is-date-object@1.1.0:
- resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
- engines: {node: '>= 0.4'}
-
is-decimal@2.0.1:
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
@@ -16672,10 +16378,6 @@ packages:
is-finalizationregistry@1.0.2:
resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
- is-finalizationregistry@1.1.1:
- resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
- engines: {node: '>= 0.4'}
-
is-fn@1.0.0:
resolution: {integrity: sha512-XoFPJQmsAShb3jEQRfzf2rqXavq7fIqF/jOekp308JlThqrODnMpweVSGilKTCXELfLhltGP2AGgbQGVP8F1dg==}
engines: {node: '>=0.10.0'}
@@ -16745,10 +16447,6 @@ packages:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
- is-number-object@1.1.1:
- resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
- engines: {node: '>= 0.4'}
-
is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
@@ -16794,10 +16492,6 @@ packages:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
- is-regex@1.2.1:
- resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
- engines: {node: '>= 0.4'}
-
is-retry-allowed@2.2.0:
resolution: {integrity: sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==}
engines: {node: '>=10'}
@@ -16833,18 +16527,10 @@ packages:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
- is-string@1.1.1:
- resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
- engines: {node: '>= 0.4'}
-
is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
- is-symbol@1.1.1:
- resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
- engines: {node: '>= 0.4'}
-
is-text-path@1.0.1:
resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
engines: {node: '>=0.10.0'}
@@ -16853,10 +16539,6 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
- is-typed-array@1.1.15:
- resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
- engines: {node: '>= 0.4'}
-
is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -16880,10 +16562,6 @@ packages:
is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- is-weakref@1.1.0:
- resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
- engines: {node: '>= 0.4'}
-
is-weakset@2.0.3:
resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
engines: {node: '>= 0.4'}
@@ -17032,10 +16710,6 @@ packages:
iterator.prototype@1.1.2:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
- iterator.prototype@1.1.4:
- resolution: {integrity: sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==}
- engines: {node: '>= 0.4'}
-
jackspeak@2.2.0:
resolution: {integrity: sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==}
engines: {node: '>=14'}
@@ -17644,25 +17318,31 @@ packages:
level-codec@7.0.1:
resolution: {integrity: sha512-Ua/R9B9r3RasXdRmOtd+t9TCOEIIlts+TN/7XTT2unhDaL6sJn83S3rUyljbr6lVtw49N3/yA0HHjpV6Kzb2aQ==}
+ deprecated: Superseded by level-transcoder (https://github.com/Level/community#faq)
level-codec@9.0.2:
resolution: {integrity: sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==}
engines: {node: '>=6'}
+ deprecated: Superseded by level-transcoder (https://github.com/Level/community#faq)
level-concat-iterator@2.0.1:
resolution: {integrity: sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
level-concat-iterator@3.1.0:
resolution: {integrity: sha512-BWRCMHBxbIqPxJ8vHOvKUsaO0v1sLYZtjN3K2iZJsRBYtp+ONsY6Jfi6hy9K3+zolgQRryhIn2NRZjZnWJ9NmQ==}
engines: {node: '>=10'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
level-errors@1.0.5:
resolution: {integrity: sha512-/cLUpQduF6bNrWuAC4pwtUKA5t669pCsCi2XbmojG2tFeOr9j6ShtdDCtFFQO1DRt+EVZhx9gPzP9G2bUaG4ig==}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
level-errors@2.0.1:
resolution: {integrity: sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
level-iterator-stream@1.3.1:
resolution: {integrity: sha512-1qua0RHNtr4nrZBgYlpV0qHHeHpcRRWTxEZJ8xsemoHAXNL5tbooh4tPEEqIqsbWCAJBmUmkwYK/sW5OrFjWWw==}
@@ -17678,6 +17358,7 @@ packages:
level-packager@5.1.1:
resolution: {integrity: sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
level-supports@1.0.1:
resolution: {integrity: sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==}
@@ -18050,10 +17731,6 @@ packages:
marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
- math-intrinsics@1.1.0:
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
- engines: {node: '>= 0.4'}
-
mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
@@ -18745,16 +18422,16 @@ packages:
sass:
optional: true
- next@15.0.3:
- resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==}
+ next@15.1.0:
+ resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
babel-plugin-react-compiler: '*'
- react: ^18.2.0 || 19.0.0-rc-66855b96-20241106
- react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
@@ -18766,8 +18443,8 @@ packages:
sass:
optional: true
- next@15.1.0:
- resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==}
+ next@15.1.2:
+ resolution: {integrity: sha512-nLJDV7peNy+0oHlmY2JZjzMfJ8Aj0/dd3jCwSZS8ZiO5nkQfcZRqDrRN3U5rJtqVTQneIOGZzb6LCNrk7trMCQ==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
@@ -19086,10 +18763,6 @@ packages:
object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
- engines: {node: '>= 0.4'}
-
object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
@@ -19261,8 +18934,8 @@ packages:
osmojs@16.12.1:
resolution: {integrity: sha512-3Crv2Du70felladlGbK2q/3vh4e/Cgp+PNMcicL7Pr9DPoRx6E+tjDbemCPES2J1BJlHodK1BEFowr/85BILVA==}
- ox@0.1.2:
- resolution: {integrity: sha512-ak/8K0Rtphg9vnRJlbOdaX9R7cmxD2MiSthjWGaQdMk3D7hrAlDoM+6Lxn7hN52Za3vrXfZ7enfke/5WjolDww==}
+ ox@0.6.5:
+ resolution: {integrity: sha512-vmnH8KvMDwFZDbNY1mq2CBRBWIgSliZB/dFV0xKp+DfF/dJkTENt6nmA+DzHSSAgL/GO2ydjkXWvlndJgSY4KQ==}
peerDependencies:
typescript: '>=5.4.0'
peerDependenciesMeta:
@@ -20050,8 +19723,8 @@ packages:
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- process-on-spawn@1.0.0:
- resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==}
+ process-on-spawn@1.1.0:
+ resolution: {integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==}
engines: {node: '>=8'}
process-warning@1.0.0:
@@ -20371,11 +20044,6 @@ packages:
peerDependencies:
react: ^19.0.0
- react-dom@19.0.0-rc-66855b96-20241106:
- resolution: {integrity: sha512-D25vdaytZ1wFIRiwNU98NPQ/upS2P8Co4/oNoa02PzHbh8deWdepjm5qwZM/46OdSiGv4WSWwxP55RO9obqJEQ==}
- peerDependencies:
- react: 19.0.0-rc-66855b96-20241106
-
react-element-to-jsx-string@15.0.0:
resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
@@ -20536,10 +20204,6 @@ packages:
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
- react@19.0.0-rc-66855b96-20241106:
- resolution: {integrity: sha512-klH7xkT71SxRCx4hb1hly5FJB21Hz0ACyxbXYAECEqssUjtJeFUAaI2U1DgJAzkGEnvEm3DkxuBchMC/9K4ipg==}
- engines: {node: '>=0.10.0'}
-
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -20683,10 +20347,6 @@ packages:
resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
- reflect.getprototypeof@1.0.9:
- resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==}
- engines: {node: '>= 0.4'}
-
regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
@@ -20734,10 +20394,6 @@ packages:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
- regexp.prototype.flags@1.5.3:
- resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
- engines: {node: '>= 0.4'}
-
regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
@@ -21000,10 +20656,6 @@ packages:
resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
- safe-array-concat@1.1.3:
- resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
- engines: {node: '>=0.4'}
-
safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -21021,10 +20673,6 @@ packages:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
- safe-regex-test@1.1.0:
- resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
- engines: {node: '>= 0.4'}
-
safe-stable-stringify@2.4.2:
resolution: {integrity: sha512-gMxvPJYhP0O9n2pvcfYfIuYgbledAOJFcqRThtPRmjscaipiwcwPPKLytpVzMkG2HAN87Qmo2d4PtGiri1dSLA==}
engines: {node: '>=10'}
@@ -21102,9 +20750,6 @@ packages:
scheduler@0.25.0:
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
- scheduler@0.25.0-rc-66855b96-20241106:
- resolution: {integrity: sha512-HQXp/Mnp/MMRSXMQF7urNFla+gmtXW/Gr1KliuR0iboTit4KvZRY8KYaq5ccCTAOJiUqQh2rE2F3wgUekmgdlA==}
-
schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
@@ -21308,26 +20953,10 @@ packages:
engines: {node: '>=6'}
hasBin: true
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
- engines: {node: '>= 0.4'}
-
- side-channel-map@1.0.1:
- resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
- engines: {node: '>= 0.4'}
-
- side-channel-weakmap@1.0.2:
- resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
- engines: {node: '>= 0.4'}
-
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
- engines: {node: '>= 0.4'}
-
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -21656,21 +21285,10 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.includes@2.0.1:
- resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
- engines: {node: '>= 0.4'}
-
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
engines: {node: '>= 0.4'}
- string.prototype.repeat@1.0.0:
- resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
-
- string.prototype.trim@1.2.10:
- resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
- engines: {node: '>= 0.4'}
-
string.prototype.trim@1.2.9:
resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
@@ -21678,10 +21296,6 @@ packages:
string.prototype.trimend@1.0.8:
resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
- string.prototype.trimend@1.0.9:
- resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
- engines: {node: '>= 0.4'}
-
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
@@ -21998,8 +21612,8 @@ packages:
resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
- tailwind-merge@2.5.5:
- resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==}
+ tailwind-merge@2.6.0:
+ resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
tailwindcss-animate@1.0.7:
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
@@ -22259,10 +21873,6 @@ packages:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
- tough-cookie@4.1.2:
- resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==}
- engines: {node: '>=6'}
-
tough-cookie@4.1.4:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
@@ -22381,6 +21991,9 @@ packages:
ts-log@2.2.5:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
+ ts-log@2.2.7:
+ resolution: {integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==}
+
ts-mixer@6.0.4:
resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==}
@@ -22465,6 +22078,9 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ tslib@2.4.0:
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
+
tslib@2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
@@ -22620,18 +22236,10 @@ packages:
resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.4:
- resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
- engines: {node: '>= 0.4'}
-
typed-array-length@1.0.6:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.7:
- resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
- engines: {node: '>= 0.4'}
-
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
@@ -22936,12 +22544,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
@@ -23172,14 +22774,6 @@ packages:
typescript:
optional: true
- viem@2.16.2:
- resolution: {integrity: sha512-qor3v1cJFR3jcPtcJxPbKfKURAH2agNf2IWZIaSReV6teNLERiu4Sr7kbqpkIeTAEpiDCVQwg336M+mub1m+pg==}
- peerDependencies:
- typescript: '>=5.0.4'
- peerDependenciesMeta:
- typescript:
- optional: true
-
viem@2.19.4:
resolution: {integrity: sha512-JdhK3ui3uPD2tnpqGNkJaDQV4zTfOeKXcF+VrU8RG88Dn2e0lFjv6l7m0YNmYLsHm+n5vFFfCLcUrTk6xcYv5w==}
peerDependencies:
@@ -23196,16 +22790,8 @@ packages:
typescript:
optional: true
- viem@2.21.56:
- resolution: {integrity: sha512-lHcVd1sFDlVWu482Sb4j22a5+hXJWE8HwqLgXDH49L7mfdA5QHfkQgeyl7K2kKg6pBbPbxIwd9so/u3LcynKTg==}
- peerDependencies:
- typescript: '>=5.0.4'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- viem@2.8.13:
- resolution: {integrity: sha512-jEbRUjsiBwmoDr3fnKL1Bh1GhK5ERhmZcPLeARtEaQoBTPB6bcO2siKhNPVOF8qrYRnGHGQrZHncBWMQhTjGYg==}
+ viem@2.22.9:
+ resolution: {integrity: sha512-2yy46qYhcdo8GZggQ3Zoq9QCahI0goddzpVI/vSnTpcClQBSDxYRCuAqRzzLqjvJ7hS0UYgplC7eRkM2sYgflw==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -23844,18 +23430,10 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-boxed-primitive@1.1.1:
- resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
- engines: {node: '>= 0.4'}
-
which-builtin-type@1.1.3:
resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
engines: {node: '>= 0.4'}
- which-builtin-type@1.2.1:
- resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
- engines: {node: '>= 0.4'}
-
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
@@ -23870,10 +23448,6 @@ packages:
resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
- engines: {node: '>= 0.4'}
-
which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -24471,8 +24045,8 @@ snapshots:
'@apidevtools/openapi-schemas': 2.1.0
'@apidevtools/swagger-methods': 3.0.2
'@jsdevtools/ono': 7.1.3
- ajv: 8.16.0
- ajv-draft-04: 1.0.0(ajv@8.16.0)
+ ajv: 8.17.1
+ ajv-draft-04: 1.0.0(ajv@8.17.1)
call-me-maybe: 1.0.2
openapi-types: 12.1.3
@@ -24655,10 +24229,6 @@ snapshots:
'@babel/compat-data@7.23.5': {}
- '@babel/compat-data@7.24.7': {}
-
- '@babel/compat-data@7.25.2': {}
-
'@babel/compat-data@7.25.8': {}
'@babel/core@7.24.0':
@@ -24684,15 +24254,15 @@ snapshots:
'@babel/core@7.24.7':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.7)
- '@babel/helpers': 7.24.7
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helpers': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
convert-source-map: 2.0.0
debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -24721,17 +24291,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))':
+ '@babel/eslint-parser@7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))':
dependencies:
'@babel/core': 7.25.8
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-visitor-keys: 2.1.0
semver: 6.3.1
'@babel/generator@7.23.6':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -24763,7 +24333,7 @@ snapshots:
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-annotate-as-pure@7.25.7':
dependencies:
@@ -24772,39 +24342,23 @@ snapshots:
'@babel/helper-builder-binary-assignment-operator-visitor@7.18.9':
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
'@babel/helper-compilation-targets@7.23.6':
dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/compat-data': 7.25.8
+ '@babel/helper-validator-option': 7.25.7
browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-compilation-targets@7.24.7':
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- browserslist: 4.23.1
- lru-cache: 5.1.1
- semver: 6.3.1
-
- '@babel/helper-compilation-targets@7.25.2':
- dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.3
- lru-cache: 5.1.1
- semver: 6.3.1
-
'@babel/helper-compilation-targets@7.25.7':
dependencies:
'@babel/compat-data': 7.25.8
@@ -24826,6 +24380,19 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
+ '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24897,6 +24464,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/traverse': 7.25.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24944,6 +24524,13 @@ snapshots:
regexpu-core: 6.1.1
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ regexpu-core: 6.1.1
+ semver: 6.3.1
+
'@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24954,8 +24541,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -24966,8 +24553,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -24978,8 +24565,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -24989,8 +24576,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -25000,8 +24587,8 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -25014,7 +24601,7 @@ snapshots:
'@babel/helper-explode-assignable-expression@7.18.6':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-function-name@7.24.7':
dependencies:
@@ -25031,8 +24618,8 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25043,10 +24630,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.22.15':
- dependencies:
- '@babel/types': 7.24.0
-
'@babel/helper-module-imports@7.24.7':
dependencies:
'@babel/traverse': 7.24.7
@@ -25054,16 +24637,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)':
+ '@babel/helper-module-imports@7.25.7':
dependencies:
- '@babel/traverse': 7.24.7(supports-color@5.5.0)
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.7':
+ '@babel/helper-module-imports@7.25.7(supports-color@5.5.0)':
dependencies:
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.25.7(supports-color@5.5.0)
'@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25072,10 +24655,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -25090,41 +24673,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.25.8)':
+ '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.0)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/core': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.24.7)':
+ '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
'@babel/helper-module-imports': 7.25.7
'@babel/helper-simple-access': 7.25.7
'@babel/helper-validator-identifier': 7.25.7
@@ -25148,7 +24709,7 @@ snapshots:
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/helper-optimise-call-expression@7.25.7':
dependencies:
@@ -25168,7 +24729,17 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25178,7 +24749,7 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25218,6 +24789,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-wrap-function': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25234,6 +24814,13 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+
'@babel/helper-replace-supers@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25277,6 +24864,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25306,8 +24902,8 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25334,27 +24930,23 @@ snapshots:
'@babel/helper-validator-option@7.23.5': {}
- '@babel/helper-validator-option@7.24.7': {}
-
- '@babel/helper-validator-option@7.24.8': {}
-
'@babel/helper-validator-option@7.25.7': {}
'@babel/helper-wrap-function@7.20.5':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
'@babel/helper-wrap-function@7.24.7':
dependencies:
'@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -25368,17 +24960,12 @@ snapshots:
'@babel/helpers@7.24.0':
dependencies:
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.7':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
-
'@babel/helpers@7.25.7':
dependencies:
'@babel/template': 7.25.7
@@ -25400,7 +24987,7 @@ snapshots:
'@babel/parser@7.24.0':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@babel/parser@7.24.7':
dependencies:
@@ -25418,51 +25005,51 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-proposal-optional-chaining': 7.20.7(@babel/core@7.24.0)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -25471,7 +25058,7 @@ snapshots:
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -25480,7 +25067,7 @@ snapshots:
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -25490,35 +25077,45 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.25.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -25528,25 +25125,31 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.24.0)':
@@ -25554,6 +25157,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25562,85 +25170,118 @@ snapshots:
'@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
+
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
+
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.0)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0)
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/compat-data': 7.25.8
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7)
+
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.8)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.25.8)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
+
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
@@ -25653,6 +25294,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25666,14 +25316,14 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.0)':
@@ -25692,27 +25342,28 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.25.7
+ optional: true
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.8)':
dependencies:
@@ -25722,53 +25373,58 @@ snapshots:
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25777,23 +25433,28 @@ snapshots:
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25802,7 +25463,7 @@ snapshots:
'@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -25822,76 +25483,61 @@ snapshots:
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.0)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.0)':
- dependencies:
- '@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)':
@@ -25902,143 +25548,138 @@ snapshots:
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26048,45 +25689,50 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26096,7 +25742,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -26106,7 +25752,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -26116,7 +25762,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -26125,8 +25771,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -26134,8 +25780,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -26143,8 +25789,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -26152,8 +25798,8 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -26167,6 +25813,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26179,48 +25834,53 @@ snapshots:
'@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.20.14(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26230,7 +25890,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26238,7 +25898,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26246,7 +25906,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26254,7 +25914,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -26263,7 +25923,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -26272,7 +25932,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -26281,11 +25941,11 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.0)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -26294,10 +25954,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -26308,10 +25968,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -26322,10 +25982,10 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.8)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
@@ -26344,6 +26004,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7)
+ '@babel/traverse': 7.25.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26359,26 +26031,26 @@ snapshots:
'@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
'@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26386,6 +26058,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/template': 7.25.7
+ '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
+
'@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26395,28 +26073,33 @@ snapshots:
'@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26426,75 +26109,75 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26502,7 +26185,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26510,26 +26193,26 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.0)':
@@ -26538,6 +26221,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+
'@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26547,12 +26236,12 @@ snapshots:
'@babel/plugin-transform-for-of@7.18.8(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26560,7 +26249,7 @@ snapshots:
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26568,7 +26257,7 @@ snapshots:
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -26576,30 +26265,30 @@ snapshots:
'@babel/plugin-transform-function-name@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26610,6 +26299,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26622,46 +26320,51 @@ snapshots:
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-literals@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26670,70 +26373,70 @@ snapshots:
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26749,27 +26452,27 @@ snapshots:
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26782,6 +26485,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26795,9 +26507,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26805,9 +26517,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26815,9 +26527,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26825,41 +26537,41 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.0)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -26867,25 +26579,25 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -26893,6 +26605,12 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26902,93 +26620,93 @@ snapshots:
'@babel/plugin-transform-new-target@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-transform-object-super@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.0)
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -26996,7 +26714,7 @@ snapshots:
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -27004,7 +26722,7 @@ snapshots:
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -27012,25 +26730,25 @@ snapshots:
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.0)
transitivePeerDependencies:
@@ -27039,7 +26757,7 @@ snapshots:
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -27048,7 +26766,7 @@ snapshots:
'@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
transitivePeerDependencies:
@@ -27057,33 +26775,43 @@ snapshots:
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27093,7 +26821,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -27101,7 +26829,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -27109,7 +26837,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
@@ -27121,6 +26849,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27134,7 +26870,7 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.0)
transitivePeerDependencies:
- supports-color
@@ -27144,7 +26880,7 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -27154,7 +26890,7 @@ snapshots:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
@@ -27168,6 +26904,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27180,22 +26925,22 @@ snapshots:
'@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.24.0)':
dependencies:
@@ -27205,28 +26950,33 @@ snapshots:
'@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27236,22 +26986,33 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27262,6 +27023,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27271,28 +27037,34 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.0)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.0)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.7)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.25.8)
- '@babel/types': 7.24.0
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -27305,6 +27077,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27320,69 +27103,69 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.1
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
'@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-runtime@7.19.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.25.8)
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.25.8)
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.25.8)
@@ -27402,6 +27185,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27417,28 +27212,33 @@ snapshots:
'@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27447,13 +27247,13 @@ snapshots:
'@babel/plugin-transform-spread@7.20.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -27461,7 +27261,7 @@ snapshots:
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -27469,7 +27269,7 @@ snapshots:
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -27482,6 +27282,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27493,28 +27301,33 @@ snapshots:
'@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27523,42 +27336,42 @@ snapshots:
'@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.0)':
dependencies:
@@ -27573,8 +27386,8 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
@@ -27589,6 +27402,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27603,64 +27427,64 @@ snapshots:
'@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.20.5(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.0)':
dependencies:
@@ -27668,6 +27492,12 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27678,19 +27508,19 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.0)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/preset-env@7.20.2(@babel/core@7.24.0)':
dependencies:
@@ -27775,11 +27605,11 @@ snapshots:
'@babel/preset-env@7.24.7(@babel/core@7.24.0)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.0)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.0)
@@ -27855,18 +27685,18 @@ snapshots:
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.0)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.0)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.0)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/preset-env@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7)
@@ -27942,18 +27772,18 @@ snapshots:
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/preset-env@7.24.7(@babel/core@7.25.8)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.25.8)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.8)
@@ -28029,7 +27859,7 @@ snapshots:
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.8)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.25.8)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.8)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -28044,62 +27874,68 @@ snapshots:
'@babel/preset-modules@0.1.5(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.24.0)
'@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.24.0)
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
'@babel/preset-react@7.24.1(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.0)
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.0)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.0)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-react@7.24.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.7)
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.7)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-react@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-option': 7.23.5
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
'@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.25.8)
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8)
'@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.25.8)
'@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.25.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-typescript@7.24.1(@babel/core@7.24.0)':
dependencies:
@@ -28115,9 +27951,9 @@ snapshots:
'@babel/preset-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
'@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
@@ -28153,10 +27989,6 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.25.0':
- dependencies:
- regenerator-runtime: 0.14.1
-
'@babel/runtime@7.25.7':
dependencies:
regenerator-runtime: 0.14.1
@@ -28164,8 +27996,8 @@ snapshots:
'@babel/template@7.24.0':
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@babel/template@7.24.7':
dependencies:
@@ -28188,13 +28020,13 @@ snapshots:
'@babel/traverse@7.24.0':
dependencies:
'@babel/code-frame': 7.25.7
- '@babel/generator': 7.24.7
+ '@babel/generator': 7.25.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
@@ -28215,21 +28047,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.24.7(supports-color@5.5.0)':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
- debug: 4.3.7(supports-color@5.5.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/traverse@7.25.3':
dependencies:
'@babel/code-frame': 7.24.7
@@ -28254,10 +28071,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.25.7(supports-color@5.5.0)':
+ dependencies:
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
+ debug: 4.3.7(supports-color@5.5.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.24.0':
dependencies:
- '@babel/helper-string-parser': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-string-parser': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
'@babel/types@7.24.7':
@@ -28431,41 +28260,6 @@ snapshots:
- subscriptions-transport-ws
- utf-8-validate
- '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)':
- dependencies:
- '@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4)
- '@certusone/wormhole-sdk-wasm': 0.0.1
- '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@terra-money/terra.js': 3.1.9
- '@xpla/xpla.js': 0.2.3
- algosdk: 2.7.0
- aptos: 1.5.0
- axios: 0.24.0
- bech32: 2.0.0
- binary-parser: 2.2.1
- bs58: 4.0.1
- elliptic: 6.5.6
- js-base64: 3.7.5
- near-api-js: 1.1.0(encoding@0.1.13)
- optionalDependencies:
- '@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4)
- '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4)
- transitivePeerDependencies:
- - bufferutil
- - debug
- - encoding
- - google-protobuf
- - graphql-ws
- - react
- - react-dom
- - subscriptions-transport-ws
- - utf-8-validate
-
'@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3)':
dependencies:
'@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4)
@@ -28501,15 +28295,15 @@ snapshots:
- subscriptions-transport-ws
- utf-8-validate
- '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.4)':
+ '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)':
dependencies:
'@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4)
'@certusone/wormhole-sdk-wasm': 0.0.1
- '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))
- '@mysten/sui.js': 0.32.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@project-serum/anchor': 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
+ '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
+ '@mysten/sui.js': 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@project-serum/anchor': 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@terra-money/terra.js': 3.1.9
'@xpla/xpla.js': 0.2.3
algosdk: 2.7.0
@@ -28523,7 +28317,7 @@ snapshots:
near-api-js: 1.1.0(encoding@0.1.13)
optionalDependencies:
'@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4)
- '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
'@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4)
transitivePeerDependencies:
- bufferutil
@@ -28627,27 +28421,6 @@ snapshots:
- encoding
- utf-8-validate
- '@coral-xyz/anchor@0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@coral-xyz/borsh': 0.29.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@noble/hashes': 1.4.0
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- bs58: 4.0.1
- buffer-layout: 1.2.2
- camelcase: 6.3.0
- cross-fetch: 3.1.5(encoding@0.1.13)
- crypto-hash: 1.3.0
- eventemitter3: 4.0.7
- pako: 2.1.0
- snake-case: 3.0.4
- superstruct: 0.15.5
- toml: 3.0.0
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@coral-xyz/anchor@0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@coral-xyz/borsh': 0.29.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -28734,12 +28507,6 @@ snapshots:
- encoding
- utf-8-validate
- '@coral-xyz/borsh@0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@coral-xyz/borsh@0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
@@ -28752,24 +28519,12 @@ snapshots:
bn.js: 5.2.1
buffer-layout: 1.2.2
- '@coral-xyz/borsh@0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@coral-xyz/borsh@0.27.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bn.js: 5.2.1
buffer-layout: 1.2.2
- '@coral-xyz/borsh@0.28.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@coral-xyz/borsh@0.28.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -28782,12 +28537,6 @@ snapshots:
bn.js: 5.2.1
buffer-layout: 1.2.2
- '@coral-xyz/borsh@0.29.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@coral-xyz/borsh@0.29.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -28850,6 +28599,23 @@ snapshots:
- debug
- utf-8-validate
+ '@cosmjs/cosmwasm-stargate@0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@cosmjs/amino': 0.32.3
+ '@cosmjs/crypto': 0.32.3
+ '@cosmjs/encoding': 0.32.3
+ '@cosmjs/math': 0.32.3
+ '@cosmjs/proto-signing': 0.32.3
+ '@cosmjs/stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/utils': 0.32.3
+ cosmjs-types: 0.9.0
+ pako: 2.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
'@cosmjs/crypto@0.30.1':
dependencies:
'@cosmjs/encoding': 0.30.1
@@ -28928,17 +28694,6 @@ snapshots:
'@cosmjs/utils': 0.32.3
cosmjs-types: 0.9.0
- '@cosmjs/socket@0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@cosmjs/stream': 0.30.1
- isomorphic-ws: 4.0.1(ws@7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10))
- ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
'@cosmjs/socket@0.30.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@cosmjs/stream': 0.30.1
@@ -28960,17 +28715,6 @@ snapshots:
- bufferutil
- utf-8-validate
- '@cosmjs/socket@0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- dependencies:
- '@cosmjs/stream': 0.30.1
- isomorphic-ws: 4.0.1(ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4))
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
'@cosmjs/socket@0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/stream': 0.32.3
@@ -28991,26 +28735,6 @@ snapshots:
- bufferutil
- utf-8-validate
- '@cosmjs/stargate@0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@confio/ics23': 0.6.8
- '@cosmjs/amino': 0.30.1
- '@cosmjs/encoding': 0.30.1
- '@cosmjs/math': 0.30.1
- '@cosmjs/proto-signing': 0.30.1
- '@cosmjs/stream': 0.30.1
- '@cosmjs/tendermint-rpc': 0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@cosmjs/utils': 0.30.1
- cosmjs-types: 0.7.2
- long: 4.0.0
- protobufjs: 6.11.4
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
- optional: true
-
'@cosmjs/stargate@0.30.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@confio/ics23': 0.6.8
@@ -29050,26 +28774,6 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/stargate@0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- dependencies:
- '@confio/ics23': 0.6.8
- '@cosmjs/amino': 0.30.1
- '@cosmjs/encoding': 0.30.1
- '@cosmjs/math': 0.30.1
- '@cosmjs/proto-signing': 0.30.1
- '@cosmjs/stream': 0.30.1
- '@cosmjs/tendermint-rpc': 0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@cosmjs/utils': 0.30.1
- cosmjs-types: 0.7.2
- long: 4.0.0
- protobufjs: 6.11.4
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
- optional: true
-
'@cosmjs/stargate@0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@confio/ics23': 0.6.8
@@ -29129,24 +28833,6 @@ snapshots:
dependencies:
xstream: 11.14.0
- '@cosmjs/tendermint-rpc@0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@cosmjs/crypto': 0.30.1
- '@cosmjs/encoding': 0.30.1
- '@cosmjs/json-rpc': 0.30.1
- '@cosmjs/math': 0.30.1
- '@cosmjs/socket': 0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@cosmjs/stream': 0.30.1
- '@cosmjs/utils': 0.30.1
- axios: 0.21.4
- readonly-date: 1.0.0
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
- optional: true
-
'@cosmjs/tendermint-rpc@0.30.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@cosmjs/crypto': 0.30.1
@@ -29182,24 +28868,6 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/tendermint-rpc@0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- dependencies:
- '@cosmjs/crypto': 0.30.1
- '@cosmjs/encoding': 0.30.1
- '@cosmjs/json-rpc': 0.30.1
- '@cosmjs/math': 0.30.1
- '@cosmjs/socket': 0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@cosmjs/stream': 0.30.1
- '@cosmjs/utils': 0.30.1
- axios: 0.21.4
- readonly-date: 1.0.0
- xstream: 11.14.0
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
- optional: true
-
'@cosmjs/tendermint-rpc@0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/crypto': 0.32.3
@@ -29261,34 +28929,34 @@ snapshots:
transitivePeerDependencies:
- debug
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -29304,31 +28972,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -29344,31 +29012,71 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ transitivePeerDependencies:
+ - '@testing-library/dom'
+ - '@typescript-eslint/eslint-plugin'
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - jest
+ - jiti
+ - supports-color
+ - ts-node
+ - typescript
+
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
+ '@eslint/compat': 1.1.0
+ '@eslint/eslintrc': 3.1.0
+ '@eslint/js': 9.13.0
+ '@next/eslint-plugin-next': 14.2.3
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tsdoc: 0.3.0
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
+ globals: 15.6.0
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -29384,31 +29092,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -29424,31 +29132,31 @@ snapshots:
'@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
- '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.13.0(jiti@1.21.0))
'@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.12.0(jiti@1.21.0)
- eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
- eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-testing-library: 6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-unicorn: 53.0.0(eslint@9.13.0(jiti@1.21.0))
globals: 15.6.0
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ typescript-eslint: 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -29461,18 +29169,18 @@ snapshots:
- ts-node
- typescript
- '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
dependencies:
'@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.3)
'@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.5.0)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7)
+ next: 14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7)
prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4)
+ ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4)
typescript: 5.5.4
transitivePeerDependencies:
- '@babel/core'
@@ -29921,11 +29629,6 @@ snapshots:
eslint: 8.57.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0(jiti@1.21.0))':
- dependencies:
- eslint: 9.12.0(jiti@1.21.0)
- eslint-visitor-keys: 3.4.3
-
'@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@1.21.0))':
dependencies:
eslint: 9.13.0(jiti@1.21.0)
@@ -29971,8 +29674,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
-
'@eslint/core@0.7.0': {}
'@eslint/eslintrc@2.1.4':
@@ -29993,7 +29694,7 @@ snapshots:
dependencies:
ajv: 6.12.6
debug: 4.3.7(supports-color@8.1.1)
- espree: 10.1.0
+ espree: 10.2.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.0
@@ -30007,8 +29708,6 @@ snapshots:
'@eslint/js@8.57.0': {}
- '@eslint/js@9.12.0': {}
-
'@eslint/js@9.13.0': {}
'@eslint/js@9.5.0': {}
@@ -30282,33 +29981,6 @@ snapshots:
- bufferutil
- utf-8-validate
- '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- 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@6.0.4)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
'@ethersproject/random@5.7.0':
dependencies:
'@ethersproject/bytes': 5.7.0
@@ -30433,12 +30105,6 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@floating-ui/dom': 1.6.5
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@floating-ui/react@0.26.17(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
@@ -31494,54 +31160,6 @@ snapshots:
- debug
- google-protobuf
- '@injectivelabs/sdk-ts@1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@apollo/client': 3.7.13(graphql@16.6.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@cosmjs/amino': 0.30.1
- '@cosmjs/proto-signing': 0.30.1
- '@cosmjs/stargate': 0.30.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@ethersproject/bytes': 5.7.0
- '@injectivelabs/core-proto-ts': 0.0.14
- '@injectivelabs/exceptions': 1.14.6(google-protobuf@3.21.2)
- '@injectivelabs/grpc-web': 0.0.1(google-protobuf@3.21.2)
- '@injectivelabs/grpc-web-node-http-transport': 0.0.2(@injectivelabs/grpc-web@0.0.1(google-protobuf@3.21.2))
- '@injectivelabs/grpc-web-react-native-transport': 0.0.2(@injectivelabs/grpc-web@0.0.1(google-protobuf@3.21.2))
- '@injectivelabs/indexer-proto-ts': 1.10.8-rc.4
- '@injectivelabs/mito-proto-ts': 1.0.9
- '@injectivelabs/networks': 1.14.6(google-protobuf@3.21.2)
- '@injectivelabs/test-utils': 1.14.4
- '@injectivelabs/token-metadata': 1.10.42(google-protobuf@3.21.2)
- '@injectivelabs/ts-types': 1.14.6
- '@injectivelabs/utils': 1.14.6(google-protobuf@3.21.2)
- '@metamask/eth-sig-util': 4.0.1
- axios: 0.27.2
- bech32: 2.0.0
- bip39: 3.0.4
- cosmjs-types: 0.7.2
- eth-crypto: 2.6.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- ethereumjs-util: 7.1.5
- ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- google-protobuf: 3.21.2
- graphql: 16.6.0
- http-status-codes: 2.2.0
- js-sha3: 0.8.0
- jscrypto: 1.0.3
- keccak256: 1.0.6
- link-module-alias: 1.2.0
- rxjs: 7.8.0
- secp256k1: 4.0.3
- shx: 0.3.4
- snakecase-keys: 5.4.5
- transitivePeerDependencies:
- - bufferutil
- - debug
- - graphql-ws
- - react
- - react-dom
- - subscriptions-transport-ws
- - utf-8-validate
- optional: true
-
'@injectivelabs/sdk-ts@1.10.72(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@apollo/client': 3.7.13(graphql@16.6.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -31637,54 +31255,6 @@ snapshots:
- subscriptions-transport-ws
- utf-8-validate
- '@injectivelabs/sdk-ts@1.10.72(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- dependencies:
- '@apollo/client': 3.7.13(graphql@16.6.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@cosmjs/amino': 0.30.1
- '@cosmjs/proto-signing': 0.30.1
- '@cosmjs/stargate': 0.30.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@ethersproject/bytes': 5.7.0
- '@injectivelabs/core-proto-ts': 0.0.14
- '@injectivelabs/exceptions': 1.14.6(google-protobuf@3.21.2)
- '@injectivelabs/grpc-web': 0.0.1(google-protobuf@3.21.2)
- '@injectivelabs/grpc-web-node-http-transport': 0.0.2(@injectivelabs/grpc-web@0.0.1(google-protobuf@3.21.2))
- '@injectivelabs/grpc-web-react-native-transport': 0.0.2(@injectivelabs/grpc-web@0.0.1(google-protobuf@3.21.2))
- '@injectivelabs/indexer-proto-ts': 1.10.8-rc.4
- '@injectivelabs/mito-proto-ts': 1.0.9
- '@injectivelabs/networks': 1.14.6(google-protobuf@3.21.2)
- '@injectivelabs/test-utils': 1.14.4
- '@injectivelabs/token-metadata': 1.10.42(google-protobuf@3.21.2)
- '@injectivelabs/ts-types': 1.14.6
- '@injectivelabs/utils': 1.14.6(google-protobuf@3.21.2)
- '@metamask/eth-sig-util': 4.0.1
- axios: 0.27.2
- bech32: 2.0.0
- bip39: 3.0.4
- cosmjs-types: 0.7.2
- eth-crypto: 2.6.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- ethereumjs-util: 7.1.5
- ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- google-protobuf: 3.21.2
- graphql: 16.6.0
- http-status-codes: 2.2.0
- js-sha3: 0.8.0
- jscrypto: 1.0.3
- keccak256: 1.0.6
- link-module-alias: 1.2.0
- rxjs: 7.8.0
- secp256k1: 4.0.3
- shx: 0.3.4
- snakecase-keys: 5.4.5
- transitivePeerDependencies:
- - bufferutil
- - debug
- - graphql-ws
- - react
- - react-dom
- - subscriptions-transport-ws
- - utf-8-validate
- optional: true
-
'@injectivelabs/sdk-ts@1.14.7(bufferutil@4.0.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@apollo/client': 3.7.13(graphql@16.8.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -31916,7 +31486,7 @@ snapshots:
'@internationalized/date@3.6.0':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@internationalized/message@3.1.5':
dependencies:
@@ -31942,7 +31512,7 @@ snapshots:
'@internationalized/string@3.2.5':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@ipld/dag-pb@2.1.18':
dependencies:
@@ -31989,7 +31559,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)':
+ '@jest/core@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)':
dependencies:
'@jest/console': 27.5.1
'@jest/reporters': 27.5.1
@@ -32003,7 +31573,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 27.5.1
- jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-regex-util: 27.5.1
@@ -32038,7 +31608,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5))
jest-haste-map: 29.7.0
@@ -32073,7 +31643,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@16.18.101)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32108,7 +31678,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32143,7 +31713,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5))
jest-haste-map: 29.7.0
@@ -32178,7 +31748,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.34)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32213,7 +31783,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32248,7 +31818,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -32284,7 +31854,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -32319,7 +31889,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.2)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32354,7 +31924,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-haste-map: 29.7.0
@@ -32389,7 +31959,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
jest-haste-map: 29.7.0
@@ -32424,7 +31994,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32459,7 +32029,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))
jest-haste-map: 29.7.0
@@ -32494,7 +32064,7 @@ snapshots:
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jest-changed-files: 29.7.0
jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-haste-map: 29.7.0
@@ -32860,11 +32430,11 @@ snapshots:
'@json-rpc-tools/types': 1.7.6
'@pedrouid/environment': 1.0.1
- '@kamino-finance/limo-sdk@0.3.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(chai@5.1.1)(decimal.js@10.4.3)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)(utf-8-validate@5.0.10)':
+ '@kamino-finance/limo-sdk@0.3.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(chai@5.1.1)(decimal.js@10.4.3)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)':
dependencies:
'@coral-xyz/anchor': 0.28.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@coral-xyz/borsh': 0.28.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/spl-token': 0.3.11(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)(utf-8-validate@5.0.10)
+ '@solana/spl-token': 0.3.11(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
base58-js: 1.0.5
bn.js: 5.2.1
@@ -32875,7 +32445,7 @@ snapshots:
decimal.js: 10.4.3
decimal.js-light: 2.5.1
dotenv: 10.0.0
- fast-check: 3.22.0
+ fast-check: 3.10.0
nyc: 15.1.0
transitivePeerDependencies:
- bufferutil
@@ -32883,7 +32453,6 @@ snapshots:
- encoding
- fastestsmallesttextencoderdecoder
- supports-color
- - typescript
- utf-8-validate
'@keystonehq/alias-sampling@0.1.2': {}
@@ -33320,17 +32889,17 @@ snapshots:
'@matterlabs/hardhat-zksync-upgradable': 1.5.2(bufferutil@4.0.7)(encoding@0.1.13)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)
'@matterlabs/hardhat-zksync-verify': 1.6.0(@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))
'@matterlabs/zksync-contracts': 0.6.1(@openzeppelin/contracts-upgradeable@4.9.6)(@openzeppelin/contracts@4.9.6)
- '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))
+ '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))
'@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))
'@openzeppelin/contracts': 4.9.6
'@openzeppelin/contracts-upgradeable': 4.9.6
'@openzeppelin/upgrades-core': 1.35.0
chai: 4.5.0
- ethers: 6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)
sinon: 18.0.0
sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.0)
- zksync-ethers: 6.11.2(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))
+ zksync-ethers: 6.11.2(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))
transitivePeerDependencies:
- bufferutil
- c-kzg
@@ -33442,22 +33011,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
i18next: 22.5.1
qr-code-styling: 1.6.0-rc.1
- react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
optionalDependencies:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
- '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 15.0.0
'@metamask/sdk-communication-layer': 0.26.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.19)(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.26.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
cross-fetch: 4.0.0(encoding@0.1.13)
@@ -33470,7 +33039,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.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0
socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -33590,29 +33159,13 @@ snapshots:
dependencies:
bs58: 6.0.0
- '@mysten/sui.js@0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)':
- dependencies:
- '@mysten/bcs': 0.7.1
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
- '@suchipi/femver': 1.0.0
- jayson: 4.1.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- rpc-websockets: 7.5.1
- superstruct: 1.0.4
- tweetnacl: 1.0.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
'@mysten/sui.js@0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)':
dependencies:
'@mysten/bcs': 0.7.1
'@noble/curves': 1.6.0
'@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
+ '@scure/bip32': 1.5.0
+ '@scure/bip39': 1.4.0
'@suchipi/femver': 1.0.0
jayson: 4.1.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)
rpc-websockets: 7.5.1
@@ -33627,8 +33180,8 @@ snapshots:
'@mysten/bcs': 0.7.1
'@noble/curves': 1.6.0
'@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
+ '@scure/bip32': 1.5.0
+ '@scure/bip39': 1.4.0
'@suchipi/femver': 1.0.0
jayson: 4.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
rpc-websockets: 7.5.1
@@ -33638,22 +33191,6 @@ snapshots:
- bufferutil
- utf-8-validate
- '@mysten/sui.js@0.32.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
- dependencies:
- '@mysten/bcs': 0.7.1
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.4.0
- '@scure/bip39': 1.3.0
- '@suchipi/femver': 1.0.0
- jayson: 4.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- rpc-websockets: 7.5.1
- superstruct: 1.0.4
- tweetnacl: 1.0.3
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
'@mysten/sui@1.3.0(svelte@4.2.18)(typescript@5.4.5)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
@@ -33777,79 +33314,75 @@ snapshots:
'@next/env@14.2.15': {}
- '@next/env@15.0.3': {}
-
'@next/env@15.1.0': {}
+ '@next/env@15.1.2': {}
+
'@next/eslint-plugin-next@14.2.3':
dependencies:
glob: 10.3.10
- '@next/eslint-plugin-next@15.0.3':
- dependencies:
- fast-glob: 3.3.1
-
'@next/swc-darwin-arm64@14.2.15':
optional: true
- '@next/swc-darwin-arm64@15.0.3':
+ '@next/swc-darwin-arm64@15.1.0':
optional: true
- '@next/swc-darwin-arm64@15.1.0':
+ '@next/swc-darwin-arm64@15.1.2':
optional: true
'@next/swc-darwin-x64@14.2.15':
optional: true
- '@next/swc-darwin-x64@15.0.3':
+ '@next/swc-darwin-x64@15.1.0':
optional: true
- '@next/swc-darwin-x64@15.1.0':
+ '@next/swc-darwin-x64@15.1.2':
optional: true
'@next/swc-linux-arm64-gnu@14.2.15':
optional: true
- '@next/swc-linux-arm64-gnu@15.0.3':
+ '@next/swc-linux-arm64-gnu@15.1.0':
optional: true
- '@next/swc-linux-arm64-gnu@15.1.0':
+ '@next/swc-linux-arm64-gnu@15.1.2':
optional: true
'@next/swc-linux-arm64-musl@14.2.15':
optional: true
- '@next/swc-linux-arm64-musl@15.0.3':
+ '@next/swc-linux-arm64-musl@15.1.0':
optional: true
- '@next/swc-linux-arm64-musl@15.1.0':
+ '@next/swc-linux-arm64-musl@15.1.2':
optional: true
'@next/swc-linux-x64-gnu@14.2.15':
optional: true
- '@next/swc-linux-x64-gnu@15.0.3':
+ '@next/swc-linux-x64-gnu@15.1.0':
optional: true
- '@next/swc-linux-x64-gnu@15.1.0':
+ '@next/swc-linux-x64-gnu@15.1.2':
optional: true
'@next/swc-linux-x64-musl@14.2.15':
optional: true
- '@next/swc-linux-x64-musl@15.0.3':
+ '@next/swc-linux-x64-musl@15.1.0':
optional: true
- '@next/swc-linux-x64-musl@15.1.0':
+ '@next/swc-linux-x64-musl@15.1.2':
optional: true
'@next/swc-win32-arm64-msvc@14.2.15':
optional: true
- '@next/swc-win32-arm64-msvc@15.0.3':
+ '@next/swc-win32-arm64-msvc@15.1.0':
optional: true
- '@next/swc-win32-arm64-msvc@15.1.0':
+ '@next/swc-win32-arm64-msvc@15.1.2':
optional: true
'@next/swc-win32-ia32-msvc@14.2.15':
@@ -33858,15 +33391,15 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.15':
optional: true
- '@next/swc-win32-x64-msvc@15.0.3':
+ '@next/swc-win32-x64-msvc@15.1.0':
optional: true
- '@next/swc-win32-x64-msvc@15.1.0':
+ '@next/swc-win32-x64-msvc@15.1.2':
optional: true
- '@next/third-parties@14.2.4(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)':
+ '@next/third-parties@14.2.4(next@15.1.0(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)':
dependencies:
- next: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
+ next: 15.1.0(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7)
react: 19.0.0
third-party-capital: 1.0.20
@@ -34026,10 +33559,10 @@ snapshots:
'@nomicfoundation/ethereumjs-rlp': 5.0.4
ethereum-cryptography: 0.1.3
- '@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))':
+ '@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))':
dependencies:
debug: 4.3.7(supports-color@8.1.1)
- ethers: 6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)
lodash.isequal: 4.5.0
transitivePeerDependencies:
@@ -34684,28 +34217,6 @@ snapshots:
type-fest: 4.26.1
webpack-hot-middleware: 2.26.1
- '@project-serum/anchor@0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@project-serum/borsh': 0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- base64-js: 1.5.1
- bn.js: 5.2.1
- bs58: 4.0.1
- buffer-layout: 1.2.2
- camelcase: 5.3.1
- cross-fetch: 3.1.5(encoding@0.1.13)
- crypto-hash: 1.3.0
- eventemitter3: 4.0.7
- js-sha256: 0.9.0
- pako: 2.1.0
- snake-case: 3.0.4
- superstruct: 0.15.5
- toml: 3.0.0
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@project-serum/anchor@0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)':
dependencies:
'@project-serum/borsh': 0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))
@@ -34750,34 +34261,6 @@ snapshots:
- encoding
- utf-8-validate
- '@project-serum/anchor@0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)':
- dependencies:
- '@project-serum/borsh': 0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- base64-js: 1.5.1
- bn.js: 5.2.1
- bs58: 4.0.1
- buffer-layout: 1.2.2
- camelcase: 5.3.1
- cross-fetch: 3.1.5(encoding@0.1.13)
- crypto-hash: 1.3.0
- eventemitter3: 4.0.7
- js-sha256: 0.9.0
- pako: 2.1.0
- snake-case: 3.0.4
- superstruct: 0.15.5
- toml: 3.0.0
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
- '@project-serum/borsh@0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@project-serum/borsh@0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
@@ -34790,12 +34273,6 @@ snapshots:
bn.js: 5.2.1
buffer-layout: 1.2.2
- '@project-serum/borsh@0.2.5(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))':
- dependencies:
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- bn.js: 5.2.1
- buffer-layout: 1.2.2
-
'@project-serum/sol-wallet-adapter@0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -34836,17 +34313,6 @@ snapshots:
- encoding
- utf-8-validate
- '@pythnetwork/client@2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@coral-xyz/anchor': 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@coral-xyz/borsh': 0.28.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- buffer: 6.0.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@pythnetwork/client@2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@coral-xyz/anchor': 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -34869,15 +34335,15 @@ snapshots:
- encoding
- utf-8-validate
- '@pythnetwork/price-service-client@1.9.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)':
+ '@pythnetwork/price-service-client@1.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@pythnetwork/price-service-sdk': 1.7.1
'@types/ws': 8.5.13
axios: 1.7.2
axios-retry: 3.9.1
- isomorphic-ws: 4.0.1(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))
- ts-log: 2.2.5
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ isomorphic-ws: 4.0.1(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ ts-log: 2.2.7
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
@@ -34904,54 +34370,54 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
- '@radix-ui/react-collection@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-collection@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-compose-refs@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
- '@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-context@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
- '@radix-ui/react-context@1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-direction@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-dismissable-layer@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -34964,35 +34430,35 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-id@1.0.0(react@19.0.0)':
dependencies:
@@ -35000,12 +34466,12 @@ snapshots:
'@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
react: 19.0.0
- '@radix-ui/react-id@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-label@2.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -35032,23 +34498,23 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-arrow': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
'@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-portal@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -35057,15 +34523,15 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-presence@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -35082,43 +34548,43 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
- '@radix-ui/react-select@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-select@2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.6.2(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-slot@1.0.1(react@19.0.0)':
dependencies:
@@ -35126,27 +34592,27 @@ snapshots:
'@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
react: 19.0.0
- '@radix-ui/react-slot@1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-slot@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
- '@radix-ui/react-switch@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-switch@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/react-tooltip@1.0.3(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -35173,11 +34639,11 @@ snapshots:
'@babel/runtime': 7.25.7
react: 19.0.0
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0)':
dependencies:
@@ -35185,12 +34651,12 @@ snapshots:
'@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
react: 19.0.0
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-use-escape-keydown@1.0.2(react@19.0.0)':
dependencies:
@@ -35198,29 +34664,29 @@ snapshots:
'@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
react: 19.0.0
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.7
react: 19.0.0
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-use-rect@1.0.0(react@19.0.0)':
dependencies:
@@ -35228,12 +34694,12 @@ snapshots:
'@radix-ui/rect': 1.0.0
react: 19.0.0
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
'@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-use-size@1.0.0(react@19.0.0)':
dependencies:
@@ -35241,12 +34707,12 @@ snapshots:
'@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
react: 19.0.0
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
'@radix-ui/react-visually-hidden@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
@@ -35255,14 +34721,14 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.11))(@types/react@18.3.11)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.5(@types/react@18.3.11)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
'@radix-ui/rect@1.0.0':
dependencies:
@@ -35277,7 +34743,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/breadcrumbs': 3.7.9(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/button@3.11.0(react@19.0.0)':
@@ -35289,7 +34755,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/calendar@3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -35303,7 +34769,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/calendar': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35318,7 +34784,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/calendar': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35334,7 +34800,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/checkbox': 3.9.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/collections@3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -35342,7 +34808,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -35352,7 +34818,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -35371,7 +34837,7 @@ snapshots:
'@react-stately/form': 3.1.0(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35389,7 +34855,7 @@ snapshots:
'@react-stately/form': 3.1.0(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35409,7 +34875,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/combobox': 3.13.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35429,7 +34895,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/combobox': 3.13.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35452,7 +34918,7 @@ snapshots:
'@react-types/datepicker': 3.9.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35475,7 +34941,7 @@ snapshots:
'@react-types/datepicker': 3.9.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35486,7 +34952,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35497,7 +34963,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/dialog': 3.5.14(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35507,7 +34973,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/disclosure': 3.0.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35517,7 +34983,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/disclosure': 3.0.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35532,7 +34998,7 @@ snapshots:
'@react-stately/dnd': 3.5.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35547,7 +35013,7 @@ snapshots:
'@react-stately/dnd': 3.5.0(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35556,7 +35022,7 @@ snapshots:
'@react-aria/interactions': 3.22.4(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.11
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -35565,7 +35031,7 @@ snapshots:
'@react-aria/interactions': 3.22.5(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -35626,7 +35092,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35642,7 +35108,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35655,7 +35121,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/i18n@3.12.4(react@19.0.0)':
@@ -35667,7 +35133,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/interactions@3.22.3(react@19.0.0)':
@@ -35675,7 +35141,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/interactions@3.22.4(react@19.0.0)':
@@ -35683,7 +35149,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.11
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/interactions@3.22.5(react@19.0.0)':
@@ -35691,21 +35157,21 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/label@3.7.13(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/landmark@3.0.0-beta.16(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.25.3(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -35716,7 +35182,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/link': 3.5.9(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/listbox@3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -35729,7 +35195,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/listbox': 3.5.3(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35743,13 +35209,13 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/listbox': 3.5.3(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
'@react-aria/live-announcer@3.4.1':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@react-aria/menu@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
dependencies:
@@ -35766,7 +35232,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35785,7 +35251,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35794,7 +35260,7 @@ snapshots:
'@react-aria/progress': 3.4.18(react@19.0.0)
'@react-types/meter': 3.4.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/numberfield@3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -35809,7 +35275,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/numberfield': 3.8.7(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35825,7 +35291,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/numberfield': 3.8.7(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35841,7 +35307,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/overlays': 3.8.11(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35857,7 +35323,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/overlays': 3.8.11(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35868,7 +35334,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/progress': 3.5.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/radio@3.10.10(react@19.0.0)':
@@ -35882,7 +35348,7 @@ snapshots:
'@react-stately/radio': 3.10.9(react@19.0.0)
'@react-types/radio': 3.8.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/searchfield@3.7.11(react@19.0.0)':
@@ -35894,7 +35360,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/searchfield': 3.5.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/select@3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -35912,7 +35378,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/select': 3.9.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35931,7 +35397,7 @@ snapshots:
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/select': 3.9.8(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35943,7 +35409,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/selection': 3.18.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -35955,7 +35421,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/selection': 3.18.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -35963,7 +35429,7 @@ snapshots:
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/slider@3.7.14(react@19.0.0)':
@@ -35976,7 +35442,7 @@ snapshots:
'@react-stately/slider': 3.6.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/slider': 3.7.7(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/spinbutton@3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -36008,7 +35474,7 @@ snapshots:
'@react-aria/ssr@3.9.7(react@19.0.0)':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/switch@3.6.10(react@19.0.0)':
@@ -36017,7 +35483,7 @@ snapshots:
'@react-stately/toggle': 3.8.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/switch': 3.5.7(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/table@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -36036,7 +35502,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -36056,7 +35522,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -36069,7 +35535,7 @@ snapshots:
'@react-stately/tabs': 3.7.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tabs': 3.3.11(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -36082,7 +35548,7 @@ snapshots:
'@react-stately/tabs': 3.7.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tabs': 3.3.11(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -36097,7 +35563,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -36112,7 +35578,7 @@ snapshots:
'@react-stately/list': 3.11.1(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -36126,7 +35592,7 @@ snapshots:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/textfield': 3.10.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/toast@3.0.0-beta.16(react@19.0.0)':
@@ -36158,7 +35624,7 @@ snapshots:
'@react-aria/i18n': 3.12.4(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/tooltip@3.7.10(react@19.0.0)':
@@ -36169,7 +35635,7 @@ snapshots:
'@react-stately/tooltip': 3.5.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/tooltip': 3.4.13(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-aria/tree@3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0)':
@@ -36181,7 +35647,7 @@ snapshots:
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -36194,7 +35660,7 @@ snapshots:
'@react-stately/tree': 3.8.6(react@19.0.0)
'@react-types/button': 3.10.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -36203,7 +35669,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@19.0.0)
'@react-stately/utils': 3.10.4(react@19.0.0)
'@react-types/shared': 3.25.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -36212,7 +35678,7 @@ snapshots:
'@react-aria/ssr': 3.9.7(react@19.0.0)
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
clsx: 2.1.1
react: 19.0.0
@@ -36223,7 +35689,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/virtualizer': 4.2.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 18.3.1(react@18.3.1)
@@ -36234,7 +35700,7 @@ snapshots:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-stately/virtualizer': 4.2.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
@@ -36243,7 +35709,7 @@ snapshots:
'@react-aria/interactions': 3.22.5(react@19.0.0)
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-hookz/deep-equal@1.0.4': {}
@@ -36266,6 +35732,12 @@ snapshots:
react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
optional: true
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))':
+ dependencies:
+ merge-options: 3.0.4
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ optional: true
+
'@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
@@ -36434,6 +35906,13 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
'@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))
@@ -36490,6 +35969,55 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/babel-preset@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-export-default-from': 7.25.8(@babel/core@7.24.7)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/template': 7.25.7
+ '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.7)
+ react-refresh: 0.14.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
'@react-native/babel-preset@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/core': 7.25.8
@@ -36552,6 +36080,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/parser': 7.25.8
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ glob: 7.2.3
+ hermes-parser: 0.19.1
+ invariant: 2.2.4
+ jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
'@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/parser': 7.25.8
@@ -36587,6 +36128,28 @@ snapshots:
- supports-color
- utf-8-validate
+ '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(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.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ chalk: 4.1.2
+ execa: 5.1.1
+ metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-core: 0.80.12
+ 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.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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)
@@ -36646,6 +36209,16 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@react-native/babel-preset': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ 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.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/core': 7.25.8
@@ -36676,6 +36249,15 @@ snapshots:
optionalDependencies:
'@types/react': 19.0.1
+ '@react-native/virtualized-lists@0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 19.0.0
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ '@types/react': 19.0.1
+
'@react-native/virtualized-lists@0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)':
dependencies:
invariant: 2.2.4
@@ -36720,7 +36302,7 @@ snapshots:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/color': 3.0.1(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/combobox@3.10.1(react@19.0.0)':
@@ -36758,7 +36340,7 @@ snapshots:
dependencies:
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/dnd@3.5.0(react@19.0.0)':
@@ -36795,7 +36377,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/list@3.11.1(react@19.0.0)':
@@ -36812,7 +36394,7 @@ snapshots:
'@react-stately/overlays': 3.6.12(react@19.0.0)
'@react-types/menu': 3.9.13(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/numberfield@3.9.8(react@19.0.0)':
@@ -36862,7 +36444,7 @@ snapshots:
'@react-stately/collections': 3.12.0(react@19.0.0)
'@react-stately/utils': 3.10.5(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/slider@3.6.0(react@19.0.0)':
@@ -36883,7 +36465,7 @@ snapshots:
'@react-types/grid': 3.2.10(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
'@react-types/table': 3.10.3(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/tabs@3.7.0(react@19.0.0)':
@@ -36931,14 +36513,14 @@ snapshots:
'@react-stately/utils@3.10.5(react@19.0.0)':
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-stately/virtualizer@4.2.0(react@19.0.0)':
dependencies:
'@react-aria/utils': 3.26.0(react@19.0.0)
'@react-types/shared': 3.26.0(react@19.0.0)
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
react: 19.0.0
'@react-types/breadcrumbs@3.7.9(react@19.0.0)':
@@ -37136,8 +36718,6 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rtsao/scc@1.1.0': {}
-
'@rushstack/eslint-patch@1.10.3': {}
'@safe-global/safe-apps-provider@0.18.1(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)':
@@ -37188,25 +36768,19 @@ snapshots:
dependencies:
'@noble/curves': 1.2.0
'@noble/hashes': 1.3.3
- '@scure/base': 1.1.7
-
- '@scure/bip32@1.3.3':
- dependencies:
- '@noble/curves': 1.3.0
- '@noble/hashes': 1.3.3
'@scure/base': 1.1.9
'@scure/bip32@1.4.0':
dependencies:
'@noble/curves': 1.4.2
'@noble/hashes': 1.4.0
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip32@1.5.0':
dependencies:
'@noble/curves': 1.6.0
'@noble/hashes': 1.5.0
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip32@1.6.0':
dependencies:
@@ -37217,7 +36791,7 @@ snapshots:
'@scure/bip39@1.1.0':
dependencies:
'@noble/hashes': 1.1.5
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip39@1.1.1':
dependencies:
@@ -37225,11 +36799,6 @@ snapshots:
'@scure/base': 1.1.9
'@scure/bip39@1.2.1':
- dependencies:
- '@noble/hashes': 1.3.3
- '@scure/base': 1.1.7
-
- '@scure/bip39@1.2.2':
dependencies:
'@noble/hashes': 1.3.3
'@scure/base': 1.1.9
@@ -37237,7 +36806,7 @@ snapshots:
'@scure/bip39@1.3.0':
dependencies:
'@noble/hashes': 1.4.0
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@scure/bip39@1.4.0':
dependencies:
@@ -37543,17 +37112,6 @@ snapshots:
- react
- react-native
- '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@solana/buffer-layout': 4.0.1
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bigint-buffer: 1.1.5
- bignumber.js: 9.1.2
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)':
dependencies:
'@solana/buffer-layout': 4.0.1
@@ -37576,17 +37134,6 @@ snapshots:
- encoding
- utf-8-validate
- '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)':
- dependencies:
- '@solana/buffer-layout': 4.0.1
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- bigint-buffer: 1.1.5
- bignumber.js: 9.1.2
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@solana/buffer-layout@4.0.1':
dependencies:
buffer: 6.0.3
@@ -37595,35 +37142,17 @@ snapshots:
dependencies:
'@solana/errors': 2.0.0-preview.2
- '@solana/codecs-core@2.0.0-rc.1(typescript@5.5.2)':
- dependencies:
- '@solana/errors': 2.0.0-rc.1(typescript@5.5.2)
- typescript: 5.5.2
-
'@solana/codecs-data-structures@2.0.0-preview.2':
dependencies:
'@solana/codecs-core': 2.0.0-preview.2
'@solana/codecs-numbers': 2.0.0-preview.2
'@solana/errors': 2.0.0-preview.2
- '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.5.2)':
- dependencies:
- '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/errors': 2.0.0-rc.1(typescript@5.5.2)
- typescript: 5.5.2
-
'@solana/codecs-numbers@2.0.0-preview.2':
dependencies:
'@solana/codecs-core': 2.0.0-preview.2
'@solana/errors': 2.0.0-preview.2
- '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.5.2)':
- dependencies:
- '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/errors': 2.0.0-rc.1(typescript@5.5.2)
- typescript: 5.5.2
-
'@solana/codecs-strings@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)':
dependencies:
'@solana/codecs-core': 2.0.0-preview.2
@@ -37631,14 +37160,6 @@ snapshots:
'@solana/errors': 2.0.0-preview.2
fastestsmallesttextencoderdecoder: 1.0.22
- '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)':
- dependencies:
- '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/errors': 2.0.0-rc.1(typescript@5.5.2)
- fastestsmallesttextencoderdecoder: 1.0.22
- typescript: 5.5.2
-
'@solana/codecs@2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)':
dependencies:
'@solana/codecs-core': 2.0.0-preview.2
@@ -37649,44 +37170,16 @@ snapshots:
transitivePeerDependencies:
- fastestsmallesttextencoderdecoder
- '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)':
- dependencies:
- '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)
- '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)
- typescript: 5.5.2
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
-
'@solana/errors@2.0.0-preview.2':
dependencies:
chalk: 5.3.0
commander: 12.1.0
- '@solana/errors@2.0.0-rc.1(typescript@5.5.2)':
- dependencies:
- chalk: 5.3.0
- commander: 12.1.0
- typescript: 5.5.2
-
'@solana/options@2.0.0-preview.2':
dependencies:
'@solana/codecs-core': 2.0.0-preview.2
'@solana/codecs-numbers': 2.0.0-preview.2
- '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)':
- dependencies:
- '@solana/codecs-core': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.5.2)
- '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)
- '@solana/errors': 2.0.0-rc.1(typescript@5.5.2)
- typescript: 5.5.2
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
-
'@solana/spl-governance@0.3.28(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -37718,37 +37211,17 @@ snapshots:
transitivePeerDependencies:
- fastestsmallesttextencoderdecoder
- '@solana/spl-token-metadata@0.1.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)':
- dependencies:
- '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- transitivePeerDependencies:
- - fastestsmallesttextencoderdecoder
- - typescript
-
- '@solana/spl-token@0.3.11(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)(utf-8-validate@5.0.10)':
+ '@solana/spl-token@0.3.11(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)':
dependencies:
'@solana/buffer-layout': 4.0.1
'@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/spl-token-metadata': 0.1.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.5.2)
+ '@solana/spl-token-metadata': 0.1.4(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
buffer: 6.0.3
transitivePeerDependencies:
- bufferutil
- encoding
- fastestsmallesttextencoderdecoder
- - typescript
- - utf-8-validate
-
- '@solana/spl-token@0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@solana/buffer-layout': 4.0.1
- '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- buffer: 6.0.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- utf-8-validate
'@solana/spl-token@0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)':
@@ -37773,17 +37246,6 @@ snapshots:
- encoding
- utf-8-validate
- '@solana/spl-token@0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)':
- dependencies:
- '@solana/buffer-layout': 4.0.1
- '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)
- buffer: 6.0.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@solana/spl-token@0.4.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)':
dependencies:
'@solana/buffer-layout': 4.0.1
@@ -38485,33 +37947,11 @@ snapshots:
- encoding
- utf-8-validate
- '@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@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.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- node-fetch: 2.7.0(encoding@0.1.13)
- rpc-websockets: 8.0.1
- superstruct: 1.0.4
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)':
dependencies:
- '@babel/runtime': 7.25.0
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
+ '@babel/runtime': 7.25.7
+ '@noble/curves': 1.6.0
+ '@noble/hashes': 1.5.0
'@solana/buffer-layout': 4.0.1
agentkeepalive: 4.5.0
bigint-buffer: 1.1.5
@@ -38531,9 +37971,9 @@ snapshots:
'@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.25.0
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
+ '@babel/runtime': 7.25.7
+ '@noble/curves': 1.6.0
+ '@noble/hashes': 1.5.0
'@solana/buffer-layout': 4.0.1
agentkeepalive: 4.5.0
bigint-buffer: 1.1.5
@@ -38551,33 +37991,11 @@ snapshots:
- encoding
- utf-8-validate
- '@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.4)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@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.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- node-fetch: 2.7.0(encoding@0.1.13)
- rpc-websockets: 8.0.1
- superstruct: 1.0.4
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
-
'@solana/web3.js@1.92.3(encoding@0.1.13)':
dependencies:
- '@babel/runtime': 7.25.0
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
+ '@babel/runtime': 7.25.7
+ '@noble/curves': 1.6.0
+ '@noble/hashes': 1.5.0
'@solana/buffer-layout': 4.0.1
agentkeepalive: 4.5.0
bigint-buffer: 1.1.5
@@ -38637,18 +38055,7 @@ snapshots:
dependencies:
antlr4ts: 0.5.0-alpha.4
- '@solidity-parser/parser@0.17.0':
- optional: true
-
- '@sqds/mesh@1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
- dependencies:
- '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- bn.js: 5.2.1
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - utf-8-validate
+ '@solidity-parser/parser@0.17.0': {}
'@sqds/mesh@1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
@@ -38988,7 +38395,7 @@ snapshots:
dependencies:
storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@storybook/nextjs@8.3.5(esbuild@0.22.0)(next@15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))':
+ '@storybook/nextjs@8.3.5(esbuild@0.22.0)(next@15.1.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))':
dependencies:
'@babel/core': 7.25.8
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8)
@@ -39016,7 +38423,7 @@ snapshots:
fs-extra: 11.2.0
image-size: 1.1.1
loader-utils: 3.2.1
- next: 15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7)
+ next: 15.1.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7)
node-polyfill-webpack-plugin: 2.0.1(webpack@5.91.0(esbuild@0.22.0))
pnp-webpack-plugin: 1.7.0(typescript@5.6.3)
postcss: 8.4.47
@@ -39181,65 +38588,65 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@svgr/babel-preset@6.5.1(@babel/core@7.24.7)':
dependencies:
@@ -39253,17 +38660,17 @@ snapshots:
'@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.7)
'@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.7)
- '@svgr/babel-preset@8.1.0(@babel/core@7.24.7)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.7)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.25.8)
'@svgr/core@6.5.1':
dependencies:
@@ -39277,8 +38684,8 @@ snapshots:
'@svgr/core@8.1.0(typescript@5.5.2)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.5.2)
snake-case: 3.0.4
@@ -39288,8 +38695,8 @@ snapshots:
'@svgr/core@8.1.0(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.5.4)
snake-case: 3.0.4
@@ -39299,8 +38706,8 @@ snapshots:
'@svgr/core@8.1.0(typescript@5.6.3)':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.6.3)
snake-case: 3.0.4
@@ -39310,13 +38717,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@6.5.1':
dependencies:
- '@babel/types': 7.24.0
- entities: 4.4.0
+ '@babel/types': 7.25.8
+ entities: 4.5.0
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.24.7
- entities: 4.4.0
+ '@babel/types': 7.25.8
+ entities: 4.5.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
dependencies:
@@ -39330,8 +38737,8 @@ snapshots:
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.2))':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
'@svgr/core': 8.1.0(typescript@5.5.2)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -39340,8 +38747,8 @@ snapshots:
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.4))':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
'@svgr/core': 8.1.0(typescript@5.5.4)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -39350,8 +38757,8 @@ snapshots:
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))':
dependencies:
- '@babel/core': 7.24.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
'@svgr/core': 8.1.0(typescript@5.6.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -39557,14 +38964,14 @@ snapshots:
bech32: 2.0.0
bip32: 2.0.6
bip39: 3.0.4
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
decimal.js: 10.4.3
jscrypto: 1.0.3
readable-stream: 3.6.2
secp256k1: 4.0.3
tmp: 0.2.3
utf-8-validate: 5.0.10
- ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- debug
@@ -40279,24 +39686,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@types/bn.js@4.11.6':
dependencies:
@@ -40566,6 +39973,8 @@ snapshots:
'@types/node@18.11.18': {}
+ '@types/node@18.15.13': {}
+
'@types/node@18.19.34':
dependencies:
undici-types: 5.26.5
@@ -40594,10 +40003,6 @@ snapshots:
dependencies:
undici-types: 5.26.5
- '@types/node@20.14.9':
- dependencies:
- undici-types: 5.26.5
-
'@types/node@22.2.0':
dependencies:
undici-types: 6.13.0
@@ -40640,10 +40045,6 @@ snapshots:
'@types/range-parser@1.2.7':
optional: true
- '@types/react-dom@18.3.5(@types/react@18.3.11)':
- dependencies:
- '@types/react': 18.3.11
-
'@types/react-dom@19.0.2(@types/react@19.0.1)':
dependencies:
'@types/react': 19.0.1
@@ -40718,9 +40119,9 @@ snapshots:
'@types/bn.js': 5.1.6
'@types/underscore': 1.11.4
- '@types/web3@1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@types/web3@1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- web3: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ web3: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -40797,24 +40198,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@5.49.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/scope-manager': 5.49.0
- '@typescript-eslint/type-utils': 5.49.0(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 5.49.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
- ignore: 5.3.1
- natural-compare-lite: 1.4.0
- regexpp: 3.2.0
- semver: 7.6.0
- tsutils: 3.21.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@eslint-community/regexpp': 4.10.0
@@ -40835,13 +40218,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)':
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.5.2)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.2)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
@@ -40849,21 +40232,21 @@ snapshots:
ignore: 5.3.1
natural-compare: 1.4.0
semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.5.2)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.5.2
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40873,15 +40256,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40891,15 +40274,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40909,25 +40292,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
- dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.2)
- optionalDependencies:
- typescript: 5.5.2
- transitivePeerDependencies:
- - supports-color
- optional: true
-
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -40966,6 +40330,25 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/scope-manager': 7.13.1
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 7.13.1
+ eslint: 9.5.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -41099,16 +40482,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.2)':
+ '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.2)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
optionalDependencies:
- typescript: 5.5.2
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -41138,53 +40521,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 7.13.1
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.0
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -41230,6 +40600,20 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.14.0
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.5.0
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 8.14.0
@@ -41321,18 +40705,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@5.49.0(eslint@8.57.0)(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/typescript-estree': 5.49.0(typescript@5.5.4)
- '@typescript-eslint/utils': 5.49.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.0
- tsutils: 3.21.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
@@ -41345,54 +40717,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.5.2)':
+ '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.2)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.2)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
debug: 4.3.7(supports-color@8.1.1)
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.5.2)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.5.2
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
ts-api-utils: 1.3.0(typescript@5.5.2)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
- ts-api-utils: 1.3.0(typescript@5.6.3)
- optionalDependencies:
- typescript: 5.6.3
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
@@ -41404,7 +40752,6 @@ snapshots:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- optional: true
'@typescript-eslint/type-utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
@@ -41417,7 +40764,6 @@ snapshots:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- optional: true
'@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
dependencies:
@@ -41499,20 +40845,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@5.49.0(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/types': 5.49.0
- '@typescript-eslint/visitor-keys': 5.49.0
- debug: 4.3.7(supports-color@8.1.1)
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.3
- tsutils: 3.21.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.2)':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -41570,7 +40902,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@6.21.0(typescript@5.5.2)':
+ '@typescript-eslint/typescript-estree@6.21.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
@@ -41579,9 +40911,9 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.2)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.5.2
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -41690,6 +41022,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 8.14.0
@@ -41766,60 +41114,45 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@5.49.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 5.49.0
- '@typescript-eslint/types': 5.49.0
- '@typescript-eslint/typescript-estree': 5.49.0(typescript@5.5.4)
- eslint: 8.57.0
- eslint-scope: 5.1.1
- eslint-utils: 3.0.0(eslint@8.57.0)
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
@@ -41840,49 +41173,27 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.5.2)':
+ '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.2)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
eslint: 8.57.0
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -41897,7 +41208,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- typescript
- optional: true
'@typescript-eslint/utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
@@ -41909,7 +41219,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- typescript
- optional: true
'@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
dependencies:
@@ -42371,7 +41680,7 @@ snapshots:
'@vue/compiler-core@3.4.34':
dependencies:
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@vue/shared': 3.4.34
entities: 4.5.0
estree-walker: 2.0.2
@@ -42402,14 +41711,14 @@ snapshots:
'@vue/shared@3.4.34': {}
- '@wagmi/connectors@5.0.16(4kbay4ejz7vqiich5e43lezopu)':
+ '@wagmi/connectors@5.0.16(hncxwyxgso647ji7tzmgxjxpbq)':
dependencies:
'@coinbase/wallet-sdk': 4.0.3
- '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
'@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
'@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@19.0.1)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
- '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
'@walletconnect/modal': 2.6.2(@types/react@19.0.1)(react@19.0.0)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
@@ -42564,21 +41873,21 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
'@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(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
events: 3.3.0
isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
@@ -42606,17 +41915,17 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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@19.0.1)(react@19.0.0)
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
- '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -42725,6 +42034,28 @@ snapshots:
- ioredis
- uWebSockets.js
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
+ dependencies:
+ '@walletconnect/safe-json': 1.0.2
+ idb-keyval: 6.2.1
+ unstorage: 1.10.2(idb-keyval@6.2.1)
+ optionalDependencies:
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - ioredis
+ - uWebSockets.js
+
'@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
@@ -42867,16 +42198,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(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(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -42951,12 +42282,12 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
+ '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -42975,16 +42306,16 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(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)
'@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(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -43069,7 +42400,7 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
+ '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -43079,7 +42410,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -43194,7 +42525,7 @@ snapshots:
'@wormhole-foundation/sdk-base@0.10.7':
dependencies:
- '@scure/base': 1.1.7
+ '@scure/base': 1.1.9
'@wormhole-foundation/sdk-definitions@0.10.7':
dependencies:
@@ -43225,7 +42556,7 @@ snapshots:
bech32: 2.0.0
bip32: 2.0.6
bip39: 3.0.4
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
crypto-addr-codec: 0.1.7
decimal.js: 10.4.3
elliptic: 6.5.6
@@ -43235,7 +42566,7 @@ snapshots:
secp256k1: 4.0.3
tmp: 0.2.3
utf-8-validate: 5.0.10
- ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- debug
@@ -43308,16 +42639,6 @@ snapshots:
typescript: 5.5.2
zod: 3.23.8
- abitype@1.0.0(typescript@5.4.5)(zod@3.23.8):
- optionalDependencies:
- typescript: 5.4.5
- zod: 3.23.8
-
- abitype@1.0.4(typescript@5.5.2)(zod@3.23.8):
- optionalDependencies:
- typescript: 5.5.2
- zod: 3.23.8
-
abitype@1.0.5(typescript@5.4.5)(zod@3.23.8):
optionalDependencies:
typescript: 5.4.5
@@ -43333,6 +42654,11 @@ snapshots:
typescript: 5.5.4
zod: 3.23.8
+ abitype@1.0.7(typescript@5.6.3)(zod@3.23.8):
+ optionalDependencies:
+ typescript: 5.6.3
+ zod: 3.23.8
+
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -43411,10 +42737,6 @@ snapshots:
dependencies:
acorn: 7.4.1
- acorn-jsx@5.3.2(acorn@8.12.0):
- dependencies:
- acorn: 8.12.0
-
acorn-jsx@5.3.2(acorn@8.13.0):
dependencies:
acorn: 8.13.0
@@ -43435,8 +42757,6 @@ snapshots:
acorn@8.11.3: {}
- acorn@8.12.0: {}
-
acorn@8.13.0: {}
add-stream@1.0.0: {}
@@ -43477,9 +42797,9 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-draft-04@1.0.0(ajv@8.16.0):
+ ajv-draft-04@1.0.0(ajv@8.17.1):
optionalDependencies:
- ajv: 8.16.0
+ ajv: 8.17.1
ajv-formats@2.1.1(ajv@8.11.2):
optionalDependencies:
@@ -43519,13 +42839,6 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- ajv@8.16.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
@@ -43877,16 +43190,6 @@ snapshots:
is-array-buffer: 3.0.4
is-shared-array-buffer: 1.0.3
- arraybuffer.prototype.slice@1.0.4:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-abstract: 1.23.6
- es-errors: 1.3.0
- get-intrinsic: 1.2.6
- is-array-buffer: 3.0.4
-
arrify@1.0.1: {}
arrify@2.0.1: {}
@@ -44022,8 +43325,6 @@ snapshots:
aws4@1.12.0: {}
- axe-core@4.10.2: {}
-
axe-core@4.7.0: {}
axe-core@4.9.1: {}
@@ -44071,7 +43372,7 @@ snapshots:
axios@0.27.2:
dependencies:
follow-redirects: 1.15.6(debug@4.3.7)
- form-data: 4.0.0
+ form-data: 4.0.1
transitivePeerDependencies:
- debug
@@ -44149,19 +43450,33 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
- babel-jest@27.5.1(@babel/core@7.24.7):
+ babel-jest@27.5.1(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1(@babel/core@7.24.7)
+ babel-preset-jest: 27.5.1(@babel/core@7.25.8)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-jest@29.7.0(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@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.7)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
+ optional: true
babel-jest@29.7.0(@babel/core@7.25.8):
dependencies:
@@ -44202,14 +43517,14 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.24.0):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.24.0)
semver: 6.3.1
@@ -44218,7 +43533,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.25.8):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.25.8)
semver: 6.3.1
@@ -44227,7 +43542,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.0):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
semver: 6.3.1
@@ -44236,7 +43551,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.7
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
@@ -44245,7 +43560,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.8):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
semver: 6.3.1
@@ -44256,7 +43571,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.0)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -44264,7 +43579,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -44272,7 +43587,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -44284,6 +43599,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
+ core-js-compat: 3.38.0
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.8):
dependencies:
'@babel/core': 7.25.8
@@ -44296,7 +43619,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.0
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.24.0)
- core-js-compat: 3.27.2
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -44304,7 +43627,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.8
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.25.8)
- core-js-compat: 3.27.2
+ core-js-compat: 3.38.0
transitivePeerDependencies:
- supports-color
@@ -44343,14 +43666,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(supports-color@5.5.0):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
+ '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0)
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -44361,6 +43684,12 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.7):
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - '@babel/core'
+
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.8):
dependencies:
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
@@ -44382,6 +43711,7 @@ snapshots:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
+ optional: true
babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.8):
dependencies:
@@ -44399,11 +43729,18 @@ snapshots:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.8)
- babel-preset-jest@27.5.1(@babel/core@7.24.7):
+ babel-preset-jest@27.5.1(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
babel-plugin-jest-hoist: 27.5.1
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8)
+
+ babel-preset-jest@29.6.3(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ optional: true
babel-preset-jest@29.6.3(@babel/core@7.25.8):
dependencies:
@@ -44706,18 +44043,11 @@ snapshots:
browserslist@4.23.1:
dependencies:
- caniuse-lite: 1.0.30001632
+ caniuse-lite: 1.0.30001669
electron-to-chromium: 1.4.797
node-releases: 2.0.14
update-browserslist-db: 1.0.16(browserslist@4.23.1)
- browserslist@4.23.3:
- dependencies:
- caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.6
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
-
browserslist@4.24.0:
dependencies:
caniuse-lite: 1.0.30001669
@@ -44872,11 +44202,6 @@ snapshots:
package-hash: 4.0.0
write-file-atomic: 3.0.3
- call-bind-apply-helpers@1.0.1:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
-
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -44885,18 +44210,6 @@ snapshots:
get-intrinsic: 1.2.4
set-function-length: 1.2.2
- call-bind@1.0.8:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.0
- get-intrinsic: 1.2.6
- set-function-length: 1.2.2
-
- call-bound@1.0.3:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.6
-
call-me-maybe@1.0.2: {}
caller-callsite@2.0.0:
@@ -45505,7 +44818,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- connectkit@1.8.2(cwnwljk3n25tzd5weih3j2cexi):
+ connectkit@1.8.2(6anadc4dr5vwtj2ynlqfbej324):
dependencies:
'@tanstack/react-query': 5.45.1(react@19.0.0)
buffer: 6.0.3
@@ -45517,9 +44830,9 @@ snapshots:
react-transition-state: 1.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react-use-measure: 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
resize-observer-polyfill: 1.5.1
- styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ wagmi: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
transitivePeerDependencies:
- '@babel/core'
- react-is
@@ -45645,13 +44958,9 @@ snapshots:
dependencies:
browserslist: 4.24.0
- core-js-compat@3.37.1:
- dependencies:
- browserslist: 4.23.1
-
core-js-compat@3.38.0:
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.0
core-js-pure@3.38.1: {}
@@ -46688,12 +45997,6 @@ snapshots:
create-hmac: 1.1.7
optional: true
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
-
duplexer@0.1.2: {}
duplexify@4.1.3:
@@ -46755,8 +46058,6 @@ snapshots:
electron-to-chromium@1.5.41: {}
- electron-to-chromium@1.5.6: {}
-
elliptic@6.5.4:
dependencies:
bn.js: 4.12.0
@@ -46858,6 +46159,11 @@ snapshots:
engine.io-parser@5.2.2: {}
+ enhanced-resolve@5.17.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
@@ -46874,8 +46180,6 @@ snapshots:
entities@2.2.0: {}
- entities@4.4.0: {}
-
entities@4.5.0: {}
env-paths@2.2.1: {}
@@ -46960,63 +46264,10 @@ snapshots:
unbox-primitive: 1.0.2
which-typed-array: 1.1.15
- es-abstract@1.23.6:
- dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.4
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
- es-to-primitive: 1.3.0
- function.prototype.name: 1.1.8
- get-intrinsic: 1.2.6
- get-symbol-description: 1.0.2
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- internal-slot: 1.1.0
- is-array-buffer: 3.0.4
- is-callable: 1.2.7
- is-data-view: 1.0.2
- is-negative-zero: 2.0.3
- is-regex: 1.2.1
- is-shared-array-buffer: 1.0.3
- is-string: 1.1.1
- is-typed-array: 1.1.13
- is-weakref: 1.1.0
- math-intrinsics: 1.1.0
- object-inspect: 1.13.3
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- safe-array-concat: 1.1.3
- safe-regex-test: 1.1.0
- string.prototype.trim: 1.2.10
- string.prototype.trimend: 1.0.9
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.4
- typed-array-length: 1.0.7
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.18
-
es-define-property@1.0.0:
dependencies:
get-intrinsic: 1.2.4
- es-define-property@1.0.1: {}
-
es-errors@1.3.0: {}
es-iterator-helpers@1.0.19:
@@ -47036,25 +46287,6 @@ snapshots:
iterator.prototype: 1.1.2
safe-array-concat: 1.1.2
- es-iterator-helpers@1.2.1:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-properties: 1.2.1
- es-abstract: 1.23.6
- es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
- function-bind: 1.1.2
- get-intrinsic: 1.2.6
- globalthis: 1.0.4
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- iterator.prototype: 1.1.4
- safe-array-concat: 1.1.3
-
es-module-lexer@1.4.1: {}
es-module-lexer@1.5.4: {}
@@ -47079,12 +46311,6 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es-to-primitive@1.3.0:
- dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
-
es5-ext@0.10.62:
dependencies:
es6-iterator: 2.0.3
@@ -47286,9 +46512,9 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.12.0(jiti@1.21.0)):
+ eslint-compat-utils@0.5.1(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
semver: 7.6.3
eslint-config-next@14.2.3(eslint@8.56.0)(typescript@5.4.5):
@@ -47309,42 +46535,23 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-config-next@15.0.3(eslint@8.57.0)(typescript@5.5.4):
- dependencies:
- '@next/eslint-plugin-next': 15.0.3
- '@rushstack/eslint-patch': 1.10.3
- '@typescript-eslint/eslint-plugin': 5.49.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.4)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.0)
- eslint-plugin-react: 7.37.2(eslint@8.57.0)
- eslint-plugin-react-hooks: 5.1.0(eslint@8.57.0)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - eslint-import-resolver-webpack
- - supports-color
-
eslint-config-prettier@8.8.0(eslint@8.57.0):
dependencies:
eslint: 8.57.0
- eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-config-prettier@9.1.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
- eslint-config-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
+ eslint-config-turbo@2.2.3(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
- eslint-plugin-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-plugin-turbo: 2.2.3(eslint@9.13.0(jiti@1.21.0))
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.15.1
+ is-core-module: 2.13.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -47352,30 +46559,13 @@ snapshots:
eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.13.1(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.7(supports-color@8.1.1)
- enhanced-resolve: 5.17.1
+ enhanced-resolve: 5.17.0
eslint: 8.56.0
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.5
- is-core-module: 2.15.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@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0):
- dependencies:
- debug: 4.3.7(supports-color@8.1.1)
- enhanced-resolve: 5.17.1
- eslint: 8.57.0
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- fast-glob: 3.3.2
- get-tsconfig: 4.7.5
- is-core-module: 2.15.1
+ is-core-module: 2.13.1
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -47383,17 +46573,6 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
- dependencies:
- debug: 3.2.7
- optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.4)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0)
- transitivePeerDependencies:
- - supports-color
-
eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0):
dependencies:
debug: 3.2.7
@@ -47405,75 +46584,74 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.4)
- eslint: 8.57.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-es-x@7.7.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-es-x@7.7.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@eslint-community/regexpp': 4.11.0
- eslint: 9.12.0(jiti@1.21.0)
- eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.13.0(jiti@1.21.0))
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -47481,9 +46659,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47494,7 +46672,7 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -47527,7 +46705,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -47535,9 +46713,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47554,7 +46732,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -47562,9 +46740,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47581,7 +46759,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -47589,9 +46767,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47602,13 +46780,13 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -47616,9 +46794,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47629,24 +46807,23 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.57.0
+ eslint: 9.13.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.13.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -47655,38 +46832,37 @@ snapshots:
object.groupby: 1.0.3
object.values: 1.2.0
semver: 6.3.1
- string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/runtime': 7.25.7
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
optionalDependencies:
'@testing-library/dom': 10.4.0
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
@@ -47694,10 +46870,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
@@ -47705,10 +46881,21 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
+ jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ dependencies:
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -47716,10 +46903,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -47727,36 +46914,17 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsonc@2.16.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jsonc@2.16.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- eslint: 9.12.0(jiti@1.21.0)
- eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.13.0(jiti@1.21.0))
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
natural-compare: 1.4.0
synckit: 0.6.2
- eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.0):
- dependencies:
- aria-query: 5.3.2
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.2
- ast-types-flow: 0.0.8
- axe-core: 4.10.2
- axobject-query: 4.1.0
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 8.57.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- language-tags: 1.0.9
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- safe-regex-test: 1.0.3
- string.prototype.includes: 2.0.1
-
eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0):
dependencies:
'@babel/runtime': 7.25.7
@@ -47777,7 +46945,7 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-jsx-a11y@6.8.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-jsx-a11y@6.8.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/runtime': 7.25.7
aria-query: 5.3.2
@@ -47789,7 +46957,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -47797,12 +46965,12 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-n@17.9.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-n@17.9.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
enhanced-resolve: 5.17.1
- eslint: 9.12.0(jiti@1.21.0)
- eslint-plugin-es-x: 7.7.0(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.13.0(jiti@1.21.0)
+ eslint-plugin-es-x: 7.7.0(eslint@9.13.0(jiti@1.21.0))
get-tsconfig: 4.7.5
globals: 15.6.0
ignore: 5.3.2
@@ -47813,13 +46981,9 @@ snapshots:
dependencies:
eslint: 8.56.0
- eslint-plugin-react-hooks@4.6.2(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-react-hooks@4.6.2(eslint@9.13.0(jiti@1.21.0)):
dependencies:
- eslint: 9.12.0(jiti@1.21.0)
-
- eslint-plugin-react-hooks@5.1.0(eslint@8.57.0):
- dependencies:
- eslint: 8.57.0
+ eslint: 9.13.0(jiti@1.21.0)
eslint-plugin-react@7.34.2(eslint@8.56.0):
dependencies:
@@ -47843,7 +47007,7 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.34.2(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-react@7.34.2(eslint@9.13.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -47852,7 +47016,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -47865,55 +47029,33 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.37.2(eslint@8.57.0):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.4
- doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 8.57.0
- estraverse: 5.3.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.values: 1.2.0
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.11
- string.prototype.repeat: 1.0.0
-
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ eslint-plugin-storybook@0.8.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -47944,26 +47086,26 @@ snapshots:
postcss: 8.4.47
tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ eslint-plugin-testing-library@6.2.2(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/utils': 5.62.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -47973,20 +47115,20 @@ snapshots:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- eslint-plugin-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-turbo@2.2.3(eslint@9.13.0(jiti@1.21.0)):
dependencies:
dotenv: 16.0.3
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
- eslint-plugin-unicorn@53.0.0(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-unicorn@53.0.0(eslint@9.13.0(jiti@1.21.0)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
'@eslint/eslintrc': 3.1.0
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 9.13.0(jiti@1.21.0)
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -48089,7 +47231,7 @@ snapshots:
eslint@8.57.0:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.10.0
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.0
'@humanwhocodes/config-array': 0.11.14
@@ -48099,7 +47241,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@8.1.1)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -48113,7 +47255,7 @@ snapshots:
glob-parent: 6.0.2
globals: 13.20.0
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -48129,48 +47271,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@9.12.0(jiti@1.21.0):
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
- '@eslint-community/regexpp': 4.11.0
- '@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
- '@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
- '@eslint/plugin-kit': 0.2.0
- '@humanfs/node': 0.16.5
- '@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.3.1
- '@types/estree': 1.0.6
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.7(supports-color@8.1.1)
- escape-string-regexp: 4.0.0
- eslint-scope: 8.1.0
- eslint-visitor-keys: 4.1.0
- espree: 10.2.0
- esquery: 1.5.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 8.0.0
- find-up: 5.0.0
- glob-parent: 6.0.2
- ignore: 5.3.2
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- text-table: 0.2.0
- optionalDependencies:
- jiti: 1.21.0
- transitivePeerDependencies:
- - supports-color
-
eslint@9.13.0(jiti@1.21.0):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0))
@@ -48302,9 +47402,9 @@ snapshots:
espree@10.1.0:
dependencies:
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
- eslint-visitor-keys: 4.0.0
+ acorn: 8.13.0
+ acorn-jsx: 5.3.2(acorn@8.13.0)
+ eslint-visitor-keys: 4.1.0
espree@10.2.0:
dependencies:
@@ -48366,20 +47466,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eth-crypto@2.6.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- '@babel/runtime': 7.20.13
- '@ethereumjs/tx': 3.5.2
- '@types/bn.js': 5.1.1
- eccrypto: 1.1.6(patch_hash=rjcfmtfgn3z72mudpdif5oxmye)
- ethereumjs-util: 7.1.5
- ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- secp256k1: 5.0.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
eth-crypto@2.6.0(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
'@babel/runtime': 7.20.13
@@ -48407,20 +47493,6 @@ snapshots:
- bufferutil
- utf-8-validate
- eth-crypto@2.6.0(bufferutil@4.0.8)(utf-8-validate@6.0.4):
- dependencies:
- '@babel/runtime': 7.20.13
- '@ethereumjs/tx': 3.5.2
- '@types/bn.js': 5.1.1
- eccrypto: 1.1.6(patch_hash=rjcfmtfgn3z72mudpdif5oxmye)
- ethereumjs-util: 7.1.5
- ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- secp256k1: 5.0.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
eth-ens-namehash@2.0.8:
dependencies:
idna-uts46-hx: 2.3.1
@@ -48470,19 +47542,6 @@ snapshots:
transitivePeerDependencies:
- encoding
- eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.6
- nano-json-stream-parser: 0.1.2
- servify: 0.1.12
- ws: 3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- xhr-request-promise: 0.1.3
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
bn.js: 4.12.0
@@ -48577,13 +47636,6 @@ snapshots:
'@scure/bip32': 1.1.5
'@scure/bip39': 1.1.1
- ethereum-cryptography@2.1.3:
- dependencies:
- '@noble/curves': 1.3.0
- '@noble/hashes': 1.3.3
- '@scure/bip32': 1.3.3
- '@scure/bip39': 1.2.2
-
ethereum-cryptography@2.2.1:
dependencies:
'@noble/curves': 1.4.2
@@ -48799,57 +47851,20 @@ snapshots:
- bufferutil
- utf-8-validate
- ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.4):
- dependencies:
- '@ethersproject/abi': 5.7.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/contracts': 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/networks': 5.7.1
- '@ethersproject/pbkdf2': 5.7.0
- '@ethersproject/properties': 5.7.0
- '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@ethersproject/random': 5.7.0
- '@ethersproject/rlp': 5.7.0
- '@ethersproject/sha2': 5.7.0
- '@ethersproject/signing-key': 5.7.0
- '@ethersproject/solidity': 5.7.0
- '@ethersproject/strings': 5.7.0
- '@ethersproject/transactions': 5.7.0
- '@ethersproject/units': 5.7.0
- '@ethersproject/wallet': 5.7.0
- '@ethersproject/web': 5.7.1
- '@ethersproject/wordlists': 5.7.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- optional: true
-
- ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3):
+ ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
'@adraffy/ens-normalize': 1.10.1
'@noble/curves': 1.2.0
'@noble/hashes': 1.3.2
- '@types/node': 22.7.5
+ '@types/node': 18.15.13
aes-js: 4.0.0-beta.5
- tslib: 2.7.0
+ tslib: 2.4.0
ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@6.0.4):
+ ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
'@adraffy/ens-normalize': 1.10.1
'@noble/curves': 1.2.0
@@ -48857,7 +47872,7 @@ snapshots:
'@types/node': 22.7.5
aes-js: 4.0.0-beta.5
tslib: 2.7.0
- ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@6.0.3)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -49061,24 +48076,12 @@ snapshots:
dependencies:
pure-rand: 6.0.4
- fast-check@3.22.0:
- dependencies:
- pure-rand: 6.1.0
-
fast-copy@3.0.2: {}
fast-deep-equal@3.1.3: {}
fast-equals@5.0.1: {}
- fast-glob@3.3.1:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -49133,7 +48136,7 @@ snapshots:
fetch-cookie@3.0.1:
dependencies:
set-cookie-parser: 2.6.0
- tough-cookie: 4.1.2
+ tough-cookie: 4.1.4
fflate@0.8.2: {}
@@ -49351,12 +48354,6 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
- form-data@3.0.2:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
-
form-data@4.0.0:
dependencies:
asynckit: 0.4.0
@@ -49426,7 +48423,7 @@ snapshots:
react: 19.0.0
react-dom: 19.0.0(react@19.0.0)
style-value-types: 5.0.0
- tslib: 2.6.3
+ tslib: 2.8.0
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
@@ -49633,15 +48630,6 @@ snapshots:
es-abstract: 1.23.3
functions-have-names: 1.2.3
- function.prototype.name@1.1.8:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-properties: 1.2.1
- functions-have-names: 1.2.3
- hasown: 2.0.2
- is-callable: 1.2.7
-
functional-red-black-tree@1.0.1: {}
functions-have-names@1.2.3: {}
@@ -49716,19 +48704,6 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.2
- get-intrinsic@1.2.6:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- dunder-proto: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- function-bind: 1.1.2
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- math-intrinsics: 1.1.0
-
get-nonce@1.0.1: {}
get-package-type@0.1.0: {}
@@ -49951,8 +48926,6 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
- gopd@1.2.0: {}
-
got@11.8.6:
dependencies:
'@sindresorhus/is': 4.6.0
@@ -49994,8 +48967,6 @@ snapshots:
- graphql
- svelte
- graceful-fs@4.2.10: {}
-
graceful-fs@4.2.11: {}
grapheme-splitter@1.0.4: {}
@@ -50227,14 +49198,8 @@ snapshots:
has-proto@1.0.3: {}
- has-proto@1.2.0:
- dependencies:
- dunder-proto: 1.0.1
-
has-symbols@1.0.3: {}
- has-symbols@1.1.0: {}
-
has-tostringtag@1.0.2:
dependencies:
has-symbols: 1.0.3
@@ -50354,7 +49319,7 @@ snapshots:
highlight.js@11.0.1: {}
- highlight.js@11.11.0: {}
+ highlight.js@11.11.1: {}
highlightjs-solidity@2.0.6: {}
@@ -50677,12 +49642,6 @@ snapshots:
hasown: 2.0.2
side-channel: 1.0.6
- internal-slot@1.1.0:
- dependencies:
- es-errors: 1.3.0
- hasown: 2.0.2
- side-channel: 1.1.0
-
internmap@2.0.3: {}
interpret@1.4.0: {}
@@ -50786,10 +49745,6 @@ snapshots:
dependencies:
has-bigints: 1.0.2
- is-bigint@1.1.0:
- dependencies:
- has-bigints: 1.0.2
-
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.2.0
@@ -50799,11 +49754,6 @@ snapshots:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- is-boolean-object@1.2.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
is-buffer@2.0.5: {}
is-builtin-module@3.2.1:
@@ -50828,21 +49778,10 @@ snapshots:
dependencies:
is-typed-array: 1.1.13
- is-data-view@1.0.2:
- dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.6
- is-typed-array: 1.1.13
-
is-date-object@1.0.5:
dependencies:
has-tostringtag: 1.0.2
- is-date-object@1.1.0:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
is-decimal@2.0.1: {}
is-directory@0.3.1: {}
@@ -50857,10 +49796,6 @@ snapshots:
dependencies:
call-bind: 1.0.7
- is-finalizationregistry@1.1.1:
- dependencies:
- call-bound: 1.0.3
-
is-fn@1.0.0: {}
is-fullwidth-code-point@1.0.0:
@@ -50912,11 +49847,6 @@ snapshots:
dependencies:
has-tostringtag: 1.0.2
- is-number-object@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
is-number@7.0.0: {}
is-obj@2.0.0: {}
@@ -50948,13 +49878,6 @@ snapshots:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- is-regex@1.2.1:
- dependencies:
- call-bound: 1.0.3
- gopd: 1.2.0
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
is-retry-allowed@2.2.0: {}
is-root@2.1.0: {}
@@ -50979,21 +49902,10 @@ snapshots:
dependencies:
has-tostringtag: 1.0.2
- is-string@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-tostringtag: 1.0.2
-
is-symbol@1.0.4:
dependencies:
has-symbols: 1.0.3
- is-symbol@1.1.1:
- dependencies:
- call-bound: 1.0.3
- has-symbols: 1.1.0
- safe-regex-test: 1.1.0
-
is-text-path@1.0.1:
dependencies:
text-extensions: 1.9.0
@@ -51002,10 +49914,6 @@ snapshots:
dependencies:
which-typed-array: 1.1.15
- is-typed-array@1.1.15:
- dependencies:
- which-typed-array: 1.1.18
-
is-typedarray@1.0.0: {}
is-unicode-supported@0.1.0: {}
@@ -51024,10 +49932,6 @@ snapshots:
dependencies:
call-bind: 1.0.7
- is-weakref@1.1.0:
- dependencies:
- call-bound: 1.0.3
-
is-weakset@2.0.3:
dependencies:
call-bind: 1.0.7
@@ -51089,21 +49993,13 @@ snapshots:
dependencies:
ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- isomorphic-ws@4.0.1(ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4)):
- dependencies:
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4)
-
isomorphic-ws@4.0.1(ws@8.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)):
dependencies:
ws: 8.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- isomorphic-ws@4.0.1(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)):
- dependencies:
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
-
- isomorphic-ws@5.0.0(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
+ isomorphic-ws@4.0.1(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
dependencies:
- ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
isomorphic-ws@5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
dependencies:
@@ -51117,10 +50013,6 @@ snapshots:
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.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
dependencies:
ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -51153,7 +50045,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.25.8
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -51163,7 +50055,7 @@ snapshots:
istanbul-lib-instrument@6.0.2:
dependencies:
'@babel/core': 7.25.8
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -51228,15 +50120,6 @@ snapshots:
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- iterator.prototype@1.1.4:
- dependencies:
- define-data-property: 1.1.4
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.6
- has-symbols: 1.1.0
- reflect.getprototypeof: 1.0.9
- set-function-name: 2.0.2
-
jackspeak@2.2.0:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -51290,28 +50173,10 @@ snapshots:
delay: 5.0.0
es6-promisify: 5.0.0
eyes: 0.1.8
- isomorphic-ws: 4.0.1(ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4))
- json-stringify-safe: 5.0.1
- uuid: 8.3.2
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- jayson@4.1.1(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- 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.10(bufferutil@4.0.7)(utf-8-validate@5.0.10))
+ isomorphic-ws: 4.0.1(ws@7.5.10(bufferutil@4.0.7)(utf-8-validate@6.0.3))
json-stringify-safe: 5.0.1
uuid: 8.3.2
- ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@6.0.3)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -51352,24 +50217,6 @@ snapshots:
- bufferutil
- utf-8-validate
- jayson@4.1.1(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.10(bufferutil@4.0.8)(utf-8-validate@6.0.4))
- json-stringify-safe: 5.0.1
- uuid: 8.3.2
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
jest-changed-files@27.5.1:
dependencies:
'@jest/types': 27.5.1
@@ -51432,16 +50279,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10):
+ jest-cli@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10):
dependencies:
- '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
jest-util: 27.5.1
jest-validate: 27.5.1
prompts: 2.4.2
@@ -51720,12 +50567,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10):
+ jest-config@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1(@babel/core@7.24.7)
+ babel-jest: 27.5.1(@babel/core@7.25.8)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -51747,7 +50594,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- ts-node: 10.9.2(@types/node@20.14.9)(typescript@5.5.2)
+ ts-node: 10.9.2(@types/node@20.14.15)(typescript@5.5.4)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -52791,7 +51638,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -53017,10 +51864,10 @@ snapshots:
jest-snapshot@27.5.1:
dependencies:
'@babel/core': 7.25.8
- '@babel/generator': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8)
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/generator': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__traverse': 7.20.6
@@ -53044,10 +51891,10 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
'@babel/core': 7.25.8
- '@babel/generator': 7.25.0
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8)
- '@babel/types': 7.25.2
+ '@babel/generator': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
@@ -53142,11 +51989,11 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10):
+ jest@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10):
dependencies:
- '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
import-local: 3.1.0
- jest-cli: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ jest-cli: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -53424,6 +52271,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7)):
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/parser': 7.25.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.25.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/register': 7.25.7(@babel/core@7.25.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.8)
+ chalk: 4.1.2
+ flow-parser: 0.250.0
+ graceful-fs: 4.2.11
+ micromatch: 4.0.8
+ 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.7(@babel/core@7.25.8)):
dependencies:
'@babel/core': 7.25.8
@@ -53464,7 +52336,7 @@ snapshots:
decimal.js: 10.4.3
domexception: 2.0.1
escodegen: 2.1.0
- form-data: 3.0.2
+ form-data: 3.0.1
html-encoding-sniffer: 2.0.1
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
@@ -54217,9 +53089,9 @@ snapshots:
ltgt@2.2.1: {}
- lucide-react@0.465.0(react@19.0.0-rc-66855b96-20241106):
+ lucide-react@0.465.0(react@19.0.0):
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
lunr@2.3.9: {}
@@ -54292,8 +53164,6 @@ snapshots:
marky@1.2.5: {}
- math-intrinsics@1.1.0: {}
-
mathml-tag-names@2.1.3: {}
md5.js@1.3.5:
@@ -55290,7 +54160,7 @@ snapshots:
next-tick@1.1.0: {}
- next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7):
+ next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7):
dependencies:
'@next/env': 14.2.15
'@swc/helpers': 0.5.5
@@ -55300,7 +54170,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.25.8)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.24.7)(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.15
'@next/swc-darwin-x64': 14.2.15
@@ -55316,28 +54186,28 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@15.0.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(sass@1.80.7):
+ next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7):
dependencies:
- '@next/env': 15.0.3
- '@swc/counter': 0.1.3
- '@swc/helpers': 0.5.13
+ '@next/env': 14.2.15
+ '@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001669
+ graceful-fs: 4.2.11
postcss: 8.4.31
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- styled-jsx: 5.1.6(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@next/swc-darwin-arm64': 15.0.3
- '@next/swc-darwin-x64': 15.0.3
- '@next/swc-linux-arm64-gnu': 15.0.3
- '@next/swc-linux-arm64-musl': 15.0.3
- '@next/swc-linux-x64-gnu': 15.0.3
- '@next/swc-linux-x64-musl': 15.0.3
- '@next/swc-win32-arm64-msvc': 15.0.3
- '@next/swc-win32-x64-msvc': 15.0.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.25.8)(react@18.3.1)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.2.15
+ '@next/swc-darwin-x64': 14.2.15
+ '@next/swc-linux-arm64-gnu': 14.2.15
+ '@next/swc-linux-arm64-musl': 14.2.15
+ '@next/swc-linux-x64-gnu': 14.2.15
+ '@next/swc-linux-x64-musl': 14.2.15
+ '@next/swc-win32-arm64-msvc': 14.2.15
+ '@next/swc-win32-ia32-msvc': 14.2.15
+ '@next/swc-win32-x64-msvc': 14.2.15
sass: 1.80.7
- sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -55368,7 +54238,7 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7):
+ next@15.1.0(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7):
dependencies:
'@next/env': 15.1.0
'@swc/counter': 0.1.3
@@ -55377,8 +54247,8 @@ snapshots:
caniuse-lite: 1.0.30001669
postcss: 8.4.31
react: 19.0.0
- react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0)
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0)
optionalDependencies:
'@next/swc-darwin-arm64': 15.1.0
'@next/swc-darwin-x64': 15.1.0
@@ -55420,6 +54290,32 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.1.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7):
+ dependencies:
+ '@next/env': 15.1.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.15
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001669
+ postcss: 8.4.31
+ react: 19.0.0
+ react-dom: 18.3.1(react@18.3.1)
+ styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.1.2
+ '@next/swc-darwin-x64': 15.1.2
+ '@next/swc-linux-arm64-gnu': 15.1.2
+ '@next/swc-linux-arm64-musl': 15.1.2
+ '@next/swc-linux-x64-gnu': 15.1.2
+ '@next/swc-linux-x64-musl': 15.1.2
+ '@next/swc-win32-arm64-msvc': 15.1.2
+ '@next/swc-win32-x64-msvc': 15.1.2
+ sass: 1.80.7
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
nise@6.0.0:
dependencies:
'@sinonjs/commons': 3.0.1
@@ -55563,7 +54459,7 @@ snapshots:
node-preload@0.2.1:
dependencies:
- process-on-spawn: 1.0.0
+ process-on-spawn: 1.1.0
node-releases@2.0.14: {}
@@ -55771,7 +54667,7 @@ snapshots:
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
- process-on-spawn: 1.0.0
+ process-on-spawn: 1.1.0
resolve-from: 5.0.0
rimraf: 3.0.2
signal-exit: 3.0.7
@@ -55803,8 +54699,6 @@ snapshots:
object-inspect@1.13.1: {}
- object-inspect@1.13.3: {}
-
object-is@1.1.5:
dependencies:
call-bind: 1.0.7
@@ -56041,7 +54935,7 @@ snapshots:
- debug
- utf-8-validate
- ox@0.1.2(typescript@5.5.4)(zod@3.23.8):
+ ox@0.6.5(typescript@5.5.4)(zod@3.23.8):
dependencies:
'@adraffy/ens-normalize': 1.11.0
'@noble/curves': 1.7.0
@@ -56055,6 +54949,20 @@ snapshots:
transitivePeerDependencies:
- zod
+ ox@0.6.5(typescript@5.6.3)(zod@3.23.8):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.0
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
+ abitype: 1.0.7(typescript@5.6.3)(zod@3.23.8)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - zod
+
p-cancelable@2.1.1: {}
p-cancelable@3.0.0: {}
@@ -56265,7 +55173,7 @@ snapshots:
pastable@2.2.1(react@19.0.0):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
ts-toolbelt: 9.6.0
type-fest: 3.13.1
optionalDependencies:
@@ -56601,14 +55509,6 @@ snapshots:
postcss: 8.4.47
ts-node: 10.9.2(@types/node@18.19.57)(typescript@5.5.4)
- postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)):
- dependencies:
- lilconfig: 3.1.2
- yaml: 2.4.5
- optionalDependencies:
- postcss: 8.4.47
- ts-node: 10.9.2(@types/node@20.14.15)(typescript@5.5.4)
-
postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
dependencies:
lilconfig: 3.1.2
@@ -56933,7 +55833,6 @@ snapshots:
prettier: 2.8.8
semver: 7.6.3
solidity-comments-extractor: 0.0.8
- optional: true
prettier-plugin-tailwindcss@0.1.13(prettier@2.8.8):
dependencies:
@@ -56989,7 +55888,7 @@ snapshots:
process-nextick-args@2.0.1: {}
- process-on-spawn@1.0.0:
+ process-on-spawn@1.1.0:
dependencies:
fromentries: 1.3.2
@@ -57586,11 +56485,6 @@ snapshots:
react: 19.0.0
scheduler: 0.25.0
- react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- scheduler: 0.25.0-rc-66855b96-20241106
-
react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0):
dependencies:
'@base2/pretty-print-object': 1.0.1
@@ -57609,7 +56503,7 @@ snapshots:
transitivePeerDependencies:
- csstype
- react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0):
+ react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0):
dependencies:
'@babel/runtime': 7.25.7
html-parse-stringify: 3.0.1
@@ -57617,7 +56511,7 @@ snapshots:
react: 19.0.0
optionalDependencies:
react-dom: 19.0.0(react@19.0.0)
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
react-is@16.13.1: {}
@@ -57655,12 +56549,12 @@ snapshots:
react-lifecycles-compat: 3.0.4
warning: 4.0.3
- react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0):
+ react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 19.0.0
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)
react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10):
dependencies:
@@ -57712,6 +56606,56 @@ snapshots:
- supports-color
- utf-8-validate
+ react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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.7(@babel/core@7.24.7))
+ '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(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@19.0.1)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)
+ 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.12
+ metro-source-map: 0.80.12
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 19.0.0
+ react-devtools-core: 5.3.2(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)
+ 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.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': 19.0.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
@@ -57822,24 +56766,24 @@ snapshots:
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.8(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106):
+ react-remove-scroll-bar@2.3.8(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-66855b96-20241106
- react-style-singleton: 2.2.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ react: 19.0.0
+ react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
- react-remove-scroll@2.6.2(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106):
+ react-remove-scroll@2.6.2(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-66855b96-20241106
- react-remove-scroll-bar: 2.3.8(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- react-style-singleton: 2.2.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0)
tslib: 2.8.0
- use-callback-ref: 1.3.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
- use-sidecar: 1.1.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106)
+ use-callback-ref: 1.3.3(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.3(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
react-shallow-renderer@16.15.0(react@19.0.0):
dependencies:
@@ -57884,13 +56828,13 @@ snapshots:
'@react-types/shared': 3.26.0(react@19.0.0)
react: 19.0.0
- react-style-singleton@2.2.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106):
+ react-style-singleton@2.2.3(@types/react@19.0.1)(react@19.0.0):
dependencies:
get-nonce: 1.0.1
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
@@ -57924,8 +56868,6 @@ snapshots:
react@19.0.0: {}
- react@19.0.0-rc-66855b96-20241106: {}
-
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -58130,17 +57072,6 @@ snapshots:
globalthis: 1.0.4
which-builtin-type: 1.1.3
- reflect.getprototypeof@1.0.9:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- dunder-proto: 1.0.1
- es-abstract: 1.23.6
- es-errors: 1.3.0
- get-intrinsic: 1.2.6
- gopd: 1.2.0
- which-builtin-type: 1.2.1
-
regenerate-unicode-properties@10.1.0:
dependencies:
regenerate: 1.4.2
@@ -58186,13 +57117,6 @@ snapshots:
es-errors: 1.3.0
set-function-name: 2.0.2
- regexp.prototype.flags@1.5.3:
- dependencies:
- call-bind: 1.0.8
- define-properties: 1.2.1
- es-errors: 1.3.0
- set-function-name: 2.0.2
-
regexpp@3.2.0: {}
regexpu-core@5.2.2:
@@ -58470,7 +57394,7 @@ snapshots:
rpc-websockets@9.0.4:
dependencies:
- '@swc/helpers': 0.5.13
+ '@swc/helpers': 0.5.15
'@types/uuid': 8.3.4
'@types/ws': 8.5.13
buffer: 6.0.3
@@ -58512,14 +57436,6 @@ snapshots:
has-symbols: 1.0.3
isarray: 2.0.5
- safe-array-concat@1.1.3:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.6
- has-symbols: 1.1.0
- isarray: 2.0.5
-
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
@@ -58536,12 +57452,6 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.1.4
- safe-regex-test@1.1.0:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-regex: 1.2.1
-
safe-stable-stringify@2.4.2: {}
safer-buffer@2.1.2: {}
@@ -58597,8 +57507,6 @@ snapshots:
scheduler@0.25.0: {}
- scheduler@0.25.0-rc-66855b96-20241106: {}
-
schema-utils@2.7.0:
dependencies:
'@types/json-schema': 7.0.15
@@ -58905,26 +57813,6 @@ snapshots:
minimist: 1.2.8
shelljs: 0.8.5
- side-channel-list@1.0.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.3
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.6
- object-inspect: 1.13.3
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.6
- object-inspect: 1.13.3
- side-channel-map: 1.0.1
-
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -58932,14 +57820,6 @@ snapshots:
get-intrinsic: 1.2.4
object-inspect: 1.13.1
- side-channel@1.1.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.3
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
-
signal-exit@3.0.7: {}
signal-exit@4.0.2: {}
@@ -59145,8 +58025,7 @@ snapshots:
solidity-comments-extractor@0.0.7: {}
- solidity-comments-extractor@0.0.8:
- optional: true
+ solidity-comments-extractor@0.0.8: {}
sonic-boom@2.8.0:
dependencies:
@@ -59386,12 +58265,6 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.includes@2.0.1:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
-
string.prototype.matchall@4.0.11:
dependencies:
call-bind: 1.0.7
@@ -59407,21 +58280,6 @@ snapshots:
set-function-name: 2.0.2
side-channel: 1.0.6
- string.prototype.repeat@1.0.0:
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.23.3
-
- string.prototype.trim@1.2.10:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-data-property: 1.1.4
- define-properties: 1.2.1
- es-abstract: 1.23.6
- es-object-atoms: 1.0.0
- has-property-descriptors: 1.0.2
-
string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
@@ -59435,13 +58293,6 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
- string.prototype.trimend@1.0.9:
- dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
string.prototype.trimstart@1.0.8:
dependencies:
call-bind: 1.0.7
@@ -59538,14 +58389,14 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.8.0
- styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0):
+ styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0):
dependencies:
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
- '@babel/traverse': 7.24.7(supports-color@5.5.0)
+ '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0)
+ '@babel/traverse': 7.25.7(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(supports-color@5.5.0)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 19.0.0
@@ -59556,6 +58407,13 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
+ styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1):
+ dependencies:
+ client-only: 0.0.1
+ react: 18.3.1
+ optionalDependencies:
+ '@babel/core': 7.24.7
+
styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -59570,17 +58428,19 @@ snapshots:
optionalDependencies:
'@babel/core': 7.24.0
- styled-jsx@5.1.6(@babel/core@7.25.8)(react@19.0.0):
+ styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.0.0):
dependencies:
client-only: 0.0.1
react: 19.0.0
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.24.7
- styled-jsx@5.1.6(react@19.0.0-rc-66855b96-20241106):
+ styled-jsx@5.1.6(@babel/core@7.25.8)(react@19.0.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
+ optionalDependencies:
+ '@babel/core': 7.25.8
stylelint-config-recommended-scss@14.1.0(postcss@8.4.47)(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
@@ -59676,7 +58536,7 @@ snapshots:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.10
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -59775,24 +58635,6 @@ snapshots:
lower-case: 1.1.4
upper-case: 1.1.3
- swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- bluebird: 3.7.2
- buffer: 5.7.1
- eth-lib: 0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- fs-extra: 4.0.3
- got: 11.8.6
- mime-types: 2.1.35
- mkdirp-promise: 5.0.1
- mock-fs: 4.14.0
- setimmediate: 1.0.5
- tar: 4.4.19
- xhr-request: 1.1.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
bluebird: 3.7.2
@@ -59871,15 +58713,15 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tailwind-merge@2.5.5: {}
+ tailwind-merge@2.6.0: {}
tailwindcss-animate@1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
dependencies:
tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))):
dependencies:
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
tailwindcss-react-aria-components@1.1.5(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
dependencies:
@@ -59967,33 +58809,6 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)):
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- 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.8
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.1
- postcss: 8.4.47
- postcss-import: 15.1.0(postcss@8.4.47)
- postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
- postcss-nested: 6.0.1(postcss@8.4.47)
- postcss-selector-parser: 6.1.2
- resolve: 1.22.8
- sucrase: 3.35.0
- transitivePeerDependencies:
- - ts-node
-
tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
dependencies:
'@alloc/quick-lru': 5.2.0
@@ -60378,13 +59193,6 @@ snapshots:
psl: 1.9.0
punycode: 2.3.1
- tough-cookie@4.1.2:
- dependencies:
- psl: 1.9.0
- punycode: 2.3.1
- universalify: 0.2.0
- url-parse: 1.5.10
-
tough-cookie@4.1.4:
dependencies:
psl: 1.9.0
@@ -60620,12 +59428,12 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -60634,43 +59442,43 @@ snapshots:
typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.24.7
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.8)
- esbuild: 0.22.0
+ babel-jest: 29.7.0(@babel/core@7.24.7)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)))(typescript@4.9.5):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
+ jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 4.9.5
+ typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
+ esbuild: 0.22.0
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)))(typescript@4.9.5):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.4
+ typescript: 4.9.5
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
@@ -60678,12 +59486,12 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -60737,6 +59545,8 @@ snapshots:
ts-log@2.2.5: {}
+ ts-log@2.2.7: {}
+
ts-mixer@6.0.4: {}
ts-mocha@10.0.0(mocha@9.2.2):
@@ -61000,52 +59810,52 @@ snapshots:
yn: 3.1.1
optional: true
- ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.2):
+ ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4):
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.3
- '@types/node': 20.14.9
+ '@types/node': 22.2.0
acorn: 8.13.0
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.5.2
+ typescript: 5.5.4
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optional: true
- ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4):
+ ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.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.3
- '@types/node': 22.2.0
+ '@types/node': 22.5.1
acorn: 8.13.0
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.5.4
+ typescript: 4.9.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optional: true
- ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.5):
+ ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.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.3
- '@types/node': 22.5.1
+ '@types/node': 22.8.2
acorn: 8.13.0
acorn-walk: 8.2.0
arg: 4.1.3
@@ -61055,9 +59865,8 @@ snapshots:
typescript: 4.9.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- optional: true
- ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5):
+ ts-node@10.9.2(@types/node@22.8.2)(typescript@5.4.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.9
@@ -61071,11 +59880,11 @@ snapshots:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 4.9.5
+ typescript: 5.4.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- ts-node@10.9.2(@types/node@22.8.2)(typescript@5.4.5):
+ ts-node@10.9.2(@types/node@22.8.2)(typescript@5.5.4):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.9
@@ -61089,7 +59898,7 @@ snapshots:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.4.5
+ typescript: 5.5.4
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
@@ -61154,6 +59963,8 @@ snapshots:
tslib@1.14.1: {}
+ tslib@2.4.0: {}
+
tslib@2.4.1:
optional: true
@@ -61296,16 +60107,6 @@ snapshots:
has-proto: 1.0.3
is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.4:
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- for-each: 0.3.3
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- reflect.getprototypeof: 1.0.9
-
typed-array-length@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -61315,15 +60116,6 @@ snapshots:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- typed-array-length@1.0.7:
- dependencies:
- call-bind: 1.0.8
- for-each: 0.3.3
- gopd: 1.2.0
- is-typed-array: 1.1.13
- possible-typed-array-names: 1.0.0
- reflect.getprototypeof: 1.0.6
-
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
@@ -61338,6 +60130,14 @@ snapshots:
shiki: 0.14.7
typescript: 5.4.5
+ typedoc@0.25.7(typescript@5.5.4):
+ dependencies:
+ lunr: 2.3.9
+ marked: 4.3.0
+ minimatch: 9.0.4
+ shiki: 0.14.7
+ typescript: 5.5.4
+
typedoc@0.26.11(typescript@5.5.4):
dependencies:
lunr: 2.3.9
@@ -61353,34 +60153,34 @@ snapshots:
dependencies:
typescript-logic: 0.0.0
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
+ typescript-eslint@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.12.0(jiti@1.21.0)
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -61607,12 +60407,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.0(browserslist@4.23.3):
- dependencies:
- browserslist: 4.23.3
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-browserslist-db@1.1.1(browserslist@4.24.0):
dependencies:
browserslist: 4.24.0
@@ -61661,12 +60455,12 @@ snapshots:
node-addon-api: 6.1.0
node-gyp-build: 4.8.2
- use-callback-ref@1.3.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106):
+ use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
use-debounce@9.0.3(react@19.0.0):
dependencies:
@@ -61678,13 +60472,13 @@ snapshots:
optionalDependencies:
'@types/react': 19.0.1
- use-sidecar@1.1.3(@types/react@18.3.11)(react@19.0.0-rc-66855b96-20241106):
+ use-sidecar@1.1.3(@types/react@19.0.1)(react@19.0.0):
dependencies:
detect-node-es: 1.1.0
- react: 19.0.0-rc-66855b96-20241106
+ react: 19.0.0
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 19.0.1
use-sync-external-store@1.2.0(react@19.0.0):
dependencies:
@@ -61893,23 +60687,6 @@ snapshots:
- utf-8-validate
- zod
- viem@2.16.2(bufferutil@4.0.8)(typescript@5.5.2)(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: 1.0.4(typescript@5.5.2)(zod@3.23.8)
- isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- optionalDependencies:
- typescript: 5.5.2
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
-
viem@2.19.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
@@ -61946,7 +60723,24 @@ snapshots:
- utf-8-validate
- zod
- viem@2.21.56(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@6.0.4)(zod@3.23.8):
+ viem@2.22.9(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8):
+ dependencies:
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
+ abitype: 1.0.7(typescript@5.5.4)(zod@3.23.8)
+ isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ ox: 0.6.5(typescript@5.5.4)(zod@3.23.8)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.22.9(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@6.0.4)(zod@3.23.8):
dependencies:
'@noble/curves': 1.7.0
'@noble/hashes': 1.6.1
@@ -61954,8 +60748,7 @@ snapshots:
'@scure/bip39': 1.5.0
abitype: 1.0.7(typescript@5.5.4)(zod@3.23.8)
isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))
- ox: 0.1.2(typescript@5.5.4)(zod@3.23.8)
- webauthn-p256: 0.0.10
+ ox: 0.6.5(typescript@5.5.4)(zod@3.23.8)
ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
optionalDependencies:
typescript: 5.5.4
@@ -61964,18 +60757,18 @@ snapshots:
- utf-8-validate
- zod
- viem@2.8.13(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.4)(zod@3.23.8):
+ viem@2.22.9(bufferutil@4.0.8)(typescript@5.6.3)(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.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)
+ '@noble/curves': 1.7.0
+ '@noble/hashes': 1.6.1
+ '@scure/bip32': 1.6.0
+ '@scure/bip39': 1.5.0
+ abitype: 1.0.7(typescript@5.6.3)(zod@3.23.8)
+ isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))
+ ox: 0.6.5(typescript@5.6.3)(zod@3.23.8)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -62008,10 +60801,10 @@ snapshots:
dependencies:
xml-name-validator: 4.0.0
- wagmi@2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
+ wagmi@2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
dependencies:
'@tanstack/react-query': 5.45.1(react@19.0.0)
- '@wagmi/connectors': 5.0.16(4kbay4ejz7vqiich5e43lezopu)
+ '@wagmi/connectors': 5.0.16(hncxwyxgso647ji7tzmgxjxpbq)
'@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@19.0.1)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
react: 19.0.0
use-sync-external-store: 1.2.0(react@19.0.0)
@@ -62067,21 +60860,21 @@ snapshots:
web-vitals@0.2.4: {}
- web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
'@types/node': 12.20.55
got: 12.1.0
- swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3):
+ web3-bzz@1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@types/node': 12.20.55
got: 12.1.0
- swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ swarm-js: 0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -62451,7 +61244,7 @@ snapshots:
dependencies:
'@ethereumjs/rlp': 4.0.1
crc-32: 1.2.2
- ethereum-cryptography: 2.1.3
+ ethereum-cryptography: 2.2.1
web3-errors: 1.2.0
web3-types: 1.7.0
web3-utils: 4.3.1
@@ -63167,7 +61960,7 @@ snapshots:
web3-validator@2.0.5:
dependencies:
- ethereum-cryptography: 2.1.3
+ ethereum-cryptography: 2.2.1
util: 0.12.5
web3-errors: 1.1.4
web3-types: 1.6.0
@@ -63181,9 +61974,9 @@ snapshots:
web3-types: 1.7.0
zod: 3.23.8
- web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10):
+ web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3):
dependencies:
- web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3)
web3-core: 1.10.0(encoding@0.1.13)
web3-eth: 1.10.0(encoding@0.1.13)
web3-eth-personal: 1.10.0(encoding@0.1.13)
@@ -63196,9 +61989,9 @@ snapshots:
- supports-color
- utf-8-validate
- web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3):
+ web3@1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
- web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ web3-bzz: 1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
web3-core: 1.10.0(encoding@0.1.13)
web3-eth: 1.10.0(encoding@0.1.13)
web3-eth-personal: 1.10.0(encoding@0.1.13)
@@ -63450,7 +62243,7 @@ snapshots:
whence@2.0.0:
dependencies:
- '@babel/parser': 7.24.7
+ '@babel/parser': 7.25.8
eval-estree-expression: 1.1.0
which-boxed-primitive@1.0.2:
@@ -63461,14 +62254,6 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-boxed-primitive@1.1.1:
- dependencies:
- is-bigint: 1.1.0
- is-boolean-object: 1.2.1
- is-number-object: 1.1.1
- is-string: 1.1.1
- is-symbol: 1.1.1
-
which-builtin-type@1.1.3:
dependencies:
function.prototype.name: 1.1.6
@@ -63484,22 +62269,6 @@ snapshots:
which-collection: 1.0.2
which-typed-array: 1.1.15
- which-builtin-type@1.2.1:
- dependencies:
- call-bound: 1.0.3
- function.prototype.name: 1.1.6
- has-tostringtag: 1.0.2
- is-async-function: 2.0.0
- is-date-object: 1.1.0
- is-finalizationregistry: 1.1.1
- is-generator-function: 1.0.10
- is-regex: 1.2.1
- is-weakref: 1.0.2
- isarray: 2.0.5
- which-boxed-primitive: 1.1.1
- which-collection: 1.0.2
- which-typed-array: 1.1.18
-
which-collection@1.0.2:
dependencies:
is-map: 2.0.3
@@ -63519,15 +62288,6 @@ snapshots:
gopd: 1.0.1
has-tostringtag: 1.0.2
- which-typed-array@1.1.18:
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- for-each: 0.3.3
- gopd: 1.2.0
- has-tostringtag: 1.0.2
-
which@1.3.1:
dependencies:
isexe: 2.0.0
@@ -63644,15 +62404,6 @@ snapshots:
readable-stream: 0.0.4
optional: true
- ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- async-limiter: 1.0.1
- safe-buffer: 5.1.2
- ultron: 1.1.1
- optionalDependencies:
- bufferutil: 4.0.7
- utf-8-validate: 5.0.10
-
ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
async-limiter: 1.0.1
@@ -63707,12 +62458,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@7.4.6(bufferutil@4.0.8)(utf-8-validate@6.0.4):
- optionalDependencies:
- bufferutil: 4.0.8
- utf-8-validate: 6.0.4
- optional: true
-
ws@7.5.10(bufferutil@4.0.7)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.7
@@ -63728,11 +62473,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@7.5.10(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
@@ -63748,11 +62488,6 @@ snapshots:
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.16.0(bufferutil@4.0.8)(utf-8-validate@6.0.4):
optionalDependencies:
bufferutil: 4.0.8
@@ -63768,11 +62503,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4):
- optionalDependencies:
- bufferutil: 4.0.8
- utf-8-validate: 6.0.4
-
ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.8
@@ -63990,9 +62720,9 @@ snapshots:
dependencies:
ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
- zksync-ethers@6.11.2(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)):
+ zksync-ethers@6.11.2(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)):
dependencies:
- ethers: 6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
zksync-ethers@6.14.0(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)):
dependencies: