()
+ tokenBalances?.pages?.forEach(page => {
+ page.balances?.forEach(balanceData => {
+ if (balanceData.contractAddress && balanceData.balance) {
+ map.set(balanceData.contractAddress.toLowerCase(), BigInt(balanceData.balance))
+ }
+ })
+ })
+ return map
+ }, [tokenBalances])
+
useEffect(() => {
+ // Only attempt to select a currency if none is currently selected
+ const selectedCurrencyBalance = tokensBalancesMap.get(selectedCurrency?.toLowerCase() || '')
+ if ((selectedCurrency && BigInt(selectedCurrencyBalance || '0') > 0) || isLoadingTokenBalances || swapRoutesIsLoading) {
+ return
+ }
+
if (!disableMainCurrency) {
- setSelectedCurrency(currencyAddress)
- } else if (!swapPricesIsLoading) {
- const firstOptionAddress = swapPrices?.[0]?.info?.address
- setSelectedCurrency(firstOptionAddress)
+ const balance = tokensBalancesMap.get(toTokenAddress.toLowerCase())
+ const mainCurrencyOptionPrice = toTokenAmount
+
+ if (mainCurrencyOptionPrice && balance && BigInt(balance) >= BigInt(mainCurrencyOptionPrice)) {
+ setSelectedCurrency(toTokenAddress)
+ return
+ }
+ }
+
+ const validSwapOptions = swapRoutes.flatMap(route => route.fromTokens)
+
+ if (!validSwapOptions.length) {
+ return
+ }
+
+ // Try to find the first token with sufficient balance
+ const optionWithSufficientBalance = validSwapOptions.find(option => {
+ if (!option.price) {
+ return false
+ }
+ const balance = tokensBalancesMap.get(option.address.toLowerCase())
+ return balance ? BigInt(balance) >= BigInt(option.price) : false
+ })
+
+ if (optionWithSufficientBalance) {
+ setSelectedCurrency(optionWithSufficientBalance.address)
}
- }, [swapPricesIsLoading])
+ }, [
+ swapRoutesIsLoading,
+ isLoadingTokenBalances,
+ swapRoutes,
+ tokensBalancesMap,
+ disableMainCurrency,
+ toTokenAddress,
+ selectedCurrency
+ ])
- const isNativeCurrency = compareAddress(currencyAddress, zeroAddress)
+ const isNativeCurrency = compareAddress(toTokenAddress, zeroAddress)
const network = findSupportedNetwork(chainId)
const mainCurrencyName = isNativeCurrency ? network?.nativeToken.name : currencyInfoData?.name
@@ -68,7 +128,7 @@ export const Swap = () => {
const mainCurrencySymbol = isNativeCurrency ? network?.nativeToken.symbol : currencyInfoData?.symbol
const mainCurrencyDecimals = isNativeCurrency ? network?.nativeToken.decimals : currencyInfoData?.decimals
- const disableSwapQuote = !selectedCurrency || compareAddress(selectedCurrency, buyCurrencyAddress)
+ const disableSwapQuote = !selectedCurrency || compareAddress(selectedCurrency, toTokenAddress)
const {
data: swapQuote,
@@ -76,12 +136,15 @@ export const Swap = () => {
isError: isErrorSwapQuote
} = useGetSwapQuote(
{
- userAddress: userAddress ?? '',
- buyCurrencyAddress: currencyAddress,
- buyAmount: currencyAmount,
- chainId: chainId,
- sellCurrencyAddress,
- includeApprove: true
+ params: {
+ walletAddress: userAddress ?? '',
+ toTokenAddress,
+ toTokenAmount,
+ fromTokenAddress: selectedCurrency || '',
+ chainId: chainId,
+ includeApprove: true,
+ slippageBps: slippageBps || 100
+ }
},
{
disabled: disableSwapQuote
@@ -89,11 +152,9 @@ export const Swap = () => {
)
const indexerClient = useIndexerClient(chainId)
-
- const isMainCurrencySelected = compareAddress(selectedCurrency || '', currencyAddress)
+ const isMainCurrencySelected = compareAddress(selectedCurrency || '', toTokenAddress)
const quoteFetchInProgress = isLoadingSwapQuote && !isMainCurrencySelected
-
- const isLoading = isLoadingCurrencyInfo || swapPricesIsLoading
+ const isLoading = isLoadingCurrencyInfo || swapRoutesIsLoading
const onClickProceed = async () => {
if (!userAddress || !publicClient || !walletClient || !connector) {
@@ -104,11 +165,11 @@ export const Swap = () => {
setIsTxsPending(true)
try {
- const swapPrice = swapPrices?.find(price => price.info?.address === selectedCurrency)
- const isSwapNativeToken = compareAddress(zeroAddress, swapPrice?.price.currencyAddress || '')
+ const swapOption = swapRoutes.flatMap(route => route.fromTokens).find(option => option.address === selectedCurrency)
+ const isSwapNativeToken = compareAddress(zeroAddress, swapOption?.address || '')
const getSwapTransactions = () => {
- if (isMainCurrencySelected || !swapQuote || !swapPrice) {
+ if (isMainCurrencySelected || !swapQuote || !swapOption) {
return []
}
@@ -117,7 +178,7 @@ export const Swap = () => {
...(swapQuote?.approveData && !isSwapNativeToken
? [
{
- to: swapPrice.price.currencyAddress as Hex,
+ to: swapOption.address as Hex,
data: swapQuote.approveData as Hex,
chain: chainId
}
@@ -169,17 +230,17 @@ export const Swap = () => {
}
}
- const isErrorFetchingPrices = isErrorPrices || isErrorCurrencyInfo
- const noOptionsFound = disableMainCurrency && swapPrices.length === 0
+ const isErrorFetchingOptions = isErrorSwapRoutes || isErrorCurrencyInfo
+ const noOptionsFound = disableMainCurrency && swapRoutes.flatMap(route => route.fromTokens).length === 0
const SwapContent = () => {
- if (isLoading) {
+ if (isLoading || isLoadingTokenBalances) {
return (
)
- } else if (isErrorFetchingPrices) {
+ } else if (isErrorFetchingOptions) {
return (
@@ -197,7 +258,7 @@ export const Swap = () => {
)
} else {
- const formattedPrice = formatUnits(BigInt(currencyAmount), mainCurrencyDecimals || 0)
+ const formattedPrice = formatUnits(BigInt(toTokenAmount), mainCurrencyDecimals || 0)
const displayPrice = formatDisplay(formattedPrice, {
disableScientificNotation: true,
disableCompactNotation: true,
@@ -212,46 +273,45 @@ export const Swap = () => {
{!disableMainCurrency && (
{
setIsError(false)
- setSelectedCurrency(currencyAddress)
+ setSelectedCurrency(toTokenAddress)
}}
disabled={isTxsPending}
/>
)}
- {swapPrices.map(swapPrice => {
- const sellCurrencyAddress = swapPrice.info?.address || ''
+ {swapRoutes
+ .flatMap(route => route.fromTokens)
+ .map(tokenOption => {
+ const displayPrice = formatUnits(BigInt(tokenOption.price || '0'), tokenOption.decimals || 0)
+ const balance = tokensBalancesMap.get(tokenOption.address.toLowerCase())
+ const insufficientFunds = balance ? BigInt(balance) < BigInt(tokenOption.price || '0') : false
- const formattedPrice = formatUnits(BigInt(swapPrice.price.price), swapPrice.info?.decimals || 0)
- const displayPrice = formatDisplay(formattedPrice, {
- disableScientificNotation: true,
- disableCompactNotation: true,
- significantDigits: 6
- })
- return (
- {
- setIsError(false)
- setSelectedCurrency(sellCurrencyAddress)
- }}
- disabled={isTxsPending}
- />
- )
- })}
+ return (
+ {
+ setIsError(false)
+ setSelectedCurrency(tokenOption.address)
+ }}
+ disabled={isTxsPending}
+ />
+ )
+ })}
{isError && (
@@ -270,7 +330,7 @@ export const Swap = () => {
diff --git a/packages/connect/package.json b/packages/connect/package.json
index 6d1c12037..a2cb64dff 100644
--- a/packages/connect/package.json
+++ b/packages/connect/package.json
@@ -39,23 +39,23 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
- "@0xsequence/api": ">=2.3.7",
- "@0xsequence/auth": ">= 2.3.7",
- "@0xsequence/core": ">= 2.3.7",
+ "@0xsequence/api": "2.3.11",
+ "@0xsequence/auth": "^2.3.10",
+ "@0xsequence/core": "^2.3.10",
"@0xsequence/design-system": "2.1.6",
"@0xsequence/ethauth": "^1.0.0",
"@0xsequence/hooks": "workspace:*",
- "@0xsequence/indexer": ">= 2.3.7",
- "@0xsequence/metadata": ">= 2.3.7",
- "@0xsequence/network": ">= 2.3.7",
- "@0xsequence/provider": ">= 2.3.7",
- "@0xsequence/utils": ">= 2.3.7",
- "@0xsequence/waas": ">= 2.3.7",
- "@tailwindcss/cli": "^4.0.14",
+ "@0xsequence/indexer": "^2.3.10",
+ "@0xsequence/metadata": "^2.3.10",
+ "@0xsequence/network": "^2.3.10",
+ "@0xsequence/provider": "^2.3.10",
+ "@0xsequence/utils": "^2.3.10",
+ "@0xsequence/waas": "^2.3.10",
+ "@tailwindcss/cli": "^4.1.4",
"clsx": "^2.1.1",
"fuse.js": "^6.6.2",
- "motion": "^12.3.1",
- "tailwindcss": "^4.0.6",
+ "motion": "^12.9.2",
+ "tailwindcss": "^4.1.4",
"uuid": "^10.0.0"
},
"peerDependencies": {
@@ -71,14 +71,14 @@
"wagmi": ">= 2.15.0"
},
"devDependencies": {
- "0xsequence": ">= 2.3.7",
- "concurrently": "^9.1.2",
- "@tanstack/react-query": "^5.62.0",
+ "0xsequence": "^2.3.10",
+ "@tanstack/react-query": "^5.74.11",
"@types/uuid": "^9.0.8",
- "ethers": "^6.13.0",
- "react": "^19.0.0",
- "react-dom": "^19.0.0",
- "viem": "^2.28.0",
- "wagmi": "^2.15.0"
+ "concurrently": "^9.1.2",
+ "ethers": "^6.13.7",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "viem": "^2.28.1",
+ "wagmi": "^2.15.1"
}
}
diff --git a/packages/connect/src/components/CryptoOption.tsx b/packages/connect/src/components/CryptoOption.tsx
index bde8013ba..aa1540248 100644
--- a/packages/connect/src/components/CryptoOption.tsx
+++ b/packages/connect/src/components/CryptoOption.tsx
@@ -37,7 +37,7 @@ export const CryptoOption = ({
-
+
{currencyName}
-
- {`${price} ${symbol}`}
-
+ {price && (
+
+ {`${price} ${symbol}`}
+
+ )}
diff --git a/packages/connect/src/components/TxnDetails/TxnDetails.tsx b/packages/connect/src/components/TxnDetails/TxnDetails.tsx
index 150da73f6..122bc7afa 100644
--- a/packages/connect/src/components/TxnDetails/TxnDetails.tsx
+++ b/packages/connect/src/components/TxnDetails/TxnDetails.tsx
@@ -44,6 +44,7 @@ export const TxnDetails = ({ address, txs, chainId }: TxnDetailsProps) => {
const [awardItemProps, setAwardItemProps] = useState
([])
const getTxnProps = async () => {
+ // @ts-ignore
const decodedTxnDatas = await decodeTransactions(apiClient, address, txs)
const type = decodedTxnDatas[0]?.type
diff --git a/packages/connect/src/hooks/useWallets.ts b/packages/connect/src/hooks/useWallets.ts
index 323e19a73..ac0b66224 100644
--- a/packages/connect/src/hooks/useWallets.ts
+++ b/packages/connect/src/hooks/useWallets.ts
@@ -95,6 +95,7 @@ export const useLinkedWallets = (args: GetLinkedWalletsArgs, options: UseLinkedW
abortControllerRef.current?.abort()
abortControllerRef.current = new AbortController()
+ // @ts-ignore
const linkedWallets = await getLinkedWallets(apiClient, args, undefined, abortControllerRef.current.signal)
setData(linkedWallets)
diff --git a/packages/connect/src/styles.ts b/packages/connect/src/styles.ts
index d8e67efe6..c865ba84d 100644
--- a/packages/connect/src/styles.ts
+++ b/packages/connect/src/styles.ts
@@ -1,13 +1,13 @@
export const styles = String.raw`
-/*! tailwindcss v4.0.14 | MIT License | https://tailwindcss.com */
+/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
+@layer properties;
@layer theme, base, components, utilities;
@layer theme {
:root, :host {
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- --font-mono: "Roboto", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
- --color-violet-600: oklch(0.541 0.281 293.009);
- --color-gray-500: oklch(0.551 0.027 264.364);
+ --color-violet-600: oklch(54.1% 0.281 293.009);
+ --color-gray-500: oklch(55.1% 0.027 264.364);
--color-black: #000;
--color-white: #fff;
--spacing: 0.25rem;
@@ -47,17 +47,7 @@ export const styles = String.raw`
--default-transition-duration: 150ms;
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
--default-font-family: var(--font-sans);
- --default-font-feature-settings: var(--font-sans--font-feature-settings);
- --default-font-variation-settings: var(
- --font-sans--font-variation-settings
- );
- --default-mono-font-family: var(--font-mono);
- --default-mono-font-feature-settings: var(
- --font-mono--font-feature-settings
- );
- --default-mono-font-variation-settings: var(
- --font-mono--font-variation-settings
- );
+ --default-mono-font-family: "Roboto", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
}
@layer base {
@@ -71,14 +61,11 @@ export const styles = String.raw`
line-height: 1.5;
-webkit-text-size-adjust: 100%;
tab-size: 4;
- font-family: var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
font-feature-settings: var(--default-font-feature-settings, normal);
- font-variation-settings: var( --default-font-variation-settings, normal );
+ font-variation-settings: var(--default-font-variation-settings, normal);
-webkit-tap-highlight-color: transparent;
}
- body {
- line-height: inherit;
- }
hr {
height: 0;
color: inherit;
@@ -101,9 +88,9 @@ export const styles = String.raw`
font-weight: bolder;
}
code, kbd, samp, pre {
- font-family: var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );
- font-feature-settings: var( --default-mono-font-feature-settings, normal );
- font-variation-settings: var( --default-mono-font-variation-settings, normal );
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
font-size: 1em;
}
small {
@@ -167,7 +154,14 @@ export const styles = String.raw`
}
::placeholder {
opacity: 1;
- color: color-mix(in oklab, currentColor 50%, transparent);
+ }
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
+ ::placeholder {
+ color: currentcolor;
+ @supports (color: color-mix(in lab, red, red)) {
+ color: color-mix(in oklab, currentcolor 50%, transparent);
+ }
+ }
}
textarea {
resize: vertical;
@@ -582,7 +576,7 @@ export const styles = String.raw`
translate: var(--tw-translate-x) var(--tw-translate-y);
}
.transform {
- transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.animate-spin {
animation: var(--animate-spin);
@@ -864,6 +858,9 @@ export const styles = String.raw`
.bg-gradient-skeleton {
background-image: var(--seq-color-gradient-skeleton);
}
+ .\[mask-image\:radial-gradient\(circle_at_82\%_82\%\,transparent_22\%\,black_0\)\] {
+ mask-image: radial-gradient(circle at 82% 82%,transparent 22%,black 0);
+ }
.bg-\[length\:400\%_400\%\] {
background-size: 400% 400%;
}
@@ -1218,11 +1215,11 @@ export const styles = String.raw`
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.ring-1 {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.ring-2 {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.ring-border-focus {
@@ -1232,7 +1229,10 @@ export const styles = String.raw`
--tw-ring-color: var(--seq-color-border-normal);
}
.ring-white\/10 {
- --tw-ring-color: color-mix(in oklab, var(--color-white) 10%, transparent);
+ --tw-ring-color: color-mix(in srgb, #fff 10%, transparent);
+ @supports (color: color-mix(in lab, red, red)) {
+ --tw-ring-color: color-mix(in oklab, var(--color-white) 10%, transparent);
+ }
}
.outline-hidden {
--tw-outline-style: none;
@@ -1267,7 +1267,7 @@ export const styles = String.raw`
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
}
.transition {
- transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
@@ -1295,9 +1295,6 @@ export const styles = String.raw`
-webkit-user-select: none;
user-select: none;
}
- .\[mask-image\:radial-gradient\(circle_at_82\%_82\%\,transparent_22\%\,black_0\)\] {
- mask-image: radial-gradient(circle at 82% 82%,transparent 22%,black 0);
- }
.ring-inset {
--tw-ring-inset: inset;
}
@@ -1387,28 +1384,34 @@ export const styles = String.raw`
width: 100%;
}
}
- .before\:bg-gradient-to-b {
+ .before\:bg-linear-to-l {
&::before {
content: var(--tw-content);
- --tw-gradient-position: to bottom in oklab;
+ --tw-gradient-position: to left;
+ @supports (background-image: linear-gradient(in lab, red, red)) {
+ --tw-gradient-position: to left in oklab;
+ }
background-image: linear-gradient(var(--tw-gradient-stops));
}
}
- .before\:bg-gradient-to-t {
+ .before\:bg-linear-to-t {
&::before {
content: var(--tw-content);
- --tw-gradient-position: to top in oklab;
+ --tw-gradient-position: to top;
+ @supports (background-image: linear-gradient(in lab, red, red)) {
+ --tw-gradient-position: to top in oklab;
+ }
background-image: linear-gradient(var(--tw-gradient-stops));
}
}
- .before\:bg-linear-to-l {
+ .before\:bg-gradient-to-b {
&::before {
content: var(--tw-content);
- --tw-gradient-position: to left in oklab;
+ --tw-gradient-position: to bottom in oklab;
background-image: linear-gradient(var(--tw-gradient-stops));
}
}
- .before\:bg-linear-to-t {
+ .before\:bg-gradient-to-t {
&::before {
content: var(--tw-content);
--tw-gradient-position: to top in oklab;
@@ -1547,20 +1550,26 @@ export const styles = String.raw`
.after\:bg-current {
&::after {
content: var(--tw-content);
- background-color: currentColor;
+ background-color: currentcolor;
}
}
.after\:bg-linear-to-b {
&::after {
content: var(--tw-content);
- --tw-gradient-position: to bottom in oklab;
+ --tw-gradient-position: to bottom;
+ @supports (background-image: linear-gradient(in lab, red, red)) {
+ --tw-gradient-position: to bottom in oklab;
+ }
background-image: linear-gradient(var(--tw-gradient-stops));
}
}
.after\:bg-linear-to-r {
&::after {
content: var(--tw-content);
- --tw-gradient-position: to right in oklab;
+ --tw-gradient-position: to right;
+ @supports (background-image: linear-gradient(in lab, red, red)) {
+ --tw-gradient-position: to right in oklab;
+ }
background-image: linear-gradient(var(--tw-gradient-stops));
}
}
@@ -1597,7 +1606,7 @@ export const styles = String.raw`
}
.focus-within\:ring-2 {
&:focus-within {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
@@ -1646,13 +1655,13 @@ export const styles = String.raw`
}
.focus\:ring-0 {
&:focus {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
.focus\:ring-2 {
&:focus {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
@@ -1673,7 +1682,7 @@ export const styles = String.raw`
}
.focus-visible\:ring-2 {
&:focus-visible {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
@@ -1848,7 +1857,7 @@ export const styles = String.raw`
.focus-within\:\[\&\:has\(\:focus-visible\)\]\:ring-2 {
&:focus-within {
&:has(:focus-visible) {
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
@@ -1981,27 +1990,22 @@ export const styles = String.raw`
@property --tw-rotate-x {
syntax: "*";
inherits: false;
- initial-value: rotateX(0);
}
@property --tw-rotate-y {
syntax: "*";
inherits: false;
- initial-value: rotateY(0);
}
@property --tw-rotate-z {
syntax: "*";
inherits: false;
- initial-value: rotateZ(0);
}
@property --tw-skew-x {
syntax: "*";
inherits: false;
- initial-value: skewX(0);
}
@property --tw-skew-y {
syntax: "*";
inherits: false;
- initial-value: skewY(0);
}
@property --tw-border-style {
syntax: "*";
@@ -2029,6 +2033,11 @@ export const styles = String.raw`
syntax: "*";
inherits: false;
}
+@property --tw-shadow-alpha {
+ syntax: "";
+ inherits: false;
+ initial-value: 100%;
+}
@property --tw-inset-shadow {
syntax: "*";
inherits: false;
@@ -2038,6 +2047,11 @@ export const styles = String.raw`
syntax: "*";
inherits: false;
}
+@property --tw-inset-shadow-alpha {
+ syntax: "";
+ inherits: false;
+ initial-value: 100%;
+}
@property --tw-ring-color {
syntax: "*";
inherits: false;
@@ -2120,6 +2134,19 @@ export const styles = String.raw`
syntax: "*";
inherits: false;
}
+@property --tw-drop-shadow-color {
+ syntax: "*";
+ inherits: false;
+}
+@property --tw-drop-shadow-alpha {
+ syntax: "";
+ inherits: false;
+ initial-value: 100%;
+}
+@property --tw-drop-shadow-size {
+ syntax: "*";
+ inherits: false;
+}
@property --tw-backdrop-blur {
syntax: "*";
inherits: false;
@@ -2215,4 +2242,71 @@ export const styles = String.raw`
to {
transform: rotate(360deg);
}
+}
+@layer properties {
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
+ *, ::before, ::after, ::backdrop {
+ --tw-translate-x: 0;
+ --tw-translate-y: 0;
+ --tw-translate-z: 0;
+ --tw-rotate-x: initial;
+ --tw-rotate-y: initial;
+ --tw-rotate-z: initial;
+ --tw-skew-x: initial;
+ --tw-skew-y: initial;
+ --tw-border-style: solid;
+ --tw-leading: initial;
+ --tw-font-weight: initial;
+ --tw-tracking: initial;
+ --tw-shadow: 0 0 #0000;
+ --tw-shadow-color: initial;
+ --tw-shadow-alpha: 100%;
+ --tw-inset-shadow: 0 0 #0000;
+ --tw-inset-shadow-color: initial;
+ --tw-inset-shadow-alpha: 100%;
+ --tw-ring-color: initial;
+ --tw-ring-shadow: 0 0 #0000;
+ --tw-inset-ring-color: initial;
+ --tw-inset-ring-shadow: 0 0 #0000;
+ --tw-ring-inset: initial;
+ --tw-ring-offset-width: 0px;
+ --tw-ring-offset-color: #fff;
+ --tw-ring-offset-shadow: 0 0 #0000;
+ --tw-outline-style: solid;
+ --tw-blur: initial;
+ --tw-brightness: initial;
+ --tw-contrast: initial;
+ --tw-grayscale: initial;
+ --tw-hue-rotate: initial;
+ --tw-invert: initial;
+ --tw-opacity: initial;
+ --tw-saturate: initial;
+ --tw-sepia: initial;
+ --tw-drop-shadow: initial;
+ --tw-drop-shadow-color: initial;
+ --tw-drop-shadow-alpha: 100%;
+ --tw-drop-shadow-size: initial;
+ --tw-backdrop-blur: initial;
+ --tw-backdrop-brightness: initial;
+ --tw-backdrop-contrast: initial;
+ --tw-backdrop-grayscale: initial;
+ --tw-backdrop-hue-rotate: initial;
+ --tw-backdrop-invert: initial;
+ --tw-backdrop-opacity: initial;
+ --tw-backdrop-saturate: initial;
+ --tw-backdrop-sepia: initial;
+ --tw-duration: initial;
+ --tw-ease: initial;
+ --tw-content: "";
+ --tw-gradient-position: initial;
+ --tw-gradient-from: #0000;
+ --tw-gradient-via: #0000;
+ --tw-gradient-to: #0000;
+ --tw-gradient-stops: initial;
+ --tw-gradient-via-stops: initial;
+ --tw-gradient-from-position: 0%;
+ --tw-gradient-via-position: 50%;
+ --tw-gradient-to-position: 100%;
+ }
+ }
}`
diff --git a/packages/hooks/README.md b/packages/hooks/README.md
index e39287ad2..7bc1390db 100644
--- a/packages/hooks/README.md
+++ b/packages/hooks/README.md
@@ -52,7 +52,6 @@ Sequence hooks are grouped into 5 categories, based on the sequence service they
### Combination
-- useGetSwapPrices
- useGetSwapQuote
## Usage
@@ -328,20 +327,6 @@ const { data, isLoading, error } = useGetTokenMetadata(
)
```
-### useGetSwapPrices
-
-```tsx
-import { useGetSwapPrices } from '@0xsequence/hooks'
-
-const { data, isLoading, error } = useGetSwapPrices({
- userAddress: '0x0123456789012345678901234567890123456789',
- buyCurrencyAddress: '0x0123456789012345678901234567890123456789',
- buyAmount: '1',
- chainId: 1,
- withContractInfo: true // optional
-})
-```
-
### useGetSwapQuote
```tsx
diff --git a/packages/hooks/package.json b/packages/hooks/package.json
index b1ad56c1b..b8edc9848 100644
--- a/packages/hooks/package.json
+++ b/packages/hooks/package.json
@@ -30,7 +30,7 @@
"test:watch": "vitest"
},
"peerDependencies": {
- "@0xsequence/api": ">=2.3.7",
+ "@0xsequence/api": "2.3.11",
"@0xsequence/indexer": ">=2.3.7",
"@0xsequence/metadata": ">=2.3.7",
"@0xsequence/network": ">=2.3.7",
@@ -40,22 +40,22 @@
"viem": ">= 2.28.0"
},
"devDependencies": {
- "@0xsequence/api": ">=2.3.7",
- "@0xsequence/indexer": ">=2.3.7",
- "@0xsequence/metadata": ">=2.3.7",
- "@0xsequence/network": ">=2.3.7",
- "@tanstack/react-query": "^5.62.0",
+ "@0xsequence/api": "2.3.11",
+ "@0xsequence/indexer": "^2.3.10",
+ "@0xsequence/metadata": "^2.3.10",
+ "@0xsequence/network": "^2.3.10",
+ "@tanstack/react-query": "^5.74.11",
"@testing-library/jest-dom": "^6.6.3",
- "@testing-library/react": "^16.0.1",
- "@testing-library/user-event": "^14.5.2",
- "@vitejs/plugin-react": "^4.3.4",
+ "@testing-library/react": "^16.3.0",
+ "@testing-library/user-event": "^14.6.1",
+ "@vitejs/plugin-react": "^4.4.1",
"jsdom": "^25.0.1",
- "msw": "^2.6.6",
- "react": "^19.0.0",
- "react-dom": "^19.0.0",
- "typescript": "^5.8.2",
- "vite": "^6.0.2",
- "vitest": "^2.1.8",
- "viem": "^2.28.0"
+ "msw": "^2.7.5",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "typescript": "^5.8.3",
+ "viem": "^2.28.1",
+ "vite": "^6.3.4",
+ "vitest": "^2.1.9"
}
}
diff --git a/packages/hooks/src/constants.ts b/packages/hooks/src/constants.ts
index a76b10886..8c7d3ea6a 100644
--- a/packages/hooks/src/constants.ts
+++ b/packages/hooks/src/constants.ts
@@ -12,8 +12,8 @@ export const QUERY_KEYS = {
useGetExchangeRate: 'useGetExchangeRate',
useGetCoinPrices: 'useGetCoinPrices',
useGetCollectiblePrices: 'useGetCollectiblePrices',
- useGetSwapPrices: 'useGetSwapPrices',
- useGetSwapQuote: 'useGetSwapQuote'
+ useGetSwapQuote: 'useGetSwapQuote',
+ useGetSwapRoutes: 'useGetSwapRoutes'
}
export const time = {
diff --git a/packages/hooks/src/hooks/Combination/useGetSwapPrices.ts b/packages/hooks/src/hooks/Combination/useGetSwapPrices.ts
deleted file mode 100644
index aafd95d5c..000000000
--- a/packages/hooks/src/hooks/Combination/useGetSwapPrices.ts
+++ /dev/null
@@ -1,238 +0,0 @@
-import { SequenceAPIClient, SwapPrice } from '@0xsequence/api'
-import { SequenceIndexerGateway } from '@0xsequence/indexer'
-import { ContractInfo, SequenceMetadata } from '@0xsequence/metadata'
-import { findSupportedNetwork } from '@0xsequence/network'
-import { useQuery } from '@tanstack/react-query'
-
-import { NATIVE_TOKEN_ADDRESS_0X_SWAP, QUERY_KEYS, time, ZERO_ADDRESS } from '../../constants'
-import { HooksOptions } from '../../types'
-import { compareAddress } from '../../utils/helpers'
-import { useAPIClient } from '../API/useAPIClient'
-import { useIndexerGatewayClient } from '../IndexerGateway/useIndexerGatewayClient'
-import { useMetadataClient } from '../Metadata/useMetadataClient'
-
-interface Balance {
- balance: string
-}
-
-/**
- * Type representing a swap price with additional currency information
- *
- * @property price - The swap price information from the API
- * @property info - Contract information for the currency, including name, symbol, decimals, etc.
- * @property balance - The user's balance of this currency
- */
-export type SwapPricesWithCurrencyInfo = {
- price: SwapPrice
- info: ContractInfo | undefined
- balance: Balance
-}
-
-/**
- * Arguments for the useGetSwapPrices hook
- *
- * @property userAddress - The address of the user's wallet
- * @property buyCurrencyAddress - The address of the currency to buy
- * @property buyAmount - The amount of currency to buy (in base units)
- * @property chainId - The chain ID where the swap will occur
- * @property withContractInfo - Whether to fetch additional contract info for each currency
- */
-export interface UseGetSwapPricesArgs {
- userAddress: string
- buyCurrencyAddress: string
- buyAmount: string
- chainId: number
- withContractInfo?: boolean
-}
-
-const getSwapPrices = async (
- apiClient: SequenceAPIClient,
- metadataClient: SequenceMetadata,
- indexerGatewayClient: SequenceIndexerGateway,
- args: UseGetSwapPricesArgs
-): Promise => {
- if (!args.chainId || !args.userAddress || !args.buyCurrencyAddress || !args.buyAmount || args.buyAmount === '0') {
- return []
- }
-
- const network = findSupportedNetwork(args.chainId)
-
- const { withContractInfo, ...swapPricesArgs } = args
-
- const isNativeTokenInArgs =
- compareAddress(args.buyCurrencyAddress, NATIVE_TOKEN_ADDRESS_0X_SWAP) || compareAddress(args.buyCurrencyAddress, ZERO_ADDRESS)
- const res = await apiClient.getSwapPermit2Prices({
- ...swapPricesArgs,
- buyCurrencyAddress: isNativeTokenInArgs ? NATIVE_TOKEN_ADDRESS_0X_SWAP : args.buyCurrencyAddress
- })
-
- if (res.swapPermit2Prices === null) {
- return []
- }
-
- const currencyInfoMap = new Map>()
- if (withContractInfo) {
- res?.swapPermit2Prices.forEach(price => {
- const { currencyAddress } = price
- const isNativeToken = compareAddress(currencyAddress, NATIVE_TOKEN_ADDRESS_0X_SWAP || ZERO_ADDRESS)
- if (currencyAddress && !currencyInfoMap.has(currencyAddress)) {
- const getNativeTokenInfo = () =>
- new Promise(resolve => {
- resolve({
- ...network?.nativeToken,
- logoURI: network?.logoURI || '',
- address: NATIVE_TOKEN_ADDRESS_0X_SWAP
- } as ContractInfo)
- })
-
- currencyInfoMap.set(
- currencyAddress,
- isNativeToken
- ? getNativeTokenInfo()
- : metadataClient
- .getContractInfo({
- chainID: String(args.chainId),
- contractAddress: currencyAddress
- })
- .then(data => ({ ...data.contractInfo }))
- .catch(error => {
- console.error(`Failed to fetch contract info for ${currencyAddress}:`, error)
- return undefined
- })
- )
- }
- })
- }
-
- const currencyBalanceInfoMap = new Map>()
- res?.swapPermit2Prices.forEach(price => {
- const { currencyAddress } = price
- const isNativeToken = compareAddress(currencyAddress, NATIVE_TOKEN_ADDRESS_0X_SWAP || ZERO_ADDRESS)
-
- if (currencyAddress && !currencyBalanceInfoMap.has(currencyAddress)) {
- const tokenBalance = indexerGatewayClient
- .getTokenBalancesSummary({
- chainIds: [args.chainId],
- filter: {
- accountAddresses: [args.userAddress],
- contractWhitelist: [currencyAddress],
- omitNativeBalances: false
- }
- })
- .then(res => {
- if (isNativeToken) {
- return {
- balance: res.nativeBalances[0].results[0].balance
- }
- } else {
- return {
- balance: res.balances[0].results[0].balance
- }
- }
- })
- .catch(error => {
- console.error(`Failed to fetch balance for ${currencyAddress}:`, error)
- return { balance: '0' }
- })
-
- currencyBalanceInfoMap.set(currencyAddress, tokenBalance)
- }
- })
-
- return Promise.all(
- res?.swapPermit2Prices.map(async price => {
- const { currencyAddress: rawCurrencyAddress } = price
- const currencyAddress = compareAddress(rawCurrencyAddress, NATIVE_TOKEN_ADDRESS_0X_SWAP)
- ? NATIVE_TOKEN_ADDRESS_0X_SWAP
- : rawCurrencyAddress
-
- return {
- price: {
- ...price,
- currencyAddress
- },
- info: await currencyInfoMap.get(currencyAddress),
- balance: (await currencyBalanceInfoMap.get(currencyAddress)) || { balance: '0' }
- }
- }) || []
- )
-}
-
-/**
- * Hook to fetch available swap prices for a given currency pair.
- *
- * This hook provides functionality to:
- * - Get swap prices for a specified currency and amount
- * - Fetch token information and balances for available swap options
- * - Support both native tokens and ERC20 tokens
- * - Handle currency conversions and price formatting
- *
- * The hook automatically handles:
- * - Native token address normalization (between 0x0 and 0xEEE...)
- * - Contract information fetching (name, symbol, decimals, etc.)
- * - Error handling for failed API calls or balance fetches
- *
- * @see {@link https://docs.sequence.xyz/sdk/web/hooks/useGetSwapPrices} for more detailed documentation.
- *
- * @param args - Configuration object for the swap prices query {@link UseGetSwapPricesArgs}
- * @param options - Optional configuration for the hook behavior {@link HooksOptions}
- *
- * @returns A React Query result object containing:
- * - data: Array of {@link SwapPricesWithCurrencyInfo} objects
- * - isLoading: Whether the query is in progress
- * - isError: Whether an error occurred
- * - error: Any error that occurred
- * - Other standard React Query properties
- *
- * @example
- * ```tsx
- * import { useGetSwapPrices } from '@0xsequence/hooks'
- *
- * function SwapComponent() {
- * const { data: swapPrices, isLoading } = useGetSwapPrices({
- * userAddress: '0x123...',
- * buyCurrencyAddress: '0x456...',
- * buyAmount: '1000000000000000000', // 1 token in base units
- * chainId: 1,
- * withContractInfo: true
- * })
- *
- * if (isLoading) return Loading...
- *
- * return (
- *
- * {swapPrices?.map(swap => (
- *
- * Token: {swap.info?.symbol}
- * Price: {swap.price.price}
- * Balance: {swap.balance.balance}
- *
- * ))}
- *
- * )
- * }
- * ```
- */
-export const useGetSwapPrices = (args: UseGetSwapPricesArgs, options?: HooksOptions) => {
- const apiClient = useAPIClient()
- const metadataClient = useMetadataClient()
- const indexerGatewayClient = useIndexerGatewayClient()
-
- const enabled =
- !!args.chainId &&
- !!args.userAddress &&
- !!args.buyCurrencyAddress &&
- !!args.buyAmount &&
- args.buyAmount !== '0' &&
- !options?.disabled
-
- return useQuery({
- queryKey: [QUERY_KEYS.useGetSwapPrices, args, options],
- queryFn: () => getSwapPrices(apiClient, metadataClient, indexerGatewayClient, args),
- retry: options?.retry ?? true,
- // We must keep a long staletime to avoid the list of quotes being refreshed while the user is doing the transactions
- // Instead, we will invalidate the query manually
- staleTime: time.oneHour,
- enabled
- })
-}
diff --git a/packages/hooks/src/hooks/Combination/useGetSwapQuote.ts b/packages/hooks/src/hooks/Combination/useGetSwapQuote.ts
index 2ede5d883..2ee77e125 100644
--- a/packages/hooks/src/hooks/Combination/useGetSwapQuote.ts
+++ b/packages/hooks/src/hooks/Combination/useGetSwapQuote.ts
@@ -1,4 +1,4 @@
-import { GetSwapQuoteV2Args } from '@0xsequence/api'
+import { GetLifiSwapQuoteArgs } from '@0xsequence/api'
import { useQuery } from '@tanstack/react-query'
import { QUERY_KEYS, ZERO_ADDRESS, time } from '../../constants'
@@ -23,12 +23,14 @@ import { useAPIClient } from '../API/useAPIClient'
* Go to {@link https://docs.sequence.xyz/sdk/web/hooks/useGetSwapQuote} for more detailed documentation.
*
* @param getSwapQuoteArgs - Configuration object for the swap quote query:
- * - userAddress: The address of the user's wallet
- * - buyCurrencyAddress: The address of the currency to buy
- * - sellCurrencyAddress: The address of the currency to sell
- * - buyAmount: The amount of currency to buy (in base units)
- * - chainId: The chain ID where the swap will occur
- * - includeApprove: Whether to include approval data for ERC20 tokens
+ * - params: The parameters for the swap quote query
+ * - walletAddress: The address of the user's wallet
+ * - fromTokenAddress: The address of the currency to sell
+ * - toTokenAddress: The address of the currency to buy
+ * - fromTokenAmount?: The amount of currency to sell (optional)
+ * - toTokenAmount?: The amount of currency to buy (optional)
+ * - includeApprove: Whether to include approval data for ERC20 tokens
+ * - slippageBps: The slippage percentage for the swap
*
* @param options - Optional configuration for the hook behavior:
* - disabled: Whether to disable the query
@@ -37,14 +39,17 @@ import { useAPIClient } from '../API/useAPIClient'
*
* @returns A React Query result object containing:
* - data: The swap quote data including:
- * - currencyAddress: The address of the currency being swapped
- * - currencyBalance: The user's balance of the currency
- * - price: The price for the swap
- * - maxPrice: The maximum price (including slippage)
- * - to: The target contract address for the swap
- * - transactionData: The calldata for the swap transaction
- * - transactionValue: The value to send with the transaction (for native tokens)
- * - approveData: The approval transaction data (if needed)
+ * - quote: The swap quote data including:
+ * - currencyAddress: The address of the currency being swapped
+ * - currencyBalance: The user's balance of the currency
+ * - price: The price for the swap
+ * - maxPrice: The maximum price (including slippage)
+ * - to: The target contract address for the swap
+ * - transactionData: The calldata for the swap transaction
+ * - transactionValue: The value to send with the transaction (for native tokens)
+ * - approveData: The approval transaction data (if needed)
+ * - amount: The amount of currency to buy
+ * - amountMin: The minimum amount of currency to buy
* - isLoading: Whether the query is in progress
* - isError: Whether an error occurred
* - error: Any error that occurred
@@ -58,12 +63,15 @@ import { useAPIClient } from '../API/useAPIClient'
*
* function SwapComponent() {
* const { data: swapQuote, isLoading } = useGetSwapQuote({
- * userAddress: '0x123...',
- * buyCurrencyAddress: '0x456...',
- * sellCurrencyAddress: '0x789...',
- * buyAmount: '1000000000000000000', // 1 token in base units
- * chainId: 1,
- * includeApprove: true
+ * params: {
+ * walletAddress: '0x123...',
+ * fromTokenAddress: '0x456...',
+ * toTokenAddress: '0x789...',
+ * fromTokenAmount: '1000000000000000000', // 1 token in base units
+ * includeApprove: true,
+ * slippageBps: 100,
+ * chainId: 1
+ * }
* })
*
* if (isLoading) return Loading...
@@ -80,38 +88,38 @@ import { useAPIClient } from '../API/useAPIClient'
* }
* ```
*/
-export const useGetSwapQuote = (getSwapQuoteArgs: GetSwapQuoteV2Args, options?: HooksOptions) => {
+export const useGetSwapQuote = (getSwapQuoteArgs: GetLifiSwapQuoteArgs, options?: HooksOptions) => {
const apiClient = useAPIClient()
return useQuery({
queryKey: [QUERY_KEYS.useGetSwapQuote, getSwapQuoteArgs, options],
queryFn: async () => {
- const res = await apiClient.getSwapQuoteV2({
- ...getSwapQuoteArgs,
- buyCurrencyAddress: compareAddress(getSwapQuoteArgs.buyCurrencyAddress, ZERO_ADDRESS)
- ? ZERO_ADDRESS
- : getSwapQuoteArgs.buyCurrencyAddress,
- sellCurrencyAddress: compareAddress(getSwapQuoteArgs.sellCurrencyAddress, ZERO_ADDRESS)
- ? ZERO_ADDRESS
- : getSwapQuoteArgs.sellCurrencyAddress
+ const res = await apiClient.getLifiSwapQuote({
+ params: {
+ ...getSwapQuoteArgs.params,
+ toTokenAddress: compareAddress(getSwapQuoteArgs.params.toTokenAddress, ZERO_ADDRESS)
+ ? ZERO_ADDRESS
+ : getSwapQuoteArgs.params.toTokenAddress,
+ fromTokenAddress: compareAddress(getSwapQuoteArgs.params.fromTokenAddress, ZERO_ADDRESS)
+ ? ZERO_ADDRESS
+ : getSwapQuoteArgs.params.fromTokenAddress
+ }
})
return {
- ...res.swapQuote,
- currencyAddress: compareAddress(res.swapQuote.currencyAddress, ZERO_ADDRESS)
- ? ZERO_ADDRESS
- : res.swapQuote.currencyAddress
+ ...res.quote,
+ currencyAddress: compareAddress(res.quote.currencyAddress, ZERO_ADDRESS) ? ZERO_ADDRESS : res.quote.currencyAddress
}
},
retry: options?.retry ?? true,
staleTime: time.oneMinute * 1,
enabled:
!options?.disabled &&
- !!getSwapQuoteArgs.userAddress &&
- !!getSwapQuoteArgs.buyCurrencyAddress &&
- !!getSwapQuoteArgs.sellCurrencyAddress &&
- getSwapQuoteArgs.buyAmount !== '0' &&
- !!getSwapQuoteArgs.chainId &&
- !!getSwapQuoteArgs.includeApprove
+ !!getSwapQuoteArgs.params.walletAddress &&
+ !!getSwapQuoteArgs.params.fromTokenAddress &&
+ !!getSwapQuoteArgs.params.toTokenAddress &&
+ getSwapQuoteArgs.params.fromTokenAmount !== '0' &&
+ !!getSwapQuoteArgs.params.chainId &&
+ !!getSwapQuoteArgs.params.includeApprove
})
}
diff --git a/packages/hooks/src/hooks/Combination/useGetSwapRoutes.ts b/packages/hooks/src/hooks/Combination/useGetSwapRoutes.ts
new file mode 100644
index 000000000..96172e3a6
--- /dev/null
+++ b/packages/hooks/src/hooks/Combination/useGetSwapRoutes.ts
@@ -0,0 +1,102 @@
+import { GetLifiSwapRoutesArgs, type LifiSwapRoute, SequenceAPIClient } from '@0xsequence/api'
+import { useQuery } from '@tanstack/react-query'
+
+import { QUERY_KEYS, time } from '../../constants'
+import { HooksOptions } from '../../types'
+import { useAPIClient } from '../API/useAPIClient'
+
+/**
+ * Arguments for the useGetSwapRoutes hook
+ *
+ * @property walletAddress - The address of the user's wallet
+ * @property toTokenAddress - The address of the currency to buy
+ * @property chainId - The chain ID where the swap will occur
+ * @property toTokenAmount - The amount of the currency to buy
+ */
+export interface UseGetSwapRoutesArgs {
+ walletAddress: string
+ toTokenAddress: string
+ chainId: number
+ toTokenAmount: string
+}
+
+const getSwapRoutes = async (
+ apiClient: SequenceAPIClient,
+ args: GetLifiSwapRoutesArgs & { walletAddress: string }
+): Promise => {
+ if (!args.chainId || !args.toTokenAddress) {
+ return []
+ }
+
+ const res = await apiClient.getLifiSwapRoutes({
+ chainId: args.chainId,
+ walletAddress: args.walletAddress,
+ toTokenAddress: args.toTokenAddress,
+ toTokenAmount: args.toTokenAmount
+ })
+
+ if (res.routes.length === 0) {
+ return []
+ }
+
+ return res.routes
+}
+
+/**
+ * Hook to fetch available swap routes for a given token.
+ *
+ * This hook uses React Query to fetch and cache swap routes from the Sequence API.
+ * Stale time is set to one hour by default
+ *
+ * @see {@link https://docs.sequence.xyz/sdk/web/hooks/useGetSwapRoutes} for more detailed documentation.
+ *
+ * @param args - Arguments for fetching swap routes:
+ * - walletAddress: The address of the user's wallet
+ * - toTokenAddress: The address of the token to buy
+ * - chainId: The chain ID where the swap will occur
+ * - toTokenAmount: The amount of the token to buy
+ *
+ * @param options - Optional configuration options:
+ * - retry: Whether to retry failed requests (defaults to true)
+ * - disabled: Whether to disable the query
+ *
+ * @returns React Query result object containing:
+ * - data: Array of available swap routes when available
+ * - isLoading: Whether the initial request is in progress
+ * - error: Any error that occurred
+ * - isError: Whether an error occurred
+ * - isSuccess: Whether the request was successful
+ *
+ * @example
+ * ```tsx
+ * const { data: routes, isLoading, error } = useGetSwapRoutes({
+ * walletAddress: '0x123...',
+ * toTokenAddress: '0x456...',
+ * chainId: 1,
+ * toTokenAmount: '1000000000000000000' // 1 ETH in wei
+ * })
+ *
+ * if (isLoading) {
+ * return Loading swap routes...
+ * }
+ *
+ * if (routes?.length) {
+ * console.log('Best route:', routes[0])
+ * }
+ * ```
+ */
+export const useGetSwapRoutes = (args: UseGetSwapRoutesArgs, options?: HooksOptions) => {
+ const apiClient = useAPIClient()
+
+ const enabled = !!args.chainId && !!args.toTokenAddress && !options?.disabled
+
+ return useQuery({
+ queryKey: [QUERY_KEYS.useGetSwapRoutes, args, options],
+ queryFn: () => getSwapRoutes(apiClient, args),
+ retry: options?.retry ?? true,
+ // We must keep a long staletime to avoid the list of quotes being refreshed while the user is doing the transactions
+ // Instead, we will invalidate the query manually
+ staleTime: time.oneHour,
+ enabled
+ })
+}
diff --git a/packages/hooks/src/index.ts b/packages/hooks/src/index.ts
index 0a0e8c19c..b3de77dec 100644
--- a/packages/hooks/src/index.ts
+++ b/packages/hooks/src/index.ts
@@ -38,13 +38,8 @@ export { useGetContractInfo } from './hooks/Metadata/useGetContractInfo'
export { useGetMultipleContractsInfo } from './hooks/Metadata/useGetMultipleContractsInfo'
export { useGetTokenMetadata } from './hooks/Metadata/useGetTokenMetadata'
-// Combination
-export {
- useGetSwapPrices,
- type SwapPricesWithCurrencyInfo,
- type UseGetSwapPricesArgs
-} from './hooks/Combination/useGetSwapPrices'
export { useGetSwapQuote } from './hooks/Combination/useGetSwapQuote'
+export { useGetSwapRoutes } from './hooks/Combination/useGetSwapRoutes'
// Etc
export { useClearCachedBalances } from './hooks/useClearCachedBalances'
diff --git a/packages/hooks/src/tests/Combination/useGetSwapPrices.test.ts b/packages/hooks/src/tests/Combination/useGetSwapPrices.test.ts
deleted file mode 100644
index 172881814..000000000
--- a/packages/hooks/src/tests/Combination/useGetSwapPrices.test.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-import { renderHook, waitFor } from '@testing-library/react'
-import { HttpResponse, http } from 'msw'
-import { describe, expect, it } from 'vitest'
-
-import { ACCOUNT_ADDRESS, NATIVE_TOKEN_ADDRESS_0X_SWAP } from '../../constants'
-import { useGetSwapPrices } from '../../hooks/Combination/useGetSwapPrices'
-import { createWrapper } from '../createWrapper'
-import { server } from '../setup'
-
-const getSwapPricesArgs = {
- userAddress: ACCOUNT_ADDRESS,
- buyCurrencyAddress: NATIVE_TOKEN_ADDRESS_0X_SWAP,
- chainId: 1,
- buyAmount: '20000',
- withContractInfo: true
-}
-
-describe('useGetSwapPrices', () => {
- it('should return data with a balance', async () => {
- const { result } = renderHook(() => useGetSwapPrices(getSwapPricesArgs), {
- wrapper: createWrapper()
- })
-
- await waitFor(() => expect(result.current.isSuccess).toBe(true))
-
- expect(result.current.data).toBeDefined()
-
- const value = BigInt(result.current.data![0].balance.balance || 0)
-
- expect(value).toBeGreaterThan(0)
- })
-
- it('should return error when fetching data fails', async () => {
- server.use(
- http.post('*', () => {
- return HttpResponse.error()
- })
- )
-
- const { result } = renderHook(() => useGetSwapPrices(getSwapPricesArgs, { retry: false }), {
- wrapper: createWrapper()
- })
-
- await waitFor(() => expect(result.current.isError).toBe(true))
- })
-})
diff --git a/packages/hooks/src/tests/Combination/useGetSwapQuote.test.ts b/packages/hooks/src/tests/Combination/useGetSwapQuote.test.ts
index d67ab1f42..11863def1 100644
--- a/packages/hooks/src/tests/Combination/useGetSwapQuote.test.ts
+++ b/packages/hooks/src/tests/Combination/useGetSwapQuote.test.ts
@@ -7,41 +7,64 @@ import { useGetSwapQuote } from '../../hooks/Combination/useGetSwapQuote'
import { createWrapper } from '../createWrapper'
import { server } from '../setup'
-const getSwapQuoteArgs = {
- userAddress: ACCOUNT_ADDRESS,
- buyCurrencyAddress: ZERO_ADDRESS,
- sellCurrencyAddress: ZERO_ADDRESS,
- buyAmount: '20000',
- chainId: 1,
- includeApprove: true
+const swapQuoteArgs = {
+ params: {
+ walletAddress: ACCOUNT_ADDRESS,
+ toTokenAddress: '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619',
+ fromTokenAddress: ZERO_ADDRESS,
+ toTokenAmount: '10000',
+ chainId: 137,
+ includeApprove: true,
+ slippageBps: 100
+ }
}
-describe('useGetSwapQuoteV2', () => {
+describe('useGetSwapQuote', () => {
it('should return data with a balance', async () => {
- const { result } = renderHook(() => useGetSwapQuote(getSwapQuoteArgs), {
+ server.use(
+ http.post('*/getLifiSwapQuote', async () => {
+ return HttpResponse.json(
+ {
+ quote: {
+ currencyAddress: ZERO_ADDRESS,
+ currencyBalance: '180000000000000',
+ price: '7351402238115',
+ maxPrice: '7718972350021',
+ to: '0x0000000000000000000000000000000000000000',
+ transactionData: '0x0000000000000000000000000000000000000000000000000000000000000000',
+ transactionValue: '0',
+ approveData: '0x0000000000000000000000000000000000000000000000000000000000000000',
+ amount: '10000000000000000',
+ amountMin: '9500000000000000'
+ }
+ },
+ { status: 200 }
+ )
+ })
+ )
+
+ const { result } = renderHook(() => useGetSwapQuote({ params: swapQuoteArgs.params }), {
wrapper: createWrapper()
})
- await waitFor(() => expect(result.current.isSuccess).toBe(true))
+ await waitFor(() => expect(result.current.isSuccess).toBe(true), { timeout: 3000 })
expect(result.current.data).toBeDefined()
-
const value = BigInt(result.current.data!.currencyBalance || 0)
-
expect(value).toBeGreaterThan(0)
})
it('should return error when fetching data fails', async () => {
server.use(
- http.post('*', () => {
+ http.post('*/getLifiSwapQuote', () => {
return HttpResponse.error()
})
)
- const { result } = renderHook(() => useGetSwapQuote(getSwapQuoteArgs, { retry: false }), {
+ const { result } = renderHook(() => useGetSwapQuote({ params: swapQuoteArgs.params }, { retry: false }), {
wrapper: createWrapper()
})
- await waitFor(() => expect(result.current.isError).toBe(true))
+ await waitFor(() => expect(result.current.isError).toBe(true), { timeout: 3000 })
})
})
diff --git a/packages/hooks/src/tests/handlers.ts b/packages/hooks/src/tests/handlers.ts
index 3727459fc..472f4c78d 100644
--- a/packages/hooks/src/tests/handlers.ts
+++ b/packages/hooks/src/tests/handlers.ts
@@ -276,55 +276,7 @@ export const handlers = [
})
}),
- http.post('*/GetSwapPrices', async () => {
- return HttpResponse.json(
- {
- swapPrices: [
- {
- currencyAddress: '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619',
- currencyBalance: '180000000000000',
- price: '7351402238115',
- maxPrice: '7718972350021',
- transactionValue: '0'
- },
- {
- currencyAddress: '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee',
- currencyBalance: '1478702455538610019',
- price: '64490918485610659',
- maxPrice: '67715464409891192',
- transactionValue: '67715464409891192'
- }
- ]
- },
- { status: 200 }
- )
- }),
-
- http.post('*/GetSwapPermit2Prices', async () => {
- return HttpResponse.json(
- {
- swapPermit2Prices: [
- {
- currencyAddress: '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619',
- currencyBalance: '180000000000000',
- price: '7351402238115',
- maxPrice: '7718972350021',
- transactionValue: '0'
- },
- {
- currencyAddress: '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee',
- currencyBalance: '1478702455538610019',
- price: '64490918485610659',
- maxPrice: '67715464409891192',
- transactionValue: '67715464409891192'
- }
- ]
- },
- { status: 200 }
- )
- }),
-
- http.post('*/GetSwapQuote', async () => {
+ http.post('*/GetLifiSwapQuote', async () => {
return HttpResponse.json(
{
swapQuote: {
@@ -335,17 +287,19 @@ export const handlers = [
to: '0x0000000000000000000000000000000000000000',
transactionData: '0x0000000000000000000000000000000000000000000000000000000000000000',
transactionValue: '0',
- approveData: '0x0000000000000000000000000000000000000000000000000000000000000000'
+ approveData: '0x0000000000000000000000000000000000000000000000000000000000000000',
+ amount: '10000000000000000',
+ amountMin: '9500000000000000'
}
},
{ status: 200 }
)
}),
- http.post('*/GetSwapQuoteV2', async () => {
+ http.post('*/getLifiSwapQuote', async () => {
return HttpResponse.json(
{
- swapQuote: {
+ quote: {
currencyAddress: '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619',
currencyBalance: '180000000000000',
price: '7351402238115',
@@ -353,7 +307,9 @@ export const handlers = [
to: '0x0000000000000000000000000000000000000000',
transactionData: '0x0000000000000000000000000000000000000000000000000000000000000000',
transactionValue: '0',
- approveData: '0x0000000000000000000000000000000000000000000000000000000000000000'
+ approveData: '0x0000000000000000000000000000000000000000000000000000000000000000',
+ amount: '10000000000000000',
+ amountMin: '9500000000000000'
}
},
{ status: 200 }
diff --git a/packages/wallet-widget/package.json b/packages/wallet-widget/package.json
index 757824b40..a6274d182 100644
--- a/packages/wallet-widget/package.json
+++ b/packages/wallet-widget/package.json
@@ -32,22 +32,22 @@
"dependencies": {
"@0xsequence/design-system": "2.1.6",
"@0xsequence/hooks": "workspace:*",
- "@radix-ui/react-popover": "^1.0.7",
- "micro-observables": "1.7.2",
- "dayjs": "^1.11.11",
+ "@radix-ui/react-popover": "^1.1.11",
+ "dayjs": "^1.11.13",
"fuse.js": "^6.6.2",
- "qrcode.react": "^4.0.1",
- "react-copy-to-clipboard": "^5.1.0",
- "motion": "^12.3.1"
+ "micro-observables": "1.7.2",
+ "motion": "^12.9.2",
+ "qrcode.react": "^4.2.0",
+ "react-copy-to-clipboard": "^5.1.0"
},
"peerDependencies": {
- "@0xsequence/api": ">=2.3.7",
+ "@0xsequence/api": "2.3.11",
+ "@0xsequence/checkout": "workspace:*",
+ "@0xsequence/connect": "workspace:*",
+ "@0xsequence/hooks": "workspace:*",
"@0xsequence/indexer": ">=2.3.7",
"@0xsequence/metadata": ">=2.3.7",
"@0xsequence/network": ">=2.3.7",
- "@0xsequence/connect": "workspace:*",
- "@0xsequence/hooks": "workspace:*",
- "@0xsequence/checkout": "workspace:*",
"@tanstack/react-query": ">= 5",
"ethers": ">= 6.13.0",
"react": ">= 17",
@@ -56,15 +56,15 @@
"wagmi": ">= 2.15.0"
},
"devDependencies": {
+ "@0xsequence/checkout": "workspace:*",
"@0xsequence/connect": "workspace:*",
"@0xsequence/hooks": "workspace:*",
- "@0xsequence/checkout": "workspace:*",
- "@tanstack/react-query": "^5.62.0",
+ "@tanstack/react-query": "^5.74.11",
"@types/react-copy-to-clipboard": "^5.0.7",
- "ethers": "^6.13.0",
- "react": "^19.0.0",
- "react-dom": "^19.0.0",
- "viem": "^2.28.0",
- "wagmi": "^2.15.0"
+ "ethers": "^6.13.7",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "viem": "^2.28.1",
+ "wagmi": "^2.15.1"
}
}
diff --git a/packages/wallet-widget/src/components/SequenceWalletProvider/ProviderComponents/SwapProvider.tsx b/packages/wallet-widget/src/components/SequenceWalletProvider/ProviderComponents/SwapProvider.tsx
index 48133325e..441c8079f 100644
--- a/packages/wallet-widget/src/components/SequenceWalletProvider/ProviderComponents/SwapProvider.tsx
+++ b/packages/wallet-widget/src/components/SequenceWalletProvider/ProviderComponents/SwapProvider.tsx
@@ -1,4 +1,4 @@
-import { SwapQuote } from '@0xsequence/api'
+import { LifiSwapQuote } from '@0xsequence/api'
import { getNativeTokenInfoByChainId, sendTransactions } from '@0xsequence/connect'
import { compareAddress, useToast } from '@0xsequence/design-system'
import { useAPIClient, useIndexerClient } from '@0xsequence/hooks'
@@ -24,7 +24,7 @@ export const SwapProvider = ({ children }: { children: ReactNode }) => {
const [recentInput, setRecentInput] = useState<'from' | 'to'>('from')
const [isSwapReady, setIsSwapReady] = useState(false)
- const [swapQuoteData, setSwapQuoteData] = useState()
+ const [swapQuoteData, setSwapQuoteData] = useState()
const [isSwapQuotePending, setIsSwapQuotePending] = useState(false)
const [hasInsufficientFunds, setHasInsufficientFunds] = useState(false)
const [isErrorSwapQuote, setIsErrorSwapQuote] = useState(false)
@@ -82,21 +82,24 @@ export const SwapProvider = ({ children }: { children: ReactNode }) => {
// TODO: use commented out code when getSwapQuoteV2 is updated to include sellAmount
- swapQuote = await apiClient.getSwapQuoteV2({
- userAddress: String(userAddress),
- buyCurrencyAddress: toCoin.contractAddress,
- sellCurrencyAddress: fromCoin.contractAddress,
- buyAmount: String(amount),
- chainId: connectedChainId,
- includeApprove: true
+ swapQuote = await apiClient.getLifiSwapQuote({
+ params: {
+ walletAddress: userAddress ?? '',
+ toTokenAddress: toCoin.contractAddress,
+ fromTokenAddress: fromCoin.contractAddress,
+ toTokenAmount: String(amount),
+ chainId: connectedChainId,
+ includeApprove: true,
+ slippageBps: 100
+ }
})
- const transactionValue = swapQuote?.swapQuote?.transactionValue || '0'
+ const transactionValue = swapQuote?.quote.transactionValue || '0'
// TODO: change this to "amount" from return
setNonRecentAmount(Number(transactionValue))
- setSwapQuoteData(swapQuote?.swapQuote)
+ setSwapQuoteData(swapQuote?.quote)
setIsSwapReady(true)
} catch (error) {
const hasInsufficientFunds = (error as any).code === -4
diff --git a/packages/wallet-widget/src/views/SwapCoin/SwapList.tsx b/packages/wallet-widget/src/views/SwapCoin/SwapList.tsx
index 880752e5b..54ec2848b 100644
--- a/packages/wallet-widget/src/views/SwapCoin/SwapList.tsx
+++ b/packages/wallet-widget/src/views/SwapCoin/SwapList.tsx
@@ -4,17 +4,19 @@ import {
formatDisplay,
sendTransactions,
useAnalyticsContext,
- ExtendedConnector
+ ExtendedConnector,
+ ContractVerificationStatus
} from '@0xsequence/connect'
import { Button, Spinner, Text } from '@0xsequence/design-system'
import {
- useGetSwapPrices,
useGetSwapQuote,
useClearCachedBalances,
useGetContractInfo,
- useIndexerClient
+ useIndexerClient,
+ useGetSwapRoutes,
+ useGetTokenBalancesSummary
} from '@0xsequence/hooks'
-import { useState, useEffect } from 'react'
+import { useState, useMemo } from 'react'
import { zeroAddress, formatUnits, Hex } from 'viem'
import { useAccount, useChainId, usePublicClient, useSwitchChain, useWalletClient } from 'wagmi'
@@ -25,9 +27,10 @@ interface SwapListProps {
chainId: number
contractAddress: string
amount: string
+ slippageBps?: number
}
-export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) => {
+export const SwapList = ({ chainId, contractAddress, amount, slippageBps }: SwapListProps) => {
const { clearCachedBalances } = useClearCachedBalances()
const { setNavigation } = useNavigation()
const { address: userAddress, connector } = useAccount()
@@ -48,15 +51,14 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
const sellCurrencyAddress = selectedCurrency || ''
const {
- data: swapPrices = [],
- isLoading: swapPricesIsLoading,
- isError: isErrorSwapPrices
- } = useGetSwapPrices({
- userAddress: userAddress ?? '',
- buyCurrencyAddress,
- chainId: chainId,
- buyAmount: amount,
- withContractInfo: true
+ data: swapRoutes = [],
+ isLoading: swapRoutesIsLoading,
+ isError: isErrorSwapRoutes
+ } = useGetSwapRoutes({
+ walletAddress: userAddress ?? '',
+ toTokenAddress: buyCurrencyAddress,
+ toTokenAmount: amount,
+ chainId: chainId
})
const { data: currencyInfo, isLoading: isLoadingCurrencyInfo } = useGetContractInfo({
@@ -64,12 +66,6 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
contractAddress: contractAddress
})
- useEffect(() => {
- if (!swapPricesIsLoading && swapPrices.length > 0) {
- setSelectedCurrency(swapPrices[0].info?.address)
- }
- }, [swapPricesIsLoading])
-
const disableSwapQuote = !selectedCurrency || compareAddress(selectedCurrency, buyCurrencyAddress)
const {
@@ -78,24 +74,49 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
isError: isErrorSwapQuote
} = useGetSwapQuote(
{
- userAddress: userAddress ?? '',
- buyCurrencyAddress,
-
- buyAmount: amount,
- chainId: chainId,
- sellCurrencyAddress,
- includeApprove: true
+ params: {
+ walletAddress: userAddress ?? '',
+ toTokenAddress: buyCurrencyAddress,
+ toTokenAmount: amount,
+ fromTokenAddress: sellCurrencyAddress,
+ chainId: chainId,
+ includeApprove: true,
+ slippageBps: slippageBps || 100
+ }
},
{
disabled: disableSwapQuote
}
)
+ const { data: tokenBalancesData, isLoading: tokenBalancesIsLoading } = useGetTokenBalancesSummary({
+ chainIds: [chainId],
+ filter: {
+ accountAddresses: userAddress ? [userAddress] : [],
+ contractStatus: ContractVerificationStatus.ALL,
+ contractWhitelist: swapRoutes.flatMap(route => route.fromTokens).map(fromToken => fromToken.address.toLowerCase()),
+ omitNativeBalances: false
+ },
+ omitMetadata: true
+ })
+
+ const tokenBalancesMap = useMemo(() => {
+ const map = new Map()
+ tokenBalancesData?.pages?.forEach(page => {
+ page.balances?.forEach(balanceData => {
+ if (balanceData.contractAddress && balanceData.balance) {
+ map.set(balanceData.contractAddress.toLowerCase(), BigInt(balanceData.balance))
+ }
+ })
+ })
+ return map
+ }, [tokenBalancesData])
+
const indexerClient = useIndexerClient(chainId)
const quoteFetchInProgress = isLoadingSwapQuote
- const isLoading = swapPricesIsLoading || isLoadingCurrencyInfo || isLoadingSwapQuote
+ const isLoading = swapRoutesIsLoading || isLoadingCurrencyInfo || tokenBalancesIsLoading
const onClickProceed = async () => {
if (!userAddress || !publicClient || !walletClient || !connector) {
@@ -105,11 +126,11 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
setIsErrorTx(false)
setIsTxsPending(true)
try {
- const swapPrice = swapPrices?.find(price => price.info?.address === selectedCurrency)
- const isSwapNativeToken = compareAddress(zeroAddress, swapPrice?.price.currencyAddress || '')
+ const swapOption = swapRoutes.flatMap(route => route.fromTokens).find(option => option.address === selectedCurrency)
+ const isSwapNativeToken = compareAddress(zeroAddress, swapOption?.address || '')
const getSwapTransactions = () => {
- if (!swapQuote || !swapPrice) {
+ if (!swapQuote || !swapOption) {
return []
}
@@ -118,7 +139,7 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
...(swapQuote?.approveData && !isSwapNativeToken
? [
{
- to: swapPrice.price.currencyAddress as Hex,
+ to: swapOption.address as Hex,
data: swapQuote.approveData as Hex,
chain: chainId
}
@@ -183,7 +204,7 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
}
}
- const noOptionsFound = swapPrices.length === 0
+ const noOptionsFound = swapRoutes.flatMap(route => route.fromTokens).length === 0
const SwapContent = () => {
if (isLoading) {
@@ -192,7 +213,7 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
)
- } else if (isErrorSwapPrices) {
+ } else if (isErrorSwapRoutes) {
return (
@@ -233,32 +254,38 @@ export const SwapList = ({ chainId, contractAddress, amount }: SwapListProps) =>
Select a token in your wallet to swap for {displayedAmount} {buyCurrencySymbol}.
- {swapPrices.map(swapPrice => {
- const sellCurrencyAddress = swapPrice.info?.address || ''
-
- const formattedPrice = formatUnits(BigInt(swapPrice.price.price), swapPrice.info?.decimals || 0)
- const displayPrice = formatDisplay(formattedPrice, {
- disableScientificNotation: true,
- disableCompactNotation: true,
- significantDigits: 6
- })
- return (
- {
- setIsErrorTx(false)
- setSelectedCurrency(sellCurrencyAddress)
- }}
- disabled={isTxsPending}
- />
- )
- })}
+ {swapRoutes
+ .flatMap(route => route.fromTokens)
+ .map(swapOption => {
+ const sellCurrencyAddress = swapOption.address || ''
+ const currentBalance = tokenBalancesMap.get(swapOption.address.toLowerCase()) ?? 0n
+ const isInsufficientBalance = currentBalance < BigInt(swapOption.price || '0')
+
+ const swapQuotePriceDisplay = formatUnits(BigInt(swapOption.price || 0), swapOption.decimals || 18)
+ const formattedPrice = formatDisplay(swapQuotePriceDisplay, {
+ disableScientificNotation: true,
+ disableCompactNotation: true,
+ significantDigits: 6
+ })
+
+ return (
+ {
+ setIsErrorTx(false)
+ setSelectedCurrency(sellCurrencyAddress)
+ }}
+ disabled={isTxsPending || isInsufficientBalance}
+ showInsufficientFundsWarning={isInsufficientBalance}
+ />
+ )
+ })}
{isErrorTx && (
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fa0ff29cc..736cc04fa 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -15,83 +15,83 @@ importers:
specifier: ^0.17.4
version: 0.17.4
'@changesets/changelog-github':
- specifier: ^0.5.0
- version: 0.5.0
+ specifier: ^0.5.1
+ version: 0.5.1
'@changesets/cli':
- specifier: ^2.25.2
- version: 2.27.11
+ specifier: ^2.29.2
+ version: 2.29.3
'@eslint/js':
- specifier: ^9.22.0
- version: 9.22.0
+ specifier: ^9.25.1
+ version: 9.26.0
'@types/node':
- specifier: ^20.12.12
- version: 20.17.14
+ specifier: ^20.17.32
+ version: 20.17.32
'@types/react':
- specifier: ^19.0.10
- version: 19.0.10
+ specifier: ^19.1.2
+ version: 19.1.2
'@types/react-dom':
- specifier: ^19.0.4
- version: 19.0.4(@types/react@19.0.10)
+ specifier: ^19.1.3
+ version: 19.1.3(@types/react@19.1.2)
eslint:
- specifier: ^9.22.0
- version: 9.22.0(jiti@2.4.2)
+ specifier: ^9.25.1
+ version: 9.26.0(jiti@2.4.2)
eslint-plugin-import:
- specifier: ^2.29.1
- version: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))
+ specifier: ^2.31.0
+ version: 2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.22.0(jiti@2.4.2))
+ version: 5.2.0(eslint@9.26.0(jiti@2.4.2))
ethers:
- specifier: ^6.13.0
- version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^6.13.7
+ version: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
husky:
specifier: ^9.1.7
version: 9.1.7
prettier:
- specifier: ^3.2.5
- version: 3.4.2
+ specifier: ^3.5.3
+ version: 3.5.3
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
rimraf:
- specifier: ^5.0.7
+ specifier: ^5.0.10
version: 5.0.10
turbo:
specifier: 2.0.1
version: 2.0.1
typescript:
- specifier: ^5.8.2
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.8.3
typescript-eslint:
- specifier: ^8.26.1
- version: 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ specifier: ^8.31.1
+ version: 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
examples/components:
dependencies:
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/network':
specifier: '*'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@radix-ui/react-popover':
- specifier: ^1.0.7
- version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^1.1.11
+ version: 1.1.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
typescript:
- specifier: ^5.8.2
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.8.3
wagmi:
specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
examples/next:
dependencies:
@@ -103,68 +103,68 @@ importers:
version: link:../../packages/connect
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/network':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@tailwindcss/postcss':
- specifier: ^4.0.6
- version: 4.0.12
+ specifier: ^4.1.4
+ version: 4.1.5
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
example-shared-components:
specifier: workspace:*
version: link:../components
next:
specifier: 14.2.3
- version: 14.2.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 14.2.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
tailwindcss:
- specifier: ^4.0.6
- version: 4.0.12
+ specifier: ^4.1.4
+ version: 4.1.5
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
devDependencies:
'@types/node':
- specifier: ^20.12.12
- version: 20.17.14
+ specifier: ^20.17.32
+ version: 20.17.32
'@types/react':
- specifier: ^19.0.10
- version: 19.0.10
+ specifier: ^19.1.2
+ version: 19.1.2
'@types/react-dom':
- specifier: ^19.0.4
- version: 19.0.4(@types/react@19.0.10)
+ specifier: ^19.1.3
+ version: 19.1.3(@types/react@19.1.2)
eslint:
- specifier: ^8
+ specifier: ^8.57.1
version: 8.57.1
eslint-config-next:
specifier: 14.2.3
- version: 14.2.3(eslint@8.57.1)(typescript@5.8.2)
+ version: 14.2.3(eslint@8.57.1)(typescript@5.8.3)
postcss:
- specifier: ^8.5.1
- version: 8.5.1
+ specifier: ^8.5.3
+ version: 8.5.3
typescript:
- specifier: ^5.8.2
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.8.3
examples/react:
dependencies:
@@ -176,7 +176,7 @@ importers:
version: link:../../packages/connect
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
@@ -184,23 +184,23 @@ importers:
specifier: workspace:*
version: link:../../packages/immutable-connector
'@0xsequence/network':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@imtbl/config':
- specifier: ^2.1.2
- version: 2.1.15
+ specifier: ^2.2.0
+ version: 2.2.0
'@imtbl/sdk':
- specifier: ^2.1.2
- version: 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ specifier: ^2.2.0
+ version: 2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -208,112 +208,112 @@ importers:
specifier: workspace:*
version: link:../components
motion:
- specifier: ^12.3.1
- version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^12.9.2
+ version: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
react-router-dom:
- specifier: ^7.3.0
- version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^7.5.3
+ version: 7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tailwindcss:
- specifier: ^4.0.6
- version: 4.0.12
+ specifier: ^4.1.4
+ version: 4.1.5
typescript:
- specifier: ^5.8.2
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.8.3
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
devDependencies:
'@tailwindcss/postcss':
- specifier: ^4.0.6
- version: 4.0.12
+ specifier: ^4.1.4
+ version: 4.1.5
'@types/node':
- specifier: ^20.12.12
- version: 20.17.14
+ specifier: ^20.17.32
+ version: 20.17.32
'@types/react':
- specifier: ^19.0.10
- version: 19.0.10
+ specifier: ^19.1.2
+ version: 19.1.2
'@types/react-dom':
- specifier: ^19.0.4
- version: 19.0.4(@types/react@19.0.10)
+ specifier: ^19.1.3
+ version: 19.1.3(@types/react@19.1.2)
'@vitejs/plugin-react':
- specifier: ^4.3.0
- version: 4.3.4(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
+ specifier: ^4.4.1
+ version: 4.4.1(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2))
postcss:
specifier: ^8.5.3
version: 8.5.3
vite:
- specifier: ^5.2.11
- version: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
+ specifier: ^5.4.19
+ version: 5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)
vite-plugin-node-polyfills:
specifier: ^0.21.0
- version: 0.21.0(rollup@4.31.0)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
+ version: 0.21.0(rollup@4.40.1)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2))
vite-plugin-svgr:
- specifier: ^4.2.0
- version: 4.3.0(rollup@4.31.0)(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
+ specifier: ^4.3.0
+ version: 4.3.0(rollup@4.40.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2))
vite-tsconfig-paths:
specifier: ^4.3.2
- version: 4.3.2(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))
+ version: 4.3.2(typescript@5.8.3)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2))
packages/checkout:
dependencies:
0xsequence:
specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/api':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: 2.3.11
+ version: 2.3.11
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>= 2.3.7'
- version: 2.3.9
+ version: 2.3.11
'@0xsequence/marketplace':
- specifier: ^2.1.3
- version: 2.2.7
+ specifier: ^2.3.10
+ version: 2.3.11
'@0xsequence/metadata':
specifier: '>= 2.3.7'
- version: 2.3.9
+ version: 2.3.11
'@0xsequence/network':
specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
motion:
- specifier: ^12.3.1
- version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^12.9.2
+ version: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
pako:
specifier: ^2.1.0
version: 2.1.0
qrcode.react:
- specifier: ^4.0.1
- version: 4.2.0(react@19.0.0)
+ specifier: ^4.2.0
+ version: 4.2.0(react@19.1.0)
react-copy-to-clipboard:
specifier: ^5.1.0
- version: 5.1.0(react@19.0.0)
+ version: 5.1.0(react@19.1.0)
timeago-react:
- specifier: ^3.0.6
- version: 3.0.6(react@19.0.0)
+ specifier: ^3.0.7
+ version: 3.0.7(react@19.1.0)
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
'@types/pako':
specifier: ^2.0.3
version: 2.0.3
@@ -321,71 +321,71 @@ importers:
specifier: ^5.0.7
version: 5.0.7
ethers:
- specifier: ^6.13.0
- version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^6.13.7
+ version: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
vite:
- specifier: ^5.2.11
- version: 5.4.14(@types/node@22.7.5)(lightningcss@1.29.2)
+ specifier: ^5.4.19
+ version: 5.4.19(@types/node@22.7.5)(lightningcss@1.29.2)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
packages/connect:
dependencies:
'@0xsequence/api':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: 2.3.11
+ version: 2.3.11
'@0xsequence/auth':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/core':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/ethauth':
specifier: ^1.0.0
- version: 1.0.0(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 1.0.0(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
- specifier: '>= 2.3.7'
- version: 2.3.9
+ specifier: ^2.3.10
+ version: 2.3.11
'@0xsequence/metadata':
- specifier: '>= 2.3.7'
- version: 2.3.9
+ specifier: ^2.3.10
+ version: 2.3.11
'@0xsequence/network':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/provider':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/utils':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@databeat/tracker':
specifier: ^0.9.3
version: 0.9.3
'@react-oauth/google':
specifier: ^0.11.1
- version: 0.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 0.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@tailwindcss/cli':
- specifier: ^4.0.14
- version: 4.0.14
+ specifier: ^4.1.4
+ version: 4.1.5
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -393,24 +393,24 @@ importers:
specifier: ^6.6.2
version: 6.6.2
motion:
- specifier: ^12.3.1
- version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^12.9.2
+ version: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react-apple-signin-auth:
specifier: ^1.1.0
- version: 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 1.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tailwindcss:
- specifier: ^4.0.6
- version: 4.0.12
+ specifier: ^4.1.4
+ version: 4.1.5
uuid:
specifier: ^10.0.0
version: 10.0.0
devDependencies:
0xsequence:
- specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
'@types/uuid':
specifier: ^9.0.8
version: 9.0.8
@@ -418,92 +418,92 @@ importers:
specifier: ^9.1.2
version: 9.1.2
ethers:
- specifier: ^6.13.0
- version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^6.13.7
+ version: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
packages/hooks:
devDependencies:
'@0xsequence/api':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: 2.3.11
+ version: 2.3.11
'@0xsequence/indexer':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: ^2.3.10
+ version: 2.3.11
'@0xsequence/metadata':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: ^2.3.10
+ version: 2.3.11
'@0xsequence/network':
- specifier: '>=2.3.7'
- version: 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ specifier: ^2.3.10
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.6.3
'@testing-library/react':
- specifier: ^16.0.1
- version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^16.3.0
+ version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@testing-library/user-event':
- specifier: ^14.5.2
+ specifier: ^14.6.1
version: 14.6.1(@testing-library/dom@10.4.0)
'@vitejs/plugin-react':
- specifier: ^4.3.4
- version: 4.3.4(vite@6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2))
+ specifier: ^4.4.1
+ version: 4.4.1(vite@6.3.5(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2))
jsdom:
specifier: ^25.0.1
version: 25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
msw:
- specifier: ^2.6.6
- version: 2.7.3(@types/node@22.7.5)(typescript@5.8.2)
+ specifier: ^2.7.5
+ version: 2.7.6(@types/node@22.7.5)(typescript@5.8.3)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
typescript:
- specifier: ^5.8.2
- version: 5.8.2
+ specifier: ^5.8.3
+ version: 5.8.3
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
vite:
- specifier: ^6.0.2
- version: 6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2)
+ specifier: ^6.3.4
+ version: 6.3.5(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2)
vitest:
- specifier: ^2.1.8
- version: 2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2))
+ specifier: ^2.1.9
+ version: 2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(msw@2.7.6(@types/node@22.7.5)(typescript@5.8.3))
packages/immutable-connector:
dependencies:
0xsequence:
specifier: '>= 2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@imtbl/config':
specifier: '>=2.1.2'
- version: 2.1.15
+ version: 2.2.0
'@imtbl/sdk':
specifier: '>=2.1.2'
- version: 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ version: 2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
ethers:
specifier: ^6.13.0
- version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ version: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
specifier: '>= 17 < 19'
version: 18.3.1
@@ -512,52 +512,52 @@ importers:
version: 18.3.1(react@18.3.1)
viem:
specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@18.3.1))(@types/react@19.0.10)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@18.3.1))(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
packages/wallet-widget:
dependencies:
'@0xsequence/api':
- specifier: '>=2.3.7'
- version: 2.3.9
+ specifier: 2.3.11
+ version: 2.3.11
'@0xsequence/design-system':
specifier: 2.1.6
- version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>=2.3.7'
- version: 2.3.9
+ version: 2.3.11
'@0xsequence/metadata':
specifier: '>=2.3.7'
- version: 2.3.9
+ version: 2.3.11
'@0xsequence/network':
specifier: '>=2.3.7'
- version: 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ version: 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@radix-ui/react-popover':
- specifier: ^1.0.7
- version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^1.1.11
+ version: 1.1.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
dayjs:
- specifier: ^1.11.11
+ specifier: ^1.11.13
version: 1.11.13
fuse.js:
specifier: ^6.6.2
version: 6.6.2
micro-observables:
specifier: 1.7.2
- version: 1.7.2(react@19.0.0)
+ version: 1.7.2(react@19.1.0)
motion:
- specifier: ^12.3.1
- version: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ specifier: ^12.9.2
+ version: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
qrcode.react:
- specifier: ^4.0.1
- version: 4.2.0(react@19.0.0)
+ specifier: ^4.2.0
+ version: 4.2.0(react@19.1.0)
react-copy-to-clipboard:
specifier: ^5.1.0
- version: 5.1.0(react@19.0.0)
+ version: 5.1.0(react@19.1.0)
devDependencies:
'@0xsequence/checkout':
specifier: workspace:*
@@ -566,52 +566,52 @@ importers:
specifier: workspace:*
version: link:../connect
'@tanstack/react-query':
- specifier: ^5.62.0
- version: 5.64.2(react@19.0.0)
+ specifier: ^5.74.11
+ version: 5.75.2(react@19.1.0)
'@types/react-copy-to-clipboard':
specifier: ^5.0.7
version: 5.0.7
ethers:
- specifier: ^6.13.0
- version: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^6.13.7
+ version: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
react:
- specifier: ^19.0.0
- version: 19.0.0
+ specifier: ^19.1.0
+ version: 19.1.0
react-dom:
- specifier: ^19.0.0
- version: 19.0.0(react@19.0.0)
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
viem:
- specifier: ^2.28.0
- version: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ specifier: ^2.28.1
+ version: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
wagmi:
- specifier: ^2.15.0
- version: 2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ specifier: ^2.15.1
+ version: 2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
packages:
- 0xsequence@2.3.9:
- resolution: {integrity: sha512-kpXi/pZda+t0RUeDnoj2hwsYrIJu0ciaYMcb5SCABCkwtBOoO6VMUWPujerNgHQWq+E6Djy8LmzL++OKZAGmwA==}
+ 0xsequence@2.3.11:
+ resolution: {integrity: sha512-SCtMIE57UjtdIELazTQixe1gtTdXoAT81JlkFmVCc0KorKpKS44qNr+uS2n8wmVTHk1vPxK5iPWlzeXQ4ZfHIw==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/abi@2.3.9':
- resolution: {integrity: sha512-5bFZIerqx4VMxny5PdFAGH4uyZhzvsH3Ri1/U0Tr2a05t5jSSXM5YVCf8QzWpSS51lpPRknMrvuuBUfEcV2dgw==}
+ '@0xsequence/abi@2.3.11':
+ resolution: {integrity: sha512-YpgYG3wSZS9A6jZyinTgtepZPzpctRSP5S5NiDozKrKPIeavmH8SzEtYL5n5EOiECVOaFvRIYV2feMOyrfr9gA==}
- '@0xsequence/account@2.3.9':
- resolution: {integrity: sha512-iiy0BQFfVEJfvn3F3e1KceJXoQwwSZenkV74Rk92+jmO0gT0B+HqVrKgZhiPZS8qrf9/qA63R5KxYfNfr0My5Q==}
+ '@0xsequence/account@2.3.11':
+ resolution: {integrity: sha512-jzRdvTYahJ2sSRsmvaOUsrwSbvjK+OPPIi6n7lPk8n/YGUvSyl08Fu8u3UTGzx/HCC/5DGaDoEFZgYGkMD5dQQ==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/api@2.3.9':
- resolution: {integrity: sha512-ktvuf57SlsqMjNngMJCTu0fHzl1lh3IbyR6JLJBTYA7mWVGE7HQmjKzobpeRJeBhNFlGBsDsCQDNE5MDT+t+FA==}
+ '@0xsequence/api@2.3.11':
+ resolution: {integrity: sha512-2GA+I7E6TWucAdeSP4gEPGDjXUihS+MWrveqlnBroCOUlnKqkownPOflm0tDueGhfrfp1ZkvRP0eGsAt09M0SA==}
- '@0xsequence/auth@2.3.9':
- resolution: {integrity: sha512-WT5wi4dPZJ3wmOA8y5QlY7SJZ/OXyzZuDv/TEeVWSSQcohEFhZ8JygiMIvr+zqsOhX4V1c4Hb3xrYZHx/i1KRw==}
+ '@0xsequence/auth@2.3.11':
+ resolution: {integrity: sha512-qQwKSQQTSObP8JB/YZjiBxpGwuXEsNW1vfa4qYUwdePKO8rJu+6LC7HW6vIL7TAFE6hVOopSs3OgaFgpMC7E5Q==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/core@2.3.9':
- resolution: {integrity: sha512-N97jPBe//72upmkelaypiSRLhGzVIHttOxRGa2w8b3lH6lNJ6tVHYkcrCU3I8GCnnURyINbVYR+r2C2s0+2sYQ==}
+ '@0xsequence/core@2.3.11':
+ resolution: {integrity: sha512-gDNK8m5OJA/s6KcxU/7kXsPnIs+6JgsL2795j6VDuT8oAqQzw9jEWUshAtcGzpTBO70BSnk+lrVA/Acavn6jAA==}
peerDependencies:
ethers: '>=6'
@@ -627,67 +627,67 @@ packages:
peerDependencies:
ethers: '>=6'
- '@0xsequence/guard@2.3.9':
- resolution: {integrity: sha512-rBoCHuqfc4FkyBWwdtMXTbpsllz/ukJfSVZrtsRcus0GZSg7sRUANJflm5hm1Y0qta+ndHU/dpRlIaGDr90wiQ==}
+ '@0xsequence/guard@2.3.11':
+ resolution: {integrity: sha512-X808FGjYADpNHgRqwXG/dAFSxlup0Ahdbg1jfEh7yyjXBJLu8FTLicQnoUJG0Efk/chY6HlNqKPKmiTmUZ8kmw==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/indexer@2.3.9':
- resolution: {integrity: sha512-ZtiA7827BTjujOupom5dGJd4oMvfQA2HQ9orjrreZusQPmfadie9ldVrnzX19YS+AZDeCOix9qDG+cRSpYfHwQ==}
+ '@0xsequence/indexer@2.3.11':
+ resolution: {integrity: sha512-oXWBxZVGt6EdavP1ZqYkt4MM0lYY4JfLmaPK7rHO6M9WTs0FoxjEq7JmqX3rHKa9zta6NMq1WUWEHy453Y8sMg==}
- '@0xsequence/marketplace@2.2.7':
- resolution: {integrity: sha512-fVVDnen71g6goQojZV2YJ/NP8x4+t967gSTjlGc3J2EtbK3Z8w2DJRveB4j6Fnh3ovDJqUU/NF6Opo/NDBSlZA==}
+ '@0xsequence/marketplace@2.3.11':
+ resolution: {integrity: sha512-h12CNApkqAoXu53ACDSGRrt6iiPY+NASg8oN8TcpbaHaNqFU2/vQD0Aqi/QdsqXO0AM19DcRsOL7RfhufaTALA==}
- '@0xsequence/metadata@2.3.9':
- resolution: {integrity: sha512-h4HK+vhKWKl/I96TUj4vWcGEIVJHLrbkDALGqERxz9i/q7JL1TuV/7q0Uo7GKHX/ojB8cOZwLXaC09TAEjIv6A==}
+ '@0xsequence/metadata@2.3.11':
+ resolution: {integrity: sha512-cxBABw/5yylIVMBM0PGnvOc/+3HkNYyzD59sFPk0JHDm5fIRQpl4VGJqc2/y3+u9w2Eca4iZk/6npeDg3QUouQ==}
- '@0xsequence/migration@2.3.9':
- resolution: {integrity: sha512-X1a23ni++om8oKSI2NaBgtA5SHKgvvy1jLRBOy0Mnkf2u+hqJs+2DF4vENRq3AtKx3SclWDj7J6S4jFO+G8k4w==}
+ '@0xsequence/migration@2.3.11':
+ resolution: {integrity: sha512-e0+nc8SbQilNkltriVAlUVC0ultaTFQm+S8dCqMkUix1TJmEiVnLpgKM+FfSOPA4Hjwd9Xv8Hh1K6UDpTwAtWA==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/network@2.3.9':
- resolution: {integrity: sha512-QFvGsfkjkuENI3yrBAil1Axm0iBK/BMO8nqEo5MZ8zxYPkOG3I4Lyjr28s4Ny2aOUzaV8I3R4udTOM+S6b5vXw==}
+ '@0xsequence/network@2.3.11':
+ resolution: {integrity: sha512-hD286ZrP3ul6I6y0ou3TWncxU+gy/2khT2mBiuTz+dIrFh9jDrUZ3uD/sQnMEE436YK7QNl2Y0Ed580UXPGXgg==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/provider@2.3.9':
- resolution: {integrity: sha512-NzuNeepA/2np7BrVjuJudiDLGf5YbS6rUvVsJ/GGiskqGzbUpu2ZmALdUnRYrnJGvQaNTApfpEgobXCa71zYxQ==}
+ '@0xsequence/provider@2.3.11':
+ resolution: {integrity: sha512-qikZijOc/5Zrg3rzbnEdhTyUvGBapEA2c2IjA7ZmY5WWvy1HwRiIP4TIAuyab3AGOxsDpdMrwZ/vhDgfR7m1Lg==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/relayer@2.3.9':
- resolution: {integrity: sha512-Ta9vYWfl38nNj1HVgf8igjH41oj5aY+ZK923Rio1ms5D4WWR6oSoHBBFRmbU5qT8HzTa8GWoYrxhohHcPV5S6g==}
+ '@0xsequence/relayer@2.3.11':
+ resolution: {integrity: sha512-gmoqFpK3q6R8rwB4NQsrgFv03SKm3EX6GG9zVJ4buhlaCICi9GllhvTC7RJj9qqtdytHBUfAr/1O/eFJk4MBzg==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/replacer@2.3.9':
- resolution: {integrity: sha512-JFWdUdorDwIiu+Nv0dFNa5rMk2T5AGRV0/S04TmishjJGOim+B8rVScnwPTFxohOUb2T9fi1LEtFrUof7tFsKw==}
+ '@0xsequence/replacer@2.3.11':
+ resolution: {integrity: sha512-2yUr6/T6ck7W0RtJ9W1dmYBTbw1zi2omDjLK4Fhw7byTtoiFSOYMxY6uUDcksmuhvSy0x+Ee+lc8QMcHoaKqUQ==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/sessions@2.3.9':
- resolution: {integrity: sha512-tiAkWDNbLtaMRvreu4iLuymBexiEclHOlclxCYdlEwISejRYCVJgUFBEpSrfM8CdksRgc4fmbFQQAbT9QkHNIg==}
+ '@0xsequence/sessions@2.3.11':
+ resolution: {integrity: sha512-VpnFk0BFeJv6MHOhsiS0gEVgHL+a0y3OSl7wJsaydjNFa1miA3FZbKukRVSjFBdITB5irgswZoDnGxx7/1sm8A==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/signhub@2.3.9':
- resolution: {integrity: sha512-hp5sgs8WWEfLE28DzrMyXf8xoz6NlWs0NQk9Wx9dp65B/c3hrTWdvC16raJHrUgqsnGRFnZ6skjuxudAmiDcCQ==}
+ '@0xsequence/signhub@2.3.11':
+ resolution: {integrity: sha512-DO0L4NvQy2086dA9/RosDXnr7qUuj6lu3jCHIFgrVl6sMQfawR89/+QUmOEyzBNewsLB8VCYzuNAuetEMOz0lA==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/utils@2.3.9':
- resolution: {integrity: sha512-dZI3dWkHABkRj39fp+GdieadQiXzntosrClwYKf7wT780/e6DlBMZV2tb/iI+j73Qq64+MfSheimEw7Tjk+kww==}
+ '@0xsequence/utils@2.3.11':
+ resolution: {integrity: sha512-dQugPnAJGCTQfSlLB2x4jW1VVtRUgZoY110rYIxxHPQ8akt9+nOIUVoJGFVjvJCqvQlOkdJNNAEtcS9R8R2B2w==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/waas@2.3.9':
- resolution: {integrity: sha512-0yxvRkUW7kjkzmPZyaAEQSMJ+tK2DPXEZXnFWSqL3ncXidAYmWKjs10NQfjPpNZGGlTN7n9OfQ2KLda4kuG/Iw==}
+ '@0xsequence/waas@2.3.11':
+ resolution: {integrity: sha512-R6pnGOzMaf18w+1DPnLjPyBEz5LGS0b2EcA56QsxNeXBE8QC8u/job5pfIzwZx6kMZLF4lLvqNfGF5xPTmOwYQ==}
peerDependencies:
ethers: '>=6'
- '@0xsequence/wallet@2.3.9':
- resolution: {integrity: sha512-DPgMt5fXVjPmS8/D/4lkvBv9JWnZY+yMoLJr1zK1BUR9L1iKPpBhBDMv90wrBh82hd26WhBIFlNPEjPp7ZteZg==}
+ '@0xsequence/wallet@2.3.11':
+ resolution: {integrity: sha512-IEgR4OZv9Nc2LLjkEkGVgoBGsaioDfFCTH2lvCJtCfyNBoIG757t0xgIuF463NuN0d4wUKFhNHtPe5QwOgbO0A==}
peerDependencies:
ethers: '>=6'
@@ -720,8 +720,8 @@ packages:
resolution: {integrity: sha512-Izvir8iIoU+X4SKtDAa5kpb+9cpifclzsbA8x/AZY0k0gIfXYQ1fa1B6Epfe6vNA2YfDX8VtrZFgvnXB6aPEoQ==}
engines: {node: '>=18'}
- '@asamuzakjp/css-color@3.1.1':
- resolution: {integrity: sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==}
+ '@asamuzakjp/css-color@3.1.7':
+ resolution: {integrity: sha512-Ok5fYhtwdyJQmU1PpEv6Si7Y+A4cYb8yNM9oiIJC9TzXPMuN9fvdonKJqcnz9TbFqV6bQ8z0giRq0iaOpGZV2g==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
@@ -736,91 +736,91 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-cognito-identity-provider@3.731.1':
- resolution: {integrity: sha512-J9fODSKaw4/Sd2vrGmZs40yc2q+SMXg8jhlYWjU+ywv5jZnYIwUIRW/CndWRNYjh6OiWlfPE8xjuTAQVQ36fMQ==}
+ '@aws-sdk/client-cognito-identity-provider@3.799.0':
+ resolution: {integrity: sha512-syRG+aqaqb9hw9MjYnoajjX3+D0O9FYFQd8FCB0zi6KsL5VWMRiPCBip9L6oVQxyuzl6rQxPLyt98z1X1MR7Pg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-sso@3.731.0':
- resolution: {integrity: sha512-O4C/UYGgqMsBg21MMApFdgyh8BX568hQhbdoNFmRVTBoSnCZ3w+H4a1wBPX4Gyl0NX+ab6Xxo9rId8HiyPXJ0A==}
+ '@aws-sdk/client-sso@3.799.0':
+ resolution: {integrity: sha512-/i/LG7AiWPmPxKCA2jnR2zaf7B3HYSTbxaZI21ElIz9wASlNAsKr8CnLY7qb50kOyXiNfQ834S5Q3Gl8dX9o3Q==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/core@3.731.0':
- resolution: {integrity: sha512-ithBN1VWASkvAIlozJmenqDvNnFddr/SZXAs58+jCnBHgy3tXLHABZGVNCjetZkHRqNdXEO1kirnoxaFeXMeDA==}
+ '@aws-sdk/core@3.799.0':
+ resolution: {integrity: sha512-hkKF3Zpc6+H8GI1rlttYVRh9uEE77cqAzLmLpY3iu7sql8cZgPERRBfaFct8p1SaDyrksLNiboD1vKW58mbsYg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-env@3.731.0':
- resolution: {integrity: sha512-h0WWZg4QMLgFVyIvQrC43zpVqsUWg1mPM1clpogP43B8+wEhDEQ4qWRzvFs3dQ4cqx/FLyDUZZF4cqgd94z7kw==}
+ '@aws-sdk/credential-provider-env@3.799.0':
+ resolution: {integrity: sha512-vT/SSWtbUIOW/U21qgEySmmO44SFWIA7WeQPX1OrI8WJ5n7OEI23JWLHjLvHTkYmuZK6z1rPcv7HzRgmuGRibA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-http@3.731.0':
- resolution: {integrity: sha512-iRtrjtcYaWgbvtu2cvDhIsPWXZGvhy1Hgks4682MEBNTc9AUwlfvDrYz2EEnTtJJyrbOdEHVrYrzqD8qPyVLCg==}
+ '@aws-sdk/credential-provider-http@3.799.0':
+ resolution: {integrity: sha512-2CjBpOWmhaPAExOgHnIB5nOkS5ef+mfRlJ1JC4nsnjAx0nrK4tk0XRE0LYz11P3+ue+a86cU8WTmBo+qjnGxPQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-ini@3.731.1':
- resolution: {integrity: sha512-0M0ejuqW8iHNcTH2ZXSY9m+I7Y06qVkj6k3vfQU9XaB//mTUCxxfGfqWAtgfr7Yi73egABTcPc0jyPdcvSW4Kw==}
+ '@aws-sdk/credential-provider-ini@3.799.0':
+ resolution: {integrity: sha512-M9ubILFxerqw4QJwk83MnjtZyoA2eNCiea5V+PzZeHlwk2PON/EnawKqy65x9/hMHGoSvvNuby7iMAmPptu7yw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-node@3.731.1':
- resolution: {integrity: sha512-5c0ZiagMTPmWilXNffeXJCLoCEz97jilHr3QJWwf2GaTay4tzN+Ld71rpdfEenzUR7fuxEWFfVlwQbFOzFNYHg==}
+ '@aws-sdk/credential-provider-node@3.799.0':
+ resolution: {integrity: sha512-nd9fSJc0wUlgKUkIr2ldJhcIIrzJFS29AGZoyY22J3xih63nNDv61eTGVMsDZzHlV21XzMlPEljTR7axiimckg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-process@3.731.0':
- resolution: {integrity: sha512-6yNMY6q3xHLbs2f2+C6GhvMrjTgtFBiPJJqKaPLsTIhlTRvh4sK8pGm3ITcma0jOxtPDIuoPfBAV8N8XVMBlZg==}
+ '@aws-sdk/credential-provider-process@3.799.0':
+ resolution: {integrity: sha512-g8jmNs2k98WNHMYcea1YKA+7ao2Ma4w0P42Dz4YpcI155pQHxHx25RwbOG+rsAKuo3bKwkW53HVE/ZTKhcWFgw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-sso@3.731.1':
- resolution: {integrity: sha512-p1tp+rMUf5YNQLr8rVRmDgNtKGYLL0KCdq3K2hwwvFnx9MjReF1sA4lfm3xWsxBQM+j3QN9AvMQqBzDJ+NOSdw==}
+ '@aws-sdk/credential-provider-sso@3.799.0':
+ resolution: {integrity: sha512-lQv27QkNU9FJFZqEf5DIEN3uXEN409Iaym9WJzhOouGtxvTIAWiD23OYh1u8PvBdrordJGS2YddfQvhcmq9akw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.731.1':
- resolution: {integrity: sha512-+ynAvEGWDR5ZJFxgpwwzhvlQ3WQ7BleWXU6JwpIw3yFrD4eZEn85b8DZC1aEz7C9kb1HSV6B3gpqHqlyS6wj8g==}
+ '@aws-sdk/credential-provider-web-identity@3.799.0':
+ resolution: {integrity: sha512-8k1i9ut+BEg0QZ+I6UQMxGNR1T8paLmAOAZXU+nLQR0lcxS6lr8v+dqofgzQPuHLBkWNCr1Av1IKeL3bJjgU7g==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-host-header@3.731.0':
- resolution: {integrity: sha512-ndAJsm5uWPPJRZowLKpB1zuL17qWlWVtCJP4I/ynBkq1PU1DijDXBul2UZaG6Mpvsgms1NXo/h9noHuK7T3v8w==}
+ '@aws-sdk/middleware-host-header@3.775.0':
+ resolution: {integrity: sha512-tkSegM0Z6WMXpLB8oPys/d+umYIocvO298mGvcMCncpRl77L9XkvSLJIFzaHes+o7djAgIduYw8wKIMStFss2w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-logger@3.731.0':
- resolution: {integrity: sha512-IIZrOdjbY2vKzPJPrwE7FoFQCIPEL6UqURi8LEaiVyCag4p2fvaTN5pgKuQtGC2+iYd/HHcGT4qn2bAqF5Jmmw==}
+ '@aws-sdk/middleware-logger@3.775.0':
+ resolution: {integrity: sha512-FaxO1xom4MAoUJsldmR92nT1G6uZxTdNYOFYtdHfd6N2wcNaTuxgjIvqzg5y7QIH9kn58XX/dzf1iTjgqUStZw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.731.0':
- resolution: {integrity: sha512-y6FLASB1iKWuR5tUipMyo77bt0lEl3OnCrrd2xw/H24avq1HhJjjPR0HHhJE6QKJzF/FYXeV88tcyPSMe32VDw==}
+ '@aws-sdk/middleware-recursion-detection@3.775.0':
+ resolution: {integrity: sha512-GLCzC8D0A0YDG5u3F5U03Vb9j5tcOEFhr8oc6PDk0k0vm5VwtZOE6LvK7hcCSoAB4HXyOUM0sQuXrbaAh9OwXA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-user-agent@3.731.0':
- resolution: {integrity: sha512-Ngr2Gz0aec/uduoKaO3srN52SYkEHndYtFzkK/gDUyQwQzi4ha2eIisxPiuHEX6RvXT31V9ouqn/YtVkt0R76A==}
+ '@aws-sdk/middleware-user-agent@3.799.0':
+ resolution: {integrity: sha512-TropQZanbOTxa+p+Nl4fWkzlRhgFwDfW+Wb6TR3jZN7IXHNlPpgGFpdrgvBExhW/RBhqr+94OsR8Ou58lp3hhA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/nested-clients@3.731.1':
- resolution: {integrity: sha512-/L8iVrulnXZl+kgmTn+oxRxNnhcSIbf+r12C06vGUq60w0YMidLvxJZN7vt8H9SnCAGCHqud2MS7ExCEvhc0gA==}
+ '@aws-sdk/nested-clients@3.799.0':
+ resolution: {integrity: sha512-zILlWh7asrcQG9JYMYgnvEQBfwmWKfED0yWCf3UNAmQcfS9wkCAWCgicNy/y5KvNvEYnHidsU117STtyuUNG5g==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/region-config-resolver@3.731.0':
- resolution: {integrity: sha512-XlDpRNkDVHF59f07JmkuAidEv//m3hT6/JL85h0l3+zrpaRWhf8n8lVUyAPNq35ZujK8AcorYM+93u7hdWsliQ==}
+ '@aws-sdk/region-config-resolver@3.775.0':
+ resolution: {integrity: sha512-40iH3LJjrQS3LKUJAl7Wj0bln7RFPEvUYKFxtP8a+oKFDO0F65F52xZxIJbPn6sHkxWDAnZlGgdjZXM3p2g5wQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/token-providers@3.731.1':
- resolution: {integrity: sha512-t34GOPwBZsX7zGHjiTXmMHGY3kHM7fLiQ60Jqk0On9P0ASHTDE5U75RgCXboE3u+qEv9wyKyaqMNyMWj9qQlFg==}
+ '@aws-sdk/token-providers@3.799.0':
+ resolution: {integrity: sha512-/8iDjnsJs/D8AhGbDAmdF5oSHzE4jsDsM2RIIxmBAKTZXkaaclQBNX9CmAqLKQmO3IUMZsDH2KENHLVAk/N/mw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/types@3.731.0':
- resolution: {integrity: sha512-NrdkJg6oOUbXR2r9WvHP408CLyvST8cJfp1/jP9pemtjvjPoh6NukbCtiSFdOOb1eryP02CnqQWItfJC1p2Y/Q==}
+ '@aws-sdk/types@3.775.0':
+ resolution: {integrity: sha512-ZoGKwa4C9fC9Av6bdfqcW6Ix5ot05F/S4VxWR2nHuMv7hzfmAjTOcUiWT7UR4hM/U0whf84VhDtXN/DWAk52KA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-endpoints@3.731.0':
- resolution: {integrity: sha512-riztxTAfncFS9yQWcBJffGgOgLoKSa63ph+rxWJxKl6BHAmWEvHICj1qDcVmnWfIcvJ5cClclY75l9qKaUH7rQ==}
+ '@aws-sdk/util-endpoints@3.787.0':
+ resolution: {integrity: sha512-fd3zkiOkwnbdbN0Xp9TsP5SWrmv0SpT70YEdbb8wAj2DWQwiCmFszaSs+YCvhoCdmlR3Wl9Spu0pGpSAGKeYvQ==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-user-agent-browser@3.731.0':
- resolution: {integrity: sha512-EnYXxTkCNCjTTBjW/pelRPv4Thsi9jepoB6qQjPMA9/ixrZ71BhhQecz9kgqzZLR9BPCwb6hgJ/Yd702jqJ4aQ==}
+ '@aws-sdk/util-user-agent-browser@3.775.0':
+ resolution: {integrity: sha512-txw2wkiJmZKVdDbscK7VBK+u+TJnRtlUjRTLei+elZg2ADhpQxfVAQl436FUeIv6AhB/oRHW6/K/EAGXUSWi0A==}
- '@aws-sdk/util-user-agent-node@3.731.0':
- resolution: {integrity: sha512-Rze78Ym5Bx7aWMvmZE2iL3JPo2INNCC5N9rLVx98Gg1G0ZaxclVRUvJrh1AojNlOFxU+otkxAe7FA3Foy2iLLQ==}
+ '@aws-sdk/util-user-agent-node@3.799.0':
+ resolution: {integrity: sha512-iXBk38RbIWPF5Nq9O4AnktORAzXovSVqWYClvS1qbE7ILsnTLJbagU9HlU25O2iV5COVh1qZkwuP5NHQ2yTEyw==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -828,58 +828,58 @@ packages:
aws-crt:
optional: true
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.5':
- resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
+ '@babel/compat-data@7.27.1':
+ resolution: {integrity: sha512-Q+E+rd/yBzNQhXkG+zQnF58e4zoZfBedaxwzPmicKsiK3nt8iJYrSrDbjwFFDGC4f+rPafqRaPH6TsDoSvMf7A==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.0':
- resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ '@babel/core@7.27.1':
+ resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.5':
- resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
+ '@babel/generator@7.27.1':
+ resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.26.5':
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ '@babel/helper-compilation-targets@7.27.1':
+ resolution: {integrity: sha512-2YaDd/Rd9E598B5+WIc8wJPmWETiiJXFYVE60oX8FDohv7rAUU3CQj+A1MgeEmcsk2+dQuEjIe/GDvig0SqL4g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-transforms@7.27.1':
+ resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.0':
- resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
+ '@babel/helpers@7.27.1':
+ resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.5':
- resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
+ '@babel/parser@7.27.1':
+ resolution: {integrity: sha512-I0dZ3ZpCrJ1c04OqlNsQcKiZlsrXf/kkE4FXzID9rIOYICsAbA8mMDzhW/luRNAHdCNt7os/u8wenklZDlUVUQ==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -904,8 +904,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -920,8 +920,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.9':
- resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -968,42 +968,42 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.9':
- resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.9':
- resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.26.0':
- resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ '@babel/runtime@7.27.1':
+ resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.9':
- resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ '@babel/template@7.27.1':
+ resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.5':
- resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
+ '@babel/traverse@7.27.1':
+ resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.5':
- resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
+ '@babel/types@7.27.1':
+ resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
engines: {node: '>=6.9.0'}
- '@braidai/lang@1.1.0':
- resolution: {integrity: sha512-xyJYkiyNQtTyCLeHxZmOs7rnB94D+N1IjKNArQIh8+8lTBOY7TFgwEV+Ow5a1uaBi5j2w9fLbWcJFTWLDItl5g==}
+ '@braidai/lang@1.1.1':
+ resolution: {integrity: sha512-5uM+no3i3DafVgkoW7ayPhEGHNNBZCSj5TrGDQt0ayEKQda5f3lAXlmQg0MR5E0gKgmTzUUEtSWHsEC3h9jUcg==}
'@bundled-es-modules/cookie@2.0.1':
resolution: {integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==}
@@ -1014,66 +1014,66 @@ packages:
'@bundled-es-modules/tough-cookie@0.1.6':
resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
- '@changesets/apply-release-plan@7.0.7':
- resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
+ '@changesets/apply-release-plan@7.0.12':
+ resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==}
- '@changesets/assemble-release-plan@6.0.5':
- resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
+ '@changesets/assemble-release-plan@6.0.7':
+ resolution: {integrity: sha512-vS5J92Rm7ZUcrvtu6WvggGWIdohv8s1/3ypRYQX8FsPO+KPDx6JaNC3YwSfh2umY/faGGfNnq42A7PRT0aZPFw==}
- '@changesets/changelog-git@0.2.0':
- resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
+ '@changesets/changelog-git@0.2.1':
+ resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/changelog-github@0.5.0':
- resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
+ '@changesets/changelog-github@0.5.1':
+ resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==}
- '@changesets/cli@2.27.11':
- resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
+ '@changesets/cli@2.29.3':
+ resolution: {integrity: sha512-TNhKr6Loc7I0CSD9LpAyVNSxWBHElXVmmvQYIZQvaMan5jddmL7geo3+08Wi7ImgHFVNB0Nhju/LzXqlrkoOxg==}
hasBin: true
- '@changesets/config@3.0.5':
- resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
+ '@changesets/config@3.1.1':
+ resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- '@changesets/get-dependents-graph@2.1.2':
- resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
+ '@changesets/get-dependents-graph@2.1.3':
+ resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
- '@changesets/get-release-plan@4.0.6':
- resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
+ '@changesets/get-release-plan@4.0.11':
+ resolution: {integrity: sha512-4DZpsewsc/1m5TArVg5h1c0U94am+cJBnu3izAM3yYIZr8+zZwa3AXYdEyCNURzjx0wWr80u/TWoxshbwdZXOA==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
- '@changesets/git@3.0.2':
- resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
+ '@changesets/git@3.0.4':
+ resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
- '@changesets/parse@0.4.0':
- resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
+ '@changesets/parse@0.4.1':
+ resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
- '@changesets/pre@2.0.1':
- resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
+ '@changesets/pre@2.0.2':
+ resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
- '@changesets/read@0.6.2':
- resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==}
+ '@changesets/read@0.6.5':
+ resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==}
- '@changesets/should-skip-package@0.1.1':
- resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
+ '@changesets/should-skip-package@0.1.2':
+ resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
- '@changesets/types@6.0.0':
- resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
+ '@changesets/types@6.1.0':
+ resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
- '@changesets/write@0.3.2':
- resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
+ '@changesets/write@0.4.0':
+ resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
'@coinbase/wallet-sdk@3.9.3':
resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==}
@@ -1089,15 +1089,15 @@ packages:
resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.2':
- resolution: {integrity: sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==}
+ '@csstools/css-calc@2.1.3':
+ resolution: {integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
- '@csstools/css-color-parser@3.0.8':
- resolution: {integrity: sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==}
+ '@csstools/css-color-parser@3.0.9':
+ resolution: {integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
@@ -1116,17 +1116,20 @@ packages:
'@databeat/tracker@0.9.3':
resolution: {integrity: sha512-eGsiNU/CRFujcNtUUqvBiqveCs6S6SiAhalXPDodbk74d3FzvLqHDn5k6WfOEJIhrP3CbYgfMXL0nk51s/rQsg==}
- '@ecies/ciphers@0.2.2':
- resolution: {integrity: sha512-ylfGR7PyTd+Rm2PqQowG08BCKA22QuX8NzrL+LxAAvazN10DMwdJ2fWwAzRj05FI/M8vNFGm3cv9Wq/GFWCBLg==}
+ '@ecies/ciphers@0.2.3':
+ resolution: {integrity: sha512-tapn6XhOueMwht3E2UzY0ZZjYokdaw9XtL9kEyjhQ/Fb9vL9xTFbOaI+fV0AWvTpYu4BNloC6getKW6NtSg4mA==}
engines: {bun: '>=1', deno: '>=2', node: '>=16'}
peerDependencies:
'@noble/ciphers': ^1.0.0
- '@emotion/is-prop-valid@0.8.8':
- resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+ '@emnapi/core@1.4.3':
+ resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
+
+ '@emnapi/runtime@1.4.3':
+ resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
- '@emotion/memoize@0.7.4':
- resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+ '@emnapi/wasi-threads@1.0.2':
+ resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
@@ -1134,8 +1137,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.25.1':
- resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
+ '@esbuild/aix-ppc64@0.25.3':
+ resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -1146,8 +1149,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.1':
- resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
+ '@esbuild/android-arm64@0.25.3':
+ resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -1158,8 +1161,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.1':
- resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
+ '@esbuild/android-arm@0.25.3':
+ resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -1170,8 +1173,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.25.1':
- resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
+ '@esbuild/android-x64@0.25.3':
+ resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -1182,8 +1185,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.25.1':
- resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
+ '@esbuild/darwin-arm64@0.25.3':
+ resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -1194,8 +1197,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.1':
- resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
+ '@esbuild/darwin-x64@0.25.3':
+ resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -1206,8 +1209,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.25.1':
- resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
+ '@esbuild/freebsd-arm64@0.25.3':
+ resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -1218,8 +1221,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.1':
- resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
+ '@esbuild/freebsd-x64@0.25.3':
+ resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -1230,8 +1233,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.1':
- resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
+ '@esbuild/linux-arm64@0.25.3':
+ resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -1242,8 +1245,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.1':
- resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
+ '@esbuild/linux-arm@0.25.3':
+ resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -1254,8 +1257,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.25.1':
- resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
+ '@esbuild/linux-ia32@0.25.3':
+ resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -1266,8 +1269,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.1':
- resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
+ '@esbuild/linux-loong64@0.25.3':
+ resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -1278,8 +1281,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.1':
- resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
+ '@esbuild/linux-mips64el@0.25.3':
+ resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -1290,8 +1293,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.1':
- resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
+ '@esbuild/linux-ppc64@0.25.3':
+ resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -1302,8 +1305,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.1':
- resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
+ '@esbuild/linux-riscv64@0.25.3':
+ resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -1314,8 +1317,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.1':
- resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
+ '@esbuild/linux-s390x@0.25.3':
+ resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -1326,14 +1329,14 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.25.1':
- resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
+ '@esbuild/linux-x64@0.25.3':
+ resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.1':
- resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
+ '@esbuild/netbsd-arm64@0.25.3':
+ resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -1344,14 +1347,14 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.1':
- resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
+ '@esbuild/netbsd-x64@0.25.3':
+ resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.1':
- resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
+ '@esbuild/openbsd-arm64@0.25.3':
+ resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -1362,8 +1365,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.1':
- resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
+ '@esbuild/openbsd-x64@0.25.3':
+ resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -1374,8 +1377,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.25.1':
- resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
+ '@esbuild/sunos-x64@0.25.3':
+ resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -1386,8 +1389,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.25.1':
- resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
+ '@esbuild/win32-arm64@0.25.3':
+ resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -1398,8 +1401,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.25.1':
- resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
+ '@esbuild/win32-ia32@0.25.3':
+ resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -1410,14 +1413,14 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.1':
- resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
+ '@esbuild/win32-x64@0.25.3':
+ resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.1':
- resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ '@eslint-community/eslint-utils@4.7.0':
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
@@ -1426,45 +1429,42 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.19.2':
- resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
+ '@eslint/config-array@0.20.0':
+ resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.1.0':
- resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==}
+ '@eslint/config-helpers@0.2.2':
+ resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.12.0':
- resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
+ '@eslint/core@0.13.0':
+ resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/eslintrc@3.3.0':
- resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
+ '@eslint/eslintrc@3.3.1':
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@8.57.1':
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@9.22.0':
- resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==}
+ '@eslint/js@9.26.0':
+ resolution: {integrity: sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.7':
- resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
+ '@eslint/plugin-kit@0.2.8':
+ resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@ethereumjs/common@2.6.5':
- resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==}
-
'@ethereumjs/common@3.2.0':
resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==}
@@ -1564,11 +1564,11 @@ packages:
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.7.0':
+ resolution: {integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.7.0':
+ resolution: {integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg==}
'@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
@@ -1608,63 +1608,63 @@ packages:
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
- '@imtbl/blockchain-data@2.1.15':
- resolution: {integrity: sha512-bUQDpth/IlKnrG5gAHL01gYM3qzl+dJOJgMAzP4JsVYub6XYj1jwwwQdntrMWCvJPBifimMIilgoFeXr6oJrUQ==}
+ '@imtbl/blockchain-data@2.2.0':
+ resolution: {integrity: sha512-otz3/cKa9jEln3RY0/b0BJzfuPJQ+OhxCNF5ArI4WveYW7pwkurz3EOnYPc4TC666xgj0jXWgaeLV1mB8W/xWQ==}
- '@imtbl/bridge-sdk@2.1.15':
- resolution: {integrity: sha512-VMtyOyUrxKb94kYVCe6liAF++vVNGJyyYB3qq7h5GtJNjsXdMDswACR5hUtEkQmiqxT96ibPovThNwd8N2JDWA==}
+ '@imtbl/bridge-sdk@2.2.0':
+ resolution: {integrity: sha512-jqEAW7ro/a/Ur1YMoPgQMakBZMLf7BBVJLVJSZ99vJrGbsUnGTqnk2asJ6Lr/KUQVR7wk3GHFjFgAzws7jS1cA==}
engines: {node: '>=20.11.0'}
- '@imtbl/checkout-sdk@2.1.15':
- resolution: {integrity: sha512-ZHoMRD+Yapvlr7FS0BsoUx7ajhtxa8Ow2GX3GBbtgxMtPYFCAS6hxJ0QJ7p3hs5TZjQL8JGxcUQONOyPWH23LQ==}
+ '@imtbl/checkout-sdk@2.2.0':
+ resolution: {integrity: sha512-cdKB9VKUTVEIjmgDHQsFvD21rRTskI1Dcd0kBaeMCwnSm47yA/6EJtVVtrW4A5loNXxxvy21zZa5UenoeT6GWw==}
- '@imtbl/config@2.1.15':
- resolution: {integrity: sha512-r/0efJfyj4TPXh+2QaQ7VWRe1clkCRmMXebf1anwBdKSPAw5Zm8If46Tpu5wH0XT5G0AA/4wxOWsRx6gmoazng==}
+ '@imtbl/config@2.2.0':
+ resolution: {integrity: sha512-N0FGkAHKH2KCrQZG3gaFmbH+x3kietyj46HPjfDqiO4fPxND5JSNlXVfzy+VNUCZ0ZUhNH36jAvEiQ8rl/5giQ==}
engines: {node: '>=20.11.0'}
- '@imtbl/dex-sdk@2.1.15':
- resolution: {integrity: sha512-zZNuHivY0SXEjOW+HJR63K+QKDbscqXyxR/m1diFImw2V7Q8mIx8BoY6qdBnFmMMTZd5bE+KotDCHbQzwoSx8g==}
+ '@imtbl/dex-sdk@2.2.0':
+ resolution: {integrity: sha512-wFZALpgnkpx6/NWIqhfxxFaLjMNX/L4/kR66bFVRkb6h9w9Oa0gEKwsKcoCGBUJfggVQaLcFieBYitYLCZuL+w==}
engines: {node: '>=20.11.0'}
- '@imtbl/generated-clients@2.1.15':
- resolution: {integrity: sha512-VWn2LuGFSZwAK4Rt7+5VWWUY0jtEHML3bPrkGyVRDPXXWSL0ShViaNU0s8l+D6n8nx1xNjQYihuc0eThuZ7nZQ==}
+ '@imtbl/generated-clients@2.2.0':
+ resolution: {integrity: sha512-0DgWgAKbJkwKYhLkK01Gu6kIXzL34oOm2RdQoNoUl13vVK6YDO6jJfz5+liUwS8YJ13m2brO43XOfuL5QbFQ3Q==}
engines: {node: '>=20.11.0'}
- '@imtbl/metrics@2.1.15':
- resolution: {integrity: sha512-2sY3XQKfwKmIwzf9InqOEIxOLss50Teb7sVZ9Ff7MRjohhLVfwQVLfDo+EChJlK+1DuROXogeoSi4O5LXjrbEA==}
+ '@imtbl/metrics@2.2.0':
+ resolution: {integrity: sha512-NVwDqsHsRt6484ecbooUs8NM/vPB9vz1GiXBt5tl7fQDeiH3msa8HZT568IwRBruSZ5izyiqwKBg0lUrXwNTxg==}
engines: {node: '>=20.11.0'}
- '@imtbl/minting-backend@2.1.15':
- resolution: {integrity: sha512-U4uwHYQh5PiNQ1LVutRU0Im7J4zDAG1lAdkyr7qH0POt/9zgebgnDXZpwikT3bhxoeJAOgw5xi7KlFr4pw3MRA==}
+ '@imtbl/minting-backend@2.2.0':
+ resolution: {integrity: sha512-nRXoAonGgeLQs3M/7zBoZSx+3nHfj1jyACXW836Hcefl014Xrqo4JTWDIQrfXYEkE81wXEVpW6HppknqLBN16w==}
- '@imtbl/orderbook@2.1.15':
- resolution: {integrity: sha512-jUIQce4BkpZKTQQkAGFGk0yfvMVu1iHgNDbXkD5cZva9wp2eSCA7wcXDaTz2H0XrOnpM8vx3GoMqCEKan7u2ig==}
+ '@imtbl/orderbook@2.2.0':
+ resolution: {integrity: sha512-T3KFGBJiD/xes9W6Q6WXgP2BDWmdkhfGIUwhJ5zkqudsG03n3I8l2KtmEKv1S12+GW0RaKI4wRlF+K2uRiaXSQ==}
- '@imtbl/passport@2.1.15':
- resolution: {integrity: sha512-WKrjXIxOFQ/dmqMLLHohiG34VKGtWqRvabm8tDP1ylDUkFLGEcamYxiwrs0Ox++SxDCA0mwyISkvONJ6fm2InQ==}
+ '@imtbl/passport@2.2.0':
+ resolution: {integrity: sha512-1CYUDXFh//CKt5Atfgx3aS6dQ2mfN8ZxTcAxo69+nArRky1Lb3YFjPhXgpxPgBK3+Efg8lshqW37BIiGyQlxfA==}
engines: {node: '>=20.11.0'}
- '@imtbl/sdk@2.1.15':
- resolution: {integrity: sha512-FCXVfvmafR0AuTZnCS/4Vmrn0EslaPiFY+H8UXBJGNU0Puzc7gRMvj+A354lZZNe0ZhMsLM/E0b1uwgpnRU3Kw==}
+ '@imtbl/sdk@2.2.0':
+ resolution: {integrity: sha512-r1I82gmySgOOf2D9Ip3yupPwq+Sbb8wc6vdQ+WsdgWPkVTNFzjh/rX9zIO3eAnFeIeQFjv1vkkFkLGAFf16kKA==}
engines: {node: '>=20.0.0'}
- '@imtbl/toolkit@2.1.15':
- resolution: {integrity: sha512-UW5TYQou71p7WGNGMO2GseuNExadSyEj1lm2yalPY27+PIO3/f6C0gBrPlpgE4BHl+vyd+qPYGCyMrV3TmKzDw==}
+ '@imtbl/toolkit@2.2.0':
+ resolution: {integrity: sha512-13ndleCtR1+XlTox21fDYF9TAInjPhv1CtOAidM1O659uDEwLuso2QIKlfDc3sBWiYdPtkGPFeBD4kSgDQZ49w==}
engines: {node: '>=20.11.0'}
- '@imtbl/webhook@2.1.15':
- resolution: {integrity: sha512-yR6DQsXIUQoWzYYBUMJ/+zU7Jd8AOkxEE/ikVHCK32L/k4Ho95J/XsOrTW2I+d/3U/b1JVZFI7DtvO8R9U+Spg==}
+ '@imtbl/webhook@2.2.0':
+ resolution: {integrity: sha512-w93TcvIJoRjgjKZ6aAg3BIbjSb4hCTuKc5dsJDwQid44zTSA2nNlcg7iGEVkqCpWSjtL/xhQCjYkZFuR6zlmLg==}
- '@imtbl/x-client@2.1.15':
- resolution: {integrity: sha512-rfuC83/3kY7RIPUwYqWW0oy0pMhwjBGrjZyJc5GsXmcvXeJ8netwUdFXJKCen64Kq82xXw+uDWGxit/YutOZTQ==}
+ '@imtbl/x-client@2.2.0':
+ resolution: {integrity: sha512-d8TpSMtM4vAWet/5pDyJLOq3EcXCBF9sIDyLiPN7j49omR1BPahsnLiLGsLYMYKZA/n1DKcXIStBpebodXvaRQ==}
engines: {node: '>=20.11.0'}
- '@imtbl/x-provider@2.1.15':
- resolution: {integrity: sha512-FT0AfacVQqvV6C5K5EB3rIn+CsdZmFsC3tZAAIBK/sKFypMCscSpIpNUmwDVUL6X0bq8kHV1s/PlUGqz0C3feg==}
+ '@imtbl/x-provider@2.2.0':
+ resolution: {integrity: sha512-6QiZWSfRQCyQJ7yG7SBGiYe/4bnlNf5F6VbomUmyh+BhEfYeN0hS8ztOiq7Nel237dEsJOE1QG+98ngVO+ifng==}
engines: {node: '>=20.11.0'}
- '@inquirer/confirm@5.1.7':
- resolution: {integrity: sha512-Xrfbrw9eSiHb+GsesO8TQIeHSMTP0xyvTCeeYevgZ4sKW+iz9w/47bgfG9b0niQm+xaLY2EWPBINUPldLwvYiw==}
+ '@inquirer/confirm@5.1.9':
+ resolution: {integrity: sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1672,8 +1672,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.1.8':
- resolution: {integrity: sha512-HpAqR8y715zPpM9e/9Q+N88bnGwqqL8ePgZ0SMv/s3673JLMv3bIkoivGmjPqXlEgisUksSXibweQccUwEx4qQ==}
+ '@inquirer/core@10.1.10':
+ resolution: {integrity: sha512-roDaKeY1PYY0aCqhRmXihrHjoSW2A00pV3Ke5fTpMCkzcGF64R8e0lw3dK+eLEHwS4vB5RnW1wuQmvzoRul8Mw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1685,8 +1685,8 @@ packages:
resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.5':
- resolution: {integrity: sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==}
+ '@inquirer/type@3.0.6':
+ resolution: {integrity: sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -1759,28 +1759,28 @@ packages:
'@lit-labs/ssr-dom-shim@1.3.0':
resolution: {integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==}
- '@lit/reactive-element@1.6.3':
- resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==}
+ '@lit/reactive-element@2.1.0':
+ resolution: {integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==}
'@loaderkit/resolve@1.0.4':
resolution: {integrity: sha512-rJzYKVcV4dxJv+vW6jlvagF8zvGxHJ2+HTr1e2qOejfmGhAApgJHl8Aog4mMszxceTRiKTTbnpgmTO1bEZHV/A==}
- '@magic-ext/oidc@12.0.2':
- resolution: {integrity: sha512-k7KdSprnOFQjyjO24qJX4qnrhZJjZBva2f32REpvo5sb37AbWaYcmA4F+FfhWhMXxwdHlzFwSkeWHgFvzInEgw==}
+ '@magic-ext/oidc@12.0.5':
+ resolution: {integrity: sha512-EAmmRRZn/c5jmxHZ1H3IHtEqUKHYrsRtH9O+WuMFOZMv0llef/9MBa4DiRZkpnB0EPKb2hwsY7us8qk/LaFRNA==}
- '@magic-sdk/commons@25.0.3':
- resolution: {integrity: sha512-sTqEhuOYqx+T/iuqAK4L1wdHw4oKw3TOSg3wviMZZoAMLMHCS/CFu4+OM93ryGXCqipbBewjBR5SxnQcyADHtg==}
+ '@magic-sdk/commons@25.0.6':
+ resolution: {integrity: sha512-5GWYG+5hI9X4Qf/E611uJ2jJAwU6KBnl7zHwytq9fpKRTsMXZbmF2A7A/I32p6Iy6tOFKKOcGstoiwwVC8JUfA==}
peerDependencies:
'@magic-sdk/provider': '>=18.6.0'
'@magic-sdk/types': '>=15.8.0'
- '@magic-sdk/provider@29.0.3':
- resolution: {integrity: sha512-/ZFb8hha81EfbXBbqGEy9N5lpbJMww2Ychq9tKcGZBpxruzDs1vok7l+jOpGkRW80LIx/WHSdrnMrCusrAnNkg==}
+ '@magic-sdk/provider@29.0.6':
+ resolution: {integrity: sha512-I1PIt0KLIR+1FIKKIXJ76w18w/uBnDo2iHD2VTUiPPpt7KaJj61CVi9woHGmLBYyA+rbmwAIXgO0C3Nl5O8Jnw==}
peerDependencies:
localforage: ^1.7.4
- '@magic-sdk/types@24.18.1':
- resolution: {integrity: sha512-r/06vHruERropfAIF1pZlYAqMLpGJeSy0YjJJ/8L3kA2EKy+Di0+r0DFJjXs58LUZtDN0GgSCOYTt7r49W6/Ug==}
+ '@magic-sdk/types@24.18.2':
+ resolution: {integrity: sha512-BPLi6h87ujltmg2Tx9E1o2Dz5xcKNeLTJgL+VcAhhvePUbDZ0S+YB1vNihobtKfq3QL/Uj5Sn8Y9M7GnyxCYOg==}
'@manypkg/find-root@1.1.0':
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
@@ -1796,10 +1796,6 @@ packages:
resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==}
engines: {node: '>=14.0.0'}
- '@metamask/eth-sig-util@4.0.1':
- resolution: {integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==}
- engines: {node: '>=12.0.0'}
-
'@metamask/json-rpc-engine@7.3.3':
resolution: {integrity: sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==}
engines: {node: '>=16.0.0'}
@@ -1849,8 +1845,8 @@ packages:
'@metamask/sdk@0.32.0':
resolution: {integrity: sha512-WmGAlP1oBuD9hk4CsdlG1WJFuPtYJY+dnTHJMeCyohTWD2GgkcLMUUuvu9lO1/NVzuOoSi1OrnjbuY1O/1NZ1g==}
- '@metamask/superstruct@3.1.0':
- resolution: {integrity: sha512-N08M56HdOgBfRKkrgCMZvQppkZGcArEop3kixNEtVbJKm6P9Cfg0YkI6X0s1g78sNrj2fWUwvJADdZuzJgFttA==}
+ '@metamask/superstruct@3.2.1':
+ resolution: {integrity: sha512-fLgJnDOXFmuVlB38rUN5SmU7hAFQcCjrg3Vrxz67KTY7YHFnSNEKvX4avmEBdOI0yTCxZjwMCFEqsC8k2+Wd3g==}
engines: {node: '>=16.0.0'}
'@metamask/utils@5.0.2':
@@ -1865,35 +1861,17 @@ packages:
resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==}
engines: {node: '>=16.0.0'}
- '@motionone/animation@10.18.0':
- resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==}
-
- '@motionone/dom@10.18.0':
- resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==}
-
- '@motionone/easing@10.18.0':
- resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==}
-
- '@motionone/generators@10.18.0':
- resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==}
-
- '@motionone/svelte@10.16.4':
- resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==}
-
- '@motionone/types@10.17.1':
- resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==}
-
- '@motionone/utils@10.18.0':
- resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==}
-
- '@motionone/vue@10.16.4':
- resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
- deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
+ '@modelcontextprotocol/sdk@1.11.0':
+ resolution: {integrity: sha512-k/1pb70eD638anoi0e8wUGAlbMJXyvdV4p62Ko+EZ7eBe1xMx8Uhak1R5DgfoofsK5IBBnRwsYGTaLZl+6/+RQ==}
+ engines: {node: '>=18'}
'@mswjs/interceptors@0.37.6':
resolution: {integrity: sha512-wK+5pLK5XFmgtH3aQ2YVvA3HohS3xqV/OxuVOdNx9Wpnz7VE/fnC+e1A7ln6LFYeck7gOJ/dsZV6OLplOtAJ2w==}
engines: {node: '>=18'}
+ '@napi-rs/wasm-runtime@0.2.9':
+ resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==}
+
'@next/env@14.2.3':
resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==}
@@ -1958,6 +1936,10 @@ packages:
resolution: {integrity: sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/ciphers@1.3.0':
+ resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/curves@1.2.0':
resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
@@ -1976,6 +1958,10 @@ packages:
resolution: {integrity: sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/curves@1.9.0':
+ resolution: {integrity: sha512-7YDlXiNMdO1YZeH6t/kvopHHbIZzlxrCV9WLqCY6QhcXOoXiNCMDqJIglZ9Yjx5+w7Dz30TITFrlTjnRg7sKEg==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/hashes@1.2.0':
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
@@ -1999,6 +1985,10 @@ packages:
resolution: {integrity: sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/hashes@1.8.0':
+ resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/secp256k1@1.7.1':
resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==}
@@ -2018,64 +2008,38 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@nomicfoundation/edr-darwin-arm64@0.8.0':
- resolution: {integrity: sha512-sKTmOu/P5YYhxT0ThN2Pe3hmCE/5Ag6K/eYoiavjLWbR7HEb5ZwPu2rC3DpuUk1H+UKJqt7o4/xIgJxqw9wu6A==}
+ '@nomicfoundation/edr-darwin-arm64@0.10.0':
+ resolution: {integrity: sha512-n0N+CVM4LKN9QeGZ5irr94Q4vwSs4u7W6jfuhNLmx1cpUxwE9RpeW+ym93JXDv62iVsbekeI5VsUEBHy0hymtA==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-darwin-x64@0.8.0':
- resolution: {integrity: sha512-8ymEtWw1xf1Id1cc42XIeE+9wyo3Dpn9OD/X8GiaMz9R70Ebmj2g+FrbETu8o6UM+aL28sBZQCiCzjlft2yWAg==}
+ '@nomicfoundation/edr-darwin-x64@0.10.0':
+ resolution: {integrity: sha512-nmImWM/3qWopYzOmicMzK/MF3rFKpm2Biuc8GpQYTLjdXhmItpP9JwEPyjbAWv/1HI09C2pRzgNzKfTxoIgJ6w==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-arm64-gnu@0.8.0':
- resolution: {integrity: sha512-h/wWzS2EyQuycz+x/SjMRbyA+QMCCVmotRsgM1WycPARvVZWIVfwRRsKoXKdCftsb3S8NTprqBdJlOmsFyETFA==}
+ '@nomicfoundation/edr-linux-arm64-gnu@0.10.0':
+ resolution: {integrity: sha512-B/N1IyrCU7J6H4QckkQ1cSWAq1jSrJcXpO8GzRaQD1bgOOvg8wrUOrCD+Mfw7MLa6+X9vdZoXtPZOaaOQ9LmhA==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-arm64-musl@0.8.0':
- resolution: {integrity: sha512-gnWxDgdkka0O9GpPX/gZT3REeKYV28Guyg13+Vj/bbLpmK1HmGh6Kx+fMhWv+Ht/wEmGDBGMCW1wdyT/CftJaQ==}
+ '@nomicfoundation/edr-linux-arm64-musl@0.10.0':
+ resolution: {integrity: sha512-NA9DFLB0LzcKy9mTCUzgnRDbmmSfW0CdO22ySwOy+MKt4Cr9eJi+XR5ZH933Rxpi6BWNkSPeS2ECETE25sJT3w==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-x64-gnu@0.8.0':
- resolution: {integrity: sha512-DTMiAkgAx+nyxcxKyxFZk1HPakXXUCgrmei7r5G7kngiggiGp/AUuBBWFHi8xvl2y04GYhro5Wp+KprnLVoAPA==}
+ '@nomicfoundation/edr-linux-x64-gnu@0.10.0':
+ resolution: {integrity: sha512-bDrbRTA9qZ9wSw5mqa8VpLFbf6ue2Z4qmRd08404eKm8RyBEFxjdHflFzCx46gz/Td0e+GLXy6KTVDj5D29r8w==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-x64-musl@0.8.0':
- resolution: {integrity: sha512-iTITWe0Zj8cNqS0xTblmxPbHVWwEtMiDC+Yxwr64d7QBn/1W0ilFQ16J8gB6RVVFU3GpfNyoeg3tUoMpSnrm6Q==}
+ '@nomicfoundation/edr-linux-x64-musl@0.10.0':
+ resolution: {integrity: sha512-wx7yOlC/hx4N1xuIeh5cAebpzCTx8ZH8/z0IyYMf2t4v52KHERz4IyzBz5OLfd+0IqTRg8ZU5EnFBacIoPeP/g==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-win32-x64-msvc@0.8.0':
- resolution: {integrity: sha512-mNRDyd/C3j7RMcwapifzv2K57sfA5xOw8g2U84ZDvgSrXVXLC99ZPxn9kmolb+dz8VMm9FONTZz9ESS6v8DTnA==}
+ '@nomicfoundation/edr-win32-x64-msvc@0.10.0':
+ resolution: {integrity: sha512-DpBdVMimb+BUEs0E+nLGQ5JFHdGHyxQQNA+nh9V1eKtgarsV21S6br/d1vlQBMLQqkIzwmc6n+/O9Zjk2KfB3g==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr@0.8.0':
- resolution: {integrity: sha512-dwWRrghSVBQDpt0wP+6RXD8BMz2i/9TI34TcmZqeEAZuCLei3U9KZRgGTKVAM1rMRvrpf5ROfPqrWNetKVUTag==}
+ '@nomicfoundation/edr@0.10.0':
+ resolution: {integrity: sha512-ed9qHSNssgh+0hYUx4ilDoMxxgf/sNT8SjnzgmA5A/LSXHaq2ax68bkdQ8otLYTlxHCO9BS5Nhb8bfajV4FZeA==}
engines: {node: '>= 18'}
- '@nomicfoundation/ethereumjs-common@4.0.4':
- resolution: {integrity: sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==}
-
- '@nomicfoundation/ethereumjs-rlp@5.0.4':
- resolution: {integrity: sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==}
- engines: {node: '>=18'}
- hasBin: true
-
- '@nomicfoundation/ethereumjs-tx@5.0.4':
- resolution: {integrity: sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==}
- engines: {node: '>=18'}
- peerDependencies:
- c-kzg: ^2.1.2
- peerDependenciesMeta:
- c-kzg:
- optional: true
-
- '@nomicfoundation/ethereumjs-util@9.0.4':
- resolution: {integrity: sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==}
- engines: {node: '>=18'}
- peerDependencies:
- c-kzg: ^2.1.2
- peerDependenciesMeta:
- c-kzg:
- optional: true
-
'@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2':
resolution: {integrity: sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==}
engines: {node: '>= 12'}
@@ -2232,27 +2196,14 @@ packages:
'@prisma/get-platform@5.22.0':
resolution: {integrity: sha512-pHhpQdr1UPFpt+zFfnPazhulaZYCUqeIcPpJViYoq9R+D/yw4fjE+CtnsnKzPYm0ddUbeXUzjGVGIRVgPDCk4Q==}
- '@radix-ui/number@1.1.0':
- resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+ '@radix-ui/number@1.1.1':
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
- '@radix-ui/primitive@1.1.1':
- resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
-
- '@radix-ui/react-arrow@1.1.1':
- resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@radix-ui/primitive@1.1.2':
+ resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==}
- '@radix-ui/react-arrow@1.1.2':
- resolution: {integrity: sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==}
+ '@radix-ui/react-arrow@1.1.4':
+ resolution: {integrity: sha512-qz+fxrqgNxG0dYew5l7qR3c7wdgRu1XVUHGnGYX7rg5HM4p9SWaRmJwfgR3J0SgyUKayLmzQIun+N6rWRgiRKw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2264,8 +2215,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-aspect-ratio@1.1.2':
- resolution: {integrity: sha512-TaJxYoCpxJ7vfEkv2PTNox/6zzmpKXT6ewvCuf2tTOIVN45/Jahhlld29Yw4pciOXS2Xq91/rSGEdmEnUWZCqA==}
+ '@radix-ui/react-aspect-ratio@1.1.4':
+ resolution: {integrity: sha512-ie2mUDtM38LBqVU+Xn+GIY44tWM5yVbT5uXO+th85WZxUUsgEdWNNZWecqqGzkQ4Af+Fq1mYT6TyQ/uUf5gfcw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2277,8 +2228,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-checkbox@1.1.4':
- resolution: {integrity: sha512-wP0CPAHq+P5I4INKe3hJrIa1WoNqqrejzW+zoU0rOvo1b9gDEJJFl2rYfO1PYJUQCc2H1WZxIJmyv9BS8i5fLw==}
+ '@radix-ui/react-checkbox@1.2.3':
+ resolution: {integrity: sha512-pHVzDYsnaDmBlAuwim45y3soIN8H4R7KbkSVirGhXO+R/kO2OLCe0eucUEbddaTcdMHHdzcIGHtZSMSQlA+apw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2290,8 +2241,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-collapsible@1.1.3':
- resolution: {integrity: sha512-jFSerheto1X03MUC0g6R7LedNW9EEGWdg9W1+MlpkMLwGkgkbUXLPBH/KIuWKXUoeYRVY11llqbTBDzuLg7qrw==}
+ '@radix-ui/react-collapsible@1.1.8':
+ resolution: {integrity: sha512-hxEsLvK9WxIAPyxdDRULL4hcaSjMZCfP7fHB0Z1uUnDoDBat1Zh46hwYfa69DeZAbJrPckjf0AGAtEZyvDyJbw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2303,8 +2254,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-collection@1.1.2':
- resolution: {integrity: sha512-9z54IEKRxIa9VityapoEYMuByaG42iSy1ZXlY2KcuLSEtq8x4987/N6m15ppoMffgZX72gER2uHe1D9Y6Unlcw==}
+ '@radix-ui/react-collection@1.1.4':
+ resolution: {integrity: sha512-cv4vSf7HttqXilDnAnvINd53OTl1/bjUYVZrkFnA7nwmY9Ob2POUy0WY0sfqBAe1s5FyKsyceQlqiEGPYNTadg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2316,8 +2267,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-compose-refs@1.1.1':
- resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2325,8 +2276,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-context@1.1.1':
- resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2334,8 +2285,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dialog@1.1.6':
- resolution: {integrity: sha512-/IVhJV5AceX620DUJ4uYVMymzsipdKBzo3edo+omeskCKGm9FRHM0ebIdbPnlQVJqyuHbuBltQUOG2mOTq2IYw==}
+ '@radix-ui/react-dialog@1.1.11':
+ resolution: {integrity: sha512-yI7S1ipkP5/+99qhSI6nthfo/tR6bL6Zgxi/+1UO6qPa6UeM6nlafWcQ65vB4rU2XjgjMfMhI3k9Y5MztA62VQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2347,30 +2298,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-direction@1.1.0':
- resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-dismissable-layer@1.1.3':
- resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==}
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-dismissable-layer@1.1.5':
- resolution: {integrity: sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==}
+ '@radix-ui/react-dismissable-layer@1.1.7':
+ resolution: {integrity: sha512-j5+WBUdhccJsmH5/H0K6RncjDtoALSEr6jbkaZu+bjw6hOPOhHycr6vEUujl+HBK8kjUfWcoCJXxP6e4lUlMZw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2382,8 +2320,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dropdown-menu@2.1.6':
- resolution: {integrity: sha512-no3X7V5fD487wab/ZYSHXq3H37u4NVeLDKI/Ks724X/eEFSSEFYZxWgsIlr1UBeEyDaM29HM5x9p1Nv8DuTYPA==}
+ '@radix-ui/react-dropdown-menu@2.1.12':
+ resolution: {integrity: sha512-VJoMs+BWWE7YhzEQyVwvF9n22Eiyr83HotCVrMQzla/OwRovXCgah7AcaEr4hMNj4gJxSdtIbcHGvmJXOoJVHA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2395,30 +2333,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-guards@1.1.1':
- resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-focus-scope@1.1.1':
- resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
+ '@radix-ui/react-focus-guards@1.1.2':
+ resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-focus-scope@1.1.2':
- resolution: {integrity: sha512-zxwE80FCU7lcXUGWkdt6XpTTCKPitG1XKOwViTxHVKIJhZl9MvIl2dVHeZENCWD9+EdWv05wlaEkRXUykU27RA==}
+ '@radix-ui/react-focus-scope@1.1.4':
+ resolution: {integrity: sha512-r2annK27lIW5w9Ho5NyQgqs0MmgZSTIKXWpVCJaLC1q2kZrZkcqnmHkCHMEmv8XLvsLlurKMPT+kbKkRkm/xVA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2430,30 +2355,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-id@1.1.0':
- resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-menu@2.1.6':
- resolution: {integrity: sha512-tBBb5CXDJW3t2mo9WlO7r6GTmWV0F0uzHZVFmlRmYpiSK1CDU5IKojP1pm7oknpBOrFZx/YgBRW9oorPO2S/Lg==}
+ '@radix-ui/react-id@1.1.1':
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-popover@1.1.4':
- resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==}
+ '@radix-ui/react-menu@2.1.12':
+ resolution: {integrity: sha512-+qYq6LfbiGo97Zz9fioX83HCiIYYFNs8zAsVCMQrIakoNYylIzWuoD/anAD3UzvvR6cnswmfRFJFq/zYYq/k7Q==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2465,8 +2377,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popper@1.2.1':
- resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
+ '@radix-ui/react-popover@1.1.11':
+ resolution: {integrity: sha512-yFMfZkVA5G3GJnBgb2PxrrcLKm1ZLWXrbYVgdyTl//0TYEIHS9LJbnyz7WWcZ0qCq7hIlJZpRtxeSeIG5T5oJw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2478,8 +2390,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popper@1.2.2':
- resolution: {integrity: sha512-Rvqc3nOpwseCyj/rgjlJDYAgyfw7OC1tTkKn2ivhaMGcYt8FSBlahHOZak2i3QwkRXUXgGgzeEe2RuqeEHuHgA==}
+ '@radix-ui/react-popper@1.2.4':
+ resolution: {integrity: sha512-3p2Rgm/a1cK0r/UVkx5F/K9v/EplfjAeIFCGOPYPO4lZ0jtg4iSQXt/YGTSLWaf4x7NG6Z4+uKFcylcTZjeqDA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2491,8 +2403,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.1.3':
- resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
+ '@radix-ui/react-portal@1.1.6':
+ resolution: {integrity: sha512-XmsIl2z1n/TsYFLIdYam2rmFwf9OC/Sh2avkbmVMDuBZIe7hSpM0cYnWPAo7nHOVx8zTuwDZGByfcqLdnzp3Vw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2504,8 +2416,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.1.4':
- resolution: {integrity: sha512-sn2O9k1rPFYVyKd5LAJfo96JlSGVFpa1fS6UuBJfrZadudiw5tAmru+n1x7aMRQ84qDM71Zh1+SzK5QwU0tJfA==}
+ '@radix-ui/react-presence@1.1.4':
+ resolution: {integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2517,8 +2429,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.1.2':
- resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
+ '@radix-ui/react-primitive@2.1.0':
+ resolution: {integrity: sha512-/J/FhLdK0zVcILOwt5g+dH4KnkonCtkVJsa2G6JmvbbtZfBEI1gMsO3QMjseL4F/SwfAMt1Vc/0XKYKq+xJ1sw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2530,8 +2442,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.0.1':
- resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
+ '@radix-ui/react-progress@1.1.4':
+ resolution: {integrity: sha512-8rl9w7lJdcVPor47Dhws9mUHRHLE+8JEgyJRdNWCpGPa6HIlr3eh+Yn9gyx1CnCLbw5naHsI2gaO9dBWO50vzw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2543,8 +2455,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.0.2':
- resolution: {integrity: sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==}
+ '@radix-ui/react-radio-group@1.3.4':
+ resolution: {integrity: sha512-N4J9QFdW5zcJNxxY/zwTXBN4Uc5VEuRM7ZLjNfnWoKmNvgrPtNNw4P8zY532O3qL6aPkaNO+gY9y6bfzmH4U1g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2556,8 +2468,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-progress@1.1.2':
- resolution: {integrity: sha512-u1IgJFQ4zNAUTjGdDL5dcl/U8ntOR6jsnhxKb5RKp5Ozwl88xKR9EqRZOe/Mk8tnx0x5tNUe2F+MzsyjqMg0MA==}
+ '@radix-ui/react-roving-focus@1.1.7':
+ resolution: {integrity: sha512-C6oAg451/fQT3EGbWHbCQjYTtbyjNO1uzQgMzwyivcHT3GKNEmu1q3UuREhN+HzHAVtv3ivMVK08QlC+PkYw9Q==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2569,8 +2481,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-radio-group@1.2.3':
- resolution: {integrity: sha512-xtCsqt8Rp09FK50ItqEqTJ7Sxanz8EM8dnkVIhJrc/wkMMomSmXHvYbhv3E7Zx4oXh98aaLt9W679SUYXg4IDA==}
+ '@radix-ui/react-select@2.2.2':
+ resolution: {integrity: sha512-HjkVHtBkuq+r3zUAZ/CvNWUGKPfuicGDbgtZgiQuFmNcV5F+Tgy24ep2nsAW2nFgvhGPJVqeBZa6KyVN0EyrBA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2582,21 +2494,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.1.2':
- resolution: {integrity: sha512-zgMQWkNO169GtGqRvYrzb0Zf8NhMHS2DuEB/TiEmVnpr5OqPU3i8lfbxaAmC2J/KYuIQxyoQQ6DxepyXp61/xw==}
+ '@radix-ui/react-slot@1.2.0':
+ resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-select@2.1.6':
- resolution: {integrity: sha512-T6ajELxRvTuAMWH0YmRJ1qez+x4/7Nq7QIx7zJ0VK3qaEWdnWpNbEDnmWldG1zBDwqrLy5aLMUWcoGirVj5kMg==}
+ '@radix-ui/react-switch@1.2.2':
+ resolution: {integrity: sha512-7Z8n6L+ifMIIYZ83f28qWSceUpkXuslI2FJ34+kDMTiyj91ENdpdQ7VCidrzj5JfwfZTeano/BnGBbu/jqa5rQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2608,26 +2516,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.1.1':
- resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-slot@1.1.2':
- resolution: {integrity: sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-switch@1.1.3':
- resolution: {integrity: sha512-1nc+vjEOQkJVsJtWPSiISGT6OKm4SiOdjMo+/icLxo2G4vxz1GntC5MzfL4v8ey9OEfw787QCD1y3mUv0NiFEQ==}
+ '@radix-ui/react-tabs@1.1.9':
+ resolution: {integrity: sha512-KIjtwciYvquiW/wAFkELZCVnaNLBsYNhTNcvl+zfMAbMhRkcvNuCLXDDd22L0j7tagpzVh/QwbFpwAATg7ILPw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2639,8 +2529,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tabs@1.1.3':
- resolution: {integrity: sha512-9mFyI30cuRDImbmFF6O2KUJdgEOsGh9Vmx9x/Dh9tOhL7BngmQPQfwW4aejKm5OHpfWIdmeV6ySyuxoOGjtNng==}
+ '@radix-ui/react-toast@1.2.11':
+ resolution: {integrity: sha512-Ed2mlOmT+tktOsu2NZBK1bCSHh/uqULu1vWOkpQTVq53EoOuZUZw7FInQoDB3uil5wZc2oe0XN9a7uVZB7/6AQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2652,8 +2542,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toast@1.2.6':
- resolution: {integrity: sha512-gN4dpuIVKEgpLn1z5FhzT9mYRUitbfZq9XqN/7kkBMUgFTzTG8x/KszWJugJXHcwxckY8xcKDZPz7kG3o6DsUA==}
+ '@radix-ui/react-tooltip@1.2.4':
+ resolution: {integrity: sha512-DyW8VVeeMSSLFvAmnVnCwvI3H+1tpJFHT50r+tdOoMse9XqYDBCcyux8u3G2y+LOpt7fPQ6KKH0mhs+ce1+Z5w==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2665,21 +2555,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tooltip@1.1.8':
- resolution: {integrity: sha512-YAA2cu48EkJZdAMHC0dqo9kialOcRStbtiY4nJPaht7Ptrhcvpo+eDChaM6BIs8kL6a8Z5l5poiqLnXcNduOkA==}
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-use-callback-ref@1.1.0':
- resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ '@radix-ui/react-use-controllable-state@1.2.2':
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2687,8 +2573,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-controllable-state@1.1.0':
- resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ '@radix-ui/react-use-effect-event@0.0.2':
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2696,8 +2582,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.1.0':
- resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
+ '@radix-ui/react-use-escape-keydown@1.1.1':
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2705,8 +2591,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-layout-effect@1.1.0':
- resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2714,8 +2600,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-previous@1.1.0':
- resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
+ '@radix-ui/react-use-previous@1.1.1':
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2723,8 +2609,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-rect@1.1.0':
- resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
+ '@radix-ui/react-use-rect@1.1.1':
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2732,8 +2618,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-size@1.1.0':
- resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
+ '@radix-ui/react-use-size@1.1.1':
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2741,8 +2627,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-visually-hidden@1.1.2':
- resolution: {integrity: sha512-1SzA4ns2M1aRlvxErqhLHsBHoS5eI5UUcI2awAMgGUp4LoaoWOKYmvqDY2s/tltuPkh3Yk77YF/r3IRj+Amx4Q==}
+ '@radix-ui/react-visually-hidden@1.2.0':
+ resolution: {integrity: sha512-rQj0aAWOpCdCMRbI6pLQm8r7S2BM3YhTa0SzOYD55k+hJA8oo9J+H+9wLM9oMlZWOX/wJWPTzfDfmZkf7LvCfg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2754,8 +2640,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/rect@1.1.0':
- resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+ '@radix-ui/rect@1.1.1':
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
'@react-oauth/google@0.11.1':
resolution: {integrity: sha512-tywZisXbsdaRBVbEu0VX6dRbOSL2I6DgY97woq5NMOOOz+xtDsm418vqq+Vx10KMtra3kdHMRMf0hXLWrk2RMg==}
@@ -2763,6 +2649,32 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ '@reown/appkit-common@1.7.3':
+ resolution: {integrity: sha512-wKTr6N3z8ly17cc51xBEVkZK4zAd8J1m7RubgsdQ1olFY9YJGe61RYoNv9yFjt6tUVeYT+z7iMUwPhX2PziefQ==}
+
+ '@reown/appkit-controllers@1.7.3':
+ resolution: {integrity: sha512-aqAcX/nZe0gwqjncyCkVrAk3lEw0qZ9xGrdLOmA207RreO4J0Vxu8OJXCBn4C2AUI2OpBxCPah+vyuKTUJTeHQ==}
+
+ '@reown/appkit-polyfills@1.7.3':
+ resolution: {integrity: sha512-vQUiAyI7WiNTUV4iNwv27iigdeg8JJTEo6ftUowIrKZ2/gtE2YdMtGpavuztT/qrXhrIlTjDGp5CIyv9WOTu4g==}
+
+ '@reown/appkit-scaffold-ui@1.7.3':
+ resolution: {integrity: sha512-ssB15fcjmoKQ+VfoCo7JIIK66a4SXFpCH8uK1CsMmXmKIKqPN54ohLo291fniV6mKtnJxh5Xm68slGtGrO3bmA==}
+
+ '@reown/appkit-ui@1.7.3':
+ resolution: {integrity: sha512-zKmFIjLp0X24pF9KtPtSHmdsh/RjEWIvz+faIbPGm4tQbwcxdg9A35HeoP0rMgKYx49SX51LgPwVXne2gYacqQ==}
+
+ '@reown/appkit-utils@1.7.3':
+ resolution: {integrity: sha512-8/MNhmfri+2uu8WzBhZ5jm5llofOIa1dyXDXRC/hfrmGmCFJdrQKPpuqOFYoimo2s2g70pK4PYefvOKgZOWzgg==}
+ peerDependencies:
+ valtio: 1.13.2
+
+ '@reown/appkit-wallet@1.7.3':
+ resolution: {integrity: sha512-D0pExd0QUE71ursQPp3pq/0iFrz2oz87tOyFifrPANvH5X0RQCYn/34/kXr+BFVQzNFfCBDlYP+CniNA/S0KiQ==}
+
+ '@reown/appkit@1.7.3':
+ resolution: {integrity: sha512-aA/UIwi/dVzxEB62xlw3qxHa3RK1YcPMjNxoGj/fHNCqL2qWmbcOXT7coCUa9RG7/Bh26FZ3vdVT2v71j6hebQ==}
+
'@rollup/plugin-inject@5.0.5':
resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
engines: {node: '>=14.0.0'}
@@ -2781,106 +2693,111 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.31.0':
- resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==}
+ '@rollup/rollup-android-arm-eabi@4.40.1':
+ resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.31.0':
- resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==}
+ '@rollup/rollup-android-arm64@4.40.1':
+ resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.31.0':
- resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==}
+ '@rollup/rollup-darwin-arm64@4.40.1':
+ resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.31.0':
- resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==}
+ '@rollup/rollup-darwin-x64@4.40.1':
+ resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.31.0':
- resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==}
+ '@rollup/rollup-freebsd-arm64@4.40.1':
+ resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.31.0':
- resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==}
+ '@rollup/rollup-freebsd-x64@4.40.1':
+ resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
- resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
- resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
- resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==}
+ '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.31.0':
- resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==}
+ '@rollup/rollup-linux-arm64-musl@4.40.1':
+ resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
- resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
- resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
- resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
- resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.31.0':
- resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==}
+ '@rollup/rollup-linux-x64-gnu@4.40.1':
+ resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.31.0':
- resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==}
+ '@rollup/rollup-linux-x64-musl@4.40.1':
+ resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
- resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==}
+ '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
- resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.31.0':
- resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==}
+ '@rollup/rollup-win32-x64-msvc@4.40.1':
+ resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
cpu: [x64]
os: [win32]
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@rushstack/eslint-patch@1.10.5':
- resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
+ '@rushstack/eslint-patch@1.11.0':
+ resolution: {integrity: sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==}
'@safe-global/safe-apps-provider@0.18.6':
resolution: {integrity: sha512-4LhMmjPWlIO8TTDC2AwLk44XKXaK6hfBTWyljDm0HQ6TWlOEijVWNrt2s3OCVMSxlXAcEzYfqyu1daHZooTC2Q==}
@@ -2888,15 +2805,15 @@ packages:
'@safe-global/safe-apps-sdk@9.1.0':
resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==}
- '@safe-global/safe-gateway-typescript-sdk@3.22.7':
- resolution: {integrity: sha512-r1OML6y1oBL6E5ZADg9smzvVzOOgsTLfRXYuT/7fW1Eqg2nJKcALoLLfH6sJAcHvobHUZXcjxKPINDwNJq0N9g==}
+ '@safe-global/safe-gateway-typescript-sdk@3.23.1':
+ resolution: {integrity: sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==}
engines: {node: '>=16'}
'@scure/base@1.1.9':
resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==}
- '@scure/base@1.2.4':
- resolution: {integrity: sha512-5Yy9czTO47mqz+/J8GM6GIId4umdCk1wc1q8rKERQulIoc8VP9pzDcghv10Tl2E7R96ZUx/PhND3ESYUQX8NuQ==}
+ '@scure/base@1.2.5':
+ resolution: {integrity: sha512-9rE6EOVeIQzt5TSu4v+K523F8u6DhBsoZWPGKlnCshhlDhy0kJzUX4V+tr2dWmzF1GdekvThABoEQBGBQI7xZw==}
'@scure/bip32@1.1.5':
resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==}
@@ -2957,32 +2874,32 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@smithy/abort-controller@4.0.1':
- resolution: {integrity: sha512-fiUIYgIgRjMWznk6iLJz35K2YxSLHzLBA/RC6lBrKfQ8fHbPfvk7Pk9UvpKoHgJjI18MnbPuEju53zcVy6KF1g==}
+ '@smithy/abort-controller@4.0.2':
+ resolution: {integrity: sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw==}
engines: {node: '>=18.0.0'}
- '@smithy/config-resolver@4.0.1':
- resolution: {integrity: sha512-Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ==}
+ '@smithy/config-resolver@4.1.0':
+ resolution: {integrity: sha512-8smPlwhga22pwl23fM5ew4T9vfLUCeFXlcqNOCD5M5h8VmNPNUE9j6bQSuRXpDSV11L/E/SwEBQuW8hr6+nS1A==}
engines: {node: '>=18.0.0'}
- '@smithy/core@3.1.1':
- resolution: {integrity: sha512-hhUZlBWYuh9t6ycAcN90XOyG76C1AzwxZZgaCVPMYpWqqk9uMFo7HGG5Zu2cEhCJn7DdOi5krBmlibWWWPgdsw==}
+ '@smithy/core@3.3.0':
+ resolution: {integrity: sha512-r6gvs5OfRq/w+9unPm7B3po4rmWaGh0CIL/OwHntGGux7+RhOOZLGuurbeMgWV6W55ZuyMTypJLeH0vn/ZRaWQ==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.0.1':
- resolution: {integrity: sha512-l/qdInaDq1Zpznpmev/+52QomsJNZ3JkTl5yrTl02V6NBgJOQ4LY0SFw/8zsMwj3tLe8vqiIuwF6nxaEwgf6mg==}
+ '@smithy/credential-provider-imds@4.0.2':
+ resolution: {integrity: sha512-32lVig6jCaWBHnY+OEQ6e6Vnt5vDHaLiydGrwYMW9tPqO688hPGTYRamYJ1EptxEC2rAwJrHWmPoKRBl4iTa8w==}
engines: {node: '>=18.0.0'}
- '@smithy/fetch-http-handler@5.0.1':
- resolution: {integrity: sha512-3aS+fP28urrMW2KTjb6z9iFow6jO8n3MFfineGbndvzGZit3taZhKWtTorf+Gp5RpFDDafeHlhfsGlDCXvUnJA==}
+ '@smithy/fetch-http-handler@5.0.2':
+ resolution: {integrity: sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ==}
engines: {node: '>=18.0.0'}
- '@smithy/hash-node@4.0.1':
- resolution: {integrity: sha512-TJ6oZS+3r2Xu4emVse1YPB3Dq3d8RkZDKcPr71Nj/lJsdAP1c7oFzYqEn1IBc915TsgLl2xIJNuxCz+gLbLE0w==}
+ '@smithy/hash-node@4.0.2':
+ resolution: {integrity: sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg==}
engines: {node: '>=18.0.0'}
- '@smithy/invalid-dependency@4.0.1':
- resolution: {integrity: sha512-gdudFPf4QRQ5pzj7HEnu6FhKRi61BfH/Gk5Yf6O0KiSbr1LlVhgjThcvjdu658VE6Nve8vaIWB8/fodmS1rBPQ==}
+ '@smithy/invalid-dependency@4.0.2':
+ resolution: {integrity: sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ==}
engines: {node: '>=18.0.0'}
'@smithy/is-array-buffer@2.2.0':
@@ -2993,72 +2910,72 @@ packages:
resolution: {integrity: sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-content-length@4.0.1':
- resolution: {integrity: sha512-OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ==}
+ '@smithy/middleware-content-length@4.0.2':
+ resolution: {integrity: sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-endpoint@4.0.2':
- resolution: {integrity: sha512-Z9m67CXizGpj8CF/AW/7uHqYNh1VXXOn9Ap54fenWsCa0HnT4cJuE61zqG3cBkTZJDCy0wHJphilI41co/PE5g==}
+ '@smithy/middleware-endpoint@4.1.1':
+ resolution: {integrity: sha512-z5RmcHxjvScL+LwEDU2mTNCOhgUs4lu5PGdF1K36IPRmUHhNFxNxgenSB7smyDiYD4vdKQ7CAZtG5cUErqib9w==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-retry@4.0.3':
- resolution: {integrity: sha512-TiKwwQTwUDeDtwWW8UWURTqu7s6F3wN2pmziLU215u7bqpVT9Mk2oEvURjpRLA+5XeQhM68R5BpAGzVtomsqgA==}
+ '@smithy/middleware-retry@4.1.2':
+ resolution: {integrity: sha512-qN/Mmxm8JWtFAjozJ8VSTM83KOX4cIks8UjDqqNkKIegzPrE5ZKPNCQ/DqUSIF90pue5a/NycNXnBod2NwvZZQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-serde@4.0.1':
- resolution: {integrity: sha512-Fh0E2SOF+S+P1+CsgKyiBInAt3o2b6Qk7YOp2W0Qx2XnfTdfMuSDKUEcnrtpxCzgKJnqXeLUZYqtThaP0VGqtA==}
+ '@smithy/middleware-serde@4.0.3':
+ resolution: {integrity: sha512-rfgDVrgLEVMmMn0BI8O+8OVr6vXzjV7HZj57l0QxslhzbvVfikZbVfBVthjLHqib4BW44QhcIgJpvebHlRaC9A==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-stack@4.0.1':
- resolution: {integrity: sha512-dHwDmrtR/ln8UTHpaIavRSzeIk5+YZTBtLnKwDW3G2t6nAupCiQUvNzNoHBpik63fwUaJPtlnMzXbQrNFWssIA==}
+ '@smithy/middleware-stack@4.0.2':
+ resolution: {integrity: sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ==}
engines: {node: '>=18.0.0'}
- '@smithy/node-config-provider@4.0.1':
- resolution: {integrity: sha512-8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ==}
+ '@smithy/node-config-provider@4.0.2':
+ resolution: {integrity: sha512-WgCkILRZfJwJ4Da92a6t3ozN/zcvYyJGUTmfGbgS/FkCcoCjl7G4FJaCDN1ySdvLvemnQeo25FdkyMSTSwulsw==}
engines: {node: '>=18.0.0'}
- '@smithy/node-http-handler@4.0.2':
- resolution: {integrity: sha512-X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw==}
+ '@smithy/node-http-handler@4.0.4':
+ resolution: {integrity: sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g==}
engines: {node: '>=18.0.0'}
- '@smithy/property-provider@4.0.1':
- resolution: {integrity: sha512-o+VRiwC2cgmk/WFV0jaETGOtX16VNPp2bSQEzu0whbReqE1BMqsP2ami2Vi3cbGVdKu1kq9gQkDAGKbt0WOHAQ==}
+ '@smithy/property-provider@4.0.2':
+ resolution: {integrity: sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A==}
engines: {node: '>=18.0.0'}
- '@smithy/protocol-http@5.0.1':
- resolution: {integrity: sha512-TE4cpj49jJNB/oHyh/cRVEgNZaoPaxd4vteJNB0yGidOCVR0jCw/hjPVsT8Q8FRmj8Bd3bFZt8Dh7xGCT+xMBQ==}
+ '@smithy/protocol-http@5.1.0':
+ resolution: {integrity: sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-builder@4.0.1':
- resolution: {integrity: sha512-wU87iWZoCbcqrwszsOewEIuq+SU2mSoBE2CcsLwE0I19m0B2gOJr1MVjxWcDQYOzHbR1xCk7AcOBbGFUYOKvdg==}
+ '@smithy/querystring-builder@4.0.2':
+ resolution: {integrity: sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-parser@4.0.1':
- resolution: {integrity: sha512-Ma2XC7VS9aV77+clSFylVUnPZRindhB7BbmYiNOdr+CHt/kZNJoPP0cd3QxCnCFyPXC4eybmyE98phEHkqZ5Jw==}
+ '@smithy/querystring-parser@4.0.2':
+ resolution: {integrity: sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q==}
engines: {node: '>=18.0.0'}
- '@smithy/service-error-classification@4.0.1':
- resolution: {integrity: sha512-3JNjBfOWpj/mYfjXJHB4Txc/7E4LVq32bwzE7m28GN79+M1f76XHflUaSUkhOriprPDzev9cX/M+dEB80DNDKA==}
+ '@smithy/service-error-classification@4.0.3':
+ resolution: {integrity: sha512-FTbcajmltovWMjj3tksDQdD23b2w6gH+A0DYA1Yz3iSpjDj8fmkwy62UnXcWMy4d5YoMoSyLFHMfkEVEzbiN8Q==}
engines: {node: '>=18.0.0'}
- '@smithy/shared-ini-file-loader@4.0.1':
- resolution: {integrity: sha512-hC8F6qTBbuHRI/uqDgqqi6J0R4GtEZcgrZPhFQnMhfJs3MnUTGSnR1NSJCJs5VWlMydu0kJz15M640fJlRsIOw==}
+ '@smithy/shared-ini-file-loader@4.0.2':
+ resolution: {integrity: sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.0.1':
- resolution: {integrity: sha512-nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA==}
+ '@smithy/signature-v4@5.1.0':
+ resolution: {integrity: sha512-4t5WX60sL3zGJF/CtZsUQTs3UrZEDO2P7pEaElrekbLqkWPYkgqNW1oeiNYC6xXifBnT9dVBOnNQRvOE9riU9w==}
engines: {node: '>=18.0.0'}
- '@smithy/smithy-client@4.1.2':
- resolution: {integrity: sha512-0yApeHWBqocelHGK22UivZyShNxFbDNrgREBllGh5Ws0D0rg/yId/CJfeoKKpjbfY2ju8j6WgDUGZHYQmINZ5w==}
+ '@smithy/smithy-client@4.2.1':
+ resolution: {integrity: sha512-fbniZef60QdsBc4ZY0iyI8xbFHIiC/QRtPi66iE4ufjiE/aaz7AfUXzcWMkpO8r+QhLeNRIfmPchIG+3/QDZ6g==}
engines: {node: '>=18.0.0'}
- '@smithy/types@4.1.0':
- resolution: {integrity: sha512-enhjdwp4D7CXmwLtD6zbcDMbo6/T6WtuuKCY49Xxc6OMOmUWlBEBDREsxxgV2LIdeQPW756+f97GzcgAwp3iLw==}
+ '@smithy/types@4.2.0':
+ resolution: {integrity: sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg==}
engines: {node: '>=18.0.0'}
- '@smithy/url-parser@4.0.1':
- resolution: {integrity: sha512-gPXcIEUtw7VlK8f/QcruNXm7q+T5hhvGu9tl63LsJPZ27exB6dtNwvh2HIi0v7JcXJ5emBxB+CJxwaLEdJfA+g==}
+ '@smithy/url-parser@4.0.2':
+ resolution: {integrity: sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-base64@4.0.0':
@@ -3085,32 +3002,32 @@ packages:
resolution: {integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-browser@4.0.3':
- resolution: {integrity: sha512-7c5SF1fVK0EOs+2EOf72/qF199zwJflU1d02AevwKbAUPUZyE9RUZiyJxeUmhVxfKDWdUKaaVojNiaDQgnHL9g==}
+ '@smithy/util-defaults-mode-browser@4.0.9':
+ resolution: {integrity: sha512-B8j0XsElvyhv6+5hlFf6vFV/uCSyLKcInpeXOGnOImX2mGXshE01RvPoGipTlRpIk53e6UfYj7WdDdgbVfXDZw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-node@4.0.3':
- resolution: {integrity: sha512-CVnD42qYD3JKgDlImZ9+On+MqJHzq9uJgPbMdeBE8c2x8VJ2kf2R3XO/yVFx+30ts5lD/GlL0eFIShY3x9ROgQ==}
+ '@smithy/util-defaults-mode-node@4.0.9':
+ resolution: {integrity: sha512-wTDU8P/zdIf9DOpV5qm64HVgGRXvqjqB/fJZTEQbrz3s79JHM/E7XkMm/876Oq+ZLHJQgnXM9QHDo29dlM62eA==}
engines: {node: '>=18.0.0'}
- '@smithy/util-endpoints@3.0.1':
- resolution: {integrity: sha512-zVdUENQpdtn9jbpD9SCFK4+aSiavRb9BxEtw9ZGUR1TYo6bBHbIoi7VkrFQ0/RwZlzx0wRBaRmPclj8iAoJCLA==}
+ '@smithy/util-endpoints@3.0.2':
+ resolution: {integrity: sha512-6QSutU5ZyrpNbnd51zRTL7goojlcnuOB55+F9VBD+j8JpRY50IGamsjlycrmpn8PQkmJucFW8A0LSfXj7jjtLQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-hex-encoding@4.0.0':
resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-middleware@4.0.1':
- resolution: {integrity: sha512-HiLAvlcqhbzhuiOa0Lyct5IIlyIz0PQO5dnMlmQ/ubYM46dPInB+3yQGkfxsk6Q24Y0n3/JmcA1v5iEhmOF5mA==}
+ '@smithy/util-middleware@4.0.2':
+ resolution: {integrity: sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ==}
engines: {node: '>=18.0.0'}
- '@smithy/util-retry@4.0.1':
- resolution: {integrity: sha512-WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw==}
+ '@smithy/util-retry@4.0.3':
+ resolution: {integrity: sha512-DPuYjZQDXmKr/sNvy9Spu8R/ESa2e22wXZzSAY6NkjOLj6spbIje/Aq8rT97iUMdDj0qHMRIe+bTxvlU74d9Ng==}
engines: {node: '>=18.0.0'}
- '@smithy/util-stream@4.0.2':
- resolution: {integrity: sha512-0eZ4G5fRzIoewtHtwaYyl8g2C+osYOT4KClXgfdNEDAgkbe2TYPqcnw4GAWabqkZCax2ihRGPe9LZnsPdIUIHA==}
+ '@smithy/util-stream@4.2.0':
+ resolution: {integrity: sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-uri-escape@4.0.0':
@@ -3202,164 +3119,103 @@ packages:
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@tailwindcss/cli@4.0.14':
- resolution: {integrity: sha512-W/pwxYwC+GZwrB4m4ASHFfvi1eND7yIoqZ6uqkQihWP/OYfuH3v00YjEhiTQVSiRWic/MlfnKRNseO5JEEzwew==}
+ '@tailwindcss/cli@4.1.5':
+ resolution: {integrity: sha512-Kr567rDwDjY1VUnfqh5/+DCpRf4B8lPs5O9flP4kri7n4AM2aubrIxGSh5GN8s+awUKw/U4+6kNlEnZbBNfUeg==}
hasBin: true
- '@tailwindcss/node@4.0.12':
- resolution: {integrity: sha512-a6J11K1Ztdln9OrGfoM75/hChYPcHYGNYimqciMrvKXRmmPaS8XZTHhdvb5a3glz4Kd4ZxE1MnuFE2c0fGGmtg==}
-
- '@tailwindcss/node@4.0.14':
- resolution: {integrity: sha512-Ux9NbFkKWYE4rfUFz6M5JFLs/GEYP6ysxT8uSyPn6aTbh2K3xDE1zz++eVK4Vwx799fzMF8CID9sdHn4j/Ab8w==}
-
- '@tailwindcss/oxide-android-arm64@4.0.12':
- resolution: {integrity: sha512-dAXCaemu3mHLXcA5GwGlQynX8n7tTdvn5i1zAxRvZ5iC9fWLl5bGnjZnzrQqT7ttxCvRwdVf3IHUnMVdDBO/kQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [android]
+ '@tailwindcss/node@4.1.5':
+ resolution: {integrity: sha512-CBhSWo0vLnWhXIvpD0qsPephiaUYfHUX3U9anwDaHZAeuGpTiB3XmsxPAN6qX7bFhipyGBqOa1QYQVVhkOUGxg==}
- '@tailwindcss/oxide-android-arm64@4.0.14':
- resolution: {integrity: sha512-VBFKC2rFyfJ5J8lRwjy6ub3rgpY186kAcYgiUr8ArR8BAZzMruyeKJ6mlsD22Zp5ZLcPW/FXMasJiJBx0WsdQg==}
+ '@tailwindcss/oxide-android-arm64@4.1.5':
+ resolution: {integrity: sha512-LVvM0GirXHED02j7hSECm8l9GGJ1RfgpWCW+DRn5TvSaxVsv28gRtoL4aWKGnXqwvI3zu1GABeDNDVZeDPOQrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.0.12':
- resolution: {integrity: sha512-vPNI+TpJQ7sizselDXIJdYkx9Cu6JBdtmRWujw9pVIxW8uz3O2PjgGGzL/7A0sXI8XDjSyRChrUnEW9rQygmJQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
- '@tailwindcss/oxide-darwin-arm64@4.0.14':
- resolution: {integrity: sha512-U3XOwLrefGr2YQZ9DXasDSNWGPZBCh8F62+AExBEDMLDfvLLgI/HDzY8Oq8p/JtqkAY38sWPOaNnRwEGKU5Zmg==}
+ '@tailwindcss/oxide-darwin-arm64@4.1.5':
+ resolution: {integrity: sha512-//TfCA3pNrgnw4rRJOqavW7XUk8gsg9ddi8cwcsWXp99tzdBAZW0WXrD8wDyNbqjW316Pk2hiN/NJx/KWHl8oA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.0.12':
- resolution: {integrity: sha512-RL/9jM41Fdq4Efr35C5wgLx98BirnrfwuD+zgMFK6Ir68HeOSqBhW9jsEeC7Y/JcGyPd3MEoJVIU4fAb7YLg7A==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
-
- '@tailwindcss/oxide-darwin-x64@4.0.14':
- resolution: {integrity: sha512-V5AjFuc3ndWGnOi1d379UsODb0TzAS2DYIP/lwEbfvafUaD2aNZIcbwJtYu2DQqO2+s/XBvDVA+w4yUyaewRwg==}
+ '@tailwindcss/oxide-darwin-x64@4.1.5':
+ resolution: {integrity: sha512-XQorp3Q6/WzRd9OalgHgaqgEbjP3qjHrlSUb5k1EuS1Z9NE9+BbzSORraO+ecW432cbCN7RVGGL/lSnHxcd+7Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.0.12':
- resolution: {integrity: sha512-7WzWiax+LguJcMEimY0Q4sBLlFXu1tYxVka3+G2M9KmU/3m84J3jAIV4KZWnockbHsbb2XgrEjtlJKVwHQCoRA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [freebsd]
-
- '@tailwindcss/oxide-freebsd-x64@4.0.14':
- resolution: {integrity: sha512-tXvtxbaZfcPfqBwW3f53lTcyH6EDT+1eT7yabwcfcxTs+8yTPqxsDUhrqe9MrnEzpNkd+R/QAjJapfd4tjWdLg==}
+ '@tailwindcss/oxide-freebsd-x64@4.1.5':
+ resolution: {integrity: sha512-bPrLWbxo8gAo97ZmrCbOdtlz/Dkuy8NK97aFbVpkJ2nJ2Jo/rsCbu0TlGx8joCuA3q6vMWTSn01JY46iwG+clg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.12':
- resolution: {integrity: sha512-X9LRC7jjE1QlfIaBbXjY0PGeQP87lz5mEfLSVs2J1yRc9PSg1tEPS9NBqY4BU9v5toZgJgzKeaNltORyTs22TQ==}
- engines: {node: '>= 10'}
- cpu: [arm]
- os: [linux]
-
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.14':
- resolution: {integrity: sha512-cSeLNWWqIWeSTmBntQvyY2/2gcLX8rkPFfDDTQVF8qbRcRMVPLxBvFVJyfSAYRNch6ZyVH2GI6dtgALOBDpdNA==}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.5':
+ resolution: {integrity: sha512-1gtQJY9JzMAhgAfvd/ZaVOjh/Ju/nCoAsvOVJenWZfs05wb8zq+GOTnZALWGqKIYEtyNpCzvMk+ocGpxwdvaVg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.12':
- resolution: {integrity: sha512-i24IFNq2402zfDdoWKypXz0ZNS2G4NKaA82tgBlE2OhHIE+4mg2JDb5wVfyP6R+MCm5grgXvurcIcKWvo44QiQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.14':
- resolution: {integrity: sha512-bwDWLBalXFMDItcSXzFk6y7QKvj6oFlaY9vM+agTlwFL1n1OhDHYLZkSjaYsh6KCeG0VB0r7H8PUJVOM1LRZyg==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@tailwindcss/oxide-linux-arm64-musl@4.0.12':
- resolution: {integrity: sha512-LmOdshJBfAGIBG0DdBWhI0n5LTMurnGGJCHcsm9F//ISfsHtCnnYIKgYQui5oOz1SUCkqsMGfkAzWyNKZqbGNw==}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.5':
+ resolution: {integrity: sha512-dtlaHU2v7MtdxBXoqhxwsWjav7oim7Whc6S9wq/i/uUMTWAzq/gijq1InSgn2yTnh43kR+SFvcSyEF0GCNu1PQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-musl@4.0.14':
- resolution: {integrity: sha512-gVkJdnR/L6iIcGYXx64HGJRmlme2FGr/aZH0W6u4A3RgPMAb+6ELRLi+UBiH83RXBm9vwCfkIC/q8T51h8vUJQ==}
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.5':
+ resolution: {integrity: sha512-fg0F6nAeYcJ3CriqDT1iVrqALMwD37+sLzXs8Rjy8Z1ZHshJoYceodfyUwGJEsQoTyWbliFNRs2wMQNXtT7MVA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-gnu@4.0.12':
- resolution: {integrity: sha512-OSK667qZRH30ep8RiHbZDQfqkXjnzKxdn0oRwWzgCO8CoTxV+MvIkd0BWdQbYtYuM1wrakARV/Hwp0eA/qzdbw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@tailwindcss/oxide-linux-x64-gnu@4.0.14':
- resolution: {integrity: sha512-EE+EQ+c6tTpzsg+LGO1uuusjXxYx0Q00JE5ubcIGfsogSKth8n8i2BcS2wYTQe4jXGs+BQs35l78BIPzgwLddw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@tailwindcss/oxide-linux-x64-musl@4.0.12':
- resolution: {integrity: sha512-uylhWq6OWQ8krV8Jk+v0H/3AZKJW6xYMgNMyNnUbbYXWi7hIVdxRKNUB5UvrlC3RxtgsK5EAV2i1CWTRsNcAnA==}
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.5':
+ resolution: {integrity: sha512-SO+F2YEIAHa1AITwc8oPwMOWhgorPzzcbhWEb+4oLi953h45FklDmM8dPSZ7hNHpIk9p/SCZKUYn35t5fjGtHA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-musl@4.0.14':
- resolution: {integrity: sha512-KCCOzo+L6XPT0oUp2Jwh233ETRQ/F6cwUnMnR0FvMUCbkDAzHbcyOgpfuAtRa5HD0WbTbH4pVD+S0pn1EhNfbw==}
+ '@tailwindcss/oxide-linux-x64-musl@4.1.5':
+ resolution: {integrity: sha512-6UbBBplywkk/R+PqqioskUeXfKcBht3KU7juTi1UszJLx0KPXUo10v2Ok04iBJIaDPkIFkUOVboXms5Yxvaz+g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.12':
- resolution: {integrity: sha512-XDLnhMoXZEEOir1LK43/gHHwK84V1GlV8+pAncUAIN2wloeD+nNciI9WRIY/BeFTqES22DhTIGoilSO39xDb2g==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
-
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.14':
- resolution: {integrity: sha512-AHObFiFL9lNYcm3tZSPqa/cHGpM5wOrNmM2uOMoKppp+0Hom5uuyRh0QkOp7jftsHZdrZUpmoz0Mp6vhh2XtUg==}
+ '@tailwindcss/oxide-wasm32-wasi@4.1.5':
+ resolution: {integrity: sha512-hwALf2K9FHuiXTPqmo1KeOb83fTRNbe9r/Ixv9ZNQ/R24yw8Ge1HOWDDgTdtzntIaIUJG5dfXCf4g9AD4RiyhQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.5':
+ resolution: {integrity: sha512-oDKncffWzaovJbkuR7/OTNFRJQVdiw/n8HnzaCItrNQUeQgjy7oUiYpsm9HUBgpmvmDpSSbGaCa2Evzvk3eFmA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.0.12':
- resolution: {integrity: sha512-I/BbjCLpKDQucvtn6rFuYLst1nfFwSMYyPzkx/095RE+tuzk5+fwXuzQh7T3fIBTcbn82qH/sFka7yPGA50tLw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
- '@tailwindcss/oxide-win32-x64-msvc@4.0.14':
- resolution: {integrity: sha512-rNXXMDJfCJLw/ZaFTOLOHoGULxyXfh2iXTGiChFiYTSgKBKQHIGEpV0yn5N25WGzJJ+VBnRjHzlmDqRV+d//oQ==}
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.5':
+ resolution: {integrity: sha512-WiR4dtyrFdbb+ov0LK+7XsFOsG+0xs0PKZKkt41KDn9jYpO7baE3bXiudPVkTqUEwNfiglCygQHl2jklvSBi7Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.0.12':
- resolution: {integrity: sha512-DWb+myvJB9xJwelwT9GHaMc1qJj6MDXRDR0CS+T8IdkejAtu8ctJAgV4r1drQJLPeS7mNwq2UHW2GWrudTf63A==}
- engines: {node: '>= 10'}
-
- '@tailwindcss/oxide@4.0.14':
- resolution: {integrity: sha512-M8VCNyO/NBi5vJ2cRcI9u8w7Si+i76a7o1vveoGtbbjpEYJZYiyc7f2VGps/DqawO56l3tImIbq2OT/533jcrA==}
+ '@tailwindcss/oxide@4.1.5':
+ resolution: {integrity: sha512-1n4br1znquEvyW/QuqMKQZlBen+jxAbvyduU87RS8R3tUSvByAkcaMTkJepNIrTlYhD+U25K4iiCIxE6BGdRYA==}
engines: {node: '>= 10'}
- '@tailwindcss/postcss@4.0.12':
- resolution: {integrity: sha512-r59Sdr8djCW4dL3kvc4aWU8PHdUAVM3O3te2nbYzXsWwKLlHPCuUoZAc9FafXb/YyNDZOMI7sTbKTKFmwOrMjw==}
+ '@tailwindcss/postcss@4.1.5':
+ resolution: {integrity: sha512-5lAC2/pzuyfhsFgk6I58HcNy6vPK3dV/PoPxSDuOTVbDvCddYHzHiJZZInGIY0venvzzfrTEUAXJFULAfFmObg==}
- '@tanstack/query-core@5.64.2':
- resolution: {integrity: sha512-hdO8SZpWXoADNTWXV9We8CwTkXU88OVWRBcsiFrk7xJQnhm6WRlweDzMD+uH+GnuieTBVSML6xFa17C2cNV8+g==}
+ '@tanstack/query-core@5.75.0':
+ resolution: {integrity: sha512-rk8KQuCdhoRkzjRVF3QxLgAfFUyS0k7+GCQjlGEpEGco+qazJ0eMH6aO1DjDjibH7/ik383nnztua3BG+lOnwg==}
- '@tanstack/react-query@5.64.2':
- resolution: {integrity: sha512-3pakNscZNm8KJkxmovvtZ4RaXLyiYYobwleTMvpIGUoKRa8j8VlrQKNl5W8VUEfVfZKkikvXVddLuWMbcSCA1Q==}
+ '@tanstack/react-query@5.75.2':
+ resolution: {integrity: sha512-8F8VOsWUfSkCFoi62O9HSZT9jDgg28Ln8Z2dYKfRo/O2A0sgvr0uxTuNoon3PPXoDuHofv5V3elBI1M2Gh1MPg==}
peerDependencies:
react: ^18 || ^19
@@ -3371,8 +3227,8 @@ packages:
resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- '@testing-library/react@16.2.0':
- resolution: {integrity: sha512-2cSskAvA1QNtKc8Y9VJQRv0tm3hLVgxRGDB+KYhIaPQJ1I+RHbhIXcM+zClKXzMes/wshsMVzf4B9vS4IZpqDQ==}
+ '@testing-library/react@16.3.0':
+ resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
engines: {node: '>=18'}
peerDependencies:
'@testing-library/dom': ^10.0.0
@@ -3392,23 +3248,23 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
+ '@tybys/wasm-util@0.9.0':
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+
'@types/aria-query@5.0.4':
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
'@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- '@types/babel__generator@7.6.8':
- resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.6':
- resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
-
- '@types/bn.js@4.11.6':
- resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==}
+ '@types/babel__traverse@7.20.7':
+ resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
'@types/bn.js@5.1.6':
resolution: {integrity: sha512-Xh8vSwUeMKeYYrj3cX4lGQgFSF/N03r+tv4AiLl1SucqV+uTQpxRcnM8AkXKHwYP9ZPXOYXRr2KPXpVlIvqh9w==}
@@ -3419,8 +3275,8 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/estree@1.0.7':
+ resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
'@types/graceful-fs@4.1.9':
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
@@ -3449,11 +3305,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@18.15.13':
- resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
-
- '@types/node@20.17.14':
- resolution: {integrity: sha512-w6qdYetNL5KRBiSClK/KWai+2IMEJuAj+EujKCumalFOwXtvOXaEan9AuwcRID2IcOIAWSIfR495hBtgKlx2zg==}
+ '@types/node@20.17.32':
+ resolution: {integrity: sha512-zeMXFn8zQ+UkjK4ws0RiOC9EWByyW1CcVmLe+2rQocXRsGEDxUCwPEIVgpsGcLHS/P8JkT0oa3839BRABS0oPw==}
'@types/node@22.7.5':
resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
@@ -3461,22 +3314,16 @@ packages:
'@types/pako@2.0.3':
resolution: {integrity: sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==}
- '@types/pbkdf2@3.1.2':
- resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==}
-
'@types/react-copy-to-clipboard@5.0.7':
resolution: {integrity: sha512-Gft19D+as4M+9Whq1oglhmK49vqPhcLzk8WfvfLvaYMIPYanyfLy0+CwFucMJfdKoSFyySPmkkWn8/E6voQXjQ==}
- '@types/react-dom@19.0.4':
- resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==}
+ '@types/react-dom@19.1.3':
+ resolution: {integrity: sha512-rJXC08OG0h3W6wDMFxQrZF00Kq6qQvw0djHRdzl3U5DnIERz0MRce3WVc7IS6JYBwtaP/DwYtRRjVlvivNveKg==}
peerDependencies:
'@types/react': ^19.0.0
- '@types/react@19.0.10':
- resolution: {integrity: sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==}
-
- '@types/secp256k1@4.0.6':
- resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==}
+ '@types/react@19.1.2':
+ resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==}
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
@@ -3499,8 +3346,8 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.26.1':
- resolution: {integrity: sha512-2X3mwqsj9Bd3Ciz508ZUtoQQYpOhU/kWoUqIf49H8Z0+Vbh6UF/y0OEYp0Q0axOGzaBGs7QxRwq0knSQ8khQNA==}
+ '@typescript-eslint/eslint-plugin@8.31.1':
+ resolution: {integrity: sha512-oUlH4h1ABavI4F0Xnl8/fOtML/eu8nI2A1nYd+f+55XI0BLu+RIqKoCiZKNo6DtqZBEQm5aNKA20G3Z5w3R6GQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -3517,8 +3364,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.26.1':
- resolution: {integrity: sha512-w6HZUV4NWxqd8BdeFf81t07d7/YV9s7TCWrQQbG5uhuvGUAW+fq1usZ1Hmz9UPNLniFnD8GLSsDpjP0hm1S4lQ==}
+ '@typescript-eslint/parser@8.31.1':
+ resolution: {integrity: sha512-oU/OtYVydhXnumd0BobL9rkJg7wFJ9bFFPmSmB/bf/XWN85hlViji59ko6bSKBXyseT9V8l+CN1nwmlbiN0G7Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -3528,12 +3375,12 @@ packages:
resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
engines: {node: ^16.0.0 || >=18.0.0}
- '@typescript-eslint/scope-manager@8.26.1':
- resolution: {integrity: sha512-6EIvbE5cNER8sqBu6V7+KeMZIC1664d2Yjt+B9EWUXrsyWpxx4lEZrmvxgSKRC6gX+efDL/UY9OpPZ267io3mg==}
+ '@typescript-eslint/scope-manager@8.31.1':
+ resolution: {integrity: sha512-BMNLOElPxrtNQMIsFHE+3P0Yf1z0dJqV9zLdDxN/xLlWMlXK/ApEsVEKzpizg9oal8bAT5Sc7+ocal7AC1HCVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.26.1':
- resolution: {integrity: sha512-Kcj/TagJLwoY/5w9JGEFV0dclQdyqw9+VMndxOJKtoFSjfZhLXhYjzsQEeyza03rwHx2vFEGvrJWJBXKleRvZg==}
+ '@typescript-eslint/type-utils@8.31.1':
+ resolution: {integrity: sha512-fNaT/m9n0+dpSp8G/iOQ05GoHYXbxw81x+yvr7TArTuZuCA6VVKbqWYVZrV5dVagpDTtj/O8k5HBEE/p/HM5LA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -3543,8 +3390,8 @@ packages:
resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
engines: {node: ^16.0.0 || >=18.0.0}
- '@typescript-eslint/types@8.26.1':
- resolution: {integrity: sha512-n4THUQW27VmQMx+3P+B0Yptl7ydfceUj4ON/AQILAASwgYdZ/2dhfymRMh5egRUrvK5lSmaOm77Ry+lmXPOgBQ==}
+ '@typescript-eslint/types@8.31.1':
+ resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@7.2.0':
@@ -3556,14 +3403,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.26.1':
- resolution: {integrity: sha512-yUwPpUHDgdrv1QJ7YQal3cMVBGWfnuCdKbXw1yyjArax3353rEJP1ZA+4F8nOlQ3RfS2hUN/wze3nlY+ZOhvoA==}
+ '@typescript-eslint/typescript-estree@8.31.1':
+ resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.26.1':
- resolution: {integrity: sha512-V4Urxa/XtSUroUrnI7q6yUTD3hDtfJ2jzVfeT3VK0ciizfK2q/zGC0iDh1lFMUZR8cImRrep6/q0xd/1ZGPQpg==}
+ '@typescript-eslint/utils@8.31.1':
+ resolution: {integrity: sha512-2DSI4SNfF5T4oRveQ4nUrSjUqjMND0nLq9rEkz0gfGr3tg0S5KB6DhwR+WZPCjzkZl3cH+4x2ce3EsL50FubjQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -3573,12 +3420,12 @@ packages:
resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
engines: {node: ^16.0.0 || >=18.0.0}
- '@typescript-eslint/visitor-keys@8.26.1':
- resolution: {integrity: sha512-AjOC3zfnxd6S4Eiy3jwktJPclqhFHNyd8L6Gycf9WUPoKZpgM5PjkxY1X7uSy61xVpiJDhhk7XT2NVsN3ALTWg==}
+ '@typescript-eslint/visitor-keys@8.31.1':
+ resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@ungap/structured-clone@1.2.1':
- resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
+ '@ungap/structured-clone@1.3.0':
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
'@uniswap/lib@4.0.1-alpha':
resolution: {integrity: sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==}
@@ -3621,53 +3468,138 @@ packages:
engines: {node: '>=10'}
deprecated: Please upgrade to 1.0.1
- '@vitejs/plugin-react@4.3.4':
- resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ '@unrs/resolver-binding-darwin-arm64@1.7.2':
+ resolution: {integrity: sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg==}
+ cpu: [arm64]
+ os: [darwin]
- '@vitest/expect@2.1.9':
- resolution: {integrity: sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==}
+ '@unrs/resolver-binding-darwin-x64@1.7.2':
+ resolution: {integrity: sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ==}
+ cpu: [x64]
+ os: [darwin]
- '@vitest/mocker@2.1.9':
- resolution: {integrity: sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==}
- peerDependencies:
- msw: ^2.4.9
- vite: ^5.0.0
- peerDependenciesMeta:
- msw:
- optional: true
- vite:
- optional: true
+ '@unrs/resolver-binding-freebsd-x64@1.7.2':
+ resolution: {integrity: sha512-zKKdm2uMXqLFX6Ac7K5ElnnG5VIXbDlFWzg4WJ8CGUedJryM5A3cTgHuGMw1+P5ziV8CRhnSEgOnurTI4vpHpg==}
+ cpu: [x64]
+ os: [freebsd]
- '@vitest/pretty-format@2.1.9':
- resolution: {integrity: sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==}
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
+ resolution: {integrity: sha512-8N1z1TbPnHH+iDS/42GJ0bMPLiGK+cUqOhNbMKtWJ4oFGzqSJk/zoXFzcQkgtI63qMcUI7wW1tq2usZQSb2jxw==}
+ cpu: [arm]
+ os: [linux]
- '@vitest/runner@2.1.9':
- resolution: {integrity: sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==}
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
+ resolution: {integrity: sha512-tjYzI9LcAXR9MYd9rO45m1s0B/6bJNuZ6jeOxo1pq1K6OBuRMMmfyvJYval3s9FPPGmrldYA3mi4gWDlWuTFGA==}
+ cpu: [arm]
+ os: [linux]
- '@vitest/snapshot@2.1.9':
- resolution: {integrity: sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==}
+ '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
+ resolution: {integrity: sha512-jon9M7DKRLGZ9VYSkFMflvNqu9hDtOCEnO2QAryFWgT6o6AXU8du56V7YqnaLKr6rAbZBWYsYpikF226v423QA==}
+ cpu: [arm64]
+ os: [linux]
- '@vitest/spy@2.1.9':
- resolution: {integrity: sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==}
+ '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
+ resolution: {integrity: sha512-c8Cg4/h+kQ63pL43wBNaVMmOjXI/X62wQmru51qjfTvI7kmCy5uHTJvK/9LrF0G8Jdx8r34d019P1DVJmhXQpA==}
+ cpu: [arm64]
+ os: [linux]
- '@vitest/utils@2.1.9':
- resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
+ resolution: {integrity: sha512-A+lcwRFyrjeJmv3JJvhz5NbcCkLQL6Mk16kHTNm6/aGNc4FwPHPE4DR9DwuCvCnVHvF5IAd9U4VIs/VvVir5lg==}
+ cpu: [ppc64]
+ os: [linux]
- '@wagmi/connectors@5.7.13':
- resolution: {integrity: sha512-FHvqlECFJAoWOm1PEvVY1Zo2iy9tfE1CB97ivVjSSYb4UGAHvRxg4cb2gXTfsF7z1a3QxtU/Q0VI1m4y0NP0gg==}
- peerDependencies:
- '@wagmi/core': 2.17.0
- typescript: '>=5.0.4'
- viem: 2.x
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
+ resolution: {integrity: sha512-hQQ4TJQrSQW8JlPm7tRpXN8OCNP9ez7PajJNjRD1ZTHQAy685OYqPrKjfaMw/8LiHCt8AZ74rfUVHP9vn0N69Q==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
+ resolution: {integrity: sha512-NoAGbiqrxtY8kVooZ24i70CjLDlUFI7nDj3I9y54U94p+3kPxwd2L692YsdLa+cqQ0VoqMWoehDFp21PKRUoIQ==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
+ resolution: {integrity: sha512-KaZByo8xuQZbUhhreBTW+yUnOIHUsv04P8lKjQ5otiGoSJ17ISGYArc+4vKdLEpGaLbemGzr4ZeUbYQQsLWFjA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
+ resolution: {integrity: sha512-dEidzJDubxxhUCBJ/SHSMJD/9q7JkyfBMT77Px1npl4xpg9t0POLvnWywSk66BgZS/b2Hy9Y1yFaoMTFJUe9yg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@unrs/resolver-binding-linux-x64-musl@1.7.2':
+ resolution: {integrity: sha512-RvP+Ux3wDjmnZDT4XWFfNBRVG0fMsc+yVzNFUqOflnDfZ9OYujv6nkh+GOr+watwrW4wdp6ASfG/e7bkDradsw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@unrs/resolver-binding-wasm32-wasi@1.7.2':
+ resolution: {integrity: sha512-y797JBmO9IsvXVRCKDXOxjyAE4+CcZpla2GSoBQ33TVb3ILXuFnMrbR/QQZoauBYeOFuu4w3ifWLw52sdHGz6g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
+ resolution: {integrity: sha512-gtYTh4/VREVSLA+gHrfbWxaMO/00y+34htY7XpioBTy56YN2eBjkPrY1ML1Zys89X3RJDKVaogzwxlM1qU7egg==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
+ resolution: {integrity: sha512-Ywv20XHvHTDRQs12jd3MY8X5C8KLjDbg/jyaal/QLKx3fAShhJyD4blEANInsjxW3P7isHx1Blt56iUDDJO3jg==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
+ resolution: {integrity: sha512-friS8NEQfHaDbkThxopGk+LuE5v3iY0StruifjQEt7SLbA46OnfgMO15sOTkbpJkol6RB+1l1TYPXh0sCddpvA==}
+ cpu: [x64]
+ os: [win32]
+
+ '@vitejs/plugin-react@4.4.1':
+ resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+
+ '@vitest/expect@2.1.9':
+ resolution: {integrity: sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==}
+
+ '@vitest/mocker@2.1.9':
+ resolution: {integrity: sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+
+ '@vitest/pretty-format@2.1.9':
+ resolution: {integrity: sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==}
+
+ '@vitest/runner@2.1.9':
+ resolution: {integrity: sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==}
+
+ '@vitest/snapshot@2.1.9':
+ resolution: {integrity: sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==}
+
+ '@vitest/spy@2.1.9':
+ resolution: {integrity: sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==}
+
+ '@vitest/utils@2.1.9':
+ resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==}
+
+ '@wagmi/connectors@5.8.1':
+ resolution: {integrity: sha512-SGbodB8a/Yr3SHPzWO1cWg/PFXTpimsxbR59q1usv0Nsj+5imocVtP3ba9KnSqOfv5wEvP4ljyQhHHa7ALoJOw==}
+ peerDependencies:
+ '@wagmi/core': 2.17.1
+ typescript: '>=5.0.4'
+ viem: 2.x
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@wagmi/core@2.17.0':
- resolution: {integrity: sha512-MykiuU0rZUKtgVBctnOM+53zJmtodTD7rA97e7lLhXUevZcm60hUSl1BcgEIDd2wVOLEi2Xfrx641xpjruZvSA==}
+ '@wagmi/core@2.17.1':
+ resolution: {integrity: sha512-tbeNv8HquzrVj2Inv0bv229SejPABnWAmbBNvPJJedYpKStgXlbK4jnRhCf5qG5un3ZO/KYFGQYaghTzWSULGg==}
peerDependencies:
'@tanstack/query-core': '>=5.0.0'
typescript: '>=5.0.4'
@@ -3682,11 +3614,15 @@ packages:
resolution: {integrity: sha512-iu0mgLj51AXcKpdNj8+4EdNNBd/mkNjLEhZn6UMc/r7BM9WbmpPMEydA39WeRLbdLO4kbpmq4wTbiskI1rg+HA==}
engines: {node: '>=18'}
+ '@walletconnect/core@2.20.0':
+ resolution: {integrity: sha512-MpCx9WthaAJ9pA2oHC84oTFUtntjj9mCmevwBDPVsQ2Q/pYeh2+THDPaaw6fzTbNTXyGCvJXRyLQkN9xO+Vmzw==}
+ engines: {node: '>=18'}
+
'@walletconnect/environment@1.0.1':
resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==}
- '@walletconnect/ethereum-provider@2.19.2':
- resolution: {integrity: sha512-NzPzNcjMLqow6ha2nssB1ciMD0cdHZesYcHSQKjCi9waIDMov9Fr2yEJccbiVFE3cxek7f9dCPsoZez2q8ihvg==}
+ '@walletconnect/ethereum-provider@2.20.0':
+ resolution: {integrity: sha512-TSu1nr+AzCjM5u7xdnWTGX8ryKuHHb1Za56BD6UU0UPS7ZC2fZ99TVa5Q3Sng9JyksY5p99Iwg7fOtlozc3QYQ==}
'@walletconnect/events@1.0.1':
resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==}
@@ -3720,15 +3656,6 @@ packages:
'@walletconnect/logger@2.1.2':
resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==}
- '@walletconnect/modal-core@2.7.0':
- resolution: {integrity: sha512-oyMIfdlNdpyKF2kTJowTixZSo0PGlCJRdssUN/EZdA6H6v03hZnf09JnwpljZNfir2M65Dvjm/15nGrDQnlxSA==}
-
- '@walletconnect/modal-ui@2.7.0':
- resolution: {integrity: sha512-gERYvU7D7K1ANCN/8vUgsE0d2hnRemfAFZ2novm9aZBg7TEd/4EgB+AqbJ+1dc7GhOL6dazckVq78TgccHb7mQ==}
-
- '@walletconnect/modal@2.7.0':
- resolution: {integrity: sha512-RQVt58oJ+rwqnPcIvRFeMGKuXb9qkgSmwz4noF8JZGUym3gUAzVs+uW2NQ1Owm9XOJAV+sANrtJ+VoVq1ftElw==}
-
'@walletconnect/relay-api@1.0.11':
resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
@@ -3741,18 +3668,30 @@ packages:
'@walletconnect/sign-client@2.19.2':
resolution: {integrity: sha512-a/K5PRIFPCjfHq5xx3WYKHAAF8Ft2I1LtxloyibqiQOoUtNLfKgFB1r8sdMvXM7/PADNPe4iAw4uSE6PrARrfg==}
+ '@walletconnect/sign-client@2.20.0':
+ resolution: {integrity: sha512-5Ao9RVGsgpMTLjVByFfjMbX7RwJM0HvKV7P9ONJwPPo4OiviNyneeOufr2KKZhuwF+QUu5mTE0Lj/euGWSNaOQ==}
+
'@walletconnect/time@1.0.2':
resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==}
'@walletconnect/types@2.19.2':
resolution: {integrity: sha512-/LZWhkVCUN+fcTgQUxArxhn2R8DF+LSd/6Wh9FnpjeK/Sdupx1EPS8okWG6WPAqq2f404PRoNAfQytQ82Xdl3g==}
+ '@walletconnect/types@2.20.0':
+ resolution: {integrity: sha512-oFGHRL/yQbZqBiTA8yvV+PGJYBU/laDAQWFiJZ9Xlv+qN5EzHipW39Ru6qyp8P4DGnbQI6bHPs9bizJ7hkDRKA==}
+
'@walletconnect/universal-provider@2.19.2':
resolution: {integrity: sha512-LkKg+EjcSUpPUhhvRANgkjPL38wJPIWumAYD8OK/g4OFuJ4W3lS/XTCKthABQfFqmiNbNbVllmywiyE44KdpQg==}
+ '@walletconnect/universal-provider@2.20.0':
+ resolution: {integrity: sha512-kzMWXao+RyWfv46nS/owJ99/QhObGkYHhpMxdzl4bae98JXdQ0xhmov3Rvy3GRt5csgJXldoM2VO44B/Fsuj4Q==}
+
'@walletconnect/utils@2.19.2':
resolution: {integrity: sha512-VU5CcUF4sZDg8a2/ov29OJzT3KfLuZqJUM0GemW30dlipI5fkpb0VPenZK7TcdLPXc1LN+Q+7eyTqHRoAu/BIA==}
+ '@walletconnect/utils@2.20.0':
+ resolution: {integrity: sha512-PlglakJ/zhBRUg7yfulfedWgPC0ZoVEYCiniFkCeWfTq03ufvkB3tgBJQkNoHUV7ZgPYxAdSbO3KsKceZzjufw==}
+
'@walletconnect/window-getters@1.0.1':
resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==}
@@ -3770,13 +3709,17 @@ packages:
zod:
optional: true
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.14.0:
- resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ acorn@8.14.1:
+ resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -3877,8 +3820,8 @@ packages:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
- array.prototype.findlastindex@1.2.5:
- resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ array.prototype.findlastindex@1.2.6:
+ resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
engines: {node: '>= 0.4'}
array.prototype.flat@1.3.3:
@@ -3910,6 +3853,10 @@ packages:
ast-types-flow@0.0.8:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
+ async-function@1.0.0:
+ resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+ engines: {node: '>= 0.4'}
+
async-mutex@0.2.6:
resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==}
@@ -3924,12 +3871,12 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axe-core@4.10.2:
- resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
+ axe-core@4.10.3:
+ resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
engines: {node: '>=4'}
- axios@1.8.4:
- resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
+ axios@1.9.0:
+ resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
@@ -3947,9 +3894,6 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- base-x@3.0.11:
- resolution: {integrity: sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==}
-
base-x@5.0.1:
resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==}
@@ -3966,24 +3910,28 @@ packages:
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- bignumber.js@9.1.2:
- resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
+ big.js@6.2.2:
+ resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==}
+
+ bignumber.js@9.3.0:
+ resolution: {integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA==}
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- blakejs@1.2.1:
- resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==}
-
bn.js@4.11.6:
resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==}
- bn.js@4.12.1:
- resolution: {integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==}
+ bn.js@4.12.2:
+ resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==}
+
+ bn.js@5.2.2:
+ resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==}
- bn.js@5.2.1:
- resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+ body-parser@2.2.0:
+ resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==}
+ engines: {node: '>=18'}
bowser@2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
@@ -4031,20 +3979,14 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.24.5:
+ resolution: {integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- bs58@4.0.1:
- resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==}
-
bs58@6.0.0:
resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==}
- bs58check@2.1.2:
- resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==}
-
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -4054,9 +3996,6 @@ packages:
buffer-reverse@1.0.1:
resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==}
- buffer-to-arraybuffer@0.0.5:
- resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==}
-
buffer-xor@1.0.3:
resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
@@ -4085,16 +4024,16 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
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==}
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
engines: {node: '>= 0.4'}
callsites@3.1.0:
@@ -4109,8 +4048,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001695:
- resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==}
+ caniuse-lite@1.0.30001717:
+ resolution: {integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==}
chai@5.2.0:
resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
@@ -4236,22 +4175,30 @@ packages:
engines: {node: '>=18'}
hasBin: true
- consola@3.4.0:
- resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
console-browserify@1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
+ content-disposition@1.0.0:
+ resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==}
+ engines: {node: '>= 0.6'}
+
+ content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
+
cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
@@ -4264,15 +4211,16 @@ packages:
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
engines: {node: '>=18'}
- cookiejar@2.1.4:
- resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==}
-
copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ cors@2.8.5:
+ resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
+ engines: {node: '>= 0.10'}
+
cosmiconfig@8.3.6:
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
@@ -4309,8 +4257,8 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crossws@0.3.1:
- resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==}
+ crossws@0.3.4:
+ resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
crypto-browserify@3.12.1:
resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==}
@@ -4322,17 +4270,13 @@ packages:
css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
- cssstyle@4.3.0:
- resolution: {integrity: sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==}
+ cssstyle@4.3.1:
+ resolution: {integrity: sha512-ZgW+Jgdd7i52AaLYCriF8Mxqft0gD/R9i9wi6RWBhs1pqdPEzPjym7rvRKi397WmQFf3SlyUsszhw+VVCbx79Q==}
engines: {node: '>=18'}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- d@1.0.2:
- resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
- engines: {node: '>=0.12'}
-
damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
@@ -4362,14 +4306,6 @@ packages:
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
- debug@2.6.9:
- resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
@@ -4414,10 +4350,6 @@ packages:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- decompress-response@3.3.0:
- resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
- engines: {node: '>=4'}
-
deep-eql@5.0.2:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
@@ -4448,11 +4380,16 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
+ derive-valtio@0.1.0:
+ resolution: {integrity: sha512-OCg2UsLbXK7GmmpzMXhYkdO64vhJ1ROUUGaTFyHjVwEdMEcTTRj7W1TxLbSBxdY8QLBPCcp66MTyaSy0RpO17A==}
+ peerDependencies:
+ valtio: '*'
+
des.js@1.1.0:
resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
- destr@2.0.3:
- resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
+ destr@2.0.5:
+ resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
detect-browser@5.3.0:
resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
@@ -4466,8 +4403,8 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.3:
- resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ detect-libc@2.0.4:
+ resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
engines: {node: '>=8'}
detect-node-es@1.1.0:
@@ -4505,9 +4442,6 @@ packages:
dom-accessibility-api@0.6.3:
resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
- dom-walk@0.1.2:
- resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
-
domain-browser@4.22.0:
resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==}
engines: {node: '>=10'}
@@ -4533,12 +4467,15 @@ packages:
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- eciesjs@0.4.13:
- resolution: {integrity: sha512-zBdtR4K+wbj10bWPpIOF9DW+eFYQu8miU5ypunh0t4Bvt83ZPlEWgT5Dq/0G6uwEXumZKjfb5BZxYUZQ2Hzn/Q==}
+ eciesjs@0.4.14:
+ resolution: {integrity: sha512-eJAgf9pdv214Hn98FlUzclRMYWF7WfoLlkS9nWMTm1qcCwn6Ad4EGD9lr9HXMBfSrZhYQujRE+p0adPRkctC6A==}
engines: {bun: '>=1', deno: '>=2', node: '>=16'}
- electron-to-chromium@1.5.84:
- resolution: {integrity: sha512-I+DQ8xgafao9Ha6y0qjHHvpZ9OfyA1qKlkHkjywxzniORU2awxyz7f/iVJcULmrF2yrM3nHQf+iDjJtbbexd/g==}
+ ee-first@1.1.1:
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+
+ electron-to-chromium@1.5.149:
+ resolution: {integrity: sha512-UyiO82eb9dVOx8YO3ajDf9jz2kKyt98DEITRdeLPstOEuTlLzDA4Gyq5K9he71TQziU5jUVu2OAu5N48HmQiyQ==}
elliptic@6.6.1:
resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
@@ -4558,11 +4495,15 @@ packages:
encode-utf8@1.0.3:
resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- engine.io-client@6.6.2:
- resolution: {integrity: sha512-TAr+NKeoVTjEVW8P3iHguO1LO6RlUz9O5Y8o7EY0fU+gY1NYqas7NN3slpFtbXEsLMHk0h90fJMfKjRkQ0qUIw==}
+ engine.io-client@6.6.3:
+ resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==}
engine.io-parser@5.2.3:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
@@ -4580,6 +4521,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ entities@6.0.0:
+ resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==}
+ engines: {node: '>=0.12'}
+
env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
@@ -4607,8 +4552,8 @@ packages:
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
@@ -4618,8 +4563,9 @@ packages:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.0.2:
- resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ es-shim-unscopables@1.1.0:
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
+ engines: {node: '>= 0.4'}
es-to-primitive@1.3.0:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
@@ -4628,24 +4574,13 @@ packages:
es-toolkit@1.33.0:
resolution: {integrity: sha512-X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg==}
- es5-ext@0.10.64:
- resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
- engines: {node: '>=0.10'}
-
- es6-iterator@2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
-
- es6-symbol@3.1.4:
- resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
- engines: {node: '>=0.12'}
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
- esbuild@0.25.1:
- resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
+ esbuild@0.25.3:
+ resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
engines: {node: '>=18'}
hasBin: true
@@ -4653,6 +4588,9 @@ packages:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
+ escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
@@ -4673,8 +4611,8 @@ packages:
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.7.0:
- resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==}
+ eslint-import-resolver-typescript@3.10.1:
+ resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -4735,8 +4673,8 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- eslint-plugin-react@7.37.4:
- resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==}
+ eslint-plugin-react@7.37.5:
+ resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -4763,8 +4701,8 @@ packages:
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@9.22.0:
- resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==}
+ eslint@9.26.0:
+ resolution: {integrity: sha512-Hx0MOjPh6uK9oq9nVsATZKE/Wlbai7KFjfCuw9UHaguDW3x+HF0O5nIi3ud39TWgrTjTO5nHxmL3R1eANinWHQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4773,10 +4711,6 @@ packages:
jiti:
optional: true
- esniff@2.0.1:
- resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
- engines: {node: '>=0.10'}
-
espree@10.3.0:
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4812,6 +4746,10 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
+ etag@1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
+
eth-block-tracker@7.1.0:
resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==}
engines: {node: '>=14.0.0'}
@@ -4820,9 +4758,6 @@ packages:
resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==}
engines: {node: '>=14.0.0'}
- eth-lib@0.2.8:
- resolution: {integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==}
-
eth-query@2.1.2:
resolution: {integrity: sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==}
@@ -4832,51 +4767,23 @@ packages:
ethereum-bloom-filters@1.2.0:
resolution: {integrity: sha512-28hyiE7HVsWubqhpVLVmZXFd4ITeHi+BUu05o9isf0GUpMtzBUi+8/gFrGaGYzvGAJQmJ3JKj77Mk9G98T84rA==}
- ethereum-cryptography@0.1.3:
- resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==}
-
ethereum-cryptography@1.2.0:
resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==}
ethereum-cryptography@2.2.1:
resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
- ethereumjs-abi@0.6.8:
- resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==}
- deprecated: This library has been deprecated and usage is discouraged.
-
- ethereumjs-util@6.2.1:
- resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==}
-
- ethereumjs-util@7.1.5:
- resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==}
- engines: {node: '>=10.0.0'}
-
- ethers@6.13.0:
- resolution: {integrity: sha512-+yyQQQWEntY5UVbCv++guA14RRVFm1rSnO1GoLFdrK7/XRWMoktNgyG9UjwxrQqGBfGyFKknNZ81YpUS2emCgg==}
- engines: {node: '>=14.0.0'}
-
- ethers@6.13.5:
- resolution: {integrity: sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==}
+ ethers@6.13.7:
+ resolution: {integrity: sha512-qbaJ0uIrjh+huP1Lad2f2QtzW5dcqSVjIzVH6yWB4dKoMuj2WqYz5aMeeQTCNpAKgTJBM5J9vcc2cYJ23UAimQ==}
engines: {node: '>=14.0.0'}
ethjs-unit@0.1.6:
resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==}
engines: {node: '>=6.5.0', npm: '>=3'}
- ethjs-util@0.1.6:
- resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==}
- engines: {node: '>=6.5.0', npm: '>=3'}
-
- event-emitter@0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
-
eventemitter2@6.4.9:
resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==}
- eventemitter3@4.0.4:
- resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==}
-
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
@@ -4887,19 +4794,34 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
+ eventsource-parser@3.0.1:
+ resolution: {integrity: sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA==}
+ engines: {node: '>=18.0.0'}
+
+ eventsource@3.0.6:
+ resolution: {integrity: sha512-l19WpE2m9hSuyP06+FbuUUf1G+R0SFLrtQfbRb9PRr+oimOfxQhgGCbVaXg5IvZyyTThJsxh6L/srkMiCeBPDA==}
+ engines: {node: '>=18.0.0'}
+
evp_bytestokey@1.0.3:
resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
- expect-type@1.2.0:
- resolution: {integrity: sha512-80F22aiJ3GLyVnS/B3HzgR6RelZVumzj9jkL0Rhz4h0xYbNW9PjlQz5h3J/SShErbXBc295vseR4/MIbVmUbeA==}
+ expect-type@1.2.1:
+ resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==}
engines: {node: '>=12.0.0'}
expect@29.7.0:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- ext@1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
+ express-rate-limit@7.5.0:
+ resolution: {integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ express: ^4.11 || 5 || ^5.0.0-beta.1
+
+ express@5.1.0:
+ resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==}
+ engines: {node: '>= 18'}
extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
@@ -4936,14 +4858,14 @@ packages:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
- fastq@1.18.0:
- resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
+ fastq@1.19.1:
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fdir@6.4.3:
- resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
+ fdir@6.4.4:
+ resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -4969,6 +4891,10 @@ packages:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
+ finalhandler@2.1.0:
+ resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==}
+ engines: {node: '>= 0.8'}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -4989,8 +4915,8 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
@@ -5001,22 +4927,27 @@ packages:
debug:
optional: true
- for-each@0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ for-each@0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
form-data@4.0.2:
resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
engines: {node: '>= 6'}
+ forwarded@0.2.0:
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
+
fp-ts@1.19.3:
resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
- framer-motion@12.4.10:
- resolution: {integrity: sha512-3Msuyjcr1Pb5hjkn4EJcRe1HumaveP0Gbv4DBMKTPKcV/1GSMkQXj+Uqgneys+9DPcZM18Hac9qY9iUEF5LZtg==}
+ framer-motion@12.9.7:
+ resolution: {integrity: sha512-Eo5TYU6sEPPy82GDx32PJm++G+AkBCrzxtEQOWLnpQX896Q3LFrsYhMZ5YO5ct4wL7wyHU6hqlrpYXeexKAevg==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -5029,6 +4960,10 @@ packages:
react-dom:
optional: true
+ fresh@2.0.0:
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
+ engines: {node: '>= 0.8'}
+
fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
@@ -5067,8 +5002,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
get-nonce@1.0.1:
@@ -5119,9 +5054,6 @@ packages:
global-const@0.1.2:
resolution: {integrity: sha512-yb8pTRSbWcdjmKhRfdB1+s7oU9UXTPPcRwd0oPal0WHta7B/3roXz7yGLMU+KhgByoeX/1QOFKY8aCTETexKAg==}
- global@4.4.0:
- resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
-
globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
@@ -5155,20 +5087,20 @@ packages:
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- graphql@16.10.0:
- resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==}
+ graphql@16.11.0:
+ resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
- h3@1.13.1:
- resolution: {integrity: sha512-u/z6Z4YY+ANZ05cRRfsFJadTBrNA6e3jxdU+AN5UCbZSZEUwgHiwjvUEe0k1NoQmAvQmETwr+xB5jd7mhCJuIQ==}
+ h3@1.15.3:
+ resolution: {integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==}
hardhat-watcher@2.5.0:
resolution: {integrity: sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==}
peerDependencies:
hardhat: ^2.0.0
- hardhat@2.22.19:
- resolution: {integrity: sha512-jptJR5o6MCgNbhd7eKa3mrteR+Ggq1exmE5RUL5ydQEVKcZm0sss5laa86yZ0ixIavIvF4zzS7TdGDuyopj0sQ==}
+ hardhat@2.23.0:
+ resolution: {integrity: sha512-xnORx1LgX46TxylOFme96JmSAIjXuHUVpOlUnaCt8MKMGsgy0NGsfPo5rJI/ncCBPLFLURGfZUQ2Uc6ZYN4kYg==}
hasBin: true
peerDependencies:
ts-node: '*'
@@ -5220,9 +5152,6 @@ packages:
headers-polyfill@4.0.3:
resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==}
- hey-listen@1.0.8:
- resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
-
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
@@ -5240,9 +5169,6 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-https@1.0.0:
- resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==}
-
http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
@@ -5258,8 +5184,9 @@ packages:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
- human-id@1.0.2:
- resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
+ human-id@4.1.1:
+ resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==}
+ hasBin: true
husky@9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
@@ -5293,8 +5220,8 @@ packages:
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
imurmurhash@0.1.4:
@@ -5319,6 +5246,10 @@ packages:
io-ts@1.10.4:
resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==}
+ ipaddr.js@1.9.1:
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
+
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
@@ -5333,8 +5264,8 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-async-function@2.1.0:
- resolution: {integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==}
+ is-async-function@2.1.1:
+ resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
is-bigint@1.1.0:
@@ -5345,12 +5276,12 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.2.1:
- resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
+ is-boolean-object@1.2.2:
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
- is-bun-module@1.3.0:
- resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
+ is-bun-module@2.0.0:
+ resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
@@ -5380,9 +5311,6 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-function@1.0.2:
- resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
-
is-generator-function@1.1.0:
resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
engines: {node: '>= 0.4'}
@@ -5425,6 +5353,9 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
+
is-regex@1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
@@ -5468,8 +5399,8 @@ packages:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- is-weakref@1.1.0:
- resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
+ is-weakref@1.1.1:
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
engines: {node: '>= 0.4'}
is-weakset@2.0.4:
@@ -5738,14 +5669,14 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lit-element@3.3.3:
- resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==}
+ lit-element@4.2.0:
+ resolution: {integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==}
- lit-html@2.8.0:
- resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==}
+ lit-html@3.3.0:
+ resolution: {integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==}
- lit@2.8.0:
- resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
+ lit@3.1.0:
+ resolution: {integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==}
localforage@1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
@@ -5797,8 +5728,8 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-sdk@29.0.3:
- resolution: {integrity: sha512-NX2fOlVb9Gu8UR1fawFAbLb3PTwD7FBo3GDcJxyWuRw1SdjrqMD9oYulwy06mI1Hho1gFs4V4sAsm9KDOJIaqQ==}
+ magic-sdk@29.0.6:
+ resolution: {integrity: sha512-qsNZoQkCtJc/BAe+PdTbtEQKH77zoR9IjaMRDkXta5KRGfVNy/yEiazwFi7hH5V098gtGyDa1FWlFuEAvUU8Jg==}
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
@@ -5824,10 +5755,18 @@ packages:
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -5839,6 +5778,9 @@ packages:
resolution: {integrity: sha512-LJKTl4iVNTndhL+3Uz/tfkjD0klIWsHlUzgtuNnNrsf7bAlXR30m+xYB7lHr5Z/l6e/yAIsr26Dabx6Buo4VGQ==}
engines: {node: '>= 7.6.0'}
+ micro-eth-signer@0.14.0:
+ resolution: {integrity: sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==}
+
micro-ftch@0.3.1:
resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==}
@@ -5848,6 +5790,9 @@ packages:
peerDependencies:
react: '>=16.8.0'
+ micro-packed@0.7.3:
+ resolution: {integrity: sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==}
+
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
@@ -5860,21 +5805,17 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.54.0:
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- mime@3.0.0:
- resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
- engines: {node: '>=10.0.0'}
- hasBin: true
-
- mimic-response@1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
-
- min-document@2.19.0:
- resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==}
+ mime-types@3.0.1:
+ resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==}
+ engines: {node: '>= 0.6'}
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
@@ -5924,17 +5865,14 @@ packages:
engines: {node: '>= 14.0.0'}
hasBin: true
- motion-dom@12.4.10:
- resolution: {integrity: sha512-ISP5u6FTceoD6qKdLupIPU/LyXBrxGox+P2e3mBbm1+pLdlBbwv01YENJr7+1WZnW5ucVKzFScYsV1eXTCG4Xg==}
-
- motion-utils@12.4.10:
- resolution: {integrity: sha512-NPwZd94V013SwRf++jMrk2+HEBgPkeIE2RiOzhAuuQlqxMJPkKt/LXVh6Upl+iN8oarSGD2dlY5/bqgsYXDABA==}
+ motion-dom@12.9.6:
+ resolution: {integrity: sha512-IK9pm5zU8BIp3FCoUGF3T7AHVLVOlXxlwco/bIbcnpBtyYb2gDQhdOzUh2KSDJVjYl1MZ9vdq8tnFTTahX2lfg==}
- motion@10.16.2:
- resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
+ motion-utils@12.9.4:
+ resolution: {integrity: sha512-BW3I65zeM76CMsfh3kHid9ansEJk9Qvl+K5cu4DVHKGsI52n76OJ4z2CUJUV+Mn3uEP9k1JJA3tClG0ggSrRcg==}
- motion@12.4.10:
- resolution: {integrity: sha512-AM21Lyfn7ZHO+nBuHJEA2REFgS3kUM83CLZnzM0ZY1/sVeKGkCtV4LF4O/YsQXyZ9mrUrrnTaUkKquS4eaIYjg==}
+ motion@12.9.7:
+ resolution: {integrity: sha512-Vh5NJxec7lZ4iNZXEhdweJpKwP2gjgevL/4Dx+dfMc7ABPMnLJaBUkz91TG/ZONhz/GUAy0Mw3Xd5rYtnxNRmw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -5951,14 +5889,11 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- ms@2.0.0:
- resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msw@2.7.3:
- resolution: {integrity: sha512-+mycXv8l2fEAjFZ5sjrtjJDmm2ceKGjrNbBr1durRg6VkU9fNUE/gsmQ51hWbHqs+l35W1iM+ZsmOD9Fd6lspw==}
+ msw@2.7.6:
+ resolution: {integrity: sha512-P+rwn43ktxN8ghcl8q+hSAUlEi0PbJpDhGmDkw4zeUnRj3hBCVynWD+dTu38yLYKCE9ZF1OYcvpy7CTBRcqkZA==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -5977,16 +5912,22 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.11:
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ napi-postinstall@0.2.3:
+ resolution: {integrity: sha512-Mi7JISo/4Ij2tDZ2xBE2WH+/KvVlkhA6juEjpEeRAVPNCpN3nxJo/5FhDNKgBcdmcmhaH6JjgST4xY/23ZYK0w==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+ hasBin: true
+
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- next-tick@1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
next@14.2.3:
resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==}
@@ -6012,9 +5953,6 @@ packages:
node-addon-api@2.0.2:
resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==}
- node-addon-api@5.1.0:
- resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==}
-
node-addon-api@7.1.1:
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
@@ -6041,11 +5979,14 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
+ node-mock-http@1.0.0:
+ resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==}
+
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- node-stdlib-browser@1.3.0:
- resolution: {integrity: sha512-g/koYzOr9Fb1Jc+tHUHlFd5gODjGn48tHexUK8q6iqOVriEgSnd3/1T7myBYc+0KBVze/7F7n65ec9rW6OD7xw==}
+ node-stdlib-browser@1.3.1:
+ resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==}
engines: {node: '>=10'}
normalize-path@3.0.0:
@@ -6056,8 +5997,8 @@ packages:
resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==}
engines: {node: '>=6.5.0', npm: '>=3'}
- nwsapi@2.2.18:
- resolution: {integrity: sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==}
+ nwsapi@2.2.20:
+ resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==}
obj-multiplex@1.0.0:
resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==}
@@ -6066,8 +6007,8 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
object-is@1.1.6:
@@ -6082,8 +6023,8 @@ packages:
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
- object.entries@1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ object.entries@1.1.9:
+ resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
engines: {node: '>= 0.4'}
object.fromentries@2.0.8:
@@ -6101,15 +6042,9 @@ packages:
obliterator@2.0.5:
resolution: {integrity: sha512-42CPE9AhahZRsMNslczq0ctAEtqk8Eka26QofnqC346BZdHDySk3LWka23LI7ULIw11NmltpiLagIq8gBozxTw==}
- oboe@2.1.5:
- resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==}
-
ofetch@1.4.1:
resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
- ohash@1.1.4:
- resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
-
oidc-client-ts@2.4.0:
resolution: {integrity: sha512-WijhkTrlXK2VvgGoakWJiBdfIsVGz6CFzgjNNqZU1hPKV2kyeEaJgLs7RwuiSp2WhLfWBQuLvr2SxVlZnk3N1w==}
engines: {node: '>=12.13.0'}
@@ -6117,6 +6052,10 @@ packages:
on-exit-leak-free@0.2.0:
resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==}
+ on-finished@2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -6192,8 +6131,8 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-manager-detector@0.2.8:
- resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
+ package-manager-detector@0.2.11:
+ resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==}
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
@@ -6209,9 +6148,6 @@ packages:
resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
engines: {node: '>= 0.10'}
- parse-headers@2.0.6:
- resolution: {integrity: sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==}
-
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -6225,8 +6161,12 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+
+ parseurl@1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
@@ -6253,6 +6193,10 @@ packages:
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
+ path-to-regexp@8.2.0:
+ resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
+ engines: {node: '>=16'}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -6268,30 +6212,30 @@ packages:
resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
engines: {node: '>=0.12'}
- pg-cloudflare@1.1.1:
- resolution: {integrity: sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==}
+ pg-cloudflare@1.2.5:
+ resolution: {integrity: sha512-OOX22Vt0vOSRrdoUPKJ8Wi2OpE/o/h9T8X1s4qSkCedbNah9ei2W2765be8iMVxQUsvgT7zIAT2eIa9fs5+vtg==}
- pg-connection-string@2.7.0:
- resolution: {integrity: sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==}
+ pg-connection-string@2.8.5:
+ resolution: {integrity: sha512-Ni8FuZ8yAF+sWZzojvtLE2b03cqjO5jNULcHFfM9ZZ0/JXrgom5pBREbtnAw7oxsxJqHw9Nz/XWORUEL3/IFow==}
pg-int8@1.0.1:
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
engines: {node: '>=4.0.0'}
- pg-pool@3.8.0:
- resolution: {integrity: sha512-VBw3jiVm6ZOdLBTIcXLNdSotb6Iy3uOCwDGFAksZCXmi10nyRvnP2v3jl4d+IsLYRyXf6o9hIm/ZtUzlByNUdw==}
+ pg-pool@3.9.6:
+ resolution: {integrity: sha512-rFen0G7adh1YmgvrmE5IPIqbb+IgEzENUm+tzm6MLLDSlPRoZVhzU1WdML9PV2W5GOdRA9qBKURlbt1OsXOsPw==}
peerDependencies:
pg: '>=8.0'
- pg-protocol@1.8.0:
- resolution: {integrity: sha512-jvuYlEkL03NRvOoyoRktBK7+qU5kOvlAwvmrH8sr3wbLrOdVWsRxQfz8mMy9sZFsqJ1hEWNfdWKI4SAmoL+j7g==}
+ pg-protocol@1.9.5:
+ resolution: {integrity: sha512-DYTWtWpfd5FOro3UnAfwvhD8jh59r2ig8bPtc9H8Ds7MscE/9NYruUQWFAOuraRl29jwcT2kyMFQ3MxeaVjUhg==}
pg-types@2.2.0:
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
engines: {node: '>=4'}
- pg@8.14.1:
- resolution: {integrity: sha512-0TdbqfjwIun9Fm/r89oB7RFQ0bLgduAhiIqIXOsyKoiC/L54DbuAAzIEN/9Op0f1Po9X7iCPXGoa/Ah+2aI8Xw==}
+ pg@8.15.6:
+ resolution: {integrity: sha512-yvao7YI3GdmmrslNVsZgx9PfntfWrnXwtR+K/DjI0I/sTKif4Z623um+sjVZ1hk5670B+ODjvHDAckKdjmPTsg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
pg-native: '>=3.0.1'
@@ -6339,6 +6283,10 @@ packages:
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
+ pkce-challenge@5.0.0:
+ resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==}
+ engines: {node: '>=16.20.0'}
+
pkg-dir@5.0.0:
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
engines: {node: '>=10'}
@@ -6351,18 +6299,14 @@ packages:
resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==}
engines: {node: '>=12.0.0'}
- possible-typed-array-names@1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ possible-typed-array-names@1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.1:
- resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
- engines: {node: ^10 || ^12 || >=14}
-
postcss@8.5.3:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
@@ -6383,8 +6327,8 @@ packages:
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
engines: {node: '>=0.10.0'}
- preact@10.25.4:
- resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==}
+ preact@10.26.5:
+ resolution: {integrity: sha512-fmpDkgfGU6JYux9teDWLhj9mKN55tyepwYbxHgQuIxbWQzgFg5vk7Mrrtfx7xRxq798ynkY4DDDxZr235Kk+4w==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -6395,8 +6339,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.4.2:
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ prettier@3.5.3:
+ resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
engines: {node: '>=14'}
hasBin: true
@@ -6426,8 +6370,12 @@ packages:
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- proxy-compare@2.5.1:
- resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==}
+ proxy-addr@2.0.7:
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
+
+ proxy-compare@2.6.0:
+ resolution: {integrity: sha512-8xuCeM3l8yqdmbPoYeLbrAXCBWu19XEYc5/F28f5qOaoAIMyfmBUkl5axiK+x9olUvRlcekvnm98AP9RDngOIw==}
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -6462,9 +6410,8 @@ packages:
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
engines: {node: '>=0.6'}
- query-string@5.1.1:
- resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==}
- engines: {node: '>=0.10.0'}
+ quansync@0.2.10:
+ resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
@@ -6492,12 +6439,20 @@ packages:
randomfill@1.0.4:
resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
+ range-parser@1.2.1:
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
+
raw-body@2.5.2:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- react-apple-signin-auth@1.1.0:
- resolution: {integrity: sha512-cEFj5kVBa0R7K2Ah/F0kVtttVX19YZ0Fm6tSAICxEj9SmP6kwYHUysZ8N558cHHG09/cK+NTZ9pUxGVNXlG2Lg==}
+ raw-body@3.0.0:
+ resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==}
+ engines: {node: '>= 0.8'}
+
+ react-apple-signin-auth@1.1.1:
+ resolution: {integrity: sha512-iRRonHdYQUuqDX1uBBdDWB65tHHzoHiEd5GzO9KqvTnWK3n2C7kZ6GIXCsNrtSBLZjonQQykzyxb3f60PVPFNA==}
peerDependencies:
react: '>= 16.8.0'
react-dom: '>= 16.8.0'
@@ -6512,13 +6467,13 @@ packages:
peerDependencies:
react: ^18.3.1
- react-dom@19.0.0:
- resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
+ react-dom@19.1.0:
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
peerDependencies:
- react: ^19.0.0
+ react: ^19.1.0
- react-hook-form@7.54.2:
- resolution: {integrity: sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg==}
+ react-hook-form@7.56.2:
+ resolution: {integrity: sha512-vpfuHuQMF/L6GpuQ4c3ZDo+pRYxIi40gQqsCmmfUBwm+oqvBhKhwghCuj2o00YCgSfU6bR9KC/xnQGWm3Gr08A==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
@@ -6532,8 +6487,8 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- react-refresh@0.14.2:
- resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ react-refresh@0.17.0:
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
engines: {node: '>=0.10.0'}
react-remove-scroll-bar@2.3.8:
@@ -6546,16 +6501,6 @@ packages:
'@types/react':
optional: true
- react-remove-scroll@2.6.2:
- resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
react-remove-scroll@2.6.3:
resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
engines: {node: '>=10'}
@@ -6566,15 +6511,15 @@ packages:
'@types/react':
optional: true
- react-router-dom@7.4.1:
- resolution: {integrity: sha512-L3/4tig0Lvs6m6THK0HRV4eHUdpx0dlJasgCxXKnavwhh4tKYgpuZk75HRYNoRKDyDWi9QgzGXsQ1oQSBlWpAA==}
+ react-router-dom@7.5.3:
+ resolution: {integrity: sha512-cK0jSaTyW4jV9SRKAItMIQfWZ/D6WEZafgHuuCb9g+SjhLolY78qc+De4w/Cz9ybjvLzShAmaIMEXt8iF1Cm+A==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
react-dom: '>=18'
- react-router@7.4.1:
- resolution: {integrity: sha512-Vmizn9ZNzxfh3cumddqv3kLOKvc7AskUT0dC1prTabhiEi0U4A33LmkDOJ79tXaeSqCqMBXBU/ySX88W85+EUg==}
+ react-router@7.5.3:
+ resolution: {integrity: sha512-3iUDM4/fZCQ89SXlDa+Ph3MevBrozBAI655OAfWQlTm9nBR0IKlrmNwFow5lPHttbwvITZfkeeeZFP6zt3F7pw==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: '>=18'
@@ -6597,8 +6542,8 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- react@19.0.0:
- resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
+ react@19.1.0:
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
engines: {node: '>=0.10.0'}
read-yaml-file@1.1.0:
@@ -6632,9 +6577,6 @@ packages:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
regexp.prototype.flags@1.5.4:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
@@ -6672,8 +6614,8 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@3.0.2:
@@ -6688,15 +6630,15 @@ packages:
ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
- rlp@2.2.7:
- resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==}
- hasBin: true
-
- rollup@4.31.0:
- resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
+ rollup@4.40.1:
+ resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
rrweb-cssom@0.7.1:
resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
@@ -6741,15 +6683,8 @@ packages:
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- scheduler@0.25.0:
- resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
-
- scrypt-js@3.0.1:
- resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==}
-
- secp256k1@4.0.4:
- resolution: {integrity: sha512-6JfvwvjUOn8F/jUoBY2Q1v5WY5XS+rj8qSe0v8Y4ezH4InLgTEeOOPQsRll9OV429Pvo6BCHGavIyJfr3TAhsw==}
- engines: {node: '>=18.0.0'}
+ scheduler@0.26.0:
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -6759,14 +6694,22 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
engines: {node: '>=10'}
hasBin: true
+ send@1.2.0:
+ resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==}
+ engines: {node: '>= 18'}
+
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ serve-static@2.2.0:
+ resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==}
+ engines: {node: '>= 18'}
+
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
@@ -6833,12 +6776,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-concat@1.0.1:
- resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
-
- simple-get@2.8.2:
- resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==}
-
skin-tone@2.0.0:
resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==}
engines: {node: '>=8'}
@@ -6894,8 +6831,8 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- stable-hash@0.0.4:
- resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
+ stable-hash@0.0.5:
+ resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
@@ -6912,8 +6849,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.8.1:
- resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+ std-env@3.9.0:
+ resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
stream-browserify@3.0.0:
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
@@ -6931,10 +6868,6 @@ packages:
strict-event-emitter@0.5.1:
resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
- strict-uri-encode@1.1.0:
- resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
- engines: {node: '>=0.10.0'}
-
strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
@@ -7000,8 +6933,8 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strnum@1.0.5:
- resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+ strnum@1.1.2:
+ resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==}
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
@@ -7042,14 +6975,11 @@ packages:
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- tailwind-merge@3.0.2:
- resolution: {integrity: sha512-l7z+OYZ7mu3DTqrL88RiKrKIqO3NcpEO8V/Od04bNpvk0kiIFndGEoqfuzvj4yuhRkHKjRkII2z+KS2HfPcSxw==}
-
- tailwindcss@4.0.12:
- resolution: {integrity: sha512-bT0hJo91FtncsAMSsMzUkoo/iEU0Xs5xgFgVC9XmdM9bw5MhZuQFjPNl6wxAE0SiQF/YTZJa+PndGWYSDtuxAg==}
+ tailwind-merge@3.2.0:
+ resolution: {integrity: sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==}
- tailwindcss@4.0.14:
- resolution: {integrity: sha512-92YT2dpt671tFiHH/e1ok9D987N9fHD5VWoly1CdPD/Cd1HMglvZwP3nx2yTj2lbXDAHt8QssZkxTLCCTNL+xw==}
+ tailwindcss@4.1.5:
+ resolution: {integrity: sha512-nYtSPfWGDiWgCkwQG/m+aX83XCwf62sBgg3bIlNiiOcggnS1x3uVRDAuyelBFL+vJdOPPCGElxv9DjHJjRHiVA==}
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
@@ -7076,18 +7006,14 @@ packages:
thread-stream@0.15.2:
resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==}
- timeago-react@3.0.6:
- resolution: {integrity: sha512-4ywnCX3iFjdp84WPK7gt8s4n0FxXbYM+xv8hYL73p83dpcMxzmO+0W4xJuxflnkWNvum5aEaqTe6LZ3lUIudjQ==}
+ timeago-react@3.0.7:
+ resolution: {integrity: sha512-5LSQuq+mzfEpMHkJQgMWnOs27dGh25aUQhffQpAW6q431vVVmHP194KYsM4bhzli0XfohUgN8+r3Pq6GVprN4A==}
peerDependencies:
- react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
timeago.js@4.0.2:
resolution: {integrity: sha512-a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==}
- timed-out@4.0.1:
- resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
- engines: {node: '>=0.10.0'}
-
timers-browserify@2.0.12:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
@@ -7108,8 +7034,8 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.12:
- resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
+ tinyglobby@0.2.13:
+ resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
engines: {node: '>=12.0.0'}
tinypool@1.0.2:
@@ -7124,11 +7050,11 @@ packages:
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
- tldts-core@6.1.84:
- resolution: {integrity: sha512-NaQa1W76W2aCGjXybvnMYzGSM4x8fvG2AN/pla7qxcg0ZHbooOPhA8kctmOZUDfZyhDL27OGNbwAeig8P4p1vg==}
+ tldts-core@6.1.86:
+ resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
- tldts@6.1.84:
- resolution: {integrity: sha512-aRGIbCIF3teodtUFAYSdQONVmDRy21REM3o6JnqWn5ZkQBJJ4gHxhw6OfwQ+WkSAi3ASamrS4N4nyazWx6uTYg==}
+ tldts@6.1.86:
+ resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
hasBin: true
tmp@0.0.33:
@@ -7163,8 +7089,8 @@ packages:
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ tr46@5.1.1:
+ resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
tree-kill@1.2.2:
@@ -7181,14 +7107,14 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
- ts-api-utils@2.0.1:
- resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ ts-api-utils@2.1.0:
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
engines: {node: '>=18.12'}
peerDependencies:
typescript: '>=4.8.4'
- tsconfck@3.1.4:
- resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==}
+ tsconfck@3.1.5:
+ resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==}
engines: {node: ^18 || >=20}
hasBin: true
peerDependencies:
@@ -7203,9 +7129,6 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
-
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
@@ -7255,12 +7178,6 @@ packages:
resolution: {integrity: sha512-sJhxfBaN14pYj//xxAG6zAyStkE2j4HI9JVXVMob35SGob6dz/HuSqV/4QlVqw0uKAkwc1lXIsnykbe8RLmOOw==}
hasBin: true
- tweetnacl-util@0.15.1:
- resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==}
-
- tweetnacl@1.0.3:
- resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -7281,12 +7198,13 @@ packages:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- type-fest@4.37.0:
- resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==}
+ type-fest@4.40.1:
+ resolution: {integrity: sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==}
engines: {node: '>=16'}
- type@2.7.3:
- resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
+ type-is@2.0.1:
+ resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
+ engines: {node: '>= 0.6'}
typed-array-buffer@1.0.3:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
@@ -7307,8 +7225,8 @@ packages:
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typescript-eslint@8.26.1:
- resolution: {integrity: sha512-t/oIs9mYyrwZGRpDv3g+3K6nZ5uhKEMt2oNmAPwaY4/ye0+EH4nXIPYNtkYFS6QHm+1DFg34DbglYBz5P9Xysg==}
+ typescript-eslint@8.31.1:
+ resolution: {integrity: sha512-j6DsEotD/fH39qKzXTQRwYYWlt7D+0HmfpOK+DVhwJOFLcdmn92hq3mBb7HlKJHbjjI/gTOqEcc9d6JfpFf/VA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -7319,13 +7237,13 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.8.2:
- resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.5.4:
- resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+ ufo@1.6.1:
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
uint8arrays@3.1.0:
resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==}
@@ -7344,9 +7262,6 @@ packages:
resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==}
engines: {node: '>=14.0'}
- unenv@1.10.0:
- resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
-
unicode-emoji-modifier-base@1.0.0:
resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==}
engines: {node: '>=4'}
@@ -7363,27 +7278,30 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unstorage@1.14.4:
- resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==}
+ unrs-resolver@1.7.2:
+ resolution: {integrity: sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A==}
+
+ unstorage@1.16.0:
+ resolution: {integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==}
peerDependencies:
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
'@azure/data-tables': ^13.3.0
- '@azure/identity': ^4.5.0
+ '@azure/identity': ^4.6.0
'@azure/keyvault-secrets': ^4.9.0
'@azure/storage-blob': ^12.26.0
- '@capacitor/preferences': ^6.0.3
- '@deno/kv': '>=0.8.4'
+ '@capacitor/preferences': ^6.0.3 || ^7.0.0
+ '@deno/kv': '>=0.9.0'
'@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
'@upstash/redis': ^1.34.3
- '@vercel/blob': '>=0.27.0'
+ '@vercel/blob': '>=0.27.1'
'@vercel/kv': ^1.0.1
aws4fetch: ^1.0.20
db0: '>=0.2.1'
idb-keyval: ^6.2.1
ioredis: ^5.4.2
- uploadthing: ^7.4.1
+ uploadthing: ^7.4.4
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -7422,8 +7340,8 @@ packages:
uploadthing:
optional: true
- update-browserslist-db@1.1.2:
- resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==}
+ update-browserslist-db@1.1.3:
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -7434,9 +7352,6 @@ packages:
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- url-set-query@1.0.0:
- resolution: {integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==}
-
url@0.11.4:
resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
engines: {node: '>= 0.4'}
@@ -7500,8 +7415,8 @@ packages:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- valtio@1.11.2:
- resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
+ valtio@1.13.2:
+ resolution: {integrity: sha512-Qik0o+DSy741TmkqmRfjq+0xpZBXi/Y6+fXZLn0xNF1z/waFMbE3rkivv5Zcf9RrMUp6zswf2J7sbh2KBlba5A==}
engines: {node: '>=12.20.0'}
peerDependencies:
'@types/react': '>=16.8'
@@ -7512,6 +7427,10 @@ packages:
react:
optional: true
+ vary@1.1.2:
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
+
viem@2.23.2:
resolution: {integrity: sha512-NVmW/E0c5crMOtbEAqMF0e3NmvQykFXhLOc/CkLIXOlzHSA6KXVz3CYVmaKqBF8/xtjsjHAGjdJN3Ru1kFJLaA==}
peerDependencies:
@@ -7520,8 +7439,8 @@ packages:
typescript:
optional: true
- viem@2.28.0:
- resolution: {integrity: sha512-Z4W5O1pe+6pirYTFm451FcZmfGAUxUWt2L/eWC+YfTF28j/8rd7q6MBAi05lMN4KhLJjhN0s5YGIPB+kf1L20g==}
+ viem@2.28.4:
+ resolution: {integrity: sha512-X/UTf3NX5mzh74tBsoZEGDAVqC8UrUxhRJw4nDfJwuFmZoszqaO9Ht1Wjs8z8JmnUENmAkP91WJBwfTua5KkaQ==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -7551,8 +7470,8 @@ packages:
vite:
optional: true
- vite@5.4.14:
- resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
+ vite@5.4.19:
+ resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -7582,8 +7501,8 @@ packages:
terser:
optional: true
- vite@6.2.1:
- resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==}
+ vite@6.3.5:
+ resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -7654,8 +7573,8 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- wagmi@2.15.0:
- resolution: {integrity: sha512-qG+ltkSzIqjLv/27dwWzq4m3Pg8/DkgunFgn+HlpysaHnyYOtBnKKzZUVxSpeNf8teVo+aF6YjWcmtLSY7E9NQ==}
+ wagmi@2.15.2:
+ resolution: {integrity: sha512-LbPr4QnZ9ixhlLyPhN2ajzMJaLKBArD2e9oVXDIEXe2qk+X8lviNRPmwymy9eF25S8B4kL7v4eeEbxQQLNw9XQ==}
peerDependencies:
'@tanstack/react-query': '>=5.0.0'
react: '>=18'
@@ -7668,78 +7587,30 @@ packages:
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- web3-core-helpers@1.5.2:
- resolution: {integrity: sha512-U7LJoeUdQ3aY9t5gU7t/1XpcApsWm+4AcW5qKl/44ZxD44w0Dmsq1c5zJm3GuLr/a9MwQfXK4lpmvxVQWHHQRg==}
+ web3-utils@1.10.4:
+ resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==}
engines: {node: '>=8.0.0'}
- web3-core-method@1.5.2:
- resolution: {integrity: sha512-/mC5t9UjjJoQmJJqO5nWK41YHo+tMzFaT7Tp7jDCQsBkinE68KsUJkt0jzygpheW84Zra0DVp6q19gf96+cugg==}
- engines: {node: '>=8.0.0'}
+ webextension-polyfill@0.10.0:
+ resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==}
- web3-core-promievent@1.5.2:
- resolution: {integrity: sha512-5DacbJXe98ozSor7JlkTNCy6G8945VunRRkPxMk98rUrg60ECVEM/vuefk1atACzjQsKx6tmLZuHxbJQ64TQeQ==}
- engines: {node: '>=8.0.0'}
+ webidl-conversions@3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- web3-core-requestmanager@1.5.2:
- resolution: {integrity: sha512-oRVW9OrAsXN2JIZt68OEg1Mb1A9a/L3JAGMv15zLEFEnJEGw0KQsGK1ET2kvZBzvpFd5G0EVkYCnx7WDe4HSNw==}
- engines: {node: '>=8.0.0'}
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
- web3-core-subscriptions@1.5.2:
- resolution: {integrity: sha512-hapI4rKFk22yurtIv0BYvkraHsM7epA4iI8Np+HuH6P9DD0zj/llaps6TXLM9HyacLBRwmOLZmr+pHBsPopUnQ==}
- engines: {node: '>=8.0.0'}
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
- web3-core@1.5.2:
- resolution: {integrity: sha512-sebMpQbg3kbh3vHUbHrlKGKOxDWqjgt8KatmTBsTAWj/HwWYVDzeX+2Q84+swNYsm2DrTBVFlqTErFUwPBvyaA==}
- engines: {node: '>=8.0.0'}
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
- web3-eth-iban@1.5.2:
- resolution: {integrity: sha512-C04YDXuSG/aDwOHSX+HySBGb0KraiAVt+/l1Mw7y/fCUrKC/K0yYzMYqY/uYOcvLtepBPsC4ZfUYWUBZ2PO8Vg==}
- engines: {node: '>=8.0.0'}
-
- web3-providers-http@1.5.2:
- resolution: {integrity: sha512-dUNFJc9IMYDLZnkoQX3H4ZjvHjGO6VRVCqrBrdh84wPX/0da9dOA7DwIWnG0Gv3n9ybWwu5JHQxK4MNQ444lyA==}
- engines: {node: '>=8.0.0'}
-
- web3-providers-ipc@1.5.2:
- resolution: {integrity: sha512-SJC4Sivt4g9LHKlRy7cs1jkJgp7bjrQeUndE6BKs0zNALKguxu6QYnzbmuHCTFW85GfMDjhvi24jyyZHMnBNXQ==}
- engines: {node: '>=8.0.0'}
-
- web3-providers-ws@1.5.2:
- resolution: {integrity: sha512-xy9RGlyO8MbJDuKv2vAMDkg+en+OvXG0CGTCM2BTl6l1vIdHpCa+6A/9KV2rK8aU9OBZ7/Pf+Y19517kHVl9RA==}
- engines: {node: '>=8.0.0'}
-
- web3-utils@1.10.4:
- resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==}
- engines: {node: '>=8.0.0'}
-
- web3-utils@1.5.2:
- resolution: {integrity: sha512-quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==}
- engines: {node: '>=8.0.0'}
-
- webextension-polyfill@0.10.0:
- resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==}
-
- webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
-
- webidl-conversions@7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
-
- websocket@1.0.35:
- resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
- engines: {node: '>=4.0.0'}
-
- whatwg-encoding@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
-
- whatwg-mimetype@4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
-
- whatwg-url@14.1.1:
- resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
+ whatwg-url@14.2.0:
+ resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
@@ -7760,8 +7631,8 @@ packages:
which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+ which-typed-array@1.1.19:
+ resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
engines: {node: '>= 0.4'}
which@2.0.2:
@@ -7852,30 +7723,18 @@ packages:
utf-8-validate:
optional: true
- ws@8.5.0:
- resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
+ ws@8.18.2:
+ resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
utf-8-validate:
optional: true
- xhr-request-promise@0.1.3:
- resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==}
-
- xhr-request@1.1.0:
- resolution: {integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==}
-
- xhr2-cookies@1.1.0:
- resolution: {integrity: sha512-hjXUA6q+jl/bd8ADHcVfFsSPIf+tyLIjuO9TwJC9WI6JP2zKcS7C+p56I9kCLLsaCiNT035iYvEUUzdEFj/8+g==}
-
- xhr@2.6.0:
- resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==}
-
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -7898,11 +7757,6 @@ packages:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- yaeti@0.0.6:
- resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
- engines: {node: '>=0.10.32'}
- deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
-
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
@@ -7942,6 +7796,17 @@ packages:
resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
engines: {node: '>=18'}
+ zod-to-json-schema@3.24.5:
+ resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==}
+ peerDependencies:
+ zod: ^3.24.1
+
+ zod@3.22.4:
+ resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
+
+ zod@3.24.4:
+ resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==}
+
zustand@5.0.0:
resolution: {integrity: sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==}
engines: {node: '>=12.20.0'}
@@ -7962,235 +7827,196 @@ packages:
snapshots:
- 0xsequence@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/account': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/api': 2.3.9
- '@0xsequence/auth': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/guard': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/indexer': 2.3.9
- '@0xsequence/metadata': 2.3.9
- '@0xsequence/migration': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/provider': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/relayer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/sessions': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/signhub': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/wallet': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/abi@2.3.9': {}
-
- '@0xsequence/account@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/migration': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/relayer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/sessions': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/wallet': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/api@2.3.9': {}
-
- '@0xsequence/auth@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/account': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/api': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/ethauth': 1.0.0(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/indexer': 2.3.9
- '@0xsequence/metadata': 2.3.9
- '@0xsequence/migration': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/sessions': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/signhub': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/wallet': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/core@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/core@2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/utils': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/design-system@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-aspect-ratio': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-checkbox': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-collapsible': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-dialog': 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-dropdown-menu': 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-progress': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-radio-group': 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-select': 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-switch': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-tabs': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-toast': 1.2.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-tooltip': 1.1.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ 0xsequence@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ dependencies:
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/account': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/api': 2.3.11
+ '@0xsequence/auth': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/guard': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/indexer': 2.3.11
+ '@0xsequence/metadata': 2.3.11
+ '@0xsequence/migration': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/provider': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/relayer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/sessions': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/signhub': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/wallet': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
+ '@0xsequence/abi@2.3.11': {}
+
+ '@0xsequence/account@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/migration': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/relayer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/sessions': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/wallet': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
+ '@0xsequence/api@2.3.11': {}
+
+ '@0xsequence/auth@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/account': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/api': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/ethauth': 1.0.0(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/indexer': 2.3.11
+ '@0xsequence/metadata': 2.3.11
+ '@0xsequence/migration': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/sessions': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/signhub': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/wallet': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
+ '@0xsequence/core@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
+ '@0xsequence/design-system@2.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-aspect-ratio': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-checkbox': 1.2.3(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-collapsible': 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-dropdown-menu': 2.1.12(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-progress': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-radio-group': 1.3.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-select': 2.2.2(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-switch': 1.2.2(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-tabs': 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-toast': 1.2.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-tooltip': 1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
class-variance-authority: 0.7.1
clsx: 2.1.1
- motion: 12.4.10(@emotion/is-prop-valid@0.8.8)(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)
- react-hook-form: 7.54.2(react@19.0.0)
- tailwind-merge: 3.0.2
+ motion: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-hook-form: 7.56.2(react@19.1.0)
+ tailwind-merge: 3.2.0
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- '@0xsequence/ethauth@1.0.0(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/ethauth@1.0.0(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
js-base64: 3.7.7
- '@0xsequence/guard@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/guard@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/account': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/signhub': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/account': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/signhub': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/indexer@2.3.9': {}
+ '@0xsequence/indexer@2.3.11': {}
- '@0xsequence/marketplace@2.2.7': {}
+ '@0xsequence/marketplace@2.3.11': {}
- '@0xsequence/metadata@2.3.9': {}
+ '@0xsequence/metadata@2.3.11': {}
- '@0xsequence/migration@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/migration@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/wallet': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/wallet': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/network@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/network@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/indexer': 2.3.9
- '@0xsequence/relayer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/indexer': 2.3.11
+ '@0xsequence/relayer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/network@2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/provider@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/indexer': 2.3.9
- '@0xsequence/relayer': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/provider@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/account': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/auth': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/migration': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/relayer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/wallet': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/account': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/auth': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/migration': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/relayer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/wallet': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@databeat/tracker': 0.9.3
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
eventemitter2: 6.4.9
webextension-polyfill: 0.10.0
- '@0xsequence/relayer@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
-
- '@0xsequence/relayer@2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/relayer@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/replacer@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/replacer@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/sessions@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/sessions@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/migration': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/replacer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/migration': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/replacer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
idb: 7.1.1
- '@0xsequence/signhub@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/signhub@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@0xsequence/utils@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/utils@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
js-base64: 3.7.7
- '@0xsequence/utils@2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/waas@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- js-base64: 3.7.7
-
- '@0xsequence/waas@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@aws-sdk/client-cognito-identity-provider': 3.731.1
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- idb: 7.1.1
- json-canonicalize: 1.0.6
- jwt-decode: 4.0.0
- transitivePeerDependencies:
- - aws-crt
-
- '@0xsequence/waas@2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
- dependencies:
- '@0xsequence/core': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@aws-sdk/client-cognito-identity-provider': 3.731.1
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@aws-sdk/client-cognito-identity-provider': 3.799.0
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
idb: 7.1.1
json-canonicalize: 1.0.6
jwt-decode: 4.0.0
transitivePeerDependencies:
- aws-crt
- '@0xsequence/wallet@2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@0xsequence/wallet@2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/network': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/relayer': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/signhub': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@0xsequence/utils': 2.3.9(ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ethers: 6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/network': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/relayer': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/signhub': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@0xsequence/utils': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@adobe/css-tools@4.4.2': {}
@@ -8215,7 +8041,7 @@ snapshots:
commander: 10.0.1
marked: 9.1.6
marked-terminal: 7.3.0(marked@9.1.6)
- semver: 7.6.3
+ semver: 7.7.1
'@arethetypeswrong/core@0.17.4':
dependencies:
@@ -8224,14 +8050,14 @@ snapshots:
cjs-module-lexer: 1.4.3
fflate: 0.8.2
lru-cache: 10.4.3
- semver: 7.6.3
+ semver: 7.7.1
typescript: 5.6.1-rc
validate-npm-package-name: 5.0.1
- '@asamuzakjp/css-color@3.1.1':
+ '@asamuzakjp/css-color@3.1.7':
dependencies:
- '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-color-parser': 3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-color-parser': 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
lru-cache: 10.4.3
@@ -8241,7 +8067,7 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.731.0
+ '@aws-sdk/types': 3.775.0
'@aws-sdk/util-locate-window': 3.723.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -8249,7 +8075,7 @@ snapshots:
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.731.0
+ '@aws-sdk/types': 3.775.0
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -8258,344 +8084,344 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.731.0
+ '@aws-sdk/types': 3.775.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
- '@aws-sdk/client-cognito-identity-provider@3.731.1':
+ '@aws-sdk/client-cognito-identity-provider@3.799.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/credential-provider-node': 3.731.1
- '@aws-sdk/middleware-host-header': 3.731.0
- '@aws-sdk/middleware-logger': 3.731.0
- '@aws-sdk/middleware-recursion-detection': 3.731.0
- '@aws-sdk/middleware-user-agent': 3.731.0
- '@aws-sdk/region-config-resolver': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@aws-sdk/util-endpoints': 3.731.0
- '@aws-sdk/util-user-agent-browser': 3.731.0
- '@aws-sdk/util-user-agent-node': 3.731.0
- '@smithy/config-resolver': 4.0.1
- '@smithy/core': 3.1.1
- '@smithy/fetch-http-handler': 5.0.1
- '@smithy/hash-node': 4.0.1
- '@smithy/invalid-dependency': 4.0.1
- '@smithy/middleware-content-length': 4.0.1
- '@smithy/middleware-endpoint': 4.0.2
- '@smithy/middleware-retry': 4.0.3
- '@smithy/middleware-serde': 4.0.1
- '@smithy/middleware-stack': 4.0.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/node-http-handler': 4.0.2
- '@smithy/protocol-http': 5.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/url-parser': 4.0.1
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/credential-provider-node': 3.799.0
+ '@aws-sdk/middleware-host-header': 3.775.0
+ '@aws-sdk/middleware-logger': 3.775.0
+ '@aws-sdk/middleware-recursion-detection': 3.775.0
+ '@aws-sdk/middleware-user-agent': 3.799.0
+ '@aws-sdk/region-config-resolver': 3.775.0
+ '@aws-sdk/types': 3.775.0
+ '@aws-sdk/util-endpoints': 3.787.0
+ '@aws-sdk/util-user-agent-browser': 3.775.0
+ '@aws-sdk/util-user-agent-node': 3.799.0
+ '@smithy/config-resolver': 4.1.0
+ '@smithy/core': 3.3.0
+ '@smithy/fetch-http-handler': 5.0.2
+ '@smithy/hash-node': 4.0.2
+ '@smithy/invalid-dependency': 4.0.2
+ '@smithy/middleware-content-length': 4.0.2
+ '@smithy/middleware-endpoint': 4.1.1
+ '@smithy/middleware-retry': 4.1.2
+ '@smithy/middleware-serde': 4.0.3
+ '@smithy/middleware-stack': 4.0.2
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/node-http-handler': 4.0.4
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/url-parser': 4.0.2
'@smithy/util-base64': 4.0.0
'@smithy/util-body-length-browser': 4.0.0
'@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.3
- '@smithy/util-defaults-mode-node': 4.0.3
- '@smithy/util-endpoints': 3.0.1
- '@smithy/util-middleware': 4.0.1
- '@smithy/util-retry': 4.0.1
+ '@smithy/util-defaults-mode-browser': 4.0.9
+ '@smithy/util-defaults-mode-node': 4.0.9
+ '@smithy/util-endpoints': 3.0.2
+ '@smithy/util-middleware': 4.0.2
+ '@smithy/util-retry': 4.0.3
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.731.0':
+ '@aws-sdk/client-sso@3.799.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/middleware-host-header': 3.731.0
- '@aws-sdk/middleware-logger': 3.731.0
- '@aws-sdk/middleware-recursion-detection': 3.731.0
- '@aws-sdk/middleware-user-agent': 3.731.0
- '@aws-sdk/region-config-resolver': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@aws-sdk/util-endpoints': 3.731.0
- '@aws-sdk/util-user-agent-browser': 3.731.0
- '@aws-sdk/util-user-agent-node': 3.731.0
- '@smithy/config-resolver': 4.0.1
- '@smithy/core': 3.1.1
- '@smithy/fetch-http-handler': 5.0.1
- '@smithy/hash-node': 4.0.1
- '@smithy/invalid-dependency': 4.0.1
- '@smithy/middleware-content-length': 4.0.1
- '@smithy/middleware-endpoint': 4.0.2
- '@smithy/middleware-retry': 4.0.3
- '@smithy/middleware-serde': 4.0.1
- '@smithy/middleware-stack': 4.0.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/node-http-handler': 4.0.2
- '@smithy/protocol-http': 5.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/url-parser': 4.0.1
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/middleware-host-header': 3.775.0
+ '@aws-sdk/middleware-logger': 3.775.0
+ '@aws-sdk/middleware-recursion-detection': 3.775.0
+ '@aws-sdk/middleware-user-agent': 3.799.0
+ '@aws-sdk/region-config-resolver': 3.775.0
+ '@aws-sdk/types': 3.775.0
+ '@aws-sdk/util-endpoints': 3.787.0
+ '@aws-sdk/util-user-agent-browser': 3.775.0
+ '@aws-sdk/util-user-agent-node': 3.799.0
+ '@smithy/config-resolver': 4.1.0
+ '@smithy/core': 3.3.0
+ '@smithy/fetch-http-handler': 5.0.2
+ '@smithy/hash-node': 4.0.2
+ '@smithy/invalid-dependency': 4.0.2
+ '@smithy/middleware-content-length': 4.0.2
+ '@smithy/middleware-endpoint': 4.1.1
+ '@smithy/middleware-retry': 4.1.2
+ '@smithy/middleware-serde': 4.0.3
+ '@smithy/middleware-stack': 4.0.2
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/node-http-handler': 4.0.4
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/url-parser': 4.0.2
'@smithy/util-base64': 4.0.0
'@smithy/util-body-length-browser': 4.0.0
'@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.3
- '@smithy/util-defaults-mode-node': 4.0.3
- '@smithy/util-endpoints': 3.0.1
- '@smithy/util-middleware': 4.0.1
- '@smithy/util-retry': 4.0.1
+ '@smithy/util-defaults-mode-browser': 4.0.9
+ '@smithy/util-defaults-mode-node': 4.0.9
+ '@smithy/util-endpoints': 3.0.2
+ '@smithy/util-middleware': 4.0.2
+ '@smithy/util-retry': 4.0.3
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.731.0':
- dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/core': 3.1.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/property-provider': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/signature-v4': 5.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/util-middleware': 4.0.1
+ '@aws-sdk/core@3.799.0':
+ dependencies:
+ '@aws-sdk/types': 3.775.0
+ '@smithy/core': 3.3.0
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/property-provider': 4.0.2
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/signature-v4': 5.1.0
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/util-middleware': 4.0.2
fast-xml-parser: 4.4.1
tslib: 2.8.1
- '@aws-sdk/credential-provider-env@3.731.0':
+ '@aws-sdk/credential-provider-env@3.799.0':
dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@smithy/property-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.731.0':
- dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@smithy/fetch-http-handler': 5.0.1
- '@smithy/node-http-handler': 4.0.2
- '@smithy/property-provider': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/util-stream': 4.0.2
+ '@aws-sdk/credential-provider-http@3.799.0':
+ dependencies:
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/fetch-http-handler': 5.0.2
+ '@smithy/node-http-handler': 4.0.4
+ '@smithy/property-provider': 4.0.2
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/util-stream': 4.2.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-ini@3.731.1':
- dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/credential-provider-env': 3.731.0
- '@aws-sdk/credential-provider-http': 3.731.0
- '@aws-sdk/credential-provider-process': 3.731.0
- '@aws-sdk/credential-provider-sso': 3.731.1
- '@aws-sdk/credential-provider-web-identity': 3.731.1
- '@aws-sdk/nested-clients': 3.731.1
- '@aws-sdk/types': 3.731.0
- '@smithy/credential-provider-imds': 4.0.1
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/credential-provider-ini@3.799.0':
+ dependencies:
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/credential-provider-env': 3.799.0
+ '@aws-sdk/credential-provider-http': 3.799.0
+ '@aws-sdk/credential-provider-process': 3.799.0
+ '@aws-sdk/credential-provider-sso': 3.799.0
+ '@aws-sdk/credential-provider-web-identity': 3.799.0
+ '@aws-sdk/nested-clients': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/credential-provider-imds': 4.0.2
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-node@3.731.1':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.731.0
- '@aws-sdk/credential-provider-http': 3.731.0
- '@aws-sdk/credential-provider-ini': 3.731.1
- '@aws-sdk/credential-provider-process': 3.731.0
- '@aws-sdk/credential-provider-sso': 3.731.1
- '@aws-sdk/credential-provider-web-identity': 3.731.1
- '@aws-sdk/types': 3.731.0
- '@smithy/credential-provider-imds': 4.0.1
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/credential-provider-node@3.799.0':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.799.0
+ '@aws-sdk/credential-provider-http': 3.799.0
+ '@aws-sdk/credential-provider-ini': 3.799.0
+ '@aws-sdk/credential-provider-process': 3.799.0
+ '@aws-sdk/credential-provider-sso': 3.799.0
+ '@aws-sdk/credential-provider-web-identity': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/credential-provider-imds': 4.0.2
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-process@3.731.0':
+ '@aws-sdk/credential-provider-process@3.799.0':
dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-sso@3.731.1':
+ '@aws-sdk/credential-provider-sso@3.799.0':
dependencies:
- '@aws-sdk/client-sso': 3.731.0
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/token-providers': 3.731.1
- '@aws-sdk/types': 3.731.0
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/client-sso': 3.799.0
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/token-providers': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.731.1':
+ '@aws-sdk/credential-provider-web-identity@3.799.0':
dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/nested-clients': 3.731.1
- '@aws-sdk/types': 3.731.0
- '@smithy/property-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/nested-clients': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/middleware-host-header@3.731.0':
+ '@aws-sdk/middleware-host-header@3.775.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/middleware-logger@3.731.0':
+ '@aws-sdk/middleware-logger@3.775.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/types': 4.1.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/middleware-recursion-detection@3.731.0':
+ '@aws-sdk/middleware-recursion-detection@3.775.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.731.0':
+ '@aws-sdk/middleware-user-agent@3.799.0':
dependencies:
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@aws-sdk/util-endpoints': 3.731.0
- '@smithy/core': 3.1.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@aws-sdk/util-endpoints': 3.787.0
+ '@smithy/core': 3.3.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/nested-clients@3.731.1':
+ '@aws-sdk/nested-clients@3.799.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.731.0
- '@aws-sdk/middleware-host-header': 3.731.0
- '@aws-sdk/middleware-logger': 3.731.0
- '@aws-sdk/middleware-recursion-detection': 3.731.0
- '@aws-sdk/middleware-user-agent': 3.731.0
- '@aws-sdk/region-config-resolver': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@aws-sdk/util-endpoints': 3.731.0
- '@aws-sdk/util-user-agent-browser': 3.731.0
- '@aws-sdk/util-user-agent-node': 3.731.0
- '@smithy/config-resolver': 4.0.1
- '@smithy/core': 3.1.1
- '@smithy/fetch-http-handler': 5.0.1
- '@smithy/hash-node': 4.0.1
- '@smithy/invalid-dependency': 4.0.1
- '@smithy/middleware-content-length': 4.0.1
- '@smithy/middleware-endpoint': 4.0.2
- '@smithy/middleware-retry': 4.0.3
- '@smithy/middleware-serde': 4.0.1
- '@smithy/middleware-stack': 4.0.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/node-http-handler': 4.0.2
- '@smithy/protocol-http': 5.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/url-parser': 4.0.1
+ '@aws-sdk/core': 3.799.0
+ '@aws-sdk/middleware-host-header': 3.775.0
+ '@aws-sdk/middleware-logger': 3.775.0
+ '@aws-sdk/middleware-recursion-detection': 3.775.0
+ '@aws-sdk/middleware-user-agent': 3.799.0
+ '@aws-sdk/region-config-resolver': 3.775.0
+ '@aws-sdk/types': 3.775.0
+ '@aws-sdk/util-endpoints': 3.787.0
+ '@aws-sdk/util-user-agent-browser': 3.775.0
+ '@aws-sdk/util-user-agent-node': 3.799.0
+ '@smithy/config-resolver': 4.1.0
+ '@smithy/core': 3.3.0
+ '@smithy/fetch-http-handler': 5.0.2
+ '@smithy/hash-node': 4.0.2
+ '@smithy/invalid-dependency': 4.0.2
+ '@smithy/middleware-content-length': 4.0.2
+ '@smithy/middleware-endpoint': 4.1.1
+ '@smithy/middleware-retry': 4.1.2
+ '@smithy/middleware-serde': 4.0.3
+ '@smithy/middleware-stack': 4.0.2
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/node-http-handler': 4.0.4
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/url-parser': 4.0.2
'@smithy/util-base64': 4.0.0
'@smithy/util-body-length-browser': 4.0.0
'@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.3
- '@smithy/util-defaults-mode-node': 4.0.3
- '@smithy/util-endpoints': 3.0.1
- '@smithy/util-middleware': 4.0.1
- '@smithy/util-retry': 4.0.1
+ '@smithy/util-defaults-mode-browser': 4.0.9
+ '@smithy/util-defaults-mode-node': 4.0.9
+ '@smithy/util-endpoints': 3.0.2
+ '@smithy/util-middleware': 4.0.2
+ '@smithy/util-retry': 4.0.3
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/region-config-resolver@3.731.0':
+ '@aws-sdk/region-config-resolver@3.775.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/node-config-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/types': 4.2.0
'@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.1
+ '@smithy/util-middleware': 4.0.2
tslib: 2.8.1
- '@aws-sdk/token-providers@3.731.1':
+ '@aws-sdk/token-providers@3.799.0':
dependencies:
- '@aws-sdk/nested-clients': 3.731.1
- '@aws-sdk/types': 3.731.0
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/nested-clients': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/types@3.731.0':
+ '@aws-sdk/types@3.775.0':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@aws-sdk/util-endpoints@3.731.0':
+ '@aws-sdk/util-endpoints@3.787.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/types': 4.1.0
- '@smithy/util-endpoints': 3.0.1
+ '@aws-sdk/types': 3.775.0
+ '@smithy/types': 4.2.0
+ '@smithy/util-endpoints': 3.0.2
tslib: 2.8.1
'@aws-sdk/util-locate-window@3.723.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.731.0':
+ '@aws-sdk/util-user-agent-browser@3.775.0':
dependencies:
- '@aws-sdk/types': 3.731.0
- '@smithy/types': 4.1.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/types': 4.2.0
bowser: 2.11.0
tslib: 2.8.1
- '@aws-sdk/util-user-agent-node@3.731.0':
+ '@aws-sdk/util-user-agent-node@3.799.0':
dependencies:
- '@aws-sdk/middleware-user-agent': 3.731.0
- '@aws-sdk/types': 3.731.0
- '@smithy/node-config-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@aws-sdk/middleware-user-agent': 3.799.0
+ '@aws-sdk/types': 3.775.0
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.5': {}
+ '@babel/compat-data@7.27.1': {}
- '@babel/core@7.26.0':
+ '@babel/core@7.27.1':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.5
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helpers': 7.26.0
- '@babel/parser': 7.26.5
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.1
+ '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1)
+ '@babel/helpers': 7.27.1
+ '@babel/parser': 7.27.1
+ '@babel/template': 7.27.1
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -8604,178 +8430,176 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.5':
+ '@babel/generator@7.27.1':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.27.1
+ '@babel/types': 7.27.1
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
- '@babel/helper-compilation-targets@7.26.5':
+ '@babel/helper-compilation-targets@7.27.1':
dependencies:
- '@babel/compat-data': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
+ '@babel/compat-data': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.24.5
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/traverse': 7.27.1
+ '@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ '@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
- '@babel/helper-validator-option@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helpers@7.26.0':
+ '@babel/helpers@7.27.1':
dependencies:
- '@babel/template': 7.25.9
- '@babel/types': 7.26.5
+ '@babel/template': 7.27.1
+ '@babel/types': 7.27.1
- '@babel/parser@7.26.5':
+ '@babel/parser@7.27.1':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.27.1
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/runtime@7.26.0':
- dependencies:
- regenerator-runtime: 0.14.1
+ '@babel/runtime@7.27.1': {}
- '@babel/template@7.25.9':
+ '@babel/template@7.27.1':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.27.1
+ '@babel/types': 7.27.1
- '@babel/traverse@7.26.5':
+ '@babel/traverse@7.27.1':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.5
- '@babel/parser': 7.26.5
- '@babel/template': 7.25.9
- '@babel/types': 7.26.5
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/parser': 7.27.1
+ '@babel/template': 7.27.1
+ '@babel/types': 7.27.1
debug: 4.4.0(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.5':
+ '@babel/types@7.27.1':
dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
- '@braidai/lang@1.1.0': {}
+ '@braidai/lang@1.1.1': {}
'@bundled-es-modules/cookie@2.0.1':
dependencies:
@@ -8790,13 +8614,13 @@ snapshots:
'@types/tough-cookie': 4.0.5
tough-cookie: 4.1.4
- '@changesets/apply-release-plan@7.0.7':
+ '@changesets/apply-release-plan@7.0.12':
dependencies:
- '@changesets/config': 3.0.5
+ '@changesets/config': 3.1.1
'@changesets/get-version-range-type': 0.4.0
- '@changesets/git': 3.0.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/git': 3.0.4
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
fs-extra: 7.0.1
@@ -8804,45 +8628,45 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.6.3
+ semver: 7.7.1
- '@changesets/assemble-release-plan@6.0.5':
+ '@changesets/assemble-release-plan@6.0.7':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
- semver: 7.6.3
+ semver: 7.7.1
- '@changesets/changelog-git@0.2.0':
+ '@changesets/changelog-git@0.2.1':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
- '@changesets/changelog-github@0.5.0':
+ '@changesets/changelog-github@0.5.1':
dependencies:
'@changesets/get-github-info': 0.6.0
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
dotenv: 8.6.0
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.27.11':
+ '@changesets/cli@2.29.3':
dependencies:
- '@changesets/apply-release-plan': 7.0.7
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.5
+ '@changesets/apply-release-plan': 7.0.12
+ '@changesets/assemble-release-plan': 6.0.7
+ '@changesets/changelog-git': 0.2.1
+ '@changesets/config': 3.1.1
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/get-release-plan': 4.0.6
- '@changesets/git': 3.0.2
+ '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/get-release-plan': 4.0.11
+ '@changesets/git': 3.0.4
'@changesets/logger': 0.1.1
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@changesets/write': 0.3.2
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.5
+ '@changesets/should-skip-package': 0.1.2
+ '@changesets/types': 6.1.0
+ '@changesets/write': 0.4.0
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
ci-info: 3.9.0
@@ -8851,19 +8675,19 @@ snapshots:
fs-extra: 7.0.1
mri: 1.2.0
p-limit: 2.3.0
- package-manager-detector: 0.2.8
+ package-manager-detector: 0.2.11
picocolors: 1.1.1
resolve-from: 5.0.0
- semver: 7.6.3
+ semver: 7.7.1
spawndamnit: 3.0.1
term-size: 2.2.1
- '@changesets/config@3.0.5':
+ '@changesets/config@3.1.1':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/get-dependents-graph': 2.1.3
'@changesets/logger': 0.1.1
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
micromatch: 4.0.8
@@ -8872,12 +8696,12 @@ snapshots:
dependencies:
extendable-error: 0.1.7
- '@changesets/get-dependents-graph@2.1.2':
+ '@changesets/get-dependents-graph@2.1.3':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
picocolors: 1.1.1
- semver: 7.6.3
+ semver: 7.7.1
'@changesets/get-github-info@0.6.0':
dependencies:
@@ -8886,18 +8710,18 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/get-release-plan@4.0.6':
+ '@changesets/get-release-plan@4.0.11':
dependencies:
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/config': 3.0.5
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/types': 6.0.0
+ '@changesets/assemble-release-plan': 6.0.7
+ '@changesets/config': 3.1.1
+ '@changesets/pre': 2.0.2
+ '@changesets/read': 0.6.5
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
'@changesets/get-version-range-type@0.4.0': {}
- '@changesets/git@3.0.2':
+ '@changesets/git@3.0.4':
dependencies:
'@changesets/errors': 0.2.0
'@manypkg/get-packages': 1.1.3
@@ -8909,79 +8733,79 @@ snapshots:
dependencies:
picocolors: 1.1.1
- '@changesets/parse@0.4.0':
+ '@changesets/parse@0.4.1':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
js-yaml: 3.14.1
- '@changesets/pre@2.0.1':
+ '@changesets/pre@2.0.2':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- '@changesets/read@0.6.2':
+ '@changesets/read@0.6.5':
dependencies:
- '@changesets/git': 3.0.2
+ '@changesets/git': 3.0.4
'@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
+ '@changesets/parse': 0.4.1
+ '@changesets/types': 6.1.0
fs-extra: 7.0.1
p-filter: 2.1.0
picocolors: 1.1.1
- '@changesets/should-skip-package@0.1.1':
+ '@changesets/should-skip-package@0.1.2':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
'@changesets/types@4.1.0': {}
- '@changesets/types@6.0.0': {}
+ '@changesets/types@6.1.0': {}
- '@changesets/write@0.3.2':
+ '@changesets/write@0.4.0':
dependencies:
- '@changesets/types': 6.0.0
+ '@changesets/types': 6.1.0
fs-extra: 7.0.1
- human-id: 1.0.2
+ human-id: 4.1.1
prettier: 2.8.8
'@coinbase/wallet-sdk@3.9.3':
dependencies:
- bn.js: 5.2.1
+ bn.js: 5.2.2
buffer: 6.0.3
clsx: 1.2.1
eth-block-tracker: 7.1.0
eth-json-rpc-filters: 6.0.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.25.4
+ preact: 10.26.5
sha.js: 2.4.11
transitivePeerDependencies:
- supports-color
'@coinbase/wallet-sdk@4.3.0':
dependencies:
- '@noble/hashes': 1.7.1
+ '@noble/hashes': 1.8.0
clsx: 1.2.1
eventemitter3: 5.0.1
- preact: 10.25.4
+ preact: 10.26.5
'@colors/colors@1.5.0':
optional: true
'@csstools/color-helpers@5.0.2': {}
- '@csstools/css-calc@2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-calc@2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
- '@csstools/css-color-parser@3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-color-parser@3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/color-helpers': 5.0.2
- '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
@@ -8993,177 +8817,185 @@ snapshots:
'@databeat/tracker@0.9.3':
dependencies:
- '@noble/hashes': 1.7.1
+ '@noble/hashes': 1.8.0
- '@ecies/ciphers@0.2.2(@noble/ciphers@1.2.1)':
+ '@ecies/ciphers@0.2.3(@noble/ciphers@1.3.0)':
dependencies:
- '@noble/ciphers': 1.2.1
+ '@noble/ciphers': 1.3.0
+
+ '@emnapi/core@1.4.3':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.2
+ tslib: 2.8.1
+ optional: true
- '@emotion/is-prop-valid@0.8.8':
+ '@emnapi/runtime@1.4.3':
dependencies:
- '@emotion/memoize': 0.7.4
+ tslib: 2.8.1
optional: true
- '@emotion/memoize@0.7.4':
+ '@emnapi/wasi-threads@1.0.2':
+ dependencies:
+ tslib: 2.8.1
optional: true
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.25.1':
+ '@esbuild/aix-ppc64@0.25.3':
optional: true
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.25.1':
+ '@esbuild/android-arm64@0.25.3':
optional: true
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.25.1':
+ '@esbuild/android-arm@0.25.3':
optional: true
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.25.1':
+ '@esbuild/android-x64@0.25.3':
optional: true
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.25.1':
+ '@esbuild/darwin-arm64@0.25.3':
optional: true
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.25.1':
+ '@esbuild/darwin-x64@0.25.3':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.25.1':
+ '@esbuild/freebsd-arm64@0.25.3':
optional: true
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.25.1':
+ '@esbuild/freebsd-x64@0.25.3':
optional: true
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.25.1':
+ '@esbuild/linux-arm64@0.25.3':
optional: true
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.25.1':
+ '@esbuild/linux-arm@0.25.3':
optional: true
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.25.1':
+ '@esbuild/linux-ia32@0.25.3':
optional: true
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.25.1':
+ '@esbuild/linux-loong64@0.25.3':
optional: true
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.25.1':
+ '@esbuild/linux-mips64el@0.25.3':
optional: true
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.25.1':
+ '@esbuild/linux-ppc64@0.25.3':
optional: true
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.25.1':
+ '@esbuild/linux-riscv64@0.25.3':
optional: true
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.25.1':
+ '@esbuild/linux-s390x@0.25.3':
optional: true
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.25.1':
+ '@esbuild/linux-x64@0.25.3':
optional: true
- '@esbuild/netbsd-arm64@0.25.1':
+ '@esbuild/netbsd-arm64@0.25.3':
optional: true
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.25.1':
+ '@esbuild/netbsd-x64@0.25.3':
optional: true
- '@esbuild/openbsd-arm64@0.25.1':
+ '@esbuild/openbsd-arm64@0.25.3':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.25.1':
+ '@esbuild/openbsd-x64@0.25.3':
optional: true
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.25.1':
+ '@esbuild/sunos-x64@0.25.3':
optional: true
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.25.1':
+ '@esbuild/win32-arm64@0.25.3':
optional: true
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.25.1':
+ '@esbuild/win32-ia32@0.25.3':
optional: true
'@esbuild/win32-x64@0.21.5':
optional: true
- '@esbuild/win32-x64@0.25.1':
+ '@esbuild/win32-x64@0.25.3':
optional: true
- '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+ '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.1(eslint@9.22.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.26.0(jiti@2.4.2))':
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/config-array@0.19.2':
+ '@eslint/config-array@0.20.0':
dependencies:
'@eslint/object-schema': 2.1.6
debug: 4.4.0(supports-color@8.1.1)
@@ -9171,9 +9003,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.1.0': {}
+ '@eslint/config-helpers@0.2.2': {}
- '@eslint/core@0.12.0':
+ '@eslint/core@0.13.0':
dependencies:
'@types/json-schema': 7.0.15
@@ -9184,21 +9016,21 @@ snapshots:
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/eslintrc@3.3.0':
+ '@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
debug: 4.4.0(supports-color@8.1.1)
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
@@ -9207,20 +9039,15 @@ snapshots:
'@eslint/js@8.57.1': {}
- '@eslint/js@9.22.0': {}
+ '@eslint/js@9.26.0': {}
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.2.7':
+ '@eslint/plugin-kit@0.2.8':
dependencies:
- '@eslint/core': 0.12.0
+ '@eslint/core': 0.13.0
levn: 0.4.1
- '@ethereumjs/common@2.6.5':
- dependencies:
- crc-32: 1.2.2
- ethereumjs-util: 7.1.5
-
'@ethereumjs/common@3.2.0':
dependencies:
'@ethereumjs/util': 8.1.0
@@ -9251,7 +9078,7 @@ snapshots:
'@ethereumjs/wallet@2.0.4':
dependencies:
'@ethereumjs/util': 9.1.0
- '@scure/base': 1.2.4
+ '@scure/base': 1.2.5
ethereum-cryptography: 2.2.1
js-md5: 0.8.3
uuid: 9.0.1
@@ -9302,7 +9129,7 @@ snapshots:
dependencies:
'@ethersproject/bytes': 5.8.0
'@ethersproject/logger': 5.8.0
- bn.js: 5.2.1
+ bn.js: 5.2.2
'@ethersproject/bytes@5.8.0':
dependencies:
@@ -9360,7 +9187,7 @@ snapshots:
'@ethersproject/bytes': 5.8.0
'@ethersproject/logger': 5.8.0
'@ethersproject/properties': 5.8.0
- bn.js: 5.2.1
+ bn.js: 5.2.2
elliptic: 6.6.1
hash.js: 1.1.7
@@ -9407,20 +9234,20 @@ snapshots:
'@fastify/busboy@2.1.1': {}
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.7.0':
dependencies:
'@floating-ui/utils': 0.2.9
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.7.0':
dependencies:
- '@floating-ui/core': 1.6.9
+ '@floating-ui/core': 1.7.0
'@floating-ui/utils': 0.2.9
- '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@floating-ui/dom': 1.6.13
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@floating-ui/dom': 1.7.0
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
'@floating-ui/utils@0.2.9': {}
@@ -9447,40 +9274,40 @@ snapshots:
'@humanwhocodes/retry@0.4.2': {}
- '@imtbl/blockchain-data@2.1.15':
+ '@imtbl/blockchain-data@2.2.0':
dependencies:
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
- axios: 1.8.4
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
+ axios: 1.9.0
transitivePeerDependencies:
- debug
- '@imtbl/bridge-sdk@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@imtbl/bridge-sdk@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/config': 2.1.15
+ '@imtbl/config': 2.2.0
'@jest/globals': 29.7.0
- axios: 1.8.4
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ axios: 1.9.0
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- '@imtbl/checkout-sdk@2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ '@imtbl/checkout-sdk@2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/blockchain-data': 2.1.15
- '@imtbl/bridge-sdk': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/config': 2.1.15
- '@imtbl/dex-sdk': 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
- '@imtbl/generated-clients': 2.1.15
- '@imtbl/metrics': 2.1.15
- '@imtbl/orderbook': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/passport': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/blockchain-data': 2.2.0
+ '@imtbl/bridge-sdk': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/config': 2.2.0
+ '@imtbl/dex-sdk': 2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@imtbl/generated-clients': 2.2.0
+ '@imtbl/metrics': 2.2.0
+ '@imtbl/orderbook': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/passport': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@metamask/detect-provider': 2.0.0
- axios: 1.8.4
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- semver: 7.6.3
+ axios: 1.9.0
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ semver: 7.7.1
uuid: 8.3.2
transitivePeerDependencies:
- bufferutil
@@ -9489,61 +9316,61 @@ snapshots:
- supports-color
- utf-8-validate
- '@imtbl/config@2.1.15':
+ '@imtbl/config@2.2.0':
dependencies:
- '@imtbl/metrics': 2.1.15
+ '@imtbl/metrics': 2.2.0
transitivePeerDependencies:
- debug
- '@imtbl/dex-sdk@2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ '@imtbl/dex-sdk@2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/config': 2.1.15
+ '@imtbl/config': 2.2.0
'@uniswap/sdk-core': 3.2.3
- '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- '@uniswap/v3-sdk': 3.25.2(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ '@uniswap/v3-sdk': 3.25.2(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
- hardhat
- utf-8-validate
- '@imtbl/generated-clients@2.1.15':
+ '@imtbl/generated-clients@2.2.0':
dependencies:
- axios: 1.8.4
+ axios: 1.9.0
transitivePeerDependencies:
- debug
- '@imtbl/metrics@2.1.15':
+ '@imtbl/metrics@2.2.0':
dependencies:
- axios: 1.8.4
+ axios: 1.9.0
global-const: 0.1.2
lru-memorise: 0.3.0
transitivePeerDependencies:
- debug
- '@imtbl/minting-backend@2.1.15':
+ '@imtbl/minting-backend@2.2.0':
dependencies:
- '@imtbl/blockchain-data': 2.1.15
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
- '@imtbl/metrics': 2.1.15
- '@imtbl/webhook': 2.1.15
+ '@imtbl/blockchain-data': 2.2.0
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
+ '@imtbl/metrics': 2.2.0
+ '@imtbl/webhook': 2.2.0
uuid: 8.3.2
optionalDependencies:
- pg: 8.14.1
+ pg: 8.15.6
prisma: 5.22.0
transitivePeerDependencies:
- debug
- pg-native
- '@imtbl/orderbook@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@imtbl/orderbook@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/config': 2.1.15
- '@imtbl/metrics': 2.1.15
+ '@imtbl/config': 2.2.0
+ '@imtbl/metrics': 2.2.0
'@opensea/seaport-js': 4.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- axios: 1.8.4
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ axios: 1.9.0
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
form-data: 4.0.2
merkletreejs: 0.3.11
transitivePeerDependencies:
@@ -9551,44 +9378,43 @@ snapshots:
- debug
- utf-8-validate
- '@imtbl/passport@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
- dependencies:
- '@0xsequence/abi': 2.3.9
- '@0xsequence/core': 2.3.9(ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
- '@imtbl/metrics': 2.1.15
- '@imtbl/toolkit': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/x-client': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/x-provider': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@magic-ext/oidc': 12.0.2
- '@magic-sdk/provider': 29.0.3(localforage@1.10.0)
+ '@imtbl/passport@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@0xsequence/abi': 2.3.11
+ '@0xsequence/core': 2.3.11(ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
+ '@imtbl/metrics': 2.2.0
+ '@imtbl/toolkit': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/x-client': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/x-provider': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@magic-ext/oidc': 12.0.5
+ '@magic-sdk/provider': 29.0.6(localforage@1.10.0)
'@metamask/detect-provider': 2.0.0
- axios: 1.8.4
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ axios: 1.9.0
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
events: 3.3.0
jwt-decode: 3.1.2
localforage: 1.10.0
- magic-sdk: 29.0.3
+ magic-sdk: 29.0.6
oidc-client-ts: 2.4.0
uuid: 8.3.2
transitivePeerDependencies:
- bufferutil
- debug
- - supports-color
- utf-8-validate
- '@imtbl/sdk@2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
- dependencies:
- '@imtbl/blockchain-data': 2.1.15
- '@imtbl/checkout-sdk': 2.1.15(bufferutil@4.0.9)(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
- '@imtbl/config': 2.1.15
- '@imtbl/minting-backend': 2.1.15
- '@imtbl/orderbook': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/passport': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/webhook': 2.1.15
- '@imtbl/x-client': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/x-provider': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/sdk@2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@imtbl/blockchain-data': 2.2.0
+ '@imtbl/checkout-sdk': 2.2.0(bufferutil@4.0.9)(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@imtbl/config': 2.2.0
+ '@imtbl/minting-backend': 2.2.0
+ '@imtbl/orderbook': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/passport': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/webhook': 2.2.0
+ '@imtbl/x-client': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/x-provider': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
@@ -9597,77 +9423,75 @@ snapshots:
- supports-color
- utf-8-validate
- '@imtbl/toolkit@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@imtbl/toolkit@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/x-client': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@magic-ext/oidc': 12.0.2
+ '@imtbl/x-client': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@magic-ext/oidc': 12.0.5
'@metamask/detect-provider': 2.0.0
- axios: 1.8.4
- bn.js: 5.2.1
+ axios: 1.9.0
+ bn.js: 5.2.2
enc-utils: 3.0.0
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- magic-sdk: 29.0.3
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ magic-sdk: 29.0.6
oidc-client-ts: 2.4.0
transitivePeerDependencies:
- bufferutil
- debug
- - supports-color
- utf-8-validate
- '@imtbl/webhook@2.1.15':
+ '@imtbl/webhook@2.2.0':
dependencies:
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
sns-validator: 0.3.5
transitivePeerDependencies:
- debug
- '@imtbl/x-client@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@imtbl/x-client@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
'@ethereumjs/wallet': 2.0.4
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
- axios: 1.8.4
- bn.js: 5.2.1
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
+ axios: 1.9.0
+ bn.js: 5.2.2
elliptic: 6.6.1
enc-utils: 3.0.0
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hash.js: 1.1.7
transitivePeerDependencies:
- bufferutil
- debug
- utf-8-validate
- '@imtbl/x-provider@2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@imtbl/x-provider@2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@imtbl/config': 2.1.15
- '@imtbl/generated-clients': 2.1.15
- '@imtbl/toolkit': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@imtbl/x-client': 2.1.15(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@magic-ext/oidc': 12.0.2
+ '@imtbl/config': 2.2.0
+ '@imtbl/generated-clients': 2.2.0
+ '@imtbl/toolkit': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@imtbl/x-client': 2.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@magic-ext/oidc': 12.0.5
'@metamask/detect-provider': 2.0.0
- axios: 1.8.4
+ axios: 1.9.0
enc-utils: 3.0.0
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- magic-sdk: 29.0.3
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ magic-sdk: 29.0.6
oidc-client-ts: 2.4.0
transitivePeerDependencies:
- bufferutil
- debug
- - supports-color
- utf-8-validate
- '@inquirer/confirm@5.1.7(@types/node@22.7.5)':
+ '@inquirer/confirm@5.1.9(@types/node@22.7.5)':
dependencies:
- '@inquirer/core': 10.1.8(@types/node@22.7.5)
- '@inquirer/type': 3.0.5(@types/node@22.7.5)
+ '@inquirer/core': 10.1.10(@types/node@22.7.5)
+ '@inquirer/type': 3.0.6(@types/node@22.7.5)
optionalDependencies:
'@types/node': 22.7.5
- '@inquirer/core@10.1.8(@types/node@22.7.5)':
+ '@inquirer/core@10.1.10(@types/node@22.7.5)':
dependencies:
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.5(@types/node@22.7.5)
+ '@inquirer/type': 3.0.6(@types/node@22.7.5)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -9679,7 +9503,7 @@ snapshots:
'@inquirer/figures@1.0.11': {}
- '@inquirer/type@3.0.5(@types/node@22.7.5)':
+ '@inquirer/type@3.0.6(@types/node@22.7.5)':
optionalDependencies:
'@types/node': 22.7.5
@@ -9706,7 +9530,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -9724,7 +9548,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -9744,7 +9568,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -9767,7 +9591,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -9790,42 +9614,39 @@ snapshots:
'@lit-labs/ssr-dom-shim@1.3.0': {}
- '@lit/reactive-element@1.6.3':
+ '@lit/reactive-element@2.1.0':
dependencies:
'@lit-labs/ssr-dom-shim': 1.3.0
'@loaderkit/resolve@1.0.4':
dependencies:
- '@braidai/lang': 1.1.0
+ '@braidai/lang': 1.1.1
- '@magic-ext/oidc@12.0.2': {}
+ '@magic-ext/oidc@12.0.5': {}
- '@magic-sdk/commons@25.0.3(@magic-sdk/provider@29.0.3(localforage@1.10.0))(@magic-sdk/types@24.18.1)':
+ '@magic-sdk/commons@25.0.6(@magic-sdk/provider@29.0.6(localforage@1.10.0))(@magic-sdk/types@24.18.2)':
dependencies:
- '@magic-sdk/provider': 29.0.3(localforage@1.10.0)
- '@magic-sdk/types': 24.18.1
+ '@magic-sdk/provider': 29.0.6(localforage@1.10.0)
+ '@magic-sdk/types': 24.18.2
- '@magic-sdk/provider@29.0.3(localforage@1.10.0)':
+ '@magic-sdk/provider@29.0.6(localforage@1.10.0)':
dependencies:
- '@magic-sdk/types': 24.18.1
+ '@magic-sdk/types': 24.18.2
eventemitter3: 4.0.7
localforage: 1.10.0
- web3-core: 1.5.2
- transitivePeerDependencies:
- - supports-color
- '@magic-sdk/types@24.18.1': {}
+ '@magic-sdk/types@24.18.2': {}
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.27.1
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.27.1
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -9842,14 +9663,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/eth-sig-util@4.0.1':
- dependencies:
- ethereumjs-abi: 0.6.8
- ethereumjs-util: 6.2.1
- ethjs-util: 0.1.6
- tweetnacl: 1.0.3
- tweetnacl-util: 0.15.1
-
'@metamask/json-rpc-engine@7.3.3':
dependencies:
'@metamask/rpc-errors': 6.4.0
@@ -9912,13 +9725,13 @@ snapshots:
'@metamask/safe-event-emitter@3.1.2': {}
- '@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.13)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.14)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
bufferutil: 4.0.9
cross-fetch: 4.1.0
date-fns: 2.30.0
debug: 4.4.0(supports-color@8.1.1)
- eciesjs: 0.4.13
+ eciesjs: 0.4.14
eventemitter2: 6.4.9
readable-stream: 3.6.2
socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -9933,16 +9746,16 @@ snapshots:
'@metamask/sdk@0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.27.1
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
- '@metamask/sdk-communication-layer': 0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.13)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ '@metamask/sdk-communication-layer': 0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.14)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@metamask/sdk-install-modal-web': 0.32.0
'@paulmillr/qr': 0.2.1
bowser: 2.11.0
cross-fetch: 4.1.0
debug: 4.4.0(supports-color@8.1.1)
- eciesjs: 0.4.13
+ eciesjs: 0.4.14
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
obj-multiplex: 1.0.0
@@ -9958,14 +9771,14 @@ snapshots:
- supports-color
- utf-8-validate
- '@metamask/superstruct@3.1.0': {}
+ '@metamask/superstruct@3.2.1': {}
'@metamask/utils@5.0.2':
dependencies:
'@ethereumjs/tx': 4.2.0
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@8.1.1)
- semver: 7.6.3
+ semver: 7.7.1
superstruct: 1.0.4
transitivePeerDependencies:
- supports-color
@@ -9973,13 +9786,13 @@ snapshots:
'@metamask/utils@8.5.0':
dependencies:
'@ethereumjs/tx': 4.2.0
- '@metamask/superstruct': 3.1.0
- '@noble/hashes': 1.7.1
- '@scure/base': 1.2.4
+ '@metamask/superstruct': 3.2.1
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.5
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@8.1.1)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -9987,61 +9800,31 @@ snapshots:
'@metamask/utils@9.3.0':
dependencies:
'@ethereumjs/tx': 4.2.0
- '@metamask/superstruct': 3.1.0
- '@noble/hashes': 1.7.1
- '@scure/base': 1.2.4
+ '@metamask/superstruct': 3.2.1
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.5
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@8.1.1)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
- '@motionone/animation@10.18.0':
- dependencies:
- '@motionone/easing': 10.18.0
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- tslib: 2.8.1
-
- '@motionone/dom@10.18.0':
- dependencies:
- '@motionone/animation': 10.18.0
- '@motionone/generators': 10.18.0
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- hey-listen: 1.0.8
- tslib: 2.8.1
-
- '@motionone/easing@10.18.0':
- dependencies:
- '@motionone/utils': 10.18.0
- tslib: 2.8.1
-
- '@motionone/generators@10.18.0':
- dependencies:
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- tslib: 2.8.1
-
- '@motionone/svelte@10.16.4':
- dependencies:
- '@motionone/dom': 10.18.0
- tslib: 2.8.1
-
- '@motionone/types@10.17.1': {}
-
- '@motionone/utils@10.18.0':
- dependencies:
- '@motionone/types': 10.17.1
- hey-listen: 1.0.8
- tslib: 2.8.1
-
- '@motionone/vue@10.16.4':
+ '@modelcontextprotocol/sdk@1.11.0':
dependencies:
- '@motionone/dom': 10.18.0
- tslib: 2.8.1
+ content-type: 1.0.5
+ cors: 2.8.5
+ cross-spawn: 7.0.6
+ eventsource: 3.0.6
+ express: 5.1.0
+ express-rate-limit: 7.5.0(express@5.1.0)
+ pkce-challenge: 5.0.0
+ raw-body: 3.0.0
+ zod: 3.24.4
+ zod-to-json-schema: 3.24.5(zod@3.24.4)
+ transitivePeerDependencies:
+ - supports-color
'@mswjs/interceptors@0.37.6':
dependencies:
@@ -10052,6 +9835,13 @@ snapshots:
outvariant: 1.4.3
strict-event-emitter: 0.5.1
+ '@napi-rs/wasm-runtime@0.2.9':
+ dependencies:
+ '@emnapi/core': 1.4.3
+ '@emnapi/runtime': 1.4.3
+ '@tybys/wasm-util': 0.9.0
+ optional: true
+
'@next/env@14.2.3': {}
'@next/eslint-plugin-next@14.2.3':
@@ -10087,6 +9877,8 @@ snapshots:
'@noble/ciphers@1.2.1': {}
+ '@noble/ciphers@1.3.0': {}
+
'@noble/curves@1.2.0':
dependencies:
'@noble/hashes': 1.3.2
@@ -10107,6 +9899,10 @@ snapshots:
dependencies:
'@noble/hashes': 1.7.2
+ '@noble/curves@1.9.0':
+ dependencies:
+ '@noble/hashes': 1.8.0
+
'@noble/hashes@1.2.0': {}
'@noble/hashes@1.3.2': {}
@@ -10119,6 +9915,8 @@ snapshots:
'@noble/hashes@1.7.2': {}
+ '@noble/hashes@1.8.0': {}
+
'@noble/secp256k1@1.7.1': {}
'@nodelib/fs.scandir@2.1.5':
@@ -10131,53 +9929,33 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.18.0
+ fastq: 1.19.1
'@nolyfill/is-core-module@1.0.39': {}
- '@nomicfoundation/edr-darwin-arm64@0.8.0': {}
-
- '@nomicfoundation/edr-darwin-x64@0.8.0': {}
+ '@nomicfoundation/edr-darwin-arm64@0.10.0': {}
- '@nomicfoundation/edr-linux-arm64-gnu@0.8.0': {}
+ '@nomicfoundation/edr-darwin-x64@0.10.0': {}
- '@nomicfoundation/edr-linux-arm64-musl@0.8.0': {}
+ '@nomicfoundation/edr-linux-arm64-gnu@0.10.0': {}
- '@nomicfoundation/edr-linux-x64-gnu@0.8.0': {}
+ '@nomicfoundation/edr-linux-arm64-musl@0.10.0': {}
- '@nomicfoundation/edr-linux-x64-musl@0.8.0': {}
+ '@nomicfoundation/edr-linux-x64-gnu@0.10.0': {}
- '@nomicfoundation/edr-win32-x64-msvc@0.8.0': {}
+ '@nomicfoundation/edr-linux-x64-musl@0.10.0': {}
- '@nomicfoundation/edr@0.8.0':
- dependencies:
- '@nomicfoundation/edr-darwin-arm64': 0.8.0
- '@nomicfoundation/edr-darwin-x64': 0.8.0
- '@nomicfoundation/edr-linux-arm64-gnu': 0.8.0
- '@nomicfoundation/edr-linux-arm64-musl': 0.8.0
- '@nomicfoundation/edr-linux-x64-gnu': 0.8.0
- '@nomicfoundation/edr-linux-x64-musl': 0.8.0
- '@nomicfoundation/edr-win32-x64-msvc': 0.8.0
-
- '@nomicfoundation/ethereumjs-common@4.0.4':
- dependencies:
- '@nomicfoundation/ethereumjs-util': 9.0.4
- transitivePeerDependencies:
- - c-kzg
+ '@nomicfoundation/edr-win32-x64-msvc@0.10.0': {}
- '@nomicfoundation/ethereumjs-rlp@5.0.4': {}
-
- '@nomicfoundation/ethereumjs-tx@5.0.4':
- dependencies:
- '@nomicfoundation/ethereumjs-common': 4.0.4
- '@nomicfoundation/ethereumjs-rlp': 5.0.4
- '@nomicfoundation/ethereumjs-util': 9.0.4
- ethereum-cryptography: 0.1.3
-
- '@nomicfoundation/ethereumjs-util@9.0.4':
+ '@nomicfoundation/edr@0.10.0':
dependencies:
- '@nomicfoundation/ethereumjs-rlp': 5.0.4
- ethereum-cryptography: 0.1.3
+ '@nomicfoundation/edr-darwin-arm64': 0.10.0
+ '@nomicfoundation/edr-darwin-x64': 0.10.0
+ '@nomicfoundation/edr-linux-arm64-gnu': 0.10.0
+ '@nomicfoundation/edr-linux-arm64-musl': 0.10.0
+ '@nomicfoundation/edr-linux-x64-gnu': 0.10.0
+ '@nomicfoundation/edr-linux-x64-musl': 0.10.0
+ '@nomicfoundation/edr-win32-x64-msvc': 0.10.0
'@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2':
optional: true
@@ -10221,7 +9999,7 @@ snapshots:
'@opensea/seaport-js@4.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- ethers: 6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ethers: 6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)
merkletreejs: 0.3.11
transitivePeerDependencies:
- bufferutil
@@ -10322,673 +10100,1008 @@ snapshots:
'@prisma/debug': 5.22.0
optional: true
- '@radix-ui/number@1.1.0': {}
-
- '@radix-ui/primitive@1.1.1': {}
+ '@radix-ui/number@1.1.1': {}
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@radix-ui/primitive@1.1.2': {}
- '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-arrow@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-aspect-ratio@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-aspect-ratio@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-checkbox@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-checkbox@1.2.3(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-collapsible@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-collapsible@1.1.8(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-collection@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-collection@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-context@1.1.1(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
-
- '@radix-ui/react-dialog@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
+ '@types/react': 19.1.2
+
+ '@radix-ui/react-dialog@1.1.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.10)(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-direction@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-dismissable-layer@1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.10)(react@19.0.0)':
- dependencies:
- react: 19.0.0
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-dropdown-menu@2.1.12(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
- '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-focus-scope@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-id@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
-
- '@radix-ui/react-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.10)(react@19.0.0)
+ '@types/react': 19.1.2
+
+ '@radix-ui/react-menu@2.1.12(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.10)(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-popover@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-popover@1.1.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.2(@types/react@19.0.10)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.2(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.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/rect': 1.1.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-popper@1.2.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/rect': 1.1.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-portal@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-popper@1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/rect': 1.1.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-portal@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-primitive@2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-progress@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-progress@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-radio-group@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-radio-group@1.3.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-roving-focus@1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-select@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-select@2.2.2(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
aria-hidden: 1.2.4
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-remove-scroll: 2.6.3(@types/react@19.0.10)(react@19.0.0)
- optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-slot@1.1.1(@types/react@19.0.10)(react@19.0.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-slot@1.1.2(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-slot@1.2.0(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
-
- '@radix-ui/react-switch@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+
+ '@radix-ui/react-switch@1.2.2(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-tabs@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-tabs@1.1.9(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-toast@1.2.6(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-toast@1.2.11(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/react-tooltip@1.1.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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@19.0.10)(react@19.0.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@radix-ui/react-slot': 1.1.2(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@radix-ui/react-tooltip@1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/rect': 1.1.0
- react: 19.0.0
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-use-size@1.1.0(@types/react@19.0.10)(react@19.0.0)':
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.10)(react@19.0.0)
- react: 19.0.0
+ '@radix-ui/rect': 1.1.1
+ react: 19.1.0
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.1.2)(react@19.1.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(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': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
-
- '@radix-ui/rect@1.1.0': {}
-
- '@react-oauth/google@0.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
- '@rollup/plugin-inject@5.0.5(rollup@4.31.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- estree-walker: 2.0.2
- magic-string: 0.30.17
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ react: 19.1.0
optionalDependencies:
- rollup: 4.31.0
+ '@types/react': 19.1.2
- '@rollup/pluginutils@5.1.4(rollup@4.31.0)':
+ '@radix-ui/react-visually-hidden@1.2.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- rollup: 4.31.0
-
- '@rollup/rollup-android-arm-eabi@4.31.0':
- optional: true
-
- '@rollup/rollup-android-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.31.0':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.31.0':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
- optional: true
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.31.0':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.31.0':
- optional: true
-
- '@rtsao/scc@1.1.0': {}
+ '@radix-ui/rect@1.1.1': {}
- '@rushstack/eslint-patch@1.10.5': {}
+ '@react-oauth/google@0.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
- '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)':
dependencies:
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- events: 3.3.0
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
transitivePeerDependencies:
- bufferutil
- typescript
- utf-8-validate
- zod
- '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@reown/appkit-common@1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.22.7
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ big.js: 6.2.2
+ dayjs: 1.11.13
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
transitivePeerDependencies:
- bufferutil
- typescript
- utf-8-validate
- zod
- '@safe-global/safe-gateway-typescript-sdk@3.22.7': {}
-
- '@scure/base@1.1.9': {}
-
- '@scure/base@1.2.4': {}
-
- '@scure/bip32@1.1.5':
+ '@reown/appkit-controllers@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
- '@noble/hashes': 1.2.0
- '@noble/secp256k1': 1.7.1
- '@scure/base': 1.1.9
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ valtio: 1.13.2(@types/react@19.1.2)(react@18.3.1)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@scure/bip32@1.4.0':
+ '@reown/appkit-controllers@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
- '@noble/curves': 1.4.2
- '@noble/hashes': 1.4.0
- '@scure/base': 1.1.9
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ valtio: 1.13.2(@types/react@19.1.2)(react@19.1.0)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
- '@scure/bip32@1.6.2':
+ '@reown/appkit-polyfills@1.7.3':
dependencies:
- '@noble/curves': 1.8.2
- '@noble/hashes': 1.7.2
- '@scure/base': 1.2.4
+ buffer: 6.0.3
- '@scure/bip39@1.1.1':
+ '@reown/appkit-scaffold-ui@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-utils': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - valtio
+ - zod
+
+ '@reown/appkit-scaffold-ui@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-utils': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - valtio
+ - zod
+
+ '@reown/appkit-ui@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-ui@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ lit: 3.1.0
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-utils@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-polyfills': 1.7.3
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ valtio: 1.13.2(@types/react@19.1.2)(react@18.3.1)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-utils@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-polyfills': 1.7.3
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ valtio: 1.13.2(@types/react@19.1.2)(react@19.1.0)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit-wallet@1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@reown/appkit-polyfills': 1.7.3
+ '@walletconnect/logger': 2.1.2
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+
+ '@reown/appkit@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-polyfills': 1.7.3
+ '@reown/appkit-scaffold-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))(zod@3.24.4)
+ '@reown/appkit-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-utils': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.19.2
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ bs58: 6.0.0
+ valtio: 1.13.2(@types/react@19.1.2)(react@18.3.1)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@reown/appkit@1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@reown/appkit-common': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-controllers': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-polyfills': 1.7.3
+ '@reown/appkit-scaffold-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))(zod@3.24.4)
+ '@reown/appkit-ui': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@reown/appkit-utils': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))(zod@3.24.4)
+ '@reown/appkit-wallet': 1.7.3(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.19.2
+ '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ bs58: 6.0.0
+ valtio: 1.13.2(@types/react@19.1.2)(react@19.1.0)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@rollup/plugin-inject@5.0.5(rollup@4.40.1)':
+ dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ estree-walker: 2.0.2
+ magic-string: 0.30.17
+ optionalDependencies:
+ rollup: 4.40.1
+
+ '@rollup/pluginutils@5.1.4(rollup@4.40.1)':
+ dependencies:
+ '@types/estree': 1.0.7
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
+ optionalDependencies:
+ rollup: 4.40.1
+
+ '@rollup/rollup-android-arm-eabi@4.40.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.40.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.40.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.40.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.40.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.40.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.40.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.40.1':
+ optional: true
+
+ '@rtsao/scc@1.1.0': {}
+
+ '@rushstack/eslint-patch@1.11.0': {}
+
+ '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@safe-global/safe-gateway-typescript-sdk': 3.23.1
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - typescript
+ - utf-8-validate
+ - zod
+
+ '@safe-global/safe-gateway-typescript-sdk@3.23.1': {}
+
+ '@scure/base@1.1.9': {}
+
+ '@scure/base@1.2.5': {}
+
+ '@scure/bip32@1.1.5':
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/base': 1.1.9
+
+ '@scure/bip32@1.4.0':
+ dependencies:
+ '@noble/curves': 1.4.2
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.9
+
+ '@scure/bip32@1.6.2':
+ dependencies:
+ '@noble/curves': 1.8.2
+ '@noble/hashes': 1.7.2
+ '@scure/base': 1.2.5
+
+ '@scure/bip39@1.1.1':
dependencies:
'@noble/hashes': 1.2.0
'@scure/base': 1.1.9
@@ -11001,7 +11114,7 @@ snapshots:
'@scure/bip39@1.5.4':
dependencies:
'@noble/hashes': 1.7.2
- '@scure/base': 1.2.4
+ '@scure/base': 1.2.5
'@sentry/core@5.30.0':
dependencies:
@@ -11064,56 +11177,56 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@smithy/abort-controller@4.0.1':
+ '@smithy/abort-controller@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/config-resolver@4.0.1':
+ '@smithy/config-resolver@4.1.0':
dependencies:
- '@smithy/node-config-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/types': 4.2.0
'@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.1
+ '@smithy/util-middleware': 4.0.2
tslib: 2.8.1
- '@smithy/core@3.1.1':
+ '@smithy/core@3.3.0':
dependencies:
- '@smithy/middleware-serde': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@smithy/middleware-serde': 4.0.3
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
'@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-middleware': 4.0.1
- '@smithy/util-stream': 4.0.2
+ '@smithy/util-middleware': 4.0.2
+ '@smithy/util-stream': 4.2.0
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.0.1':
+ '@smithy/credential-provider-imds@4.0.2':
dependencies:
- '@smithy/node-config-provider': 4.0.1
- '@smithy/property-provider': 4.0.1
- '@smithy/types': 4.1.0
- '@smithy/url-parser': 4.0.1
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/property-provider': 4.0.2
+ '@smithy/types': 4.2.0
+ '@smithy/url-parser': 4.0.2
tslib: 2.8.1
- '@smithy/fetch-http-handler@5.0.1':
+ '@smithy/fetch-http-handler@5.0.2':
dependencies:
- '@smithy/protocol-http': 5.0.1
- '@smithy/querystring-builder': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/querystring-builder': 4.0.2
+ '@smithy/types': 4.2.0
'@smithy/util-base64': 4.0.0
tslib: 2.8.1
- '@smithy/hash-node@4.0.1':
+ '@smithy/hash-node@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
'@smithy/util-buffer-from': 4.0.0
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.0.1':
+ '@smithy/invalid-dependency@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
'@smithy/is-array-buffer@2.2.0':
@@ -11124,119 +11237,119 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@smithy/middleware-content-length@4.0.1':
+ '@smithy/middleware-content-length@4.0.2':
dependencies:
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/middleware-endpoint@4.0.2':
+ '@smithy/middleware-endpoint@4.1.1':
dependencies:
- '@smithy/core': 3.1.1
- '@smithy/middleware-serde': 4.0.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
- '@smithy/url-parser': 4.0.1
- '@smithy/util-middleware': 4.0.1
+ '@smithy/core': 3.3.0
+ '@smithy/middleware-serde': 4.0.3
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
+ '@smithy/url-parser': 4.0.2
+ '@smithy/util-middleware': 4.0.2
tslib: 2.8.1
- '@smithy/middleware-retry@4.0.3':
+ '@smithy/middleware-retry@4.1.2':
dependencies:
- '@smithy/node-config-provider': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/service-error-classification': 4.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
- '@smithy/util-middleware': 4.0.1
- '@smithy/util-retry': 4.0.1
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/service-error-classification': 4.0.3
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
+ '@smithy/util-middleware': 4.0.2
+ '@smithy/util-retry': 4.0.3
tslib: 2.8.1
uuid: 9.0.1
- '@smithy/middleware-serde@4.0.1':
+ '@smithy/middleware-serde@4.0.3':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/middleware-stack@4.0.1':
+ '@smithy/middleware-stack@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/node-config-provider@4.0.1':
+ '@smithy/node-config-provider@4.0.2':
dependencies:
- '@smithy/property-provider': 4.0.1
- '@smithy/shared-ini-file-loader': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/shared-ini-file-loader': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/node-http-handler@4.0.2':
+ '@smithy/node-http-handler@4.0.4':
dependencies:
- '@smithy/abort-controller': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/querystring-builder': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/abort-controller': 4.0.2
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/querystring-builder': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/property-provider@4.0.1':
+ '@smithy/property-provider@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/protocol-http@5.0.1':
+ '@smithy/protocol-http@5.1.0':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/querystring-builder@4.0.1':
+ '@smithy/querystring-builder@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
'@smithy/util-uri-escape': 4.0.0
tslib: 2.8.1
- '@smithy/querystring-parser@4.0.1':
+ '@smithy/querystring-parser@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/service-error-classification@4.0.1':
+ '@smithy/service-error-classification@4.0.3':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
- '@smithy/shared-ini-file-loader@4.0.1':
+ '@smithy/shared-ini-file-loader@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/signature-v4@5.0.1':
+ '@smithy/signature-v4@5.1.0':
dependencies:
'@smithy/is-array-buffer': 4.0.0
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
'@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-middleware': 4.0.1
+ '@smithy/util-middleware': 4.0.2
'@smithy/util-uri-escape': 4.0.0
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/smithy-client@4.1.2':
+ '@smithy/smithy-client@4.2.1':
dependencies:
- '@smithy/core': 3.1.1
- '@smithy/middleware-endpoint': 4.0.2
- '@smithy/middleware-stack': 4.0.1
- '@smithy/protocol-http': 5.0.1
- '@smithy/types': 4.1.0
- '@smithy/util-stream': 4.0.2
+ '@smithy/core': 3.3.0
+ '@smithy/middleware-endpoint': 4.1.1
+ '@smithy/middleware-stack': 4.0.2
+ '@smithy/protocol-http': 5.1.0
+ '@smithy/types': 4.2.0
+ '@smithy/util-stream': 4.2.0
tslib: 2.8.1
- '@smithy/types@4.1.0':
+ '@smithy/types@4.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/url-parser@4.0.1':
+ '@smithy/url-parser@4.0.2':
dependencies:
- '@smithy/querystring-parser': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/querystring-parser': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
'@smithy/util-base64@4.0.0':
@@ -11267,50 +11380,50 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@4.0.3':
+ '@smithy/util-defaults-mode-browser@4.0.9':
dependencies:
- '@smithy/property-provider': 4.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
+ '@smithy/property-provider': 4.0.2
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
bowser: 2.11.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-node@4.0.3':
+ '@smithy/util-defaults-mode-node@4.0.9':
dependencies:
- '@smithy/config-resolver': 4.0.1
- '@smithy/credential-provider-imds': 4.0.1
- '@smithy/node-config-provider': 4.0.1
- '@smithy/property-provider': 4.0.1
- '@smithy/smithy-client': 4.1.2
- '@smithy/types': 4.1.0
+ '@smithy/config-resolver': 4.1.0
+ '@smithy/credential-provider-imds': 4.0.2
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/property-provider': 4.0.2
+ '@smithy/smithy-client': 4.2.1
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/util-endpoints@3.0.1':
+ '@smithy/util-endpoints@3.0.2':
dependencies:
- '@smithy/node-config-provider': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/node-config-provider': 4.0.2
+ '@smithy/types': 4.2.0
tslib: 2.8.1
'@smithy/util-hex-encoding@4.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-middleware@4.0.1':
+ '@smithy/util-middleware@4.0.2':
dependencies:
- '@smithy/types': 4.1.0
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/util-retry@4.0.1':
+ '@smithy/util-retry@4.0.3':
dependencies:
- '@smithy/service-error-classification': 4.0.1
- '@smithy/types': 4.1.0
+ '@smithy/service-error-classification': 4.0.3
+ '@smithy/types': 4.2.0
tslib: 2.8.1
- '@smithy/util-stream@4.0.2':
+ '@smithy/util-stream@4.2.0':
dependencies:
- '@smithy/fetch-http-handler': 5.0.1
- '@smithy/node-http-handler': 4.0.2
- '@smithy/types': 4.1.0
+ '@smithy/fetch-http-handler': 5.0.2
+ '@smithy/node-http-handler': 4.0.4
+ '@smithy/types': 4.2.0
'@smithy/util-base64': 4.0.0
'@smithy/util-buffer-from': 4.0.0
'@smithy/util-hex-encoding': 4.0.0
@@ -11333,56 +11446,56 @@ snapshots:
'@socket.io/component-emitter@3.1.2': {}
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.27.1
- '@svgr/babel-preset@8.1.0(@babel/core@7.26.0)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.0)
+ '@babel/core': 7.27.1
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.27.1)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.27.1)
- '@svgr/core@8.1.0(typescript@5.8.2)':
+ '@svgr/core@8.1.0(typescript@5.8.3)':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
+ '@babel/core': 7.27.1
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.27.1)
camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.8.2)
+ cosmiconfig: 8.3.6(typescript@5.8.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -11390,14 +11503,14 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.27.1
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.2))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.8.3))':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
- '@svgr/core': 8.1.0(typescript@5.8.2)
+ '@babel/core': 7.27.1
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.27.1)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
@@ -11410,148 +11523,98 @@ snapshots:
'@swc/counter': 0.1.3
tslib: 2.8.1
- '@tailwindcss/cli@4.0.14':
+ '@tailwindcss/cli@4.1.5':
dependencies:
'@parcel/watcher': 2.5.1
- '@tailwindcss/node': 4.0.14
- '@tailwindcss/oxide': 4.0.14
+ '@tailwindcss/node': 4.1.5
+ '@tailwindcss/oxide': 4.1.5
enhanced-resolve: 5.18.1
- lightningcss: 1.29.2
mri: 1.2.0
picocolors: 1.1.1
- tailwindcss: 4.0.14
+ tailwindcss: 4.1.5
- '@tailwindcss/node@4.0.12':
+ '@tailwindcss/node@4.1.5':
dependencies:
enhanced-resolve: 5.18.1
jiti: 2.4.2
- tailwindcss: 4.0.12
-
- '@tailwindcss/node@4.0.14':
- dependencies:
- enhanced-resolve: 5.18.1
- jiti: 2.4.2
- tailwindcss: 4.0.14
-
- '@tailwindcss/oxide-android-arm64@4.0.12':
- optional: true
-
- '@tailwindcss/oxide-android-arm64@4.0.14':
- optional: true
-
- '@tailwindcss/oxide-darwin-arm64@4.0.12':
- optional: true
-
- '@tailwindcss/oxide-darwin-arm64@4.0.14':
- optional: true
-
- '@tailwindcss/oxide-darwin-x64@4.0.12':
- optional: true
-
- '@tailwindcss/oxide-darwin-x64@4.0.14':
- optional: true
-
- '@tailwindcss/oxide-freebsd-x64@4.0.12':
- optional: true
-
- '@tailwindcss/oxide-freebsd-x64@4.0.14':
- optional: true
-
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.12':
- optional: true
-
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.14':
- optional: true
+ lightningcss: 1.29.2
+ tailwindcss: 4.1.5
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.12':
+ '@tailwindcss/oxide-android-arm64@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.14':
+ '@tailwindcss/oxide-darwin-arm64@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.12':
+ '@tailwindcss/oxide-darwin-x64@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.14':
+ '@tailwindcss/oxide-freebsd-x64@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.12':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.14':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.0.12':
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.5':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.0.14':
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.5':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.12':
+ '@tailwindcss/oxide-linux-x64-musl@4.1.5':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.14':
+ '@tailwindcss/oxide-wasm32-wasi@4.1.5':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.12':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.5':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.14':
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.5':
optional: true
- '@tailwindcss/oxide@4.0.12':
+ '@tailwindcss/oxide@4.1.5':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.0.12
- '@tailwindcss/oxide-darwin-arm64': 4.0.12
- '@tailwindcss/oxide-darwin-x64': 4.0.12
- '@tailwindcss/oxide-freebsd-x64': 4.0.12
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.12
- '@tailwindcss/oxide-linux-arm64-gnu': 4.0.12
- '@tailwindcss/oxide-linux-arm64-musl': 4.0.12
- '@tailwindcss/oxide-linux-x64-gnu': 4.0.12
- '@tailwindcss/oxide-linux-x64-musl': 4.0.12
- '@tailwindcss/oxide-win32-arm64-msvc': 4.0.12
- '@tailwindcss/oxide-win32-x64-msvc': 4.0.12
-
- '@tailwindcss/oxide@4.0.14':
- optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.0.14
- '@tailwindcss/oxide-darwin-arm64': 4.0.14
- '@tailwindcss/oxide-darwin-x64': 4.0.14
- '@tailwindcss/oxide-freebsd-x64': 4.0.14
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.14
- '@tailwindcss/oxide-linux-arm64-gnu': 4.0.14
- '@tailwindcss/oxide-linux-arm64-musl': 4.0.14
- '@tailwindcss/oxide-linux-x64-gnu': 4.0.14
- '@tailwindcss/oxide-linux-x64-musl': 4.0.14
- '@tailwindcss/oxide-win32-arm64-msvc': 4.0.14
- '@tailwindcss/oxide-win32-x64-msvc': 4.0.14
-
- '@tailwindcss/postcss@4.0.12':
+ '@tailwindcss/oxide-android-arm64': 4.1.5
+ '@tailwindcss/oxide-darwin-arm64': 4.1.5
+ '@tailwindcss/oxide-darwin-x64': 4.1.5
+ '@tailwindcss/oxide-freebsd-x64': 4.1.5
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.5
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.5
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.5
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.5
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.5
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.5
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.5
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.5
+
+ '@tailwindcss/postcss@4.1.5':
dependencies:
'@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.0.12
- '@tailwindcss/oxide': 4.0.12
- lightningcss: 1.29.2
+ '@tailwindcss/node': 4.1.5
+ '@tailwindcss/oxide': 4.1.5
postcss: 8.5.3
- tailwindcss: 4.0.12
+ tailwindcss: 4.1.5
- '@tanstack/query-core@5.64.2': {}
+ '@tanstack/query-core@5.75.0': {}
- '@tanstack/react-query@5.64.2(react@18.3.1)':
+ '@tanstack/react-query@5.75.2(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 5.64.2
+ '@tanstack/query-core': 5.75.0
react: 18.3.1
- '@tanstack/react-query@5.64.2(react@19.0.0)':
+ '@tanstack/react-query@5.75.2(react@19.1.0)':
dependencies:
- '@tanstack/query-core': 5.64.2
- react: 19.0.0
+ '@tanstack/query-core': 5.75.0
+ react: 19.1.0
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/runtime': 7.26.0
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.27.1
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -11569,50 +11632,51 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.27.1
'@testing-library/dom': 10.4.0
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- '@types/react-dom': 19.0.4(@types/react@19.0.10)
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
'@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)':
dependencies:
'@testing-library/dom': 10.4.0
+ '@tybys/wasm-util@0.9.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/aria-query@5.0.4': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
- '@types/babel__generator': 7.6.8
+ '@babel/parser': 7.27.1
+ '@babel/types': 7.27.1
+ '@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.7
- '@types/babel__generator@7.6.8':
+ '@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.27.1
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.27.1
+ '@babel/types': 7.27.1
- '@types/babel__traverse@7.20.6':
+ '@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.26.5
-
- '@types/bn.js@4.11.6':
- dependencies:
- '@types/node': 20.17.14
+ '@babel/types': 7.27.1
'@types/bn.js@5.1.6':
dependencies:
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
'@types/cookie@0.6.0': {}
@@ -11620,11 +11684,11 @@ snapshots:
dependencies:
'@types/ms': 2.1.0
- '@types/estree@1.0.6': {}
+ '@types/estree@1.0.7': {}
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -11646,9 +11710,7 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@18.15.13': {}
-
- '@types/node@20.17.14':
+ '@types/node@20.17.32':
dependencies:
undici-types: 6.19.8
@@ -11658,26 +11720,18 @@ snapshots:
'@types/pako@2.0.3': {}
- '@types/pbkdf2@3.1.2':
- dependencies:
- '@types/node': 20.17.14
-
'@types/react-copy-to-clipboard@5.0.7':
dependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@types/react-dom@19.0.4(@types/react@19.0.10)':
+ '@types/react-dom@19.1.3(@types/react@19.1.2)':
dependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- '@types/react@19.0.10':
+ '@types/react@19.1.2':
dependencies:
csstype: 3.1.3
- '@types/secp256k1@4.0.6':
- dependencies:
- '@types/node': 20.17.14
-
'@types/stack-utils@2.0.3': {}
'@types/statuses@2.0.5': {}
@@ -11694,45 +11748,45 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/eslint-plugin@8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/scope-manager': 8.26.1
- '@typescript-eslint/type-utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.26.1
- eslint: 9.22.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/type-utils': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.31.1
+ eslint: 9.26.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 2.0.1(typescript@5.8.2)
- typescript: 5.8.2
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.8.2)':
+ '@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.8.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.2.0
'@typescript-eslint/types': 7.2.0
- '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.8.2)
+ '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 7.2.0
debug: 4.4.0(supports-color@8.1.1)
eslint: 8.57.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.26.1
- '@typescript-eslint/types': 8.26.1
- '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
- '@typescript-eslint/visitor-keys': 8.26.1
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.31.1
debug: 4.4.0(supports-color@8.1.1)
- eslint: 9.22.0(jiti@2.4.2)
- typescript: 5.8.2
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -11741,27 +11795,27 @@ snapshots:
'@typescript-eslint/types': 7.2.0
'@typescript-eslint/visitor-keys': 7.2.0
- '@typescript-eslint/scope-manager@8.26.1':
+ '@typescript-eslint/scope-manager@8.31.1':
dependencies:
- '@typescript-eslint/types': 8.26.1
- '@typescript-eslint/visitor-keys': 8.26.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/visitor-keys': 8.31.1
- '@typescript-eslint/type-utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/type-utils@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
- '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.0(supports-color@8.1.1)
- eslint: 9.22.0(jiti@2.4.2)
- ts-api-utils: 2.0.1(typescript@5.8.2)
- typescript: 5.8.2
+ eslint: 9.26.0(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/types@7.2.0': {}
- '@typescript-eslint/types@8.26.1': {}
+ '@typescript-eslint/types@8.31.1': {}
- '@typescript-eslint/typescript-estree@7.2.0(typescript@5.8.2)':
+ '@typescript-eslint/typescript-estree@7.2.0(typescript@5.8.3)':
dependencies:
'@typescript-eslint/types': 7.2.0
'@typescript-eslint/visitor-keys': 7.2.0
@@ -11769,35 +11823,35 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.8.2)
+ semver: 7.7.1
+ ts-api-utils: 1.4.3(typescript@5.8.3)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.26.1(typescript@5.8.2)':
+ '@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.26.1
- '@typescript-eslint/visitor-keys': 8.26.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/visitor-keys': 8.31.1
debug: 4.4.0(supports-color@8.1.1)
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 2.0.1(typescript@5.8.2)
- typescript: 5.8.2
+ semver: 7.7.1
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)':
+ '@typescript-eslint/utils@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.26.1
- '@typescript-eslint/types': 8.26.1
- '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
- typescript: 5.8.2
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.31.1
+ '@typescript-eslint/types': 8.31.1
+ '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -11806,12 +11860,12 @@ snapshots:
'@typescript-eslint/types': 7.2.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.26.1':
+ '@typescript-eslint/visitor-keys@8.31.1':
dependencies:
- '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/types': 8.31.1
eslint-visitor-keys: 4.2.0
- '@ungap/structured-clone@1.2.1': {}
+ '@ungap/structured-clone@1.3.0': {}
'@uniswap/lib@4.0.1-alpha': {}
@@ -11836,14 +11890,14 @@ snapshots:
tiny-invariant: 1.3.3
toformat: 2.0.0
- '@uniswap/swap-router-contracts@1.3.1(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
+ '@uniswap/swap-router-contracts@1.3.1(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))':
dependencies:
'@openzeppelin/contracts': 3.4.2-solc-0.7
'@uniswap/v2-core': 1.0.1
'@uniswap/v3-core': 1.0.1
'@uniswap/v3-periphery': 1.4.4
dotenv: 14.3.2
- hardhat-watcher: 2.5.0(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ hardhat-watcher: 2.5.0(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- hardhat
@@ -11861,12 +11915,12 @@ snapshots:
'@uniswap/v3-core': 1.0.1
base64-sol: 1.0.1
- '@uniswap/v3-sdk@3.25.2(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
+ '@uniswap/v3-sdk@3.25.2(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))':
dependencies:
'@ethersproject/abi': 5.8.0
'@ethersproject/solidity': 5.8.0
'@uniswap/sdk-core': 7.7.2
- '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10))
'@uniswap/v3-periphery': 1.4.4
'@uniswap/v3-staker': 1.0.0
tiny-invariant: 1.3.3
@@ -11880,25 +11934,78 @@ snapshots:
'@uniswap/v3-core': 1.0.0
'@uniswap/v3-periphery': 1.4.4
- '@vitejs/plugin-react@4.3.4(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2))':
+ '@unrs/resolver-binding-darwin-arm64@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-darwin-x64@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-freebsd-x64@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm-musleabihf@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm64-gnu@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-arm64-musl@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-ppc64-gnu@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-riscv64-gnu@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-riscv64-musl@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-s390x-gnu@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-x64-gnu@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-linux-x64-musl@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-wasm32-wasi@1.7.2':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.9
+ optional: true
+
+ '@unrs/resolver-binding-win32-arm64-msvc@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-win32-ia32-msvc@1.7.2':
+ optional: true
+
+ '@unrs/resolver-binding-win32-x64-msvc@1.7.2':
+ optional: true
+
+ '@vitejs/plugin-react@4.4.1(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2))':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.27.1
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.1)
'@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
+ react-refresh: 0.17.0
+ vite: 5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.3.4(vite@6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2))':
+ '@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2))':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.27.1
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.1)
'@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2)
+ react-refresh: 0.17.0
+ vite: 6.3.5(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2)
transitivePeerDependencies:
- supports-color
@@ -11909,14 +12016,14 @@ snapshots:
chai: 5.2.0
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.9(msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2))(vite@5.4.14(@types/node@22.7.5)(lightningcss@1.29.2))':
+ '@vitest/mocker@2.1.9(msw@2.7.6(@types/node@22.7.5)(typescript@5.8.3))(vite@5.4.19(@types/node@22.7.5)(lightningcss@1.29.2))':
dependencies:
'@vitest/spy': 2.1.9
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- msw: 2.7.3(@types/node@22.7.5)(typescript@5.8.2)
- vite: 5.4.14(@types/node@22.7.5)(lightningcss@1.29.2)
+ msw: 2.7.6(@types/node@22.7.5)(typescript@5.8.3)
+ vite: 5.4.19(@types/node@22.7.5)(lightningcss@1.29.2)
'@vitest/pretty-format@2.1.9':
dependencies:
@@ -11943,18 +12050,18 @@ snapshots:
loupe: 3.1.3
tinyrainbow: 1.2.0
- '@wagmi/connectors@5.7.13(@types/react@19.0.10)(@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@18.3.1)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
+ '@wagmi/connectors@5.8.1(@types/react@19.1.2)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)':
dependencies:
'@coinbase/wallet-sdk': 4.3.0
'@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@wagmi/core': 2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@18.3.1)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- '@walletconnect/ethereum-provider': 2.19.2(@types/react@19.0.10)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@wagmi/core': 2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))
+ '@walletconnect/ethereum-provider': 2.20.0(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -11982,18 +12089,94 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/connectors@5.7.13(@types/react@19.0.10)(@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
+ '@wagmi/connectors@5.8.1(@types/react@19.1.2)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@19.1.0)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)':
dependencies:
'@coinbase/wallet-sdk': 4.3.0
'@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@wagmi/core': 2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- '@walletconnect/ethereum-provider': 2.19.2(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@wagmi/core': 2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@19.1.0)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))
+ '@walletconnect/ethereum-provider': 2.20.0(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - react
+ - supports-color
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))':
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.8.3)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ zustand: 5.0.0(@types/react@19.1.2)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1))
+ optionalDependencies:
+ '@tanstack/query-core': 5.75.0
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+ - use-sync-external-store
+
+ '@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@19.1.0)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))':
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.8.3)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ zustand: 5.0.0(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0))
optionalDependencies:
- typescript: 5.8.2
+ '@tanstack/query-core': 5.75.0
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+ - use-sync-external-store
+
+ '@walletconnect/core@2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.19.2
+ '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/window-getters': 1.0.1
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ uint8arrays: 3.1.0
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -12006,52 +12189,19 @@ snapshots:
- '@netlify/blobs'
- '@planetscale/database'
- '@react-native-async-storage/async-storage'
- - '@types/react'
- '@upstash/redis'
- '@vercel/blob'
- '@vercel/kv'
- aws4fetch
- bufferutil
- db0
- - encoding
- ioredis
- - react
- - supports-color
+ - typescript
- uploadthing
- utf-8-validate
- zod
- '@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@18.3.1)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
- dependencies:
- eventemitter3: 5.0.1
- mipd: 0.0.7(typescript@5.8.2)
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- zustand: 5.0.0(@types/react@19.0.10)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1))
- optionalDependencies:
- '@tanstack/query-core': 5.64.2
- typescript: 5.8.2
- transitivePeerDependencies:
- - '@types/react'
- - immer
- - react
- - use-sync-external-store
-
- '@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))':
- dependencies:
- eventemitter3: 5.0.1
- mipd: 0.0.7(typescript@5.8.2)
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- zustand: 5.0.0(@types/react@19.0.10)(react@19.0.0)(use-sync-external-store@1.4.0(react@19.0.0))
- optionalDependencies:
- '@tanstack/query-core': 5.64.2
- typescript: 5.8.2
- transitivePeerDependencies:
- - '@types/react'
- - immer
- - react
- - use-sync-external-store
-
- '@walletconnect/core@2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
@@ -12064,8 +12214,8 @@ snapshots:
'@walletconnect/relay-auth': 1.1.0
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.19.2
- '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/utils': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
'@walletconnect/window-getters': 1.0.1
es-toolkit: 1.33.0
events: 3.3.0
@@ -12098,18 +12248,18 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.19.2(@types/react@19.0.10)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.20.0(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
+ '@reown/appkit': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
'@walletconnect/jsonrpc-http-connection': 1.0.8
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/modal': 2.7.0(@types/react@19.0.10)(react@18.3.1)
- '@walletconnect/sign-client': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.19.2
- '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/universal-provider': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/utils': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -12138,18 +12288,18 @@ snapshots:
- utf-8-validate
- zod
- '@walletconnect/ethereum-provider@2.19.2(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.20.0(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
+ '@reown/appkit': 1.7.3(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
'@walletconnect/jsonrpc-http-connection': 1.0.8
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
- '@walletconnect/modal': 2.7.0(@types/react@19.0.10)(react@19.0.0)
- '@walletconnect/sign-client': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.19.2
- '@walletconnect/universal-provider': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/universal-provider': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/utils': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -12229,7 +12379,7 @@ snapshots:
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
- unstorage: 1.14.4(idb-keyval@6.2.1)
+ unstorage: 1.16.0(idb-keyval@6.2.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -12254,56 +12404,6 @@ snapshots:
'@walletconnect/safe-json': 1.0.2
pino: 7.11.0
- '@walletconnect/modal-core@2.7.0(@types/react@19.0.10)(react@18.3.1)':
- dependencies:
- valtio: 1.11.2(@types/react@19.0.10)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react
-
- '@walletconnect/modal-core@2.7.0(@types/react@19.0.10)(react@19.0.0)':
- dependencies:
- valtio: 1.11.2(@types/react@19.0.10)(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
- - react
-
- '@walletconnect/modal-ui@2.7.0(@types/react@19.0.10)(react@18.3.1)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.0.10)(react@18.3.1)
- lit: 2.8.0
- motion: 10.16.2
- qrcode: 1.5.3
- transitivePeerDependencies:
- - '@types/react'
- - react
-
- '@walletconnect/modal-ui@2.7.0(@types/react@19.0.10)(react@19.0.0)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.0.10)(react@19.0.0)
- lit: 2.8.0
- motion: 10.16.2
- qrcode: 1.5.3
- transitivePeerDependencies:
- - '@types/react'
- - react
-
- '@walletconnect/modal@2.7.0(@types/react@19.0.10)(react@18.3.1)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.0.10)(react@18.3.1)
- '@walletconnect/modal-ui': 2.7.0(@types/react@19.0.10)(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - react
-
- '@walletconnect/modal@2.7.0(@types/react@19.0.10)(react@19.0.0)':
- dependencies:
- '@walletconnect/modal-core': 2.7.0(@types/react@19.0.10)(react@19.0.0)
- '@walletconnect/modal-ui': 2.7.0(@types/react@19.0.10)(react@19.0.0)
- transitivePeerDependencies:
- - '@types/react'
- - react
-
'@walletconnect/relay-api@1.0.11':
dependencies:
'@walletconnect/jsonrpc-types': 1.0.4
@@ -12320,16 +12420,51 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/sign-client@2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
- '@walletconnect/core': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
'@walletconnect/types': 2.19.2
- '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@walletconnect/sign-client@2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@walletconnect/core': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/utils': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -12387,7 +12522,35 @@ snapshots:
- ioredis
- uploadthing
- '@walletconnect/universal-provider@2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/types@2.20.0':
+ dependencies:
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - ioredis
+ - uploadthing
+
+ '@walletconnect/universal-provider@2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/jsonrpc-http-connection': 1.0.8
@@ -12396,9 +12559,48 @@ snapshots:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
'@walletconnect/types': 2.19.2
- '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ es-toolkit: 1.33.0
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - encoding
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@walletconnect/universal-provider@2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/sign-client': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/utils': 2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
es-toolkit: 1.33.0
events: 3.3.0
transitivePeerDependencies:
@@ -12426,7 +12628,7 @@ snapshots:
- utf-8-validate
- zod
- '@walletconnect/utils@2.19.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)':
+ '@walletconnect/utils@2.19.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
dependencies:
'@noble/ciphers': 1.2.1
'@noble/curves': 1.8.1
@@ -12444,7 +12646,50 @@ snapshots:
detect-browser: 5.3.0
query-string: 7.1.3
uint8arrays: 3.1.0
- viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/kv'
+ - aws4fetch
+ - bufferutil
+ - db0
+ - ioredis
+ - typescript
+ - uploadthing
+ - utf-8-validate
+ - zod
+
+ '@walletconnect/utils@2.20.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)':
+ dependencies:
+ '@noble/ciphers': 1.2.1
+ '@noble/curves': 1.8.1
+ '@noble/hashes': 1.7.1
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.1.0
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.20.0
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
+ bs58: 6.0.0
+ detect-browser: 5.3.0
+ query-string: 7.1.3
+ uint8arrays: 3.1.0
+ viem: 2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -12478,15 +12723,26 @@ snapshots:
'@walletconnect/window-getters': 1.0.1
tslib: 1.14.1
- abitype@1.0.8(typescript@5.8.2):
+ abitype@1.0.8(typescript@5.8.3)(zod@3.22.4):
+ optionalDependencies:
+ typescript: 5.8.3
+ zod: 3.22.4
+
+ abitype@1.0.8(typescript@5.8.3)(zod@3.24.4):
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
+ zod: 3.24.4
+
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.1
+ negotiator: 1.0.0
- acorn-jsx@5.3.2(acorn@8.14.0):
+ acorn-jsx@5.3.2(acorn@8.14.1):
dependencies:
- acorn: 8.14.0
+ acorn: 8.14.1
- acorn@8.14.0: {}
+ acorn@8.14.1: {}
adm-zip@0.4.16: {}
@@ -12563,7 +12819,7 @@ snapshots:
array-buffer-byte-length@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
is-array-buffer: 3.0.5
array-includes@3.1.8:
@@ -12572,7 +12828,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.9
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
is-string: 1.1.1
array-union@2.1.0: {}
@@ -12584,30 +12840,31 @@ snapshots:
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
- array.prototype.findlastindex@1.2.5:
+ array.prototype.findlastindex@1.2.6:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
array.prototype.flat@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
array.prototype.flatmap@1.3.3:
dependencies:
call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.9
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
array.prototype.tosorted@1.1.4:
dependencies:
@@ -12615,7 +12872,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
- es-shim-unscopables: 1.0.2
+ es-shim-unscopables: 1.1.0
arraybuffer.prototype.slice@1.0.4:
dependencies:
@@ -12624,12 +12881,12 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
asn1.js@4.10.1:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
inherits: 2.0.4
minimalistic-assert: 1.0.1
@@ -12645,6 +12902,8 @@ snapshots:
ast-types-flow@0.0.8: {}
+ async-function@1.0.0: {}
+
async-mutex@0.2.6:
dependencies:
tslib: 2.8.1
@@ -12655,11 +12914,11 @@ snapshots:
available-typed-arrays@1.0.7:
dependencies:
- possible-typed-array-names: 1.0.0
+ possible-typed-array-names: 1.1.0
- axe-core@4.10.2: {}
+ axe-core@4.10.3: {}
- axios@1.8.4:
+ axios@1.9.0:
dependencies:
follow-redirects: 1.15.9(debug@4.4.0)
form-data: 4.0.2
@@ -12671,7 +12930,7 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-plugin-utils': 7.27.1
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -12679,31 +12938,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
- dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.1):
+ dependencies:
+ '@babel/core': 7.27.1
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.1)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.1)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.1)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.1)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.1)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.1)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.1)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.1)
balanced-match@1.0.2: {}
- base-x@3.0.11:
- dependencies:
- safe-buffer: 5.2.1
-
base-x@5.0.1: {}
base64-js@1.5.1: {}
@@ -12716,17 +12971,31 @@ snapshots:
big.js@5.2.2: {}
- bignumber.js@9.1.2: {}
+ big.js@6.2.2: {}
- binary-extensions@2.3.0: {}
+ bignumber.js@9.3.0: {}
- blakejs@1.2.1: {}
+ binary-extensions@2.3.0: {}
bn.js@4.11.6: {}
- bn.js@4.12.1: {}
+ bn.js@4.12.2: {}
+
+ bn.js@5.2.2: {}
- bn.js@5.2.1: {}
+ body-parser@2.2.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 4.4.0(supports-color@8.1.1)
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ on-finished: 2.4.1
+ qs: 6.14.0
+ raw-body: 3.0.0
+ type-is: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
bowser@2.11.0: {}
@@ -12786,13 +13055,13 @@ snapshots:
browserify-rsa@4.1.1:
dependencies:
- bn.js: 5.2.1
+ bn.js: 5.2.2
randombytes: 2.1.0
safe-buffer: 5.2.1
browserify-sign@4.2.3:
dependencies:
- bn.js: 5.2.1
+ bn.js: 5.2.2
browserify-rsa: 4.1.1
create-hash: 1.2.0
create-hmac: 1.1.7
@@ -12807,27 +13076,17 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.24.4:
+ browserslist@4.24.5:
dependencies:
- caniuse-lite: 1.0.30001695
- electron-to-chromium: 1.5.84
+ caniuse-lite: 1.0.30001717
+ electron-to-chromium: 1.5.149
node-releases: 2.0.19
- update-browserslist-db: 1.1.2(browserslist@4.24.4)
-
- bs58@4.0.1:
- dependencies:
- base-x: 3.0.11
+ update-browserslist-db: 1.1.3(browserslist@4.24.5)
bs58@6.0.0:
dependencies:
base-x: 5.0.1
- bs58check@2.1.2:
- dependencies:
- bs58: 4.0.1
- create-hash: 1.2.0
- safe-buffer: 5.2.1
-
bser@2.1.1:
dependencies:
node-int64: 0.4.0
@@ -12836,8 +13095,6 @@ snapshots:
buffer-reverse@1.0.1: {}
- buffer-to-arraybuffer@0.0.5: {}
-
buffer-xor@1.0.3: {}
buffer@5.7.1:
@@ -12864,22 +13121,22 @@ snapshots:
cac@6.7.14: {}
- call-bind-apply-helpers@1.0.1:
+ call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
call-bind@1.0.8:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-define-property: 1.0.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
set-function-length: 1.2.2
- call-bound@1.0.3:
+ call-bound@1.0.4:
dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.7
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
@@ -12887,7 +13144,7 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001695: {}
+ caniuse-lite@1.0.30001717: {}
chai@5.2.0:
dependencies:
@@ -13019,44 +13276,53 @@ snapshots:
tree-kill: 1.2.2
yargs: 17.7.2
- consola@3.4.0: {}
-
console-browserify@1.2.0: {}
constants-browserify@1.0.0: {}
+ content-disposition@1.0.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ content-type@1.0.5: {}
+
convert-source-map@2.0.0: {}
cookie-es@1.2.2: {}
+ cookie-signature@1.2.2: {}
+
cookie@0.4.2: {}
cookie@0.7.2: {}
cookie@1.0.2: {}
- cookiejar@2.1.4: {}
-
copy-to-clipboard@3.3.3:
dependencies:
toggle-selection: 1.0.6
core-util-is@1.0.3: {}
- cosmiconfig@8.3.6(typescript@5.8.2):
+ cors@2.8.5:
dependencies:
- import-fresh: 3.3.0
+ object-assign: 4.1.1
+ vary: 1.1.2
+
+ cosmiconfig@8.3.6(typescript@5.8.3):
+ dependencies:
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
crc-32@1.2.2: {}
create-ecdh@4.0.4:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
elliptic: 6.6.1
create-hash@1.2.0:
@@ -13096,7 +13362,7 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.3.1:
+ crossws@0.3.4:
dependencies:
uncrypto: 0.1.3
@@ -13119,40 +13385,35 @@ snapshots:
css.escape@1.5.1: {}
- cssstyle@4.3.0:
+ cssstyle@4.3.1:
dependencies:
- '@asamuzakjp/css-color': 3.1.1
+ '@asamuzakjp/css-color': 3.1.7
rrweb-cssom: 0.8.0
csstype@3.1.3: {}
- d@1.0.2:
- dependencies:
- es5-ext: 0.10.64
- type: 2.7.3
-
damerau-levenshtein@1.0.8: {}
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
+ whatwg-url: 14.2.0
data-view-buffer@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-data-view: 1.0.2
data-view-byte-length@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-data-view: 1.0.2
data-view-byte-offset@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-data-view: 1.0.2
@@ -13160,14 +13421,10 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.27.1
dayjs@1.11.13: {}
- debug@2.6.9:
- dependencies:
- ms: 2.0.0
-
debug@3.2.7:
dependencies:
ms: 2.1.3
@@ -13192,10 +13449,6 @@ snapshots:
decode-uri-component@0.2.2: {}
- decompress-response@3.3.0:
- dependencies:
- mimic-response: 1.0.1
-
deep-eql@5.0.2: {}
deep-is@0.1.4: {}
@@ -13220,12 +13473,20 @@ snapshots:
dequal@2.0.3: {}
+ derive-valtio@0.1.0(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1)):
+ dependencies:
+ valtio: 1.13.2(@types/react@19.1.2)(react@18.3.1)
+
+ derive-valtio@0.1.0(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0)):
+ dependencies:
+ valtio: 1.13.2(@types/react@19.1.2)(react@19.1.0)
+
des.js@1.1.0:
dependencies:
inherits: 2.0.4
minimalistic-assert: 1.0.1
- destr@2.0.3: {}
+ destr@2.0.5: {}
detect-browser@5.3.0: {}
@@ -13233,7 +13494,7 @@ snapshots:
detect-libc@1.0.3: {}
- detect-libc@2.0.3: {}
+ detect-libc@2.0.4: {}
detect-node-es@1.1.0: {}
@@ -13243,7 +13504,7 @@ snapshots:
diffie-hellman@5.0.3:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
miller-rabin: 4.0.1
randombytes: 2.1.0
@@ -13265,8 +13526,6 @@ snapshots:
dom-accessibility-api@0.6.3: {}
- dom-walk@0.1.2: {}
-
domain-browser@4.22.0: {}
dot-case@3.0.4:
@@ -13280,7 +13539,7 @@ snapshots:
dunder-proto@1.0.1:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-errors: 1.3.0
gopd: 1.2.0
@@ -13293,18 +13552,20 @@ snapshots:
eastasianwidth@0.2.0: {}
- eciesjs@0.4.13:
+ eciesjs@0.4.14:
dependencies:
- '@ecies/ciphers': 0.2.2(@noble/ciphers@1.2.1)
- '@noble/ciphers': 1.2.1
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
+ '@ecies/ciphers': 0.2.3(@noble/ciphers@1.3.0)
+ '@noble/ciphers': 1.3.0
+ '@noble/curves': 1.9.0
+ '@noble/hashes': 1.8.0
+
+ ee-first@1.1.1: {}
- electron-to-chromium@1.5.84: {}
+ electron-to-chromium@1.5.149: {}
elliptic@6.6.1:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
brorand: 1.1.0
hash.js: 1.1.7
hmac-drbg: 1.0.1
@@ -13325,11 +13586,13 @@ snapshots:
encode-utf8@1.0.3: {}
+ encodeurl@2.0.0: {}
+
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
- engine.io-client@6.6.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ engine.io-client@6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
@@ -13355,6 +13618,8 @@ snapshots:
entities@4.5.0: {}
+ entities@6.0.0: {}
+
env-paths@2.2.1: {}
environment@1.1.0: {}
@@ -13369,7 +13634,7 @@ snapshots:
arraybuffer.prototype.slice: 1.0.4
available-typed-arrays: 1.0.7
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
data-view-buffer: 1.0.2
data-view-byte-length: 1.0.2
data-view-byte-offset: 1.0.1
@@ -13379,7 +13644,7 @@ snapshots:
es-set-tostringtag: 2.1.0
es-to-primitive: 1.3.0
function.prototype.name: 1.1.8
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-proto: 1.0.1
get-symbol-description: 1.1.0
globalthis: 1.0.4
@@ -13396,9 +13661,9 @@ snapshots:
is-shared-array-buffer: 1.0.4
is-string: 1.1.1
is-typed-array: 1.1.15
- is-weakref: 1.1.0
+ is-weakref: 1.1.1
math-intrinsics: 1.1.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
object-keys: 1.1.1
object.assign: 4.1.7
own-keys: 1.0.1
@@ -13415,7 +13680,7 @@ snapshots:
typed-array-byte-offset: 1.0.4
typed-array-length: 1.0.7
unbox-primitive: 1.1.0
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
es-define-property@1.0.1: {}
@@ -13424,13 +13689,13 @@ snapshots:
es-iterator-helpers@1.2.1:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
es-set-tostringtag: 2.1.0
function-bind: 1.1.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
globalthis: 1.0.4
gopd: 1.2.0
has-property-descriptors: 1.0.2
@@ -13440,7 +13705,7 @@ snapshots:
iterator.prototype: 1.1.5
safe-array-concat: 1.1.3
- es-module-lexer@1.6.0: {}
+ es-module-lexer@1.7.0: {}
es-object-atoms@1.1.1:
dependencies:
@@ -13449,11 +13714,11 @@ snapshots:
es-set-tostringtag@2.1.0:
dependencies:
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
has-tostringtag: 1.0.2
hasown: 2.0.2
- es-shim-unscopables@1.0.2:
+ es-shim-unscopables@1.1.0:
dependencies:
hasown: 2.0.2
@@ -13465,24 +13730,6 @@ snapshots:
es-toolkit@1.33.0: {}
- es5-ext@0.10.64:
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.4
- esniff: 2.0.1
- next-tick: 1.1.0
-
- es6-iterator@2.0.3:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-symbol: 3.1.4
-
- es6-symbol@3.1.4:
- dependencies:
- d: 1.0.2
- ext: 1.7.0
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -13509,54 +13756,56 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- esbuild@0.25.1:
+ esbuild@0.25.3:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.1
- '@esbuild/android-arm': 0.25.1
- '@esbuild/android-arm64': 0.25.1
- '@esbuild/android-x64': 0.25.1
- '@esbuild/darwin-arm64': 0.25.1
- '@esbuild/darwin-x64': 0.25.1
- '@esbuild/freebsd-arm64': 0.25.1
- '@esbuild/freebsd-x64': 0.25.1
- '@esbuild/linux-arm': 0.25.1
- '@esbuild/linux-arm64': 0.25.1
- '@esbuild/linux-ia32': 0.25.1
- '@esbuild/linux-loong64': 0.25.1
- '@esbuild/linux-mips64el': 0.25.1
- '@esbuild/linux-ppc64': 0.25.1
- '@esbuild/linux-riscv64': 0.25.1
- '@esbuild/linux-s390x': 0.25.1
- '@esbuild/linux-x64': 0.25.1
- '@esbuild/netbsd-arm64': 0.25.1
- '@esbuild/netbsd-x64': 0.25.1
- '@esbuild/openbsd-arm64': 0.25.1
- '@esbuild/openbsd-x64': 0.25.1
- '@esbuild/sunos-x64': 0.25.1
- '@esbuild/win32-arm64': 0.25.1
- '@esbuild/win32-ia32': 0.25.1
- '@esbuild/win32-x64': 0.25.1
+ '@esbuild/aix-ppc64': 0.25.3
+ '@esbuild/android-arm': 0.25.3
+ '@esbuild/android-arm64': 0.25.3
+ '@esbuild/android-x64': 0.25.3
+ '@esbuild/darwin-arm64': 0.25.3
+ '@esbuild/darwin-x64': 0.25.3
+ '@esbuild/freebsd-arm64': 0.25.3
+ '@esbuild/freebsd-x64': 0.25.3
+ '@esbuild/linux-arm': 0.25.3
+ '@esbuild/linux-arm64': 0.25.3
+ '@esbuild/linux-ia32': 0.25.3
+ '@esbuild/linux-loong64': 0.25.3
+ '@esbuild/linux-mips64el': 0.25.3
+ '@esbuild/linux-ppc64': 0.25.3
+ '@esbuild/linux-riscv64': 0.25.3
+ '@esbuild/linux-s390x': 0.25.3
+ '@esbuild/linux-x64': 0.25.3
+ '@esbuild/netbsd-arm64': 0.25.3
+ '@esbuild/netbsd-x64': 0.25.3
+ '@esbuild/openbsd-arm64': 0.25.3
+ '@esbuild/openbsd-x64': 0.25.3
+ '@esbuild/sunos-x64': 0.25.3
+ '@esbuild/win32-arm64': 0.25.3
+ '@esbuild/win32-ia32': 0.25.3
+ '@esbuild/win32-x64': 0.25.3
escalade@3.2.0: {}
+ escape-html@1.0.3: {}
+
escape-string-regexp@2.0.0: {}
escape-string-regexp@4.0.0: {}
- eslint-config-next@14.2.3(eslint@8.57.1)(typescript@5.8.2):
+ eslint-config-next@14.2.3(eslint@8.57.1)(typescript@5.8.3):
dependencies:
'@next/eslint-plugin-next': 14.2.3
- '@rushstack/eslint-patch': 1.10.5
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.8.2)
+ '@rushstack/eslint-patch': 1.11.0
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.8.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@8.57.1)
eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
- eslint-plugin-react: 7.37.4(eslint@8.57.1)
+ eslint-plugin-react: 7.37.5(eslint@8.57.1)
eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
@@ -13570,54 +13819,53 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.0(supports-color@8.1.1)
- enhanced-resolve: 5.18.1
eslint: 8.57.1
- fast-glob: 3.3.3
get-tsconfig: 4.10.0
- is-bun-module: 1.3.0
- is-glob: 4.0.3
- stable-hash: 0.0.4
+ is-bun-module: 2.0.0
+ stable-hash: 0.0.5
+ tinyglobby: 0.2.13
+ unrs-resolver: 1.7.2
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.22.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.26.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
+ array.prototype.findlastindex: 1.2.6
array.prototype.flat: 1.3.3
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -13629,24 +13877,24 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
+ array.prototype.findlastindex: 1.2.6
array.prototype.flat: 1.3.3
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.22.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.26.0(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -13658,7 +13906,7 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -13670,7 +13918,7 @@ snapshots:
array-includes: 3.1.8
array.prototype.flatmap: 1.3.3
ast-types-flow: 0.0.8
- axe-core: 4.10.2
+ axe-core: 4.10.3
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
@@ -13687,11 +13935,11 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-plugin-react-hooks@5.2.0(eslint@9.22.0(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.26.0(jiti@2.4.2)):
dependencies:
- eslint: 9.22.0(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-react@7.37.4(eslint@8.57.1):
+ eslint-plugin-react@7.37.5(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -13704,7 +13952,7 @@ snapshots:
hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.8
+ object.entries: 1.1.9
object.fromentries: 2.0.8
object.values: 1.2.1
prop-types: 15.8.1
@@ -13729,14 +13977,14 @@ snapshots:
eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
'@eslint-community/regexpp': 4.12.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.1
'@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.1
+ '@ungap/structured-clone': 1.3.0
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
@@ -13770,20 +14018,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@9.22.0(jiti@2.4.2):
+ eslint@9.26.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.19.2
- '@eslint/config-helpers': 0.1.0
- '@eslint/core': 0.12.0
- '@eslint/eslintrc': 3.3.0
- '@eslint/js': 9.22.0
- '@eslint/plugin-kit': 0.2.7
+ '@eslint/config-array': 0.20.0
+ '@eslint/config-helpers': 0.2.2
+ '@eslint/core': 0.13.0
+ '@eslint/eslintrc': 3.3.1
+ '@eslint/js': 9.26.0
+ '@eslint/plugin-kit': 0.2.8
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.6
+ '@modelcontextprotocol/sdk': 1.11.0
+ '@types/estree': 1.0.7
'@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
@@ -13807,28 +14056,22 @@ snapshots:
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
+ zod: 3.24.4
optionalDependencies:
jiti: 2.4.2
transitivePeerDependencies:
- supports-color
- esniff@2.0.1:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- event-emitter: 0.3.5
- type: 2.7.3
-
espree@10.3.0:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
eslint-visitor-keys: 4.2.0
espree@9.6.1:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -13847,10 +14090,12 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
esutils@2.0.3: {}
+ etag@1.8.1: {}
+
eth-block-tracker@7.1.0:
dependencies:
'@metamask/eth-json-rpc-provider': 1.0.1
@@ -13869,12 +14114,6 @@ snapshots:
json-rpc-engine: 6.1.0
pify: 5.0.0
- eth-lib@0.2.8:
- dependencies:
- bn.js: 4.12.1
- elliptic: 6.6.1
- xhr-request-promise: 0.1.3
-
eth-query@2.1.2:
dependencies:
json-rpc-random-id: 1.0.1
@@ -13886,25 +14125,7 @@ snapshots:
ethereum-bloom-filters@1.2.0:
dependencies:
- '@noble/hashes': 1.7.1
-
- ethereum-cryptography@0.1.3:
- dependencies:
- '@types/pbkdf2': 3.1.2
- '@types/secp256k1': 4.0.6
- blakejs: 1.2.1
- browserify-aes: 1.2.0
- bs58check: 2.1.2
- create-hash: 1.2.0
- create-hmac: 1.1.7
- hash.js: 1.1.7
- keccak: 3.0.4
- pbkdf2: 3.1.2
- randombytes: 2.1.0
- safe-buffer: 5.2.1
- scrypt-js: 3.0.1
- secp256k1: 4.0.4
- setimmediate: 1.0.5
+ '@noble/hashes': 1.8.0
ethereum-cryptography@1.2.0:
dependencies:
@@ -13920,43 +14141,7 @@ snapshots:
'@scure/bip32': 1.4.0
'@scure/bip39': 1.3.0
- ethereumjs-abi@0.6.8:
- dependencies:
- bn.js: 4.12.1
- ethereumjs-util: 6.2.1
-
- ethereumjs-util@6.2.1:
- dependencies:
- '@types/bn.js': 4.11.6
- bn.js: 4.12.1
- create-hash: 1.2.0
- elliptic: 6.6.1
- ethereum-cryptography: 0.1.3
- ethjs-util: 0.1.6
- rlp: 2.2.7
-
- ethereumjs-util@7.1.5:
- dependencies:
- '@types/bn.js': 5.1.6
- bn.js: 5.2.1
- create-hash: 1.2.0
- ethereum-cryptography: 0.1.3
- rlp: 2.2.7
-
- ethers@6.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
- dependencies:
- '@adraffy/ens-normalize': 1.10.1
- '@noble/curves': 1.2.0
- '@noble/hashes': 1.3.2
- '@types/node': 18.15.13
- aes-js: 4.0.0-beta.5
- tslib: 2.4.0
- ws: 8.5.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- ethers@6.13.5(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ ethers@6.13.7(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@adraffy/ens-normalize': 1.10.1
'@noble/curves': 1.2.0
@@ -13974,32 +14159,26 @@ snapshots:
bn.js: 4.11.6
number-to-bn: 1.7.0
- ethjs-util@0.1.6:
- dependencies:
- is-hex-prefixed: 1.0.0
- strip-hex-prefix: 1.0.0
-
- event-emitter@0.3.5:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
-
eventemitter2@6.4.9: {}
- eventemitter3@4.0.4: {}
-
eventemitter3@4.0.7: {}
eventemitter3@5.0.1: {}
events@3.3.0: {}
+ eventsource-parser@3.0.1: {}
+
+ eventsource@3.0.6:
+ dependencies:
+ eventsource-parser: 3.0.1
+
evp_bytestokey@1.0.3:
dependencies:
md5.js: 1.3.5
safe-buffer: 5.2.1
- expect-type@1.2.0: {}
+ expect-type@1.2.1: {}
expect@29.7.0:
dependencies:
@@ -14009,9 +14188,41 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- ext@1.7.0:
+ express-rate-limit@7.5.0(express@5.1.0):
+ dependencies:
+ express: 5.1.0
+
+ express@5.1.0:
dependencies:
- type: 2.7.3
+ accepts: 2.0.0
+ body-parser: 2.2.0
+ content-disposition: 1.0.0
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.0(supports-color@8.1.1)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.0
+ fresh: 2.0.0
+ http-errors: 2.0.0
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.1
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.14.0
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.0
+ serve-static: 2.2.0
+ statuses: 2.0.1
+ type-is: 2.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
extendable-error@0.1.7: {}
@@ -14046,17 +14257,17 @@ snapshots:
fast-xml-parser@4.4.1:
dependencies:
- strnum: 1.0.5
+ strnum: 1.1.2
- fastq@1.18.0:
+ fastq@1.19.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
fb-watchman@2.0.2:
dependencies:
bser: 2.1.1
- fdir@6.4.3(picomatch@4.0.2):
+ fdir@6.4.4(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -14076,6 +14287,17 @@ snapshots:
filter-obj@1.1.0: {}
+ finalhandler@2.1.0:
+ dependencies:
+ debug: 4.4.0(supports-color@8.1.1)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -14088,28 +14310,28 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.3
keyv: 4.5.4
rimraf: 3.0.2
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.3
keyv: 4.5.4
flat@5.0.2: {}
- flatted@3.3.2: {}
+ flatted@3.3.3: {}
follow-redirects@1.15.9(debug@4.4.0):
optionalDependencies:
debug: 4.4.0(supports-color@8.1.1)
- for-each@0.3.3:
+ for-each@0.3.5:
dependencies:
is-callable: 1.2.7
- foreground-child@3.3.0:
+ foreground-child@3.3.1:
dependencies:
cross-spawn: 7.0.6
signal-exit: 4.1.0
@@ -14121,17 +14343,20 @@ snapshots:
es-set-tostringtag: 2.1.0
mime-types: 2.1.35
+ forwarded@0.2.0: {}
+
fp-ts@1.19.3: {}
- framer-motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ framer-motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- motion-dom: 12.4.10
- motion-utils: 12.4.10
+ motion-dom: 12.9.6
+ motion-utils: 12.9.4
tslib: 2.8.1
optionalDependencies:
- '@emotion/is-prop-valid': 0.8.8
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ fresh@2.0.0: {}
fs-extra@7.0.1:
dependencies:
@@ -14155,7 +14380,7 @@ snapshots:
function.prototype.name@1.1.8:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
functions-have-names: 1.2.3
hasown: 2.0.2
@@ -14169,9 +14394,9 @@ snapshots:
get-caller-file@2.0.5: {}
- get-intrinsic@1.2.7:
+ get-intrinsic@1.3.0:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-define-property: 1.0.1
es-errors: 1.3.0
es-object-atoms: 1.1.1
@@ -14193,9 +14418,9 @@ snapshots:
get-symbol-description@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-tsconfig@4.10.0:
dependencies:
@@ -14211,7 +14436,7 @@ snapshots:
glob@10.3.10:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.3.1
jackspeak: 2.3.6
minimatch: 9.0.5
minipass: 7.1.2
@@ -14219,7 +14444,7 @@ snapshots:
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.3.1
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
@@ -14245,11 +14470,6 @@ snapshots:
global-const@0.1.2: {}
- global@4.4.0:
- dependencies:
- min-document: 2.19.0
- process: 0.11.10
-
globals@11.12.0: {}
globals@13.24.0:
@@ -14280,34 +14500,30 @@ snapshots:
graphemer@1.4.0: {}
- graphql@16.10.0: {}
+ graphql@16.11.0: {}
- h3@1.13.1:
+ h3@1.15.3:
dependencies:
cookie-es: 1.2.2
- crossws: 0.3.1
+ crossws: 0.3.4
defu: 6.1.4
- destr: 2.0.3
+ destr: 2.0.5
iron-webcrypto: 1.2.1
- ohash: 1.1.4
+ node-mock-http: 1.0.0
radix3: 1.1.2
- ufo: 1.5.4
+ ufo: 1.6.1
uncrypto: 0.1.3
- unenv: 1.10.0
- hardhat-watcher@2.5.0(hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)):
+ hardhat-watcher@2.5.0(hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)):
dependencies:
chokidar: 3.6.0
- hardhat: 2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ hardhat: 2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)
- hardhat@2.22.19(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10):
+ hardhat@2.23.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10):
dependencies:
+ '@ethereumjs/util': 9.1.0
'@ethersproject/abi': 5.8.0
- '@metamask/eth-sig-util': 4.0.1
- '@nomicfoundation/edr': 0.8.0
- '@nomicfoundation/ethereumjs-common': 4.0.4
- '@nomicfoundation/ethereumjs-tx': 5.0.4
- '@nomicfoundation/ethereumjs-util': 9.0.4
+ '@nomicfoundation/edr': 0.10.0
'@nomicfoundation/solidity-analyzer': 0.1.2
'@sentry/node': 5.30.0
'@types/bn.js': 5.1.6
@@ -14322,7 +14538,6 @@ snapshots:
enquirer: 2.4.1
env-paths: 2.2.1
ethereum-cryptography: 1.2.0
- ethereumjs-abi: 0.6.8
find-up: 5.0.0
fp-ts: 1.19.3
fs-extra: 7.0.1
@@ -14331,6 +14546,7 @@ snapshots:
json-stream-stringify: 3.1.6
keccak: 3.0.4
lodash: 4.17.21
+ micro-eth-signer: 0.14.0
mnemonist: 0.38.5
mocha: 10.8.2
p-map: 4.0.0
@@ -14341,16 +14557,15 @@ snapshots:
solc: 0.8.26(debug@4.4.0)
source-map-support: 0.5.21
stacktrace-parser: 0.1.11
- tinyglobby: 0.2.12
+ tinyglobby: 0.2.13
tsort: 0.0.1
undici: 5.29.0
uuid: 8.3.2
ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- bufferutil
- - c-kzg
- supports-color
- utf-8-validate
@@ -14390,8 +14605,6 @@ snapshots:
headers-polyfill@4.0.3: {}
- hey-listen@1.0.8: {}
-
highlight.js@10.7.3: {}
hmac-drbg@1.0.1:
@@ -14416,8 +14629,6 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-https@1.0.0: {}
-
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
@@ -14441,7 +14652,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- human-id@1.0.2: {}
+ human-id@4.1.1: {}
husky@9.1.7: {}
@@ -14465,7 +14676,7 @@ snapshots:
immutable@4.3.7: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
@@ -14491,24 +14702,27 @@ snapshots:
dependencies:
fp-ts: 1.19.3
+ ipaddr.js@1.9.1: {}
+
iron-webcrypto@1.2.1: {}
is-arguments@1.2.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-array-buffer@3.0.5:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
- is-async-function@2.1.0:
+ is-async-function@2.1.1:
dependencies:
- call-bound: 1.0.3
+ async-function: 1.0.0
+ call-bound: 1.0.4
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
@@ -14521,14 +14735,14 @@ snapshots:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.2.1:
+ is-boolean-object@1.2.2:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-bun-module@1.3.0:
+ is-bun-module@2.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
is-callable@1.2.7: {}
@@ -14538,28 +14752,26 @@ snapshots:
is-data-view@1.0.2:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-typed-array: 1.1.15
is-date-object@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-extglob@2.1.1: {}
is-finalizationregistry@1.1.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
is-fullwidth-code-point@3.0.0: {}
- is-function@1.0.2: {}
-
is-generator-function@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
@@ -14581,7 +14793,7 @@ snapshots:
is-number-object@1.1.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -14592,9 +14804,11 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
+ is-promise@4.0.0: {}
+
is-regex@1.2.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
gopd: 1.2.0
has-tostringtag: 1.0.2
hasown: 2.0.2
@@ -14603,13 +14817,13 @@ snapshots:
is-shared-array-buffer@1.0.4:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
is-stream@2.0.1: {}
is-string@1.1.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-subdir@1.2.0:
@@ -14618,13 +14832,13 @@ snapshots:
is-symbol@1.1.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-symbols: 1.1.0
safe-regex-test: 1.1.0
is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
is-typedarray@1.0.0: {}
@@ -14632,14 +14846,14 @@ snapshots:
is-weakmap@2.0.2: {}
- is-weakref@1.1.0:
+ is-weakref@1.1.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
is-weakset@2.0.4:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-windows@1.0.2: {}
@@ -14663,8 +14877,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.0
- '@babel/parser': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/parser': 7.27.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -14675,7 +14889,7 @@ snapshots:
dependencies:
define-data-property: 1.1.4
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-proto: 1.0.1
has-symbols: 1.1.0
set-function-name: 2.0.2
@@ -14705,7 +14919,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -14726,7 +14940,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -14739,22 +14953,22 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
jest-util: 29.7.0
jest-regex-util@29.6.3: {}
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.26.0
- '@babel/generator': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.5
+ '@babel/core': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
+ '@babel/types': 7.27.1
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.1)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -14765,14 +14979,14 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.3
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -14780,7 +14994,7 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -14808,7 +15022,7 @@ snapshots:
jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
- cssstyle: 4.3.0
+ cssstyle: 4.3.1
data-urls: 5.0.0
decimal.js: 10.5.0
form-data: 4.0.2
@@ -14816,8 +15030,8 @@ snapshots:
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.18
- parse5: 7.2.1
+ nwsapi: 2.2.20
+ parse5: 7.3.0
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -14826,8 +15040,8 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.1
- ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ whatwg-url: 14.2.0
+ ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -14935,7 +15149,7 @@ snapshots:
lightningcss@1.29.2:
dependencies:
- detect-libc: 2.0.3
+ detect-libc: 2.0.4
optionalDependencies:
lightningcss-darwin-arm64: 1.29.2
lightningcss-darwin-x64: 1.29.2
@@ -14950,21 +15164,21 @@ snapshots:
lines-and-columns@1.2.4: {}
- lit-element@3.3.3:
+ lit-element@4.2.0:
dependencies:
'@lit-labs/ssr-dom-shim': 1.3.0
- '@lit/reactive-element': 1.6.3
- lit-html: 2.8.0
+ '@lit/reactive-element': 2.1.0
+ lit-html: 3.3.0
- lit-html@2.8.0:
+ lit-html@3.3.0:
dependencies:
'@types/trusted-types': 2.0.7
- lit@2.8.0:
+ lit@3.1.0:
dependencies:
- '@lit/reactive-element': 1.6.3
- lit-element: 3.3.3
- lit-html: 2.8.0
+ '@lit/reactive-element': 2.1.0
+ lit-element: 4.2.0
+ lit-html: 3.3.0
localforage@1.10.0:
dependencies:
@@ -15013,14 +15227,12 @@ snapshots:
lz-string@1.5.0: {}
- magic-sdk@29.0.3:
+ magic-sdk@29.0.6:
dependencies:
- '@magic-sdk/commons': 25.0.3(@magic-sdk/provider@29.0.3(localforage@1.10.0))(@magic-sdk/types@24.18.1)
- '@magic-sdk/provider': 29.0.3(localforage@1.10.0)
- '@magic-sdk/types': 24.18.1
+ '@magic-sdk/commons': 25.0.6(@magic-sdk/provider@29.0.6(localforage@1.10.0))(@magic-sdk/types@24.18.2)
+ '@magic-sdk/provider': 29.0.6(localforage@1.10.0)
+ '@magic-sdk/types': 24.18.2
localforage: 1.10.0
- transitivePeerDependencies:
- - supports-color
magic-string@0.30.17:
dependencies:
@@ -15051,26 +15263,40 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
+ media-typer@1.1.0: {}
+
memorystream@0.3.1: {}
+ merge-descriptors@2.0.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
merkletreejs@0.3.11:
dependencies:
- bignumber.js: 9.1.2
+ bignumber.js: 9.3.0
buffer-reverse: 1.0.1
crypto-js: 4.2.0
treeify: 1.1.0
web3-utils: 1.10.4
+ micro-eth-signer@0.14.0:
+ dependencies:
+ '@noble/curves': 1.8.2
+ '@noble/hashes': 1.7.2
+ micro-packed: 0.7.3
+
micro-ftch@0.3.1: {}
- micro-observables@1.7.2(react@19.0.0):
+ micro-observables@1.7.2(react@19.1.0):
dependencies:
hoist-non-react-statics: 3.3.2
- react: 19.0.0
+ react: 19.1.0
+
+ micro-packed@0.7.3:
+ dependencies:
+ '@scure/base': 1.2.5
micromatch@4.0.8:
dependencies:
@@ -15079,22 +15305,20 @@ snapshots:
miller-rabin@4.0.1:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
brorand: 1.1.0
mime-db@1.52.0: {}
+ mime-db@1.54.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
- mime@3.0.0: {}
-
- mimic-response@1.0.1: {}
-
- min-document@2.19.0:
+ mime-types@3.0.1:
dependencies:
- dom-walk: 0.1.2
+ mime-db: 1.54.0
min-indent@1.0.1: {}
@@ -15122,9 +15346,9 @@ snapshots:
minipass@7.1.2: {}
- mipd@0.0.7(typescript@5.8.2):
+ mipd@0.0.7(typescript@5.8.3):
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
mnemonist@0.38.5:
dependencies:
@@ -15153,58 +15377,46 @@ snapshots:
yargs-parser: 20.2.9
yargs-unparser: 2.0.0
- motion-dom@12.4.10:
+ motion-dom@12.9.6:
dependencies:
- motion-utils: 12.4.10
+ motion-utils: 12.9.4
- motion-utils@12.4.10: {}
-
- motion@10.16.2:
- dependencies:
- '@motionone/animation': 10.18.0
- '@motionone/dom': 10.18.0
- '@motionone/svelte': 10.16.4
- '@motionone/types': 10.17.1
- '@motionone/utils': 10.18.0
- '@motionone/vue': 10.16.4
+ motion-utils@12.9.4: {}
- motion@12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ motion@12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- framer-motion: 12.4.10(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ framer-motion: 12.9.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tslib: 2.8.1
optionalDependencies:
- '@emotion/is-prop-valid': 0.8.8
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
mri@1.2.0: {}
- ms@2.0.0: {}
-
ms@2.1.3: {}
- msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2):
+ msw@2.7.6(@types/node@22.7.5)(typescript@5.8.3):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.7(@types/node@22.7.5)
+ '@inquirer/confirm': 5.1.9(@types/node@22.7.5)
'@mswjs/interceptors': 0.37.6
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
'@types/statuses': 2.0.5
- graphql: 16.10.0
+ graphql: 16.11.0
headers-polyfill: 4.0.3
is-node-process: 1.2.0
outvariant: 1.4.3
path-to-regexp: 6.3.0
picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.37.0
+ type-fest: 4.40.1
yargs: 17.7.2
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- '@types/node'
@@ -15218,23 +15430,25 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.8: {}
+ nanoid@3.3.11: {}
+
+ napi-postinstall@0.2.3: {}
natural-compare@1.4.0: {}
- next-tick@1.1.0: {}
+ negotiator@1.0.0: {}
- next@14.2.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ next@14.2.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
'@next/env': 14.2.3
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001695
+ caniuse-lite: 1.0.30001717
graceful-fs: 4.2.11
postcss: 8.4.31
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- styled-jsx: 5.1.1(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.1(react@19.1.0)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.3
'@next/swc-darwin-x64': 14.2.3
@@ -15256,8 +15470,6 @@ snapshots:
node-addon-api@2.0.2: {}
- node-addon-api@5.1.0: {}
-
node-addon-api@7.1.1: {}
node-emoji@2.2.0:
@@ -15277,9 +15489,11 @@ snapshots:
node-int64@0.4.0: {}
+ node-mock-http@1.0.0: {}
+
node-releases@2.0.19: {}
- node-stdlib-browser@1.3.0:
+ node-stdlib-browser@1.3.1:
dependencies:
assert: 2.1.0
browser-resolve: 2.0.0
@@ -15316,7 +15530,7 @@ snapshots:
bn.js: 4.11.6
strip-hex-prefix: 1.0.0
- nwsapi@2.2.18: {}
+ nwsapi@2.2.20: {}
obj-multiplex@1.0.0:
dependencies:
@@ -15326,7 +15540,7 @@ snapshots:
object-assign@4.1.1: {}
- object-inspect@1.13.3: {}
+ object-inspect@1.13.4: {}
object-is@1.1.6:
dependencies:
@@ -15338,15 +15552,16 @@ snapshots:
object.assign@4.1.7:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
has-symbols: 1.1.0
object-keys: 1.1.1
- object.entries@1.1.8:
+ object.entries@1.1.9:
dependencies:
call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
@@ -15366,23 +15581,17 @@ snapshots:
object.values@1.2.1:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
obliterator@2.0.5: {}
- oboe@2.1.5:
- dependencies:
- http-https: 1.0.0
-
ofetch@1.4.1:
dependencies:
- destr: 2.0.3
+ destr: 2.0.5
node-fetch-native: 1.6.6
- ufo: 1.5.4
-
- ohash@1.1.4: {}
+ ufo: 1.6.1
oidc-client-ts@2.4.0:
dependencies:
@@ -15391,6 +15600,10 @@ snapshots:
on-exit-leak-free@0.2.0: {}
+ on-finished@2.4.1:
+ dependencies:
+ ee-first: 1.1.1
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -15414,35 +15627,49 @@ snapshots:
own-keys@1.0.1:
dependencies:
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
object-keys: 1.1.1
safe-push-apply: 1.0.0
- ox@0.6.7(typescript@5.8.2):
+ ox@0.6.7(typescript@5.8.3)(zod@3.24.4):
dependencies:
'@adraffy/ens-normalize': 1.11.0
'@noble/curves': 1.8.1
'@noble/hashes': 1.7.1
'@scure/bip32': 1.6.2
'@scure/bip39': 1.5.4
- abitype: 1.0.8(typescript@5.8.2)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.24.4)
+ eventemitter3: 5.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - zod
+
+ ox@0.6.9(typescript@5.8.3)(zod@3.22.4):
+ dependencies:
+ '@adraffy/ens-normalize': 1.11.0
+ '@noble/curves': 1.8.2
+ '@noble/hashes': 1.7.2
+ '@scure/bip32': 1.6.2
+ '@scure/bip39': 1.5.4
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.22.4)
eventemitter3: 5.0.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- zod
- ox@0.6.9(typescript@5.8.2):
+ ox@0.6.9(typescript@5.8.3)(zod@3.24.4):
dependencies:
'@adraffy/ens-normalize': 1.11.0
'@noble/curves': 1.8.2
'@noble/hashes': 1.7.2
'@scure/bip32': 1.6.2
'@scure/bip39': 1.5.4
- abitype: 1.0.8(typescript@5.8.2)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.24.4)
eventemitter3: 5.0.1
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- zod
@@ -15476,7 +15703,9 @@ snapshots:
package-json-from-dist@1.0.1: {}
- package-manager-detector@0.2.8: {}
+ package-manager-detector@0.2.11:
+ dependencies:
+ quansync: 0.2.10
pako@1.0.11: {}
@@ -15495,11 +15724,9 @@ snapshots:
pbkdf2: 3.1.2
safe-buffer: 5.2.1
- parse-headers@2.0.6: {}
-
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -15512,9 +15739,11 @@ snapshots:
parse5@6.0.1: {}
- parse5@7.2.1:
+ parse5@7.3.0:
dependencies:
- entities: 4.5.0
+ entities: 6.0.0
+
+ parseurl@1.3.3: {}
path-browserify@1.0.1: {}
@@ -15533,6 +15762,8 @@ snapshots:
path-to-regexp@6.3.0: {}
+ path-to-regexp@8.2.0: {}
+
path-type@4.0.0: {}
pathe@1.1.2: {}
@@ -15547,21 +15778,21 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- pg-cloudflare@1.1.1:
+ pg-cloudflare@1.2.5:
optional: true
- pg-connection-string@2.7.0:
+ pg-connection-string@2.8.5:
optional: true
pg-int8@1.0.1:
optional: true
- pg-pool@3.8.0(pg@8.14.1):
+ pg-pool@3.9.6(pg@8.15.6):
dependencies:
- pg: 8.14.1
+ pg: 8.15.6
optional: true
- pg-protocol@1.8.0:
+ pg-protocol@1.9.5:
optional: true
pg-types@2.2.0:
@@ -15573,15 +15804,15 @@ snapshots:
postgres-interval: 1.2.0
optional: true
- pg@8.14.1:
+ pg@8.15.6:
dependencies:
- pg-connection-string: 2.7.0
- pg-pool: 3.8.0(pg@8.14.1)
- pg-protocol: 1.8.0
+ pg-connection-string: 2.8.5
+ pg-pool: 3.9.6(pg@8.15.6)
+ pg-protocol: 1.9.5
pg-types: 2.2.0
pgpass: 1.0.5
optionalDependencies:
- pg-cloudflare: 1.1.1
+ pg-cloudflare: 1.2.5
optional: true
pgpass@1.0.5:
@@ -15624,6 +15855,8 @@ snapshots:
pirates@4.0.7: {}
+ pkce-challenge@5.0.0: {}
+
pkg-dir@5.0.0:
dependencies:
find-up: 5.0.0
@@ -15632,23 +15865,17 @@ snapshots:
pony-cause@2.1.11: {}
- possible-typed-array-names@1.0.0: {}
+ possible-typed-array-names@1.1.0: {}
postcss@8.4.31:
dependencies:
- nanoid: 3.3.8
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- postcss@8.5.1:
- dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.5.3:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -15666,13 +15893,13 @@ snapshots:
xtend: 4.0.2
optional: true
- preact@10.25.4: {}
+ preact@10.26.5: {}
prelude-ls@1.2.1: {}
prettier@2.8.8: {}
- prettier@3.4.2: {}
+ prettier@3.5.3: {}
pretty-format@27.5.1:
dependencies:
@@ -15705,7 +15932,12 @@ snapshots:
object-assign: 4.1.1
react-is: 16.13.1
- proxy-compare@2.5.1: {}
+ proxy-addr@2.0.7:
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+
+ proxy-compare@2.6.0: {}
proxy-from-env@1.1.0: {}
@@ -15715,7 +15947,7 @@ snapshots:
public-encrypt@4.0.3:
dependencies:
- bn.js: 4.12.1
+ bn.js: 4.12.2
browserify-rsa: 4.1.1
create-hash: 1.2.0
parse-asn1: 5.1.7
@@ -15731,9 +15963,9 @@ snapshots:
punycode@2.3.1: {}
- qrcode.react@4.2.0(react@19.0.0):
+ qrcode.react@4.2.0(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
qrcode@1.5.3:
dependencies:
@@ -15746,11 +15978,7 @@ snapshots:
dependencies:
side-channel: 1.1.0
- query-string@5.1.1:
- dependencies:
- decode-uri-component: 0.2.2
- object-assign: 4.1.1
- strict-uri-encode: 1.1.0
+ quansync@0.2.10: {}
query-string@7.1.3:
dependencies:
@@ -15778,6 +16006,8 @@ snapshots:
randombytes: 2.1.0
safe-buffer: 5.2.1
+ range-parser@1.2.1: {}
+
raw-body@2.5.2:
dependencies:
bytes: 3.1.2
@@ -15785,16 +16015,23 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- react-apple-signin-auth@1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ raw-body@3.0.0:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ unpipe: 1.0.0
+
+ react-apple-signin-auth@1.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
- react-copy-to-clipboard@5.1.0(react@19.0.0):
+ react-copy-to-clipboard@5.1.0(react@19.1.0):
dependencies:
copy-to-clipboard: 3.3.3
prop-types: 15.8.1
- react: 19.0.0
+ react: 19.1.0
react-dom@18.3.1(react@18.3.1):
dependencies:
@@ -15802,14 +16039,14 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dom@19.0.0(react@19.0.0):
+ react-dom@19.1.0(react@19.1.0):
dependencies:
- react: 19.0.0
- scheduler: 0.25.0
+ react: 19.1.0
+ scheduler: 0.26.0
- react-hook-form@7.54.2(react@19.0.0):
+ react-hook-form@7.56.2(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
react-is@16.13.1: {}
@@ -15817,67 +16054,55 @@ snapshots:
react-is@18.3.1: {}
- react-refresh@0.14.2: {}
-
- react-remove-scroll-bar@2.3.8(@types/react@19.0.10)(react@19.0.0):
- dependencies:
- react: 19.0.0
- react-style-singleton: 2.2.3(@types/react@19.0.10)(react@19.0.0)
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.0.10
+ react-refresh@0.17.0: {}
- react-remove-scroll@2.6.2(@types/react@19.0.10)(react@19.0.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.1.2)(react@19.1.0):
dependencies:
- react: 19.0.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.0.10)(react@19.0.0)
- react-style-singleton: 2.2.3(@types/react@19.0.10)(react@19.0.0)
+ react: 19.1.0
+ react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.0.10)(react@19.0.0)
- use-sidecar: 1.1.3(@types/react@19.0.10)(react@19.0.0)
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- react-remove-scroll@2.6.3(@types/react@19.0.10)(react@19.0.0):
+ react-remove-scroll@2.6.3(@types/react@19.1.2)(react@19.1.0):
dependencies:
- react: 19.0.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.0.10)(react@19.0.0)
- react-style-singleton: 2.2.3(@types/react@19.0.10)(react@19.0.0)
+ react: 19.1.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.1.2)(react@19.1.0)
+ react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.0.10)(react@19.0.0)
- use-sidecar: 1.1.3(@types/react@19.0.10)(react@19.0.0)
+ use-callback-ref: 1.3.3(@types/react@19.1.2)(react@19.1.0)
+ use-sidecar: 1.1.3(@types/react@19.1.2)(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- react-router-dom@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ react-router-dom@7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
- react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-router: 7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
+ react-router@7.5.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- '@types/cookie': 0.6.0
cookie: 1.0.2
- react: 19.0.0
+ react: 19.1.0
set-cookie-parser: 2.7.1
turbo-stream: 2.4.0
optionalDependencies:
- react-dom: 19.0.0(react@19.0.0)
+ react-dom: 19.1.0(react@19.1.0)
- react-style-singleton@2.2.3(@types/react@19.0.10)(react@19.0.0):
+ react-style-singleton@2.2.3(@types/react@19.1.2)(react@19.1.0):
dependencies:
get-nonce: 1.0.1
- react: 19.0.0
+ react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
react@18.3.1:
dependencies:
loose-envify: 1.4.0
- react@19.0.0: {}
+ react@19.1.0: {}
read-yaml-file@1.1.0:
dependencies:
@@ -15922,12 +16147,10 @@ snapshots:
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-proto: 1.0.1
which-builtin-type: 1.2.1
- regenerator-runtime@0.14.1: {}
-
regexp.prototype.flags@1.5.4:
dependencies:
call-bind: 1.0.8
@@ -15965,7 +16188,7 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- reusify@1.0.4: {}
+ reusify@1.1.0: {}
rimraf@3.0.2:
dependencies:
@@ -15980,35 +16203,42 @@ snapshots:
hash-base: 3.0.5
inherits: 2.0.4
- rlp@2.2.7:
+ rollup@4.40.1:
dependencies:
- bn.js: 5.2.1
-
- rollup@4.31.0:
- dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.31.0
- '@rollup/rollup-android-arm64': 4.31.0
- '@rollup/rollup-darwin-arm64': 4.31.0
- '@rollup/rollup-darwin-x64': 4.31.0
- '@rollup/rollup-freebsd-arm64': 4.31.0
- '@rollup/rollup-freebsd-x64': 4.31.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.31.0
- '@rollup/rollup-linux-arm-musleabihf': 4.31.0
- '@rollup/rollup-linux-arm64-gnu': 4.31.0
- '@rollup/rollup-linux-arm64-musl': 4.31.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.31.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0
- '@rollup/rollup-linux-riscv64-gnu': 4.31.0
- '@rollup/rollup-linux-s390x-gnu': 4.31.0
- '@rollup/rollup-linux-x64-gnu': 4.31.0
- '@rollup/rollup-linux-x64-musl': 4.31.0
- '@rollup/rollup-win32-arm64-msvc': 4.31.0
- '@rollup/rollup-win32-ia32-msvc': 4.31.0
- '@rollup/rollup-win32-x64-msvc': 4.31.0
+ '@rollup/rollup-android-arm-eabi': 4.40.1
+ '@rollup/rollup-android-arm64': 4.40.1
+ '@rollup/rollup-darwin-arm64': 4.40.1
+ '@rollup/rollup-darwin-x64': 4.40.1
+ '@rollup/rollup-freebsd-arm64': 4.40.1
+ '@rollup/rollup-freebsd-x64': 4.40.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.40.1
+ '@rollup/rollup-linux-arm64-gnu': 4.40.1
+ '@rollup/rollup-linux-arm64-musl': 4.40.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.40.1
+ '@rollup/rollup-linux-riscv64-musl': 4.40.1
+ '@rollup/rollup-linux-s390x-gnu': 4.40.1
+ '@rollup/rollup-linux-x64-gnu': 4.40.1
+ '@rollup/rollup-linux-x64-musl': 4.40.1
+ '@rollup/rollup-win32-arm64-msvc': 4.40.1
+ '@rollup/rollup-win32-ia32-msvc': 4.40.1
+ '@rollup/rollup-win32-x64-msvc': 4.40.1
fsevents: 2.3.3
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.0(supports-color@8.1.1)
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.2.0
+ transitivePeerDependencies:
+ - supports-color
+
rrweb-cssom@0.7.1: {}
rrweb-cssom@0.8.0: {}
@@ -16024,8 +16254,8 @@ snapshots:
safe-array-concat@1.1.3:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
has-symbols: 1.1.0
isarray: 2.0.5
@@ -16040,7 +16270,7 @@ snapshots:
safe-regex-test@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-regex: 1.2.1
@@ -16056,26 +16286,43 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- scheduler@0.25.0: {}
-
- scrypt-js@3.0.1: {}
-
- secp256k1@4.0.4:
- dependencies:
- elliptic: 6.6.1
- node-addon-api: 5.1.0
- node-gyp-build: 4.8.4
+ scheduler@0.26.0: {}
semver@5.7.2: {}
semver@6.3.1: {}
- semver@7.6.3: {}
+ semver@7.7.1: {}
+
+ send@1.2.0:
+ dependencies:
+ debug: 4.4.0(supports-color@8.1.1)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.0
+ mime-types: 3.0.1
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
+ serve-static@2.2.0:
+ dependencies:
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
+
set-blocking@2.0.0: {}
set-cookie-parser@2.7.1: {}
@@ -16085,7 +16332,7 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
gopd: 1.2.0
has-property-descriptors: 1.0.2
@@ -16122,27 +16369,27 @@ snapshots:
side-channel-list@1.0.0:
dependencies:
es-errors: 1.3.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
side-channel-map@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
side-channel-weakmap@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
side-channel-map: 1.0.1
side-channel@1.1.0:
dependencies:
es-errors: 1.3.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
side-channel-list: 1.0.0
side-channel-map: 1.0.1
side-channel-weakmap: 1.0.2
@@ -16153,14 +16400,6 @@ snapshots:
signal-exit@4.1.0: {}
- simple-concat@1.0.1: {}
-
- simple-get@2.8.2:
- dependencies:
- decompress-response: 3.3.0
- once: 1.4.0
- simple-concat: 1.0.1
-
skin-tone@2.0.0:
dependencies:
unicode-emoji-modifier-base: 1.0.0
@@ -16178,7 +16417,7 @@ snapshots:
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
- engine.io-client: 6.6.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ engine.io-client: 6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -16228,7 +16467,7 @@ snapshots:
sprintf-js@1.0.3: {}
- stable-hash@0.0.4: {}
+ stable-hash@0.0.5: {}
stack-utils@2.0.6:
dependencies:
@@ -16242,7 +16481,7 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.8.1: {}
+ std-env@3.9.0: {}
stream-browserify@3.0.0:
dependencies:
@@ -16262,8 +16501,6 @@ snapshots:
strict-event-emitter@0.5.1: {}
- strict-uri-encode@1.1.0: {}
-
strict-uri-encode@2.0.0: {}
string-width@4.2.3:
@@ -16287,12 +16524,12 @@ snapshots:
string.prototype.matchall@4.0.12:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.1.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
gopd: 1.2.0
has-symbols: 1.1.0
internal-slot: 1.1.0
@@ -16308,7 +16545,7 @@ snapshots:
string.prototype.trim@1.2.10:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
es-abstract: 1.23.9
@@ -16318,7 +16555,7 @@ snapshots:
string.prototype.trimend@1.0.9:
dependencies:
call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
@@ -16356,12 +16593,12 @@ snapshots:
strip-json-comments@3.1.1: {}
- strnum@1.0.5: {}
+ strnum@1.1.2: {}
- styled-jsx@5.1.1(react@19.0.0):
+ styled-jsx@5.1.1(react@19.1.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0
+ react: 19.1.0
superstruct@1.0.4: {}
@@ -16384,11 +16621,9 @@ snapshots:
symbol-tree@3.2.4: {}
- tailwind-merge@3.0.2: {}
+ tailwind-merge@3.2.0: {}
- tailwindcss@4.0.12: {}
-
- tailwindcss@4.0.14: {}
+ tailwindcss@4.1.5: {}
tapable@2.2.1: {}
@@ -16414,15 +16649,13 @@ snapshots:
dependencies:
real-require: 0.1.0
- timeago-react@3.0.6(react@19.0.0):
+ timeago-react@3.0.7(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
timeago.js: 4.0.2
timeago.js@4.0.2: {}
- timed-out@4.0.1: {}
-
timers-browserify@2.0.12:
dependencies:
setimmediate: 1.0.5
@@ -16437,9 +16670,9 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.12:
+ tinyglobby@0.2.13:
dependencies:
- fdir: 6.4.3(picomatch@4.0.2)
+ fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.0.2: {}
@@ -16448,11 +16681,11 @@ snapshots:
tinyspy@3.0.2: {}
- tldts-core@6.1.84: {}
+ tldts-core@6.1.86: {}
- tldts@6.1.84:
+ tldts@6.1.86:
dependencies:
- tldts-core: 6.1.84
+ tldts-core: 6.1.86
tmp@0.0.33:
dependencies:
@@ -16479,11 +16712,11 @@ snapshots:
tough-cookie@5.1.2:
dependencies:
- tldts: 6.1.84
+ tldts: 6.1.86
tr46@0.0.3: {}
- tr46@5.0.0:
+ tr46@5.1.1:
dependencies:
punycode: 2.3.1
@@ -16491,17 +16724,17 @@ snapshots:
treeify@1.1.0: {}
- ts-api-utils@1.4.3(typescript@5.8.2):
+ ts-api-utils@1.4.3(typescript@5.8.3):
dependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
- ts-api-utils@2.0.1(typescript@5.8.2):
+ ts-api-utils@2.1.0(typescript@5.8.3):
dependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
- tsconfck@3.1.4(typescript@5.8.2):
+ tsconfck@3.1.5(typescript@5.8.3):
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
tsconfig-paths@3.15.0:
dependencies:
@@ -16512,8 +16745,6 @@ snapshots:
tslib@1.14.1: {}
- tslib@2.4.0: {}
-
tslib@2.7.0: {}
tslib@2.8.1: {}
@@ -16551,10 +16782,6 @@ snapshots:
turbo-windows-64: 2.0.1
turbo-windows-arm64: 2.0.1
- tweetnacl-util@0.15.1: {}
-
- tweetnacl@1.0.3: {}
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -16567,20 +16794,24 @@ snapshots:
type-fest@0.7.1: {}
- type-fest@4.37.0: {}
+ type-fest@4.40.1: {}
- type@2.7.3: {}
+ type-is@2.0.1:
+ dependencies:
+ content-type: 1.0.5
+ media-typer: 1.1.0
+ mime-types: 3.0.1
typed-array-buffer@1.0.3:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
es-errors: 1.3.0
is-typed-array: 1.1.15
typed-array-byte-length@1.0.3:
dependencies:
call-bind: 1.0.8
- for-each: 0.3.3
+ for-each: 0.3.5
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
@@ -16589,7 +16820,7 @@ snapshots:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
- for-each: 0.3.3
+ for-each: 0.3.5
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
@@ -16598,31 +16829,31 @@ snapshots:
typed-array-length@1.0.7:
dependencies:
call-bind: 1.0.8
- for-each: 0.3.3
+ for-each: 0.3.5
gopd: 1.2.0
is-typed-array: 1.1.15
- possible-typed-array-names: 1.0.0
+ possible-typed-array-names: 1.1.0
reflect.getprototypeof: 1.0.10
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
- typescript-eslint@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2):
+ typescript-eslint@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/parser': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- '@typescript-eslint/utils': 8.26.1(eslint@9.22.0(jiti@2.4.2))(typescript@5.8.2)
- eslint: 9.22.0(jiti@2.4.2)
- typescript: 5.8.2
+ '@typescript-eslint/eslint-plugin': 8.31.1(@typescript-eslint/parser@8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.31.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
typescript@5.6.1-rc: {}
- typescript@5.8.2: {}
+ typescript@5.8.3: {}
- ufo@1.5.4: {}
+ ufo@1.6.1: {}
uint8arrays@3.1.0:
dependencies:
@@ -16630,7 +16861,7 @@ snapshots:
unbox-primitive@1.1.0:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
has-bigints: 1.1.0
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
@@ -16643,14 +16874,6 @@ snapshots:
dependencies:
'@fastify/busboy': 2.1.1
- unenv@1.10.0:
- dependencies:
- consola: 3.4.0
- defu: 6.1.4
- mime: 3.0.0
- node-fetch-native: 1.6.6
- pathe: 1.1.2
-
unicode-emoji-modifier-base@1.0.0: {}
universalify@0.1.2: {}
@@ -16659,22 +16882,44 @@ snapshots:
unpipe@1.0.0: {}
- unstorage@1.14.4(idb-keyval@6.2.1):
+ unrs-resolver@1.7.2:
+ dependencies:
+ napi-postinstall: 0.2.3
+ optionalDependencies:
+ '@unrs/resolver-binding-darwin-arm64': 1.7.2
+ '@unrs/resolver-binding-darwin-x64': 1.7.2
+ '@unrs/resolver-binding-freebsd-x64': 1.7.2
+ '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.2
+ '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.2
+ '@unrs/resolver-binding-linux-arm64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-arm64-musl': 1.7.2
+ '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-riscv64-musl': 1.7.2
+ '@unrs/resolver-binding-linux-s390x-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-x64-gnu': 1.7.2
+ '@unrs/resolver-binding-linux-x64-musl': 1.7.2
+ '@unrs/resolver-binding-wasm32-wasi': 1.7.2
+ '@unrs/resolver-binding-win32-arm64-msvc': 1.7.2
+ '@unrs/resolver-binding-win32-ia32-msvc': 1.7.2
+ '@unrs/resolver-binding-win32-x64-msvc': 1.7.2
+
+ unstorage@1.16.0(idb-keyval@6.2.1):
dependencies:
anymatch: 3.1.3
- chokidar: 3.6.0
- destr: 2.0.3
- h3: 1.13.1
+ chokidar: 4.0.3
+ destr: 2.0.5
+ h3: 1.15.3
lru-cache: 10.4.3
node-fetch-native: 1.6.6
ofetch: 1.4.1
- ufo: 1.5.4
+ ufo: 1.6.1
optionalDependencies:
idb-keyval: 6.2.1
- update-browserslist-db@1.1.2(browserslist@4.24.4):
+ update-browserslist-db@1.1.3(browserslist@4.24.5):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.24.5
escalade: 3.2.0
picocolors: 1.1.1
@@ -16687,43 +16932,41 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- url-set-query@1.0.0: {}
-
url@0.11.4:
dependencies:
punycode: 1.4.1
qs: 6.14.0
- use-callback-ref@1.3.3(@types/react@19.0.10)(react@19.0.0):
+ use-callback-ref@1.3.3(@types/react@19.1.2)(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
- use-sidecar@1.1.3(@types/react@19.0.10)(react@19.0.0):
+ use-sidecar@1.1.3(@types/react@19.1.2)(react@19.1.0):
dependencies:
detect-node-es: 1.1.0
- react: 19.0.0
+ react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
use-sync-external-store@1.2.0(react@18.3.1):
dependencies:
react: 18.3.1
- use-sync-external-store@1.2.0(react@19.0.0):
+ use-sync-external-store@1.2.0(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
use-sync-external-store@1.4.0(react@18.3.1):
dependencies:
react: 18.3.1
- use-sync-external-store@1.4.0(react@19.0.0):
+ use-sync-external-store@1.4.0(react@19.1.0):
dependencies:
- react: 19.0.0
+ react: 19.1.0
utf-8-validate@5.0.10:
dependencies:
@@ -16739,7 +16982,7 @@ snapshots:
is-arguments: 1.2.0
is-generator-function: 1.1.0
is-typed-array: 1.1.15
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
uuid@10.0.0: {}
@@ -16749,51 +16992,72 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- valtio@1.11.2(@types/react@19.0.10)(react@18.3.1):
+ valtio@1.13.2(@types/react@19.1.2)(react@18.3.1):
dependencies:
- proxy-compare: 2.5.1
+ derive-valtio: 0.1.0(valtio@1.13.2(@types/react@19.1.2)(react@18.3.1))
+ proxy-compare: 2.6.0
use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
react: 18.3.1
- valtio@1.11.2(@types/react@19.0.10)(react@19.0.0):
+ valtio@1.13.2(@types/react@19.1.2)(react@19.1.0):
dependencies:
- proxy-compare: 2.5.1
- use-sync-external-store: 1.2.0(react@19.0.0)
+ derive-valtio: 0.1.0(valtio@1.13.2(@types/react@19.1.2)(react@19.1.0))
+ proxy-compare: 2.6.0
+ use-sync-external-store: 1.2.0(react@19.1.0)
optionalDependencies:
- '@types/react': 19.0.10
- react: 19.0.0
+ '@types/react': 19.1.2
+ react: 19.1.0
- viem@2.23.2(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10):
+ vary@1.1.2: {}
+
+ viem@2.23.2(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4):
dependencies:
'@noble/curves': 1.8.1
'@noble/hashes': 1.7.1
'@scure/bip32': 1.6.2
'@scure/bip39': 1.5.4
- abitype: 1.0.8(typescript@5.8.2)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.24.4)
isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.6.7(typescript@5.8.2)
+ ox: 0.6.7(typescript@5.8.3)(zod@3.24.4)
ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+ - zod
+
+ viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4):
+ dependencies:
+ '@noble/curves': 1.8.2
+ '@noble/hashes': 1.7.2
+ '@scure/bip32': 1.6.2
+ '@scure/bip39': 1.5.4
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.22.4)
+ isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ ox: 0.6.9(typescript@5.8.3)(zod@3.22.4)
+ ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ typescript: 5.8.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- zod
- viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10):
+ viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4):
dependencies:
'@noble/curves': 1.8.2
'@noble/hashes': 1.7.2
'@scure/bip32': 1.6.2
'@scure/bip39': 1.5.4
- abitype: 1.0.8(typescript@5.8.2)
+ abitype: 1.0.8(typescript@5.8.3)(zod@3.24.4)
isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- ox: 0.6.9(typescript@5.8.2)
+ ox: 0.6.9(typescript@5.8.3)(zod@3.24.4)
ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -16803,9 +17067,9 @@ snapshots:
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@8.1.1)
- es-module-lexer: 1.6.0
+ es-module-lexer: 1.7.0
pathe: 1.1.2
- vite: 5.4.14(@types/node@22.7.5)(lightningcss@1.29.2)
+ vite: 5.4.19(@types/node@22.7.5)(lightningcss@1.29.2)
transitivePeerDependencies:
- '@types/node'
- less
@@ -16817,71 +17081,74 @@ snapshots:
- supports-color
- terser
- vite-plugin-node-polyfills@0.21.0(rollup@4.31.0)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)):
+ vite-plugin-node-polyfills@0.21.0(rollup@4.40.1)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)):
dependencies:
- '@rollup/plugin-inject': 5.0.5(rollup@4.31.0)
- node-stdlib-browser: 1.3.0
- vite: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.40.1)
+ node-stdlib-browser: 1.3.1
+ vite: 5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)
transitivePeerDependencies:
- rollup
- vite-plugin-svgr@4.3.0(rollup@4.31.0)(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)):
+ vite-plugin-svgr@4.3.0(rollup@4.40.1)(typescript@5.8.3)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
- '@svgr/core': 8.1.0(typescript@5.8.2)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.2))
- vite: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
+ '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@svgr/core': 8.1.0(typescript@5.8.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))
+ vite: 5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite-tsconfig-paths@4.3.2(typescript@5.8.2)(vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)):
+ vite-tsconfig-paths@4.3.2(typescript@5.8.3)(vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)):
dependencies:
debug: 4.4.0(supports-color@8.1.1)
globrex: 0.1.2
- tsconfck: 3.1.4(typescript@5.8.2)
+ tsconfck: 3.1.5(typescript@5.8.3)
optionalDependencies:
- vite: 5.4.14(@types/node@20.17.14)(lightningcss@1.29.2)
+ vite: 5.4.19(@types/node@20.17.32)(lightningcss@1.29.2)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.4.14(@types/node@20.17.14)(lightningcss@1.29.2):
+ vite@5.4.19(@types/node@20.17.32)(lightningcss@1.29.2):
dependencies:
esbuild: 0.21.5
postcss: 8.5.3
- rollup: 4.31.0
+ rollup: 4.40.1
optionalDependencies:
- '@types/node': 20.17.14
+ '@types/node': 20.17.32
fsevents: 2.3.3
lightningcss: 1.29.2
- vite@5.4.14(@types/node@22.7.5)(lightningcss@1.29.2):
+ vite@5.4.19(@types/node@22.7.5)(lightningcss@1.29.2):
dependencies:
esbuild: 0.21.5
postcss: 8.5.3
- rollup: 4.31.0
+ rollup: 4.40.1
optionalDependencies:
'@types/node': 22.7.5
fsevents: 2.3.3
lightningcss: 1.29.2
- vite@6.2.1(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2):
+ vite@6.3.5(@types/node@22.7.5)(jiti@2.4.2)(lightningcss@1.29.2):
dependencies:
- esbuild: 0.25.1
+ esbuild: 0.25.3
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
postcss: 8.5.3
- rollup: 4.31.0
+ rollup: 4.40.1
+ tinyglobby: 0.2.13
optionalDependencies:
'@types/node': 22.7.5
fsevents: 2.3.3
jiti: 2.4.2
lightningcss: 1.29.2
- vitest@2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2)):
+ vitest@2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.29.2)(msw@2.7.6(@types/node@22.7.5)(typescript@5.8.3)):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@22.7.5)(typescript@5.8.2))(vite@5.4.14(@types/node@22.7.5)(lightningcss@1.29.2))
+ '@vitest/mocker': 2.1.9(msw@2.7.6(@types/node@22.7.5)(typescript@5.8.3))(vite@5.4.19(@types/node@22.7.5)(lightningcss@1.29.2))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
@@ -16889,15 +17156,15 @@ snapshots:
'@vitest/utils': 2.1.9
chai: 5.2.0
debug: 4.4.0(supports-color@8.1.1)
- expect-type: 1.2.0
+ expect-type: 1.2.1
magic-string: 0.30.17
pathe: 1.1.2
- std-env: 3.8.1
+ std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 5.4.14(@types/node@22.7.5)(lightningcss@1.29.2)
+ vite: 5.4.19(@types/node@22.7.5)(lightningcss@1.29.2)
vite-node: 2.1.9(@types/node@22.7.5)(lightningcss@1.29.2)
why-is-node-running: 2.3.0
optionalDependencies:
@@ -16920,16 +17187,16 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@18.3.1))(@types/react@19.0.10)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)):
+ wagmi@2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@18.3.1))(@types/react@19.1.2)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4):
dependencies:
- '@tanstack/react-query': 5.64.2(react@18.3.1)
- '@wagmi/connectors': 5.7.13(@types/react@19.0.10)(@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@18.3.1)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- '@wagmi/core': 2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@18.3.1)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
+ '@tanstack/react-query': 5.75.2(react@18.3.1)
+ '@wagmi/connectors': 5.8.1(@types/react@19.1.2)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ '@wagmi/core': 2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@18.3.1)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))
react: 18.3.1
use-sync-external-store: 1.4.0(react@18.3.1)
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -16958,16 +17225,16 @@ snapshots:
- utf-8-validate
- zod
- wagmi@2.15.0(@tanstack/query-core@5.64.2)(@tanstack/react-query@5.64.2(react@19.0.0))(@types/react@19.0.10)(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)):
+ wagmi@2.15.2(@tanstack/query-core@5.75.0)(@tanstack/react-query@5.75.2(react@19.1.0))(@types/react@19.1.2)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4):
dependencies:
- '@tanstack/react-query': 5.64.2(react@19.0.0)
- '@wagmi/connectors': 5.7.13(@types/react@19.0.10)(@wagmi/core@2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)))(bufferutil@4.0.9)(react@19.0.0)(typescript@5.8.2)(utf-8-validate@5.0.10)(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- '@wagmi/core': 2.17.0(@tanstack/query-core@5.64.2)(@types/react@19.0.10)(react@19.0.0)(typescript@5.8.2)(use-sync-external-store@1.4.0(react@19.0.0))(viem@2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10))
- react: 19.0.0
- use-sync-external-store: 1.4.0(react@19.0.0)
- viem: 2.28.0(bufferutil@4.0.9)(typescript@5.8.2)(utf-8-validate@5.0.10)
+ '@tanstack/react-query': 5.75.2(react@19.1.0)
+ '@wagmi/connectors': 5.8.1(@types/react@19.1.2)(@wagmi/core@2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@19.1.0)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)))(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))(zod@3.24.4)
+ '@wagmi/core': 2.17.1(@tanstack/query-core@5.75.0)(@types/react@19.1.2)(react@19.1.0)(typescript@5.8.3)(use-sync-external-store@1.4.0(react@19.1.0))(viem@2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4))
+ react: 19.1.0
+ use-sync-external-store: 1.4.0(react@19.1.0)
+ viem: 2.28.4(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.24.4)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -17000,78 +17267,10 @@ snapshots:
dependencies:
makeerror: 1.0.12
- web3-core-helpers@1.5.2:
- dependencies:
- web3-eth-iban: 1.5.2
- web3-utils: 1.5.2
-
- web3-core-method@1.5.2:
- dependencies:
- '@ethereumjs/common': 2.6.5
- '@ethersproject/transactions': 5.8.0
- web3-core-helpers: 1.5.2
- web3-core-promievent: 1.5.2
- web3-core-subscriptions: 1.5.2
- web3-utils: 1.5.2
-
- web3-core-promievent@1.5.2:
- dependencies:
- eventemitter3: 4.0.4
-
- web3-core-requestmanager@1.5.2:
- dependencies:
- util: 0.12.5
- web3-core-helpers: 1.5.2
- web3-providers-http: 1.5.2
- web3-providers-ipc: 1.5.2
- web3-providers-ws: 1.5.2
- transitivePeerDependencies:
- - supports-color
-
- web3-core-subscriptions@1.5.2:
- dependencies:
- eventemitter3: 4.0.4
- web3-core-helpers: 1.5.2
-
- web3-core@1.5.2:
- dependencies:
- '@types/bn.js': 4.11.6
- '@types/node': 12.20.55
- bignumber.js: 9.1.2
- web3-core-helpers: 1.5.2
- web3-core-method: 1.5.2
- web3-core-requestmanager: 1.5.2
- web3-utils: 1.5.2
- transitivePeerDependencies:
- - supports-color
-
- web3-eth-iban@1.5.2:
- dependencies:
- bn.js: 4.12.1
- web3-utils: 1.5.2
-
- web3-providers-http@1.5.2:
- dependencies:
- web3-core-helpers: 1.5.2
- xhr2-cookies: 1.1.0
-
- web3-providers-ipc@1.5.2:
- dependencies:
- oboe: 2.1.5
- web3-core-helpers: 1.5.2
-
- web3-providers-ws@1.5.2:
- dependencies:
- eventemitter3: 4.0.4
- web3-core-helpers: 1.5.2
- websocket: 1.0.35
- transitivePeerDependencies:
- - supports-color
-
web3-utils@1.10.4:
dependencies:
'@ethereumjs/util': 8.1.0
- bn.js: 5.2.1
+ bn.js: 5.2.2
ethereum-bloom-filters: 1.2.0
ethereum-cryptography: 2.2.1
ethjs-unit: 0.1.6
@@ -17079,42 +17278,21 @@ snapshots:
randombytes: 2.1.0
utf8: 3.0.0
- web3-utils@1.5.2:
- dependencies:
- bn.js: 4.12.1
- eth-lib: 0.2.8
- ethereum-bloom-filters: 1.2.0
- ethjs-unit: 0.1.6
- number-to-bn: 1.7.0
- randombytes: 2.1.0
- utf8: 3.0.0
-
webextension-polyfill@0.10.0: {}
webidl-conversions@3.0.1: {}
webidl-conversions@7.0.0: {}
- websocket@1.0.35:
- dependencies:
- bufferutil: 4.0.9
- debug: 2.6.9
- es5-ext: 0.10.64
- typedarray-to-buffer: 3.1.5
- utf-8-validate: 5.0.10
- yaeti: 0.0.6
- transitivePeerDependencies:
- - supports-color
-
whatwg-encoding@3.1.1:
dependencies:
iconv-lite: 0.6.3
whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.1:
+ whatwg-url@14.2.0:
dependencies:
- tr46: 5.0.0
+ tr46: 5.1.1
webidl-conversions: 7.0.0
whatwg-url@5.0.0:
@@ -17125,26 +17303,26 @@ snapshots:
which-boxed-primitive@1.1.1:
dependencies:
is-bigint: 1.1.0
- is-boolean-object: 1.2.1
+ is-boolean-object: 1.2.2
is-number-object: 1.1.1
is-string: 1.1.1
is-symbol: 1.1.1
which-builtin-type@1.2.1:
dependencies:
- call-bound: 1.0.3
+ call-bound: 1.0.4
function.prototype.name: 1.1.8
has-tostringtag: 1.0.2
- is-async-function: 2.1.0
+ is-async-function: 2.1.1
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
is-generator-function: 1.1.0
is-regex: 1.2.1
- is-weakref: 1.1.0
+ is-weakref: 1.1.1
isarray: 2.0.5
which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.19
which-collection@1.0.2:
dependencies:
@@ -17155,12 +17333,13 @@ snapshots:
which-module@2.0.1: {}
- which-typed-array@1.1.18:
+ which-typed-array@1.1.19:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
- call-bound: 1.0.3
- for-each: 0.3.3
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
gopd: 1.2.0
has-tostringtag: 1.0.2
@@ -17226,36 +17405,11 @@ snapshots:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
- ws@8.5.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
- xhr-request-promise@0.1.3:
- dependencies:
- xhr-request: 1.1.0
-
- xhr-request@1.1.0:
- dependencies:
- buffer-to-arraybuffer: 0.0.5
- object-assign: 4.1.1
- query-string: 5.1.1
- simple-get: 2.8.2
- timed-out: 4.0.1
- url-set-query: 1.0.0
- xhr: 2.6.0
-
- xhr2-cookies@1.1.0:
- dependencies:
- cookiejar: 2.1.4
-
- xhr@2.6.0:
- dependencies:
- global: 4.4.0
- is-function: 1.0.2
- parse-headers: 2.0.6
- xtend: 4.0.2
-
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -17268,8 +17422,6 @@ snapshots:
y18n@5.0.8: {}
- yaeti@0.0.6: {}
-
yallist@3.1.1: {}
yargs-parser@18.1.3:
@@ -17326,14 +17478,22 @@ snapshots:
yoctocolors-cjs@2.1.2: {}
- zustand@5.0.0(@types/react@19.0.10)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)):
+ zod-to-json-schema@3.24.5(zod@3.24.4):
+ dependencies:
+ zod: 3.24.4
+
+ zod@3.22.4: {}
+
+ zod@3.24.4: {}
+
+ zustand@5.0.0(@types/react@19.1.2)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)):
optionalDependencies:
- '@types/react': 19.0.10
+ '@types/react': 19.1.2
react: 18.3.1
use-sync-external-store: 1.4.0(react@18.3.1)
- zustand@5.0.0(@types/react@19.0.10)(react@19.0.0)(use-sync-external-store@1.4.0(react@19.0.0)):
+ zustand@5.0.0(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)):
optionalDependencies:
- '@types/react': 19.0.10
- react: 19.0.0
- use-sync-external-store: 1.4.0(react@19.0.0)
+ '@types/react': 19.1.2
+ react: 19.1.0
+ use-sync-external-store: 1.4.0(react@19.1.0)