diff --git a/demo/package.json b/demo/package.json index 72f2750ad..19aef5aec 100644 --- a/demo/package.json +++ b/demo/package.json @@ -14,17 +14,17 @@ "trailingComma": "none" }, "dependencies": { - "@dynamic-labs-connectors/abstract-global-wallet-evm": "4.4.3", - "@dynamic-labs/bitcoin": "4.40.2", - "@dynamic-labs/eclipse": "4.40.2", - "@dynamic-labs/ethereum": "4.40.2", - "@dynamic-labs/ethereum-core": "4.40.2", - "@dynamic-labs/sdk-react-core": "4.40.2", - "@dynamic-labs/solana": "4.40.2", - "@dynamic-labs/sui": "4.40.2", - "@dynamic-labs/tron": "4.40.2", - "@dynamic-labs/utils": "4.40.2", - "@dynamic-labs/wagmi-connector": "4.40.2", + "@dynamic-labs-connectors/abstract-global-wallet-evm": "4.5.0", + "@dynamic-labs/bitcoin": "4.52.5", + "@dynamic-labs/eclipse": "4.52.5", + "@dynamic-labs/ethereum": "4.52.5", + "@dynamic-labs/ethereum-core": "4.52.5", + "@dynamic-labs/sdk-react-core": "4.52.5", + "@dynamic-labs/solana": "4.52.5", + "@dynamic-labs/sui": "4.52.5", + "@dynamic-labs/tron": "4.52.5", + "@dynamic-labs/utils": "4.52.5", + "@dynamic-labs/wagmi-connector": "4.52.5", "@moonpay/moonpay-react": "^1.8.3", "@privy-io/cross-app-connect": "0.2.2", "@radix-ui/colors": "^0.1.8", @@ -47,13 +47,13 @@ "tronweb": "^6.0.4", "usehooks-ts": "^3.1.0", "viem": ">=2.26.0", - "wagmi": "^2.15.6" + "wagmi": "^3.1.0" }, "devDependencies": { - "@dynamic-labs/types": "4.10.4", + "@dynamic-labs/types": "4.52.5", "@types/node": "^12.12.21", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", - "typescript": "5.4.5" + "typescript": "5.7.3" } } diff --git a/demo/pages/hooks/useRelayConfig.tsx b/demo/pages/hooks/useRelayConfig.tsx index 0d00b0fc2..39f0512c3 100644 --- a/demo/pages/hooks/useRelayConfig.tsx +++ b/demo/pages/hooks/useRelayConfig.tsx @@ -3,11 +3,11 @@ import { useState } from 'react' import { MAINNET_RELAY_API } from '@relayprotocol/relay-sdk' import { useRelayConfig } from '@relayprotocol/relay-kit-hooks' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import { ConnectButton } from 'components/ConnectButton' const UseRelayConfigPage: NextPage = () => { - const { address } = useAccount() + const { address } = useConnection() const [toChainId, setToChainId] = useState('1') const [fromChainId, setFromChainId] = useState('8453') const [currency, setCurrency] = useState('eth') diff --git a/package.json b/package.json index 92fd85087..45932d5f4 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "openapi-typescript": "^6.7.3", "prettier": "^3.5.0", "tslib": "^2.6.2", - "typescript": "5.4.5" + "typescript": "5.7.3" }, "prettier": { "semi": false, diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 32227be78..aa72392f0 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -39,7 +39,7 @@ "eslint-plugin-react": "^7.34.2", "eslint-plugin-react-hooks": "^4.6.2", "globals": "^15.6.0", - "typescript": "5.4.5", + "typescript": "5.7.3", "typescript-eslint": "^7.13.1" }, "peerDependencies": { diff --git a/packages/sdk/package.json b/packages/sdk/package.json index aad3ea1dc..dc1636215 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -50,7 +50,7 @@ "@vitest/ui": "^1.6.0", "node-fetch": "^3.3.2", "rimraf": "^5.0.5", - "typescript": "5.4.5", + "typescript": "5.7.3", "vitest": "^1.6.0" }, "peerDependencies": { diff --git a/packages/ui/package.json b/packages/ui/package.json index 3ce80c292..68b22749f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -60,7 +60,7 @@ "node-fetch": "^3.3.2", "postcss": "^8", "rimraf": "^5.0.5", - "typescript": "5.4.5", + "typescript": "5.7.3", "typescript-eslint": "^7.13.1", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0" @@ -71,7 +71,7 @@ "react": "^19.0.0", "react-dom": "^19.0.0", "viem": ">=2.26.0", - "wagmi": "^2.15.6" + "wagmi": "^3.1.0" }, "peerDependenciesMeta": { "@moonpay/moonpay-react": { diff --git a/packages/ui/src/components/common/TransactionModal/DepositAddressModalRenderer.tsx b/packages/ui/src/components/common/TransactionModal/DepositAddressModalRenderer.tsx index 71c5ce88c..4c7770bd2 100644 --- a/packages/ui/src/components/common/TransactionModal/DepositAddressModalRenderer.tsx +++ b/packages/ui/src/components/common/TransactionModal/DepositAddressModalRenderer.tsx @@ -27,7 +27,7 @@ import { import { useRelayClient } from '../../../hooks/index.js' import { EventNames } from '../../../constants/events.js' import { ProviderOptionsContext } from '../../../providers/RelayKitProvider.js' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import { calculatePriceTimeEstimate, extractDepositAddress, @@ -114,7 +114,7 @@ export const DepositAddressModalRenderer: FC = ({ const relayClient = useRelayClient() const providerOptionsContext = useContext(ProviderOptionsContext) - const { connector } = useAccount() + const { connector } = useConnection() const deadAddress = getDeadAddress(fromChain?.vmType, fromChain?.id) const quote = fetchingQuote ? undefined : quoteData diff --git a/packages/ui/src/components/widgets/OnrampWidget/modals/OnrampModal.tsx b/packages/ui/src/components/widgets/OnrampWidget/modals/OnrampModal.tsx index 54baa639a..2ef33e0a8 100644 --- a/packages/ui/src/components/widgets/OnrampWidget/modals/OnrampModal.tsx +++ b/packages/ui/src/components/widgets/OnrampWidget/modals/OnrampModal.tsx @@ -30,7 +30,7 @@ import { OnrampMoonPayStep } from './steps/OnrampMoonPayStep.js' import { formatBN } from '../../../../utils/numbers.js' import { ErrorStep } from '../../../common/TransactionModal/steps/ErrorStep.js' import { errorToJSON } from '../../../../utils/errors.js' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import { mainnet } from 'viem/chains' export enum OnrampStep { @@ -103,7 +103,7 @@ export const OnrampModal: FC = ({ >() const [moonPayRequestId, setMoonPayRequestId] = useState() const client = useRelayClient() - const { connector } = useAccount() + const { connector } = useConnection() const [moonPayIdAppended, setMoonPayIdAppended] = useState(false) const { data: ethTokenPriceResponse } = useTokenPrice( client?.baseApiUrl, diff --git a/packages/ui/src/components/widgets/OnrampWidget/widget/index.tsx b/packages/ui/src/components/widgets/OnrampWidget/widget/index.tsx index cb51cf592..258e7b7dd 100644 --- a/packages/ui/src/components/widgets/OnrampWidget/widget/index.tsx +++ b/packages/ui/src/components/widgets/OnrampWidget/widget/index.tsx @@ -17,7 +17,7 @@ import type { LinkedWallet, Token } from '../../../../types/index.js' import type { ChainVM, Execute, RelayChain } from '@relayprotocol/relay-sdk' import { MultiWalletDropdown } from '../../../common/MultiWalletDropdown.js' import { CustomAddressModal } from '../../../common/CustomAddressModal.js' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import { OnrampModal } from '../modals/OnrampModal.js' import { formatBN } from '../../../../utils/numbers.js' import { findSupportedWallet } from '../../../../utils/address.js' @@ -92,7 +92,7 @@ const OnrampWidget: FC = ({ ) const [addressModalOpen, setAddressModalOpen] = useState(false) const [onrampModalOpen, setOnrampModalOpen] = useState(false) - const { isConnected } = useAccount() + const { isConnected } = useConnection() const providerOptionsContext = useContext(ProviderOptionsContext) const connectorKeyOverrides = providerOptionsContext.vmConnectorKeyOverrides diff --git a/packages/ui/src/components/widgets/SwapWidgetRenderer.tsx b/packages/ui/src/components/widgets/SwapWidgetRenderer.tsx index c102cc477..e1722b4b7 100644 --- a/packages/ui/src/components/widgets/SwapWidgetRenderer.tsx +++ b/packages/ui/src/components/widgets/SwapWidgetRenderer.tsx @@ -15,8 +15,7 @@ import { } from '../../hooks/index.js' import type { Address, WalletClient } from 'viem' import { formatUnits, parseUnits } from 'viem' -import { useAccount, useWalletClient } from 'wagmi' -import { useCapabilities } from 'wagmi/experimental' +import { useConnection, useWalletClient, useCapabilities } from 'wagmi' import type { Token } from '../../types/index.js' import { useQueryClient } from '@tanstack/react-query' import type { ChainVM, Execute } from '@relayprotocol/relay-sdk' @@ -200,7 +199,7 @@ const SwapWidgetRenderer: FC = ({ const providerOptionsContext = useContext(ProviderOptionsContext) const connectorKeyOverrides = providerOptionsContext.vmConnectorKeyOverrides const relayClient = useRelayClient() - const { connector } = useAccount() + const { connector } = useConnection() const walletClient = useWalletClient() const [customToAddress, setCustomToAddress] = useState< Address | string | undefined diff --git a/packages/ui/src/components/widgets/TokenWidget/widget/TokenWidgetRenderer.tsx b/packages/ui/src/components/widgets/TokenWidget/widget/TokenWidgetRenderer.tsx index 9631f9a74..1e1065d2b 100644 --- a/packages/ui/src/components/widgets/TokenWidget/widget/TokenWidgetRenderer.tsx +++ b/packages/ui/src/components/widgets/TokenWidget/widget/TokenWidgetRenderer.tsx @@ -14,8 +14,7 @@ import { } from '../../../../hooks/index.js' import type { Address, WalletClient } from 'viem' import { formatUnits, parseUnits } from 'viem' -import { useAccount, useWalletClient } from 'wagmi' -import { useCapabilities } from 'wagmi/experimental' +import { useConnection, useWalletClient, useCapabilities } from 'wagmi' import type { Token } from '../../../../types/index.js' import { useQueryClient } from '@tanstack/react-query' import type { ChainVM, Execute } from '@relayprotocol/relay-sdk' @@ -204,7 +203,7 @@ const TokenWidgetRenderer: FC = ({ const providerOptionsContext = useContext(ProviderOptionsContext) const connectorKeyOverrides = providerOptionsContext.vmConnectorKeyOverrides const relayClient = useRelayClient() - const { connector } = useAccount() + const { connector } = useConnection() const walletClient = useWalletClient() const [customToAddress, setCustomToAddress] = useState< Address | string | undefined diff --git a/packages/ui/src/components/widgets/WidgetContainer.tsx b/packages/ui/src/components/widgets/WidgetContainer.tsx index 068cdfa26..1818485b2 100644 --- a/packages/ui/src/components/widgets/WidgetContainer.tsx +++ b/packages/ui/src/components/widgets/WidgetContainer.tsx @@ -9,7 +9,7 @@ import type { AdaptedWallet, Execute } from '@relayprotocol/relay-sdk' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import type { LinkedWallet } from '../../types/index.js' export type WidgetContainerProps = { @@ -93,7 +93,7 @@ const WidgetContainer: FC = ({ setCustomToAddress }) => { const isMounted = useMounted() - const { isConnected } = useAccount() + const { isConnected } = useConnection() return (
diff --git a/packages/ui/src/hooks/useWalletAddress.ts b/packages/ui/src/hooks/useWalletAddress.ts index 9afbf56ae..08941b24e 100644 --- a/packages/ui/src/hooks/useWalletAddress.ts +++ b/packages/ui/src/hooks/useWalletAddress.ts @@ -1,7 +1,7 @@ import { useEffect, useState } from 'react' import type { AdaptedWallet } from '@relayprotocol/relay-sdk' import type { Address } from 'viem' -import { useAccount } from 'wagmi' +import { useConnection } from 'wagmi' import type { LinkedWallet } from '../types/index.js' export default function ( @@ -9,7 +9,7 @@ export default function ( linkedWallets?: LinkedWallet[] ): string | Address | undefined { const [address, setAddress] = useState() - const { address: wagmiAddress } = useAccount() + const { address: wagmiAddress } = useConnection() useEffect(() => { const getWalletAddress = async (wallet?: AdaptedWallet) => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 93f616c64..4529fabad 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -30,50 +30,50 @@ importers: specifier: ^2.6.2 version: 2.8.1 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 demo: dependencies: '@dynamic-labs-connectors/abstract-global-wallet-evm': - specifier: 4.4.3 - version: 4.4.3(b34ec69d333a12139709a062bb5c7ec0) + specifier: 4.5.0 + version: 4.5.0(4fab4504a9abc22a5c8ce8ffc6f00de9) '@dynamic-labs/bitcoin': - specifier: 4.40.2 - version: 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5) + specifier: 4.52.5 + version: 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3) '@dynamic-labs/eclipse': - specifier: 4.40.2 - version: 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + specifier: 4.52.5 + version: 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@dynamic-labs/ethereum': - specifier: 4.40.2 - version: 4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + specifier: 4.52.5 + version: 4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@dynamic-labs/ethereum-core': - specifier: 4.40.2 - version: 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + specifier: 4.52.5 + version: 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@dynamic-labs/sdk-react-core': - specifier: 4.40.2 - version: 4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10) + specifier: 4.52.5 + version: 4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10) '@dynamic-labs/solana': - specifier: 4.40.2 - version: 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + specifier: 4.52.5 + version: 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@dynamic-labs/sui': - specifier: 4.40.2 - version: 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + specifier: 4.52.5 + version: 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@dynamic-labs/tron': - specifier: 4.40.2 - version: 4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: 4.52.5 + version: 4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@dynamic-labs/utils': - specifier: 4.40.2 - version: 4.40.2 + specifier: 4.52.5 + version: 4.52.5 '@dynamic-labs/wagmi-connector': - specifier: 4.40.2 - version: 4.40.2(d787d01458a99b301780027d790661d8) + specifier: 4.52.5 + version: 4.52.5(@dynamic-labs/assert-package-version@4.52.5)(@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/logger@4.52.5)(@dynamic-labs/rpc-providers@4.52.5)(@dynamic-labs/sdk-react-core@4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10))(@dynamic-labs/types@4.52.5)(@dynamic-labs/wallet-connector-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(eventemitter3@5.0.1)(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@3.3.2) '@moonpay/moonpay-react': specifier: ^1.8.3 version: 1.8.9(react@19.1.1) '@privy-io/cross-app-connect': specifier: 0.2.2 - version: 0.2.2(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + version: 0.2.2(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@radix-ui/colors': specifier: ^0.1.8 version: 0.1.9 @@ -100,7 +100,7 @@ importers: version: link:../packages/relay-tron-wallet-adapter '@solana/web3.js': specifier: 1.98.2 - version: 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@tanstack/react-query': specifier: ^5.20.2 version: 5.66.9(react@19.1.1) @@ -118,7 +118,7 @@ importers: version: 0.2.1(next@15.5.9(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1) porto: specifier: ^0.0.85 - version: 0.0.85(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(zod@3.22.4) + version: 0.0.85(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@3.3.2)(zod@3.22.4) react: specifier: ^19.0.0 version: 19.1.1 @@ -133,14 +133,14 @@ importers: version: 3.1.1(react@19.1.1) viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: - specifier: ^2.15.6 - version: 2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + specifier: ^3.1.0 + version: 3.3.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(react@19.1.1)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) devDependencies: '@dynamic-labs/types': - specifier: 4.10.4 - version: 4.10.4 + specifier: 4.52.5 + version: 4.52.5 '@types/react': specifier: ^19.0.0 version: 19.1.11 @@ -148,8 +148,8 @@ importers: specifier: ^19.0.0 version: 19.1.8(@types/react@19.1.11) typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 packages/design-system: {} @@ -178,7 +178,7 @@ importers: version: 19.1.1(react@19.1.1) viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: '@eslint/js': specifier: ^9.5.0 @@ -191,7 +191,7 @@ importers: version: 8.57.1 eslint-plugin-import: specifier: ^2.29.1 - version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1) + version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1) eslint-plugin-react: specifier: ^7.34.2 version: 7.37.4(eslint@8.57.1) @@ -208,11 +208,11 @@ importers: specifier: ^5.0.5 version: 5.0.10 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 typescript-eslint: specifier: ^7.13.1 - version: 7.18.0(eslint@8.57.1)(typescript@5.4.5) + version: 7.18.0(eslint@8.57.1)(typescript@5.7.3) packages/relay-bitcoin-wallet-adapter: dependencies: @@ -227,10 +227,10 @@ importers: version: 1.7.9 bitcoinjs-lib: specifier: 7.0.0-rc.0 - version: 7.0.0-rc.0(typescript@5.4.5) + version: 7.0.0-rc.0(typescript@5.7.3) viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: rimraf: specifier: ^5.0.5 @@ -252,7 +252,7 @@ importers: version: 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: rimraf: specifier: ^5.0.5 @@ -262,7 +262,7 @@ importers: dependencies: '@mysten/sui': specifier: 1.24.0 - version: 1.24.0(typescript@5.4.5) + version: 1.24.0(typescript@5.7.3) '@relayprotocol/relay-sdk': specifier: workspace:* version: link:../sdk @@ -274,7 +274,7 @@ importers: version: 1.7.9 viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: rimraf: specifier: ^5.0.5 @@ -287,7 +287,7 @@ importers: version: link:../sdk '@solana/web3.js': specifier: 1.98.2 - version: 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@types/node': specifier: ^22.5.4 version: 22.13.4 @@ -296,7 +296,7 @@ importers: version: 1.7.9 viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: rimraf: specifier: ^5.0.5 @@ -318,7 +318,7 @@ importers: version: 6.0.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) viem: specifier: '>=2.26.0' - version: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@4.0.5) + version: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.0.5) devDependencies: rimraf: specifier: ^5.0.5 @@ -331,7 +331,7 @@ importers: version: 1.7.9 viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) devDependencies: '@vitest/ui': specifier: ^1.6.0 @@ -343,8 +343,8 @@ importers: specifier: ^5.0.5 version: 5.0.10 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 vitest: specifier: ^1.6.0 version: 1.6.1(@types/node@22.13.4)(@vitest/ui@1.6.1)(lightningcss@1.23.0)(terser@5.39.0) @@ -419,7 +419,7 @@ importers: version: 7.1.0 pandacss-preset-radix-colors: specifier: ^0.2.0 - version: 0.2.0(@pandacss/dev@0.40.1(typescript@5.4.5))(@radix-ui/colors@0.1.9) + version: 0.2.0(@pandacss/dev@0.40.1(typescript@5.7.3))(@radix-ui/colors@0.1.9) qrcode.react: specifier: ^4.1.0 version: 4.2.0(react@19.1.1) @@ -434,10 +434,10 @@ importers: version: 3.1.1(react@19.1.1) viem: specifier: '>=2.26.0' - version: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: - specifier: ^2.15.6 - version: 2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + specifier: ^3.1.0 + version: 3.3.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(react@19.1.1)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) devDependencies: '@csstools/postcss-cascade-layers': specifier: ^4.0.6 @@ -447,7 +447,7 @@ importers: version: 9.20.0 '@pandacss/dev': specifier: ^0.40.0 - version: 0.40.1(typescript@5.4.5) + version: 0.40.1(typescript@5.7.3) '@types/eslint__js': specifier: ^8.42.3 version: 8.42.3 @@ -462,7 +462,7 @@ importers: version: 8.57.1 eslint-plugin-import: specifier: ^2.29.1 - version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1) + version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1) eslint-plugin-react: specifier: ^7.34.2 version: 7.37.4(eslint@8.57.1) @@ -482,11 +482,11 @@ importers: specifier: ^5.0.5 version: 5.0.10 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 typescript-eslint: specifier: ^7.13.1 - version: 7.18.0(eslint@8.57.1)(typescript@5.4.5) + version: 7.18.0(eslint@8.57.1)(typescript@5.7.3) packages: @@ -629,9 +629,6 @@ packages: '@coinbase/wallet-sdk@3.9.3': resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} - '@coinbase/wallet-sdk@4.3.3': - resolution: {integrity: sha512-h8gMLQNvP5TIJVXFOyQZaxbi1Mg5alFR4Z2/PEIngdyXZEoQGcVhzyQGuDa3t9zpllxvqfAaKfzDhsfCo+nhSQ==} - '@coinbase/wallet-sdk@4.3.7': resolution: {integrity: sha512-z6e5XDw6EF06RqkeyEa+qD0dZ2ZbLci99vx3zwDY//XO8X7166tqKJrR2XlQnzVmtcUuJtCd5fCvr9Cu6zzX7w==} @@ -647,8 +644,8 @@ packages: peerDependencies: postcss-selector-parser: ^6.0.13 - '@dynamic-labs-connectors/abstract-global-wallet-evm@4.4.3': - resolution: {integrity: sha512-RWhLizlDfzrSCzw43BJMPYHJpmS+l14cSvLl3WWQk6Q7N9zWlqgenmjXG6KP+p33a+8c9JSFJcV3lJ/z+dkhVw==} + '@dynamic-labs-connectors/abstract-global-wallet-evm@4.5.0': + resolution: {integrity: sha512-0nA+k7QNl8fK6YzQ3FIGP7/z667fbaCXXZzmy7NdW8JcCeGOpNaB2YtUwyq5/ogD0QzKTpvn7KZEun+t/emy8g==} peerDependencies: '@dynamic-labs/ethereum': ^4.11.1 '@dynamic-labs/ethereum-core': ^4.11.1 @@ -664,14 +661,17 @@ packages: '@dynamic-labs/wallet-connector-core': ^4.11.1 viem: ^2.21.55 - '@dynamic-labs-sdk/assert-package-version@0.1.0-alpha.23': - resolution: {integrity: sha512-0KuiXqnplX0+jB/arO9NecjL7nJkmdc2eRW3L0wCyJFCi/wNlH4ceOLTNgY0p/VNlBcXYjUw5HiJ5zxvORcUTA==} + '@dynamic-labs-sdk/assert-package-version@0.1.2': + resolution: {integrity: sha512-riWzoNe0NoS0nSWX3pqQ0Tjt3OAIufI0LpuVR0SQwGA1Xr8BsZZs+RKb+cxDMtpyKE+ZaA+U3GEN+UXr2FYm/A==} + + '@dynamic-labs-sdk/client@0.1.2': + resolution: {integrity: sha512-2GYWnVGwtD1xfpQunUvmISDlrsAnY7e9rjvebvuAtMy9st9PhZxomLxd0kj9v2sX4R+mxtD0vKuXMS0+p+tJ/Q==} - '@dynamic-labs-sdk/client@0.1.0-alpha.23': - resolution: {integrity: sha512-ESBoFwXgwPCmnZlh6DFq7hYBUmRXymwgOwH1XvtffOQ6ZgR21zPJT8KTKBVb++MzJJ6+miHc09qdoxUxlybfVQ==} + '@dynamic-labs-wallet/browser-wallet-client@0.0.211': + resolution: {integrity: sha512-ZYtpKlisiDejEiD2oFIpcpkjFM0UMLTuRZ0gzEe+ybBn4e3g+Yt0XjKdcAPHvQVeIb94TgtZqLmxRW/lQz9hSQ==} - '@dynamic-labs-wallet/browser-wallet-client@0.0.187': - resolution: {integrity: sha512-0kv5RfZ9tB5JiBtNk8VdNzKYJ8eRP/M4OgJxsKh99wz3fjw/KPIU2kQSxNTGs4vl3N0Jk9rSMV26ttowwuPV7A==} + '@dynamic-labs-wallet/browser-wallet-client@0.0.217': + resolution: {integrity: sha512-t9N1Ml94emoi4o2SxdMzBodlNCOaTsuedIGR2p3ABoF5GddErp3DocNoE5rgOC+U8GdAz9s0N/u9WMRkwHn2Xw==} '@dynamic-labs-wallet/browser@0.0.167': resolution: {integrity: sha512-HDmUetnJ1iz6kGd5PB1kJzeLI7ZJmwxlJ1QGtUqSQHDdBkhLwaDPlccB2IviC5iPfU5PR/IQ1BYEqpoTWx2sBA==} @@ -679,80 +679,74 @@ packages: '@dynamic-labs-wallet/core@0.0.167': resolution: {integrity: sha512-jEHD/mDfnqx2/ML/MezY725uPPrKGsGoR3BaS1JNITGIitai1gPEgaEMqbXIhzId/m+Xieb8ZrLDiaYYJcXcyQ==} - '@dynamic-labs-wallet/core@0.0.187': - resolution: {integrity: sha512-tjV81BSImsRklEW2Xb1N+M6Nj41hIXJSQfLzxI2fEsIWCfPVix/Piy7EquMiw8AOJTRK/ptyOrILAqvppeSLjQ==} + '@dynamic-labs-wallet/core@0.0.211': + resolution: {integrity: sha512-PPLjOu55O4G204phWfPmpZNn4p+vcinZ8XvBvBcRl+uHhYxYIFg/Ma4C96ZrNB08iT5uxXxzNAWAg46ytO/GGA==} - '@dynamic-labs-wallet/forward-mpc-client@0.1.0-alpha.8': - resolution: {integrity: sha512-p7uPyWKqrHZJVFqns5Kj4ZRnS09l9dBdJtodb4wS+yPDdDpmjth+L7bZHG3KZj/CpBuy+x0MA4Y47TPBlHvXuA==} + '@dynamic-labs-wallet/core@0.0.217': + resolution: {integrity: sha512-TzIyCYlcwFTOTHpr4phU7xQmkY+f76OTiPM/LZ9gW9m0Ji1ETokHfhv6nuLOQSbctGviTdrGxWF1Y1uhaLJEDQ==} - '@dynamic-labs-wallet/forward-mpc-shared@0.1.0-alpha.8': - resolution: {integrity: sha512-UOk8MjU1s4VKg5FkrbN5rtYkqFd3u1xLhOav+CWzp8HtKTYiLb4Fk+SlusCGWHqJwoqC/BmupRfUnCjR+YFfAA==} + '@dynamic-labs-wallet/forward-mpc-client@0.1.3': + resolution: {integrity: sha512-riZesfU41fMvetaxJ3bO48/9P8ikRPgoVJgWh8m8i0oRyYN7uUz+Iesp+52U12DCtcvSTXljxrKtrV3yqNAYRw==} - '@dynamic-labs/assert-package-version@4.10.4': - resolution: {integrity: sha512-rBx3TA/dRB0u0IvvQDcasbQMmdGS+GbwnUOY6QAwDKkcGls7OrJ3FSAdcGPM4ZLPmprKVgcdCcEOdk22QHUoLA==} + '@dynamic-labs-wallet/forward-mpc-shared@0.1.0': + resolution: {integrity: sha512-xRpMri4+ZuClonwf04RcnT/BCG8oA36ononD7s0MA5wSqd8kOuHjzNTSoM6lWnPiCmlpECyPARJ1CEO02Sfq9Q==} '@dynamic-labs/assert-package-version@4.38.0': resolution: {integrity: sha512-eejR+AM8XX7XWd2IFDxBTVqOIz/AFuaXOlQifvwKhN3pozkGqjAubpATX1pcBoKwJGpvD/hZnJFFuOlXea9f9A==} - '@dynamic-labs/assert-package-version@4.40.2': - resolution: {integrity: sha512-y/f0fCF9dQocdg+TLyINL8tkATEeyoKCRcUoJCsx203OA9bAlHdFUKTH0JwkFiuDsM7VpEp8lAzZ2qaqWvj88g==} + '@dynamic-labs/assert-package-version@4.52.5': + resolution: {integrity: sha512-uzUyAVZCG1DZ9FEekB+ubVNwIaoRaEUBF1/1GGqESkFuip4juIL5NpD/amOVJ8r2f3nv5p4LBgtxMqvV4m1StQ==} - '@dynamic-labs/bitcoin@4.40.2': - resolution: {integrity: sha512-2DQeYmEHOWqqjbP+3o8IzFanMgR6/0NDBQq2CLJbO1cyocsIHNTLXfS0B71LIjh1bkCEtvPFu1MaRsu9MqVhag==} + '@dynamic-labs/bitcoin@4.52.5': + resolution: {integrity: sha512-ahq/zQ8dS/KTIqKafV964+GEFlxzdVv2aTTI37fFupEbrC9jCsSbaREMEL1X69oXvHftidT0OHULr3tWrBohVA==} - '@dynamic-labs/eclipse@4.40.2': - resolution: {integrity: sha512-8qBjJ7H/5y26gl8bXSs9xoUkVau4XCQsFXLExhNhYexbB/91Pr5r/Lf0NISHYupL7v9C7+4xn/EwrZ1IF/BbVA==} + '@dynamic-labs/eclipse@4.52.5': + resolution: {integrity: sha512-IM6n0o1RBndSUQYDYpewEPmSJ+XeoM+SRUbQIkMutyr0fYfspqG6bxxTvMGR+oqlUQnwD6KVH+KqwAp9fBatcQ==} - '@dynamic-labs/embedded-wallet-evm@4.40.2': - resolution: {integrity: sha512-YXcf1p55GTenjXxU/uiSlKBmM7Pq66WGb1Nr1lWw5KjpCf1rJzI7MdDg1ZMfzQeN6V7WVx7MGUs8CJ6jAQMUMg==} + '@dynamic-labs/embedded-wallet-evm@4.52.5': + resolution: {integrity: sha512-9KP2zJ7Z/VqVnPULqnklZvw13/VqmrDZ/0EfNnnv95x/fqYyhWXd6tnKP5i3JCBU1UI+pJWk5s300Ws5GGGMyw==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/embedded-wallet-solana@4.40.2': - resolution: {integrity: sha512-pShWto7gBPV8qMt/QEQhRtXJKhyVwjk8wwoKJq8mqsHev57SFvJIU1UqH1w0JehJiM246wEzz2KLtKMKwW/EUw==} + '@dynamic-labs/embedded-wallet-solana@4.52.5': + resolution: {integrity: sha512-tNXRPPm/TqZNQKbwmItdw2Q4K020Z9gjMnhf4wnthSzCwT/Auwi0LXuhbe5j7bOtS+y1MQm53XZa3+vqbARl6A==} - '@dynamic-labs/embedded-wallet@4.40.2': - resolution: {integrity: sha512-IK3wUeu9/0a7pMhMdPvfRsHldVHQF7phiicL/7NDysKkzCMDYYaK/D/VH7t1r10ds99j7vIrjYWJgGbcg9mBbA==} + '@dynamic-labs/embedded-wallet@4.52.5': + resolution: {integrity: sha512-WAGApFlUdTaLm5qwbfROA/lCpE0JY+8QiGjwNJC0uDGQPUIb/SmPBm4RqXcxaytfk+zSYUpWDozt6O+4ITm9BA==} - '@dynamic-labs/ethereum-core@4.40.2': - resolution: {integrity: sha512-UpGKFzaUo7iz0whlB9jdyc0VADJYVk2b+OAwcQpM7K3Mfr84LO4U5sgHQ1sAcds8TWiLwQ2upcuwgf5D3qNxdA==} + '@dynamic-labs/ethereum-core@4.52.5': + resolution: {integrity: sha512-StdsVHyexYAYzVvnE20bJRRfScuVb0/M6ntP5SBq8hen7C6K/SpC4sPGhxdYoDphHc8SxLoPiUBxZIUeOVEdew==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/ethereum@4.40.2': - resolution: {integrity: sha512-tkWkf0L+v55P1X2Q7L6b2g5kgsWvsd3URBtKJFezRREGQpQbg89BAjd84UEjS7HG6453I0DqfjHxhpQBtdXQWQ==} + '@dynamic-labs/ethereum@4.52.5': + resolution: {integrity: sha512-f1LgL7+oYR4Z9I3TFBtIGJdfatEsknihhnztx+6IdbPsf5IJy8HB6q4KlKJvmxneJDisLY2cckUSwMehqhQpGw==} peerDependencies: viem: ^2.28.4 - '@dynamic-labs/iconic@4.40.2': - resolution: {integrity: sha512-fVKI2Azd3v9ZPHIjeEDUeXTyLtlLfxfWEFfEL50GLtExfv6eaM4gQyCr1yjvS2NQuKWEeEJVmn+Js3jKrQin9Q==} + '@dynamic-labs/iconic@4.52.5': + resolution: {integrity: sha512-h3BVI701bPk2vHKJoeC/u6T/sFJOfWBfPk+2RIWWoZjM4OD0Q5A7C8zbZ7VrzUi4jdNt6Bk9vbfaU1Z0vekd+g==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/locale@4.40.2': - resolution: {integrity: sha512-kprR4N7FAQV0KFYAxSl5otfUtkEJuVE/kVhUxpsLGcxdyvfCjtfJSrr89bgJ6wyPRbGCGTX3w4Zt3E/9qmAQjw==} - - '@dynamic-labs/logger@4.10.4': - resolution: {integrity: sha512-qTObcPMvr68RKKS+3LjzhHKqUhL1SjqNC9iqQw8JkYndEvs9fZPVga5m+1+fxVSycz6RoA4Rrfn0cmoM/E2J9g==} + '@dynamic-labs/locale@4.52.5': + resolution: {integrity: sha512-DQ/6hoggF8KY8RVv1BqgdjCxobl/bP3bDLp3snVLWJFYJJM1XYWF0Hhu7yBLpmLxDMS6f1Dqo0mKBnSfcLmizQ==} '@dynamic-labs/logger@4.38.0': resolution: {integrity: sha512-rqsf3TB61T1FMyizcAZv/+HagGuPJApcrJ78uXB92PyoAUY2p1/+JdcNqrTRB1mSqdh7BLw7H+YUjyXeF07jag==} - '@dynamic-labs/logger@4.40.2': - resolution: {integrity: sha512-HN2sBtLLssSr/fsoG89iRXHXrI2LdO+deU0OhUWEbhNrgAf3+JZ3WgjiesA+4FegE1L9XgupzTEwL573cdwqvQ==} + '@dynamic-labs/logger@4.52.5': + resolution: {integrity: sha512-0FQIKGXcuPhCWkEC3C1KE8+kQpTn+MTEjBIw2dFKT2mfNvdOQy6CDpOcQgjGJ/N9FtjoXrzfB6oL5ZLmwdLRGQ==} '@dynamic-labs/message-transport@4.38.0': resolution: {integrity: sha512-7gNawWyunJbprCZbXbdFAhNXP1m/K7wHU3vuN4Y6rlrhnRT1nNRNlCFw9gAeHx4k0BKPz2yGb+0+T/3Nn2g5gw==} - '@dynamic-labs/multi-wallet@4.40.2': - resolution: {integrity: sha512-WLyf9bYgSlgOEkAyhXw5TIvtBkvKXhjFZztZ74Ezfkv+fcd8AkXKtNoeGIGo/W2rM5irVSb1erBAks0CZjd6SQ==} - - '@dynamic-labs/rpc-providers@4.40.2': - resolution: {integrity: sha512-bxZyM3gzOCh1N+jPVYEDH1zd0eQxJqBrOOFRVpkvtZEutlYxPxTL+301Is+0fkNkrCamWhyX5m6kjV/Xkcv0TA==} + '@dynamic-labs/multi-wallet@4.52.5': + resolution: {integrity: sha512-EwEnexYGDhsnYbz1zVF1cDlB1AGCSIXRYQ6yyTov/+n0ifmcsuzzKkm7UEwB19uxN3+5P0Ju/9InIip2GU740Q==} - '@dynamic-labs/sdk-api-core@0.0.650': - resolution: {integrity: sha512-/dAOxwnh0OaFV2KUbnj4zRSzEDFZptsmoJm58dP6ACfQClx5aPI49WGHM8NKjBd5xbaB7oxzhuQWizOnT/6j9g==} + '@dynamic-labs/rpc-providers@4.52.5': + resolution: {integrity: sha512-7Mdxl/kVNucUBDYy0Q1MPXi/hv9YDaowLSSy8unyqfm6sAa+yyCcPIQtO03oTAqAhW0YNv7zN9qDosTOnd3Mmg==} '@dynamic-labs/sdk-api-core@0.0.764': resolution: {integrity: sha512-79JptJTTClLc9qhioThtwMuzTHJ+mrj8sTEglb7Mcx3lJub9YbXqNdzS9mLRxZsr2et3aqqpzymXdUBzSEaMng==} @@ -760,90 +754,90 @@ packages: '@dynamic-labs/sdk-api-core@0.0.805': resolution: {integrity: sha512-Ukpx2NH6Cpc0s2Fsqe6q01xtsDwM0P+xM3dhffk7lo2QZF2BGIesR4xlwo84vXZ3QqciCRP/oWr9pZEg+Gpy1g==} - '@dynamic-labs/sdk-api-core@0.0.813': - resolution: {integrity: sha512-z2xkdw6zU6nj+F+diF4QFro7GZcF9wSfuBTU3rEI17pJCNuyv2Sx+fKOXjKlCUKr/rpczXVuMCO4bTycPZf9cQ==} + '@dynamic-labs/sdk-api-core@0.0.818': + resolution: {integrity: sha512-s0iq+kS15gbBk7HtFEVkuzHHUc8Xt0afA1el31+c8HBLIV0Bz1O4WaMTKdpvC/Rb5RS5GDCOmxeR6LvDzZBw+A==} + + '@dynamic-labs/sdk-api-core@0.0.843': + resolution: {integrity: sha512-+4tcNWsKuPzt+suJax3jprwyI+w2gbEbSkzeuvI9/x1B9AuFPvIMxILoVqK9hEsrT57APQHnmTOkxSNk7aDgPA==} - '@dynamic-labs/sdk-react-core@4.40.2': - resolution: {integrity: sha512-idpjRVGu028ajLiZ5apK/JzVJJHvmEwo4pNa88Whxldf2jptfvYPyPueT3SQRjpjnSTBwF5uRThPeONtlKagwg==} + '@dynamic-labs/sdk-react-core@4.52.5': + resolution: {integrity: sha512-5HXp+e6dyhg5muvApDjjuOYMq9nZm1iPARZIRwfnEUSsxY+HB0eBjZbUAbeL+p6mcXdM2OggMcAvN3jFqYiAeQ==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/solana-core@4.40.2': - resolution: {integrity: sha512-oZ3m/yeQ+sG9UWniIRW+EDojhLXQCssXkv6MpybtHj0L4fpqb5aDRrjFdimOn/YE+DhMs7vjTUpYoQRJ3moF0g==} + '@dynamic-labs/solana-core@4.52.5': + resolution: {integrity: sha512-UNRP4JqQP69uyCk0xZ8iyGjYFCBXfJHAJGo6LkzBzoaNZmiqt/1lZdHtl2x05qAeLeS9/btUQkdXo43hXvWNcg==} - '@dynamic-labs/solana@4.40.2': - resolution: {integrity: sha512-e0qDY7bFT8tkBLQRkdlW2xaxn7XHt01Cd6IxZ4utL4g4PxNH1fFbq5YR7aHXS/MUXaQ54OwmmaWptf2V3mJt3w==} + '@dynamic-labs/solana@4.52.5': + resolution: {integrity: sha512-tBazYkXkTTcPhM7+TJzJyfu/3BVjohXY7aghcdR/Kb9z04roxmvMAhuZbSEeyRswrjFJtTUnzIP/hLI8axgTHA==} - '@dynamic-labs/store@4.40.2': - resolution: {integrity: sha512-Js1AjJFq5rmYgrmlC/x6FW/6P0O78ddH21hAJyxxlP50+KKqgE1su42i5yvICG8Z+VU8ujLTaeBpiJPbOxE54w==} + '@dynamic-labs/store@4.52.5': + resolution: {integrity: sha512-Mizn94U1c7IHxNv7guUaAV1ILw6hVnv0Evkmn4IBexyiQljywJ10yqVb7Gl+RmQtdIyg17ynnXguQXskgJhX9Q==} - '@dynamic-labs/sui-core@4.40.2': - resolution: {integrity: sha512-k3BlFtEgbqhHjMvXWf3xlpQsD9FyOr4rWnTr/qk6sybbjcashl7XETMBPDLkfyc+PZVkJjLe+vklNPxl0NGfYg==} + '@dynamic-labs/sui-core@4.52.5': + resolution: {integrity: sha512-0xWj7Wlso583P6GHd4qfEVgT2kLWjLGOYhvn2Tr9KmtVhzxwOEBFMWMduq/9aOP0Ial7GZVukZMxRfW47ZvGEg==} - '@dynamic-labs/sui@4.40.2': - resolution: {integrity: sha512-SmyBUMUDifSkPMe5H8lRjTqRQcDX0YS2LJOEcNOX7hFG5YTpWmn3v2loQM5GKjBsG1tL/OryrkxI3EPaw9BHkw==} + '@dynamic-labs/sui@4.52.5': + resolution: {integrity: sha512-LuSIzpUQ2yKVwnDVc/3qnMjT+HOi94iVraLym5cIa5QikQdAd0wIuU7hQqjoIYWTs58tUqalum0ZbPKO1P5DKw==} - '@dynamic-labs/tron@4.40.2': - resolution: {integrity: sha512-OXrm3xLw/LKzkH7z+SYrlb7YYzFER5gFjCl47mt9/K3fAuVI3uNALHg8CJ0n+sMXg1piVxgvDROGqOWj+HR4HQ==} - - '@dynamic-labs/types@4.10.4': - resolution: {integrity: sha512-aMeIBE03g/BUGRaPBzNM9ed3M1wPpLa+txGOF04GxOKOb5sbU9fZOCQnnDEBNtXXW1c/Wmjd3vmdM+j1cr9VHg==} + '@dynamic-labs/tron@4.52.5': + resolution: {integrity: sha512-Xnf/U3qlmS/D6kk13RDGIv6J6ntfrkLEL9OZZDteqJOXpiXPCrM4N8yw/1YIObMHkrSDDDZnbAHZO+uBt36UDw==} '@dynamic-labs/types@4.38.0': resolution: {integrity: sha512-gmhESr8XclepiWMuTlswT13aNIjuH9qeVWjjB5zicA4MNPP71WNVv6boa1Ui9ZQBSW0jLRPejFhiF2MJA/vONw==} - '@dynamic-labs/types@4.40.2': - resolution: {integrity: sha512-uSwIq5lZS8HWjDxDkGuZRSHegDk+QX9hfRI/E68GUV9VTJdA2nPWIGbNCtjT2tZLirNoHlpdJxKtC/wfuN9HuQ==} + '@dynamic-labs/types@4.52.5': + resolution: {integrity: sha512-s+kV57ULqbfXxreRwvCR+mmHO21BXqrhONpySSggJtDu7BAvjVemU8oTUR44R4IS7jV+DjcA+K8aeY4w/xxpvA==} '@dynamic-labs/utils@4.38.0': resolution: {integrity: sha512-h3xcgieQrbqvqKr4JwT4L/bjAcdZYISp3B4V0fju408mCJ2mjJlC6klHPgZ81pZS1H/zn+LDbuSPm/dlCNJKoA==} - '@dynamic-labs/utils@4.40.2': - resolution: {integrity: sha512-HtvHuqQMCDWUfV53mk4CeqvUWMwMyqGGTsZe1+sb6roODB8zrw2p9kEISWDgpj2VY9sAqCA2AWYqHbhJG35Hwg==} + '@dynamic-labs/utils@4.52.5': + resolution: {integrity: sha512-AMy8wEpzSQLZEk28JcXTiSHKzK1Y0jWs+rCzApD2fgiz/1kzD3yjIiBc7L9OMCRv62h25iVFxjj7OuxmUC11ug==} - '@dynamic-labs/waas-evm@4.40.2': - resolution: {integrity: sha512-gu17363RNIl3i0NjhWoJSmtHIb75AJDs8YI+eOVQn3J3AmP2hDqVBeqSwc1Ij6R/8ZzbI4xIhsZDDRCe3vCrrQ==} + '@dynamic-labs/waas-evm@4.52.5': + resolution: {integrity: sha512-JCacP/HbOi9VTODAZ+ktbOUIxtGcxfTFfLOhFMsDEQYSuELev2evDp4dPquf8YUXqTv8w1ccYcnFHgXwoppOgg==} - '@dynamic-labs/waas-sui@4.40.2': - resolution: {integrity: sha512-08dvJgK/361mvHLTFOyX+i5XX7veugq/Ot0QAjAnwLoeIvNTGgClH4Q8xLTfifgl9DWjj60unXom/WViN0wW0g==} + '@dynamic-labs/waas-sui@4.52.5': + resolution: {integrity: sha512-Dx0WZsnUFbjdjfTh4qVPM14LSBiN0RIJQeAyzNS3prLlZSQNW0W9AzKCwqFXwDHPPs6Os83+Nrbc7/FxmXHvZQ==} - '@dynamic-labs/waas-svm@4.40.2': - resolution: {integrity: sha512-fNaf1RDgLzy82Yic8m95hk5TWJBLHUNpGxD6vJbPp7DyMFNHr2mJuNc5OTECFeBO6lHxkRsvCJXPvvjedcllzA==} + '@dynamic-labs/waas-svm@4.52.5': + resolution: {integrity: sha512-qNQS8dOwRRRRR+ZKBYvCXTygQ8FqK5lBMz22MTfE8cKYLqu/ao/QPjgimYQcHvDfw0wu9d2CBQeLrXlSP8O1ug==} - '@dynamic-labs/waas@4.40.2': - resolution: {integrity: sha512-ZK3TirHv6n1SZHJFrUhVYDBCHF7bJrRaxhIiSl2qVS+hGyC2ZK2FyagFPjb8mqc6+7uaFPhuBWD8ajvXIapWXg==} + '@dynamic-labs/waas@4.52.5': + resolution: {integrity: sha512-yZlwNVNas7fe406m8kU+YqqS+tYhFU4sSAc1kdab9aFDxshO0WPXVsFjzEr6nzxA6UyY0wQZq2l6rQi2x8rOfw==} - '@dynamic-labs/wagmi-connector@4.40.2': - resolution: {integrity: sha512-1uR1Z95mIZMR8BSFLk01c7PoLGGYwn0KeZHPGbFLd0g4r9zkc6EpOHZz8XxORiu7mkBwKLN8AV33QuTQAmH5Ig==} + '@dynamic-labs/wagmi-connector@4.52.5': + resolution: {integrity: sha512-GoBXgGlbVSF/DUovNpALj130DDFhnPvEnLhdI+ACMWH9REUSzLca4THaKGNL/HgUp50Iv9XEPpJdksvzrv7jXQ==} peerDependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/ethereum-core': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-react-core': 4.40.2 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/wallet-connector-core': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/ethereum-core': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-react-core': 4.52.5 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/wallet-connector-core': 4.52.5 '@wagmi/core': ^2.6.4 eventemitter3: 5.0.1 react: '>=18.0.0 <20.0.0' viem: ^2.28.4 wagmi: ^2.14.11 - '@dynamic-labs/wallet-book@4.40.2': - resolution: {integrity: sha512-lVG19wJicwASg3xozT55fBqC5zIHJpFmfoRjOyL1kb+yyLAqVEGXuVHKTe0om4SFFL9nwJizJb7WvM7GQJmqDA==} + '@dynamic-labs/wallet-book@4.52.5': + resolution: {integrity: sha512-6WRNnIV3nw4lL9XH0qpGdw/6HXu+Tv3LVClfsRAEbokG3cf8Q2UHsmoqHa/V2IrUJxKCzCRdGZz9W6AWhlkvcQ==} peerDependencies: react: '>=18.0.0 <20.0.0' react-dom: '>=18.0.0 <20.0.0' - '@dynamic-labs/wallet-connect@4.40.2': - resolution: {integrity: sha512-xHhMwYsv8vLQwYQst6yOdan3arHmjSc66jXWW2lPdtAQGHCxgwikTwZWTWVuO4uQuuAv14voWiluzdNV8T4qhw==} + '@dynamic-labs/wallet-connect@4.52.5': + resolution: {integrity: sha512-oSPNySh0wYuQgK2wFAJrWlFP4/1q2KXvFYkLMcQYQ67b/7B8xSH/nCcVBzi3CM+bSamh1/L0Ay00j/pYGoYEkw==} - '@dynamic-labs/wallet-connector-core@4.40.2': - resolution: {integrity: sha512-TWS4XFUDX54Ips+b9h9HTXFgqbljEVNJMHbmSwStt89GqwwoHI/yaISy4ye8XHMErBL9NHGwOywAyQ0D2wLwIw==} + '@dynamic-labs/wallet-connector-core@4.52.5': + resolution: {integrity: sha512-zvAlM/Vj45hQZU25wOFnF7ooKXKq2wwm0/+p4B8D0EVreU0K7ONWB+V3D2zHTh6UmyOb6tgl/kRxIVVex3k5Fg==} - '@dynamic-labs/webauthn@4.40.2': - resolution: {integrity: sha512-sedwOH17YURGO2Tw4KLVnxDLNwwjnm0p19mhHnvNjEl7jjPQZM/C22BpPkFpruzL2WY+B6x0jwX+x9GKY5r/Aw==} + '@dynamic-labs/webauthn@4.52.5': + resolution: {integrity: sha512-ECCbSLe3YhzJMRajeefeZP4zroSWniawAizX8/I3JLQmDe82IW2VD2hszbWCx7mbXkclYOr/gYEFQLwrfVtshg==} '@ecies/ciphers@0.2.2': resolution: {integrity: sha512-ylfGR7PyTd+Rm2PqQowG08BCKA22QuX8NzrL+LxAAvazN10DMwdJ2fWwAzRj05FI/M8vNFGm3cv9Wq/GFWCBLg==} @@ -1258,8 +1252,8 @@ packages: '@ethersproject/wordlists@5.7.0': resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} - '@evervault/wasm-attestation-bindings@0.3.0': - resolution: {integrity: sha512-PUOwRbr4PQiOw82dhJ6eAtNzRBDG7/N8oyzRpWfx2BfGu8vbtu0Llv3udP6eixrXN4uwIHdnINsm/ROWJ9UFaw==} + '@evervault/wasm-attestation-bindings@0.3.1': + resolution: {integrity: sha512-pJsbax/pEPdRXSnFKahzGZeq2CNTZ0skAPWpnEZK/8vdcvlan7LE7wMSOVr+Z+MqTBnVEnS7O80TKpXKU5Rsbw==} '@fastify/busboy@2.1.1': resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} @@ -1698,15 +1692,6 @@ packages: '@metamask/sdk-analytics@0.0.5': resolution: {integrity: sha512-fDah+keS1RjSUlC8GmYXvx6Y26s3Ax1U9hGpWb6GSY5SAdmTSIqp2CvYy6yW0WgLhnYhW+6xERuD0eVqV63QIQ==} - '@metamask/sdk-communication-layer@0.32.0': - resolution: {integrity: sha512-dmj/KFjMi1fsdZGIOtbhxdg3amxhKL/A5BqSU4uh/SyDKPub/OT+x5pX8bGjpTL1WPWY/Q0OIlvFyX3VWnT06Q==} - peerDependencies: - cross-fetch: ^4.0.0 - eciesjs: '*' - eventemitter2: ^6.4.9 - readable-stream: ^3.6.2 - socket.io-client: ^4.5.1 - '@metamask/sdk-communication-layer@0.33.0': resolution: {integrity: sha512-d0Jvk6V+plhF/3cy+5apJG16z6rmcJOy5B86PTUgghuzkBzrN7+7Ovzpp0JBr0EUuuoFXjEqc7Y6KakQ5WXv1Q==} peerDependencies: @@ -1716,15 +1701,9 @@ packages: readable-stream: ^3.6.2 socket.io-client: ^4.5.1 - '@metamask/sdk-install-modal-web@0.32.0': - resolution: {integrity: sha512-TFoktj0JgfWnQaL3yFkApqNwcaqJ+dw4xcnrJueMP3aXkSNev2Ido+WVNOg4IIMxnmOrfAC9t0UJ0u/dC9MjOQ==} - '@metamask/sdk-install-modal-web@0.32.1': resolution: {integrity: sha512-MGmAo6qSjf1tuYXhCu2EZLftq+DSt5Z7fsIKr2P+lDgdTPWgLfZB1tJKzNcwKKOdf6q9Qmmxn7lJuI/gq5LrKw==} - '@metamask/sdk@0.32.0': - resolution: {integrity: sha512-WmGAlP1oBuD9hk4CsdlG1WJFuPtYJY+dnTHJMeCyohTWD2GgkcLMUUuvu9lO1/NVzuOoSi1OrnjbuY1O/1NZ1g==} - '@metamask/sdk@0.33.0': resolution: {integrity: sha512-Msfv21NKU4iAMBMupxlIb0hFsqzErVLg+yaW3NStQGEGA9Z37gXfouKO21lEDb4FcMLbrqV76pgrnDLm9gy3Wg==} @@ -2600,6 +2579,7 @@ packages: '@simplewebauthn/types@12.0.0': resolution: {integrity: sha512-q6y8MkoV8V8jB4zzp18Uyj2I7oFp2/ONL8c3j8uT06AOWu3cIChc1au71QYHrP2b+xDapkGTiv+9lX7xkTlAsA==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -3062,13 +3042,37 @@ packages: typescript: optional: true - '@wagmi/connectors@5.8.5': - resolution: {integrity: sha512-CHh4uYP6MziCMlSVXmuAv7wMoYWdxXliuzwCRAxHNNkgXE7z37ez5XzJu0Sm39NUau3Fl8WSjwKo4a4w9BOYNA==} + '@wagmi/connectors@7.1.2': + resolution: {integrity: sha512-L5ATHwEjJCWOm/tRWAyQ42hFpe4UrrReqQT8pMEsM+A29CkJxEm0n7/C2Ki7O1hiZ2D/n5emp0s4MfCFe9pdwQ==} peerDependencies: - '@wagmi/core': 2.17.3 - typescript: '>=5.0.4' + '@base-org/account': ^2.5.1 + '@coinbase/wallet-sdk': ^4.3.6 + '@gemini-wallet/core': ~0.3.1 + '@metamask/sdk': ~0.33.1 + '@safe-global/safe-apps-provider': ~0.18.6 + '@safe-global/safe-apps-sdk': ^9.1.0 + '@wagmi/core': 3.2.2 + '@walletconnect/ethereum-provider': ^2.21.1 + porto: ~0.2.35 + typescript: '>=5.7.3' viem: 2.x peerDependenciesMeta: + '@base-org/account': + optional: true + '@coinbase/wallet-sdk': + optional: true + '@gemini-wallet/core': + optional: true + '@metamask/sdk': + optional: true + '@safe-global/safe-apps-provider': + optional: true + '@safe-global/safe-apps-sdk': + optional: true + '@walletconnect/ethereum-provider': + optional: true + porto: + optional: true typescript: optional: true @@ -3081,15 +3085,18 @@ packages: typescript: optional: true - '@wagmi/core@2.17.3': - resolution: {integrity: sha512-fgZR9fAiCFtGaosTspkTx5lidccq9Z5xRWOk1HG0VfB6euQGw2//Db7upiP4uQ7DPst2YS9yQN2A1m9+iJLYCw==} + '@wagmi/core@3.2.2': + resolution: {integrity: sha512-nCCza85tmE/lNorZemv0ah0OwOewMRiNJbSkIkGPr/mSH6mAy+/D/GbP8Gb3j2Nw85LuF5wxgG1fFiU6mB3CyQ==} peerDependencies: '@tanstack/query-core': '>=5.0.0' - typescript: '>=5.0.4' + ox: '>=0.11.1' + typescript: '>=5.7.3' viem: 2.x peerDependenciesMeta: '@tanstack/query-core': optional: true + ox: + optional: true typescript: optional: true @@ -3141,10 +3148,6 @@ packages: resolution: {integrity: sha512-o6R7Ua4myxR8aRUAJ1z3gT9nM+jd2B2mfamu6arzy1Cc6vi10fIwFWb6vg3bC8xJ6o9H3n/cN5TOW3aA9Y1XVw==} engines: {node: '>=18'} - '@walletconnect/core@2.21.1': - resolution: {integrity: sha512-Tp4MHJYcdWD846PH//2r+Mu4wz1/ZU/fr9av1UWFiaYQ2t2TPLDiZxjLw54AAEpMqlEHemwCgiRiAmjR1NDdTQ==} - engines: {node: '>=18'} - '@walletconnect/core@2.21.5': resolution: {integrity: sha512-CxGbio1TdCkou/TYn8X6Ih1mUX3UtFTk+t618/cIrT3VX5IjQW09n9I/pVafr7bQbBtm9/ATr7ugUEMrLu5snA==} engines: {node: '>=18'} @@ -3162,9 +3165,6 @@ packages: resolution: {integrity: sha512-YrTeHVjuSuhlUw7SQ6xBJXDuJ6iAC+RwINm9nVhoKYJSHAy3EVSJZOofMKrnecL0iRMtD29nj57mxAInIBRuZA==} deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases' - '@walletconnect/ethereum-provider@2.21.1': - resolution: {integrity: sha512-SSlIG6QEVxClgl1s0LMk4xr2wg4eT3Zn/Hb81IocyqNSGfXpjtawWxKxiC5/9Z95f1INyBD6MctJbL/R1oBwIw==} - '@walletconnect/ethereum-provider@2.21.5': resolution: {integrity: sha512-ov1VyMINE9Gg9lk2LIXAhHOd6Nzd8q20QqGBs0JwjqqiP3pSoyxbmOI4fcddEGSnK4qwRQv1uU+aR0TXiiy5uA==} @@ -3264,9 +3264,7 @@ packages: '@walletconnect/sign-client@2.21.0': resolution: {integrity: sha512-z7h+PeLa5Au2R591d/8ZlziE0stJvdzP9jNFzFolf2RG/OiXulgFKum8PrIyXy+Rg2q95U9nRVUF9fWcn78yBA==} - - '@walletconnect/sign-client@2.21.1': - resolution: {integrity: sha512-QaXzmPsMnKGV6tc4UcdnQVNOz4zyXgarvdIQibJ4L3EmLat73r5ZVl4c0cCOcoaV7rgM9Wbphgu5E/7jNcd3Zg==} + deprecated: 'Reliability and performance improvements. See: https://github.com/WalletConnect/walletconnect-monorepo/releases' '@walletconnect/sign-client@2.21.5': resolution: {integrity: sha512-IAs/IqmE1HVL9EsvqkNRU4NeAYe//h9NwqKi7ToKYZv4jhcC3BBemUD1r8iQJSTHMhO41EKn1G9/DiBln3ZiwQ==} @@ -3280,9 +3278,6 @@ packages: '@walletconnect/types@2.21.0': resolution: {integrity: sha512-ll+9upzqt95ZBWcfkOszXZkfnpbJJ2CmxMfGgE5GmhdxxxCcO5bGhXkI+x8OpiS555RJ/v/sXJYMSOLkmu4fFw==} - '@walletconnect/types@2.21.1': - resolution: {integrity: sha512-UeefNadqP6IyfwWC1Yi7ux+ljbP2R66PLfDrDm8izmvlPmYlqRerJWJvYO4t0Vvr9wrG4Ko7E0c4M7FaPKT/sQ==} - '@walletconnect/types@2.21.5': resolution: {integrity: sha512-kpTXbenKeMdaz6mgMN/jKaHHbu6mdY3kyyrddzE/mthOd2KLACVrZr7hrTf+Fg2coPVen5d1KKyQjyECEdzOCw==} @@ -3292,9 +3287,6 @@ packages: '@walletconnect/universal-provider@2.21.0': resolution: {integrity: sha512-mtUQvewt+X0VBQay/xOJBvxsB3Xsm1lTwFjZ6WUwSOTR1X+FNb71hSApnV5kbsdDIpYPXeQUbGt2se1n5E5UBg==} - '@walletconnect/universal-provider@2.21.1': - resolution: {integrity: sha512-Wjx9G8gUHVMnYfxtasC9poGm8QMiPCpXpbbLFT+iPoQskDDly8BwueWnqKs4Mx2SdIAWAwuXeZ5ojk5qQOxJJg==} - '@walletconnect/universal-provider@2.21.5': resolution: {integrity: sha512-SMXGGXyj78c8Ru2f665ZFZU24phn0yZyCP5Ej7goxVQxABwqWKM/odj3j/IxZv+hxA8yU13yxaubgVefnereqw==} @@ -3304,9 +3296,6 @@ packages: '@walletconnect/utils@2.21.0': resolution: {integrity: sha512-zfHLiUoBrQ8rP57HTPXW7rQMnYxYI4gT9yTACxVW6LhIFROTF6/ytm5SKNoIvi4a5nX5dfXG4D9XwQUCu8Ilig==} - '@walletconnect/utils@2.21.1': - resolution: {integrity: sha512-VPZvTcrNQCkbGOjFRbC24mm/pzbRMUq2DSQoiHlhh0X1U7ZhuIrzVtAoKsrzu6rqjz0EEtGxCr3K1TGRqDG4NA==} - '@walletconnect/utils@2.21.5': resolution: {integrity: sha512-RSPSxPvGMuvfGhd5au1cf9cmHB/KVVLFotJR9ltisjFABGtH2215U5oaVp+a7W18QX37aemejRkvacqOELVySA==} @@ -3506,6 +3495,9 @@ packages: axios@1.12.2: resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==} + axios@1.13.2: + resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==} + axios@1.7.9: resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} @@ -6415,8 +6407,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + typescript@5.7.3: + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} engines: {node: '>=14.17'} hasBin: true @@ -6772,12 +6764,12 @@ packages: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} - wagmi@2.15.6: - resolution: {integrity: sha512-tR4tm+7eE0UloQe1oi4hUIjIDyjv5ImQlzq/QcvvfJYWF/EquTfGrmht6+nTYGCIeSzeEvbK90KgWyNqa+HD7Q==} + wagmi@3.3.2: + resolution: {integrity: sha512-WPHuWnEOWpOTko+P9f5pR22y7Ozjq6nJse79uBOk3j6ke4ipbGCzJtXfdh/QGQzYHQTU+Iv5HXjiYeabdjdvaQ==} peerDependencies: '@tanstack/react-query': '>=5.0.0' react: '>=18' - typescript: '>=5.0.4' + typescript: '>=5.7.3' viem: 2.x peerDependenciesMeta: typescript: @@ -7084,18 +7076,18 @@ snapshots: optionalDependencies: graphql: 16.10.0 - '@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.4.5)': + '@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.7.3)': dependencies: - '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.4.5) + '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.7.3) graphql: 16.10.0 - typescript: 5.4.5 + typescript: 5.7.3 - '@abstract-foundation/agw-client@1.6.2(abitype@1.1.0(typescript@5.4.5)(zod@3.22.4))(typescript@5.4.5)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': + '@abstract-foundation/agw-client@1.6.2(abitype@1.1.0(typescript@5.7.3)(zod@3.22.4))(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': dependencies: - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 '@adraffy/ens-normalize@1.10.0': {} @@ -7126,15 +7118,15 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@base-org/account@1.1.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(zod@3.22.4)': + '@base-org/account@1.1.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@noble/hashes': 1.4.0 clsx: 1.2.1 eventemitter3: 5.0.1 idb-keyval: 6.2.1 - ox: 0.6.9(typescript@5.4.5)(zod@3.22.4) + ox: 0.6.9(typescript@5.7.3)(zod@3.22.4) preact: 10.24.2 - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) zustand: 5.0.3(@types/react@19.1.11)(react@19.1.1)(use-sync-external-store@1.4.0(react@19.1.1)) transitivePeerDependencies: - '@types/react' @@ -7326,20 +7318,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@coinbase/wallet-sdk@4.3.3': + '@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@noble/hashes': 1.8.0 clsx: 1.2.1 eventemitter3: 5.0.1 preact: 10.26.2 - - '@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': - dependencies: - '@noble/hashes': 1.8.0 - clsx: 1.2.1 - eventemitter3: 5.0.1 - preact: 10.26.2 - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - typescript @@ -7362,25 +7347,25 @@ snapshots: dependencies: postcss-selector-parser: 6.1.2 - '@dynamic-labs-connectors/abstract-global-wallet-evm@4.4.3(b34ec69d333a12139709a062bb5c7ec0)': + '@dynamic-labs-connectors/abstract-global-wallet-evm@4.5.0(4fab4504a9abc22a5c8ce8ffc6f00de9)': dependencies: - '@abstract-foundation/agw-client': 1.6.2(abitype@1.1.0(typescript@5.4.5)(zod@3.22.4))(typescript@5.4.5)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/ethereum': 4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@privy-io/cross-app-connect': 0.2.2(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@abstract-foundation/agw-client': 1.6.2(abitype@1.1.0(typescript@5.7.3)(zod@3.22.4))(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/ethereum': 4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@privy-io/cross-app-connect': 0.2.2(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - abitype - typescript - '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/wallet-connector-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@dynamic-labs-connectors/base-account-evm@4.4.2(@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/wallet-connector-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@base-org/account': 1.1.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(zod@3.22.4) - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@base-org/account': 1.1.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@types/react' - bufferutil @@ -7391,13 +7376,13 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs-sdk/assert-package-version@0.1.0-alpha.23': {} + '@dynamic-labs-sdk/assert-package-version@0.1.2': {} - '@dynamic-labs-sdk/client@0.1.0-alpha.23(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + '@dynamic-labs-sdk/client@0.1.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@dynamic-labs-sdk/assert-package-version': 0.1.0-alpha.23 - '@dynamic-labs-wallet/browser-wallet-client': 0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/sdk-api-core': 0.0.813 + '@dynamic-labs-sdk/assert-package-version': 0.1.2 + '@dynamic-labs-wallet/browser-wallet-client': 0.0.211(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/sdk-api-core': 0.0.843 '@simplewebauthn/browser': 13.1.0 buffer: 6.0.3 eventemitter3: 5.0.1 @@ -7407,10 +7392,21 @@ snapshots: - debug - utf-8-validate - '@dynamic-labs-wallet/browser-wallet-client@0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + '@dynamic-labs-wallet/browser-wallet-client@0.0.211(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@dynamic-labs-wallet/core': 0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs-wallet/core': 0.0.211(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/message-transport': 4.38.0 + uuid: 11.1.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + + '@dynamic-labs-wallet/browser-wallet-client@0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + '@dynamic-labs-wallet/core': 0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/logger': 4.52.5 '@dynamic-labs/message-transport': 4.38.0 uuid: 11.1.0 transitivePeerDependencies: @@ -7421,7 +7417,7 @@ snapshots: '@dynamic-labs-wallet/browser@0.0.167': dependencies: '@dynamic-labs-wallet/core': 0.0.167 - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs/logger': 4.52.5 '@dynamic-labs/sdk-api-core': 0.0.764 '@noble/hashes': 1.7.1 argon2id: 1.0.1 @@ -7440,22 +7436,37 @@ snapshots: transitivePeerDependencies: - debug - '@dynamic-labs-wallet/core@0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + '@dynamic-labs-wallet/core@0.0.211(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@dynamic-labs-wallet/forward-mpc-client': 0.1.0-alpha.8(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/sdk-api-core': 0.0.813 - axios: 1.12.2 + '@dynamic-labs-wallet/forward-mpc-client': 0.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.818 + axios: 1.13.2 + http-errors: 2.0.0 uuid: 11.1.0 transitivePeerDependencies: - bufferutil - debug - utf-8-validate - '@dynamic-labs-wallet/forward-mpc-client@0.1.0-alpha.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + '@dynamic-labs-wallet/core@0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + '@dynamic-labs-wallet/forward-mpc-client': 0.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.818 + axios: 1.13.2 + http-errors: 2.0.0 + uuid: 11.1.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + + '@dynamic-labs-wallet/forward-mpc-client@0.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@dynamic-labs-wallet/core': 0.0.167 - '@dynamic-labs-wallet/forward-mpc-shared': 0.1.0-alpha.8 - '@evervault/wasm-attestation-bindings': 0.3.0 + '@dynamic-labs-wallet/forward-mpc-shared': 0.1.0 + '@evervault/wasm-attestation-bindings': 0.3.1 '@noble/hashes': 2.0.1 '@noble/post-quantum': 0.5.2 eventemitter3: 5.0.1 @@ -7466,7 +7477,7 @@ snapshots: - debug - utf-8-validate - '@dynamic-labs-wallet/forward-mpc-shared@0.1.0-alpha.8': + '@dynamic-labs-wallet/forward-mpc-shared@0.1.0': dependencies: '@dynamic-labs-wallet/browser': 0.0.167 '@dynamic-labs-wallet/core': 0.0.167 @@ -7478,51 +7489,47 @@ snapshots: transitivePeerDependencies: - debug - '@dynamic-labs/assert-package-version@4.10.4': - dependencies: - '@dynamic-labs/logger': 4.10.4 - '@dynamic-labs/assert-package-version@4.38.0': dependencies: '@dynamic-labs/logger': 4.38.0 - '@dynamic-labs/assert-package-version@4.40.2': + '@dynamic-labs/assert-package-version@4.52.5': dependencies: - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs/logger': 4.52.5 - '@dynamic-labs/bitcoin@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)': + '@dynamic-labs/bitcoin@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)': dependencies: '@btckit/types': 0.0.19 - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 bitcoinjs-lib: 6.1.5 eventemitter3: 5.0.1 jsontokens: 4.0.1 - sats-connect: 4.2.0(typescript@5.4.5) + sats-connect: 4.2.0(typescript@5.7.3) transitivePeerDependencies: - debug - react - react-dom - typescript - '@dynamic-labs/eclipse@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@dynamic-labs/eclipse@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@wallet-standard/base': 1.0.1 transitivePeerDependencies: - '@azure/app-configuration' @@ -7556,22 +7563,22 @@ snapshots: - viem - zod - '@dynamic-labs/embedded-wallet-evm@4.40.2(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/embedded-wallet': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/webauthn': 4.40.2 + '@dynamic-labs/embedded-wallet-evm@4.52.5(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/embedded-wallet': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/webauthn': 4.52.5 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/iframe-stamper': 2.5.0 - '@turnkey/viem': 0.13.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@turnkey/viem': 0.13.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@turnkey/webauthn-stamper': 0.5.1 - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - encoding @@ -7581,24 +7588,24 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet-solana@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': - dependencies: - '@dynamic-labs-sdk/client': 0.1.0-alpha.23(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/embedded-wallet': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/webauthn': 4.40.2 - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@dynamic-labs/embedded-wallet-solana@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + '@dynamic-labs-sdk/client': 0.1.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/embedded-wallet': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/webauthn': 4.52.5 + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@turnkey/iframe-stamper': 2.5.0 - '@turnkey/solana': 1.0.42(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/solana': 1.0.42(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@turnkey/webauthn-stamper': 0.5.1 - viem: 2.29.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - debug @@ -7610,15 +7617,15 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/embedded-wallet@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/embedded-wallet@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/webauthn': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/webauthn': 4.52.5 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/http': 3.10.0 '@turnkey/iframe-stamper': 2.5.0 @@ -7628,55 +7635,55 @@ snapshots: - react - react-dom - '@dynamic-labs/ethereum-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - react - react-dom - '@dynamic-labs/ethereum-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - react - react-dom - '@dynamic-labs/ethereum@4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': - dependencies: - '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/wallet-connector-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/embedded-wallet-evm': 4.40.2(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/waas-evm': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/ethereum@4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs-connectors/base-account-evm': 4.4.2(@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/wallet-connector-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/embedded-wallet-evm': 4.52.5(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/waas-evm': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) '@metamask/sdk': 0.33.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@walletconnect/ethereum-provider': 2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) buffer: 6.0.3 eventemitter3: 5.0.1 - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -7712,17 +7719,17 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/iconic@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/iconic@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 react: 19.1.1 react-dom: 19.1.1(react@19.1.1) sharp: 0.33.5 - '@dynamic-labs/locale@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/locale@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 i18next: 23.4.6 react-i18next: 13.5.0(i18next@23.4.6)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) transitivePeerDependencies: @@ -7730,15 +7737,11 @@ snapshots: - react-dom - react-native - '@dynamic-labs/logger@4.10.4': - dependencies: - eventemitter3: 5.0.1 - '@dynamic-labs/logger@4.38.0': dependencies: eventemitter3: 5.0.1 - '@dynamic-labs/logger@4.40.2': + '@dynamic-labs/logger@4.52.5': dependencies: eventemitter3: 5.0.1 @@ -7750,48 +7753,48 @@ snapshots: '@vue/reactivity': 3.5.17 eventemitter3: 5.0.1 - '@dynamic-labs/multi-wallet@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/multi-wallet@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) tslib: 2.4.1 transitivePeerDependencies: - react - react-dom - '@dynamic-labs/rpc-providers@4.40.2': + '@dynamic-labs/rpc-providers@4.52.5': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/types': 4.40.2 - - '@dynamic-labs/sdk-api-core@0.0.650': {} + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/types': 4.52.5 '@dynamic-labs/sdk-api-core@0.0.764': {} '@dynamic-labs/sdk-api-core@0.0.805': {} - '@dynamic-labs/sdk-api-core@0.0.813': {} - - '@dynamic-labs/sdk-react-core@4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10)': - dependencies: - '@dynamic-labs-sdk/client': 0.1.0-alpha.23(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/iconic': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/locale': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/multi-wallet': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/store': 4.40.2 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/sdk-api-core@0.0.818': {} + + '@dynamic-labs/sdk-api-core@0.0.843': {} + + '@dynamic-labs/sdk-react-core@4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10)': + dependencies: + '@dynamic-labs-sdk/client': 0.1.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/iconic': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/locale': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/multi-wallet': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/store': 4.52.5 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) '@hcaptcha/react-hcaptcha': 1.4.4(react-dom@19.1.1(react@19.1.1))(react@19.1.1) '@thumbmarkjs/thumbmarkjs': 0.16.0 bs58: 5.0.0 @@ -7813,17 +7816,17 @@ snapshots: - react-native - utf-8-validate - '@dynamic-labs/solana-core@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@solana/spl-token': 0.4.12(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@dynamic-labs/solana-core@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@solana/spl-token': 0.4.12(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) eventemitter3: 5.0.1 transitivePeerDependencies: - bufferutil @@ -7834,28 +7837,28 @@ snapshots: - typescript - utf-8-validate - '@dynamic-labs/solana@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/embedded-wallet-solana': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/waas-svm': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connect': 4.40.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@dynamic-labs/solana@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/embedded-wallet-solana': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/waas-svm': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connect': 4.52.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 '@wallet-standard/experimental-features': 0.1.1 '@wallet-standard/features': 1.0.3 - '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/types': 2.21.5 - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) bs58: 5.0.0 eventemitter3: 5.0.1 tweetnacl: 1.0.3 @@ -7891,23 +7894,23 @@ snapshots: - viem - zod - '@dynamic-labs/store@4.40.2': + '@dynamic-labs/store@4.52.5': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 - '@dynamic-labs/sui-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)': + '@dynamic-labs/sui-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@mysten/sui': 1.24.0(typescript@5.4.5) - '@mysten/wallet-standard': 0.13.29(typescript@5.4.5) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@mysten/sui': 1.24.0(typescript@5.7.3) + '@mysten/wallet-standard': 0.13.29(typescript@5.7.3) text-encoding: 0.7.0 transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -7916,12 +7919,12 @@ snapshots: - react-dom - typescript - '@dynamic-labs/sui@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': + '@dynamic-labs/sui@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/sui-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5) - '@dynamic-labs/waas-sui': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/sui-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3) + '@dynamic-labs/waas-sui': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) text-encoding: 0.7.0 transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -7936,15 +7939,15 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/tron@4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@dynamic-labs/tron@4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@tronweb3/tronwallet-adapters': 1.2.14(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@tronweb3/tronwallet-adapters': 1.2.14(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) tronweb: 6.0.4(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -7977,20 +7980,15 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/types@4.10.4': - dependencies: - '@dynamic-labs/assert-package-version': 4.10.4 - '@dynamic-labs/sdk-api-core': 0.0.650 - '@dynamic-labs/types@4.38.0': dependencies: '@dynamic-labs/assert-package-version': 4.38.0 '@dynamic-labs/sdk-api-core': 0.0.805 - '@dynamic-labs/types@4.40.2': + '@dynamic-labs/types@4.52.5': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 '@dynamic-labs/utils@4.38.0': dependencies: @@ -8002,27 +8000,27 @@ snapshots: eventemitter3: 5.0.1 tldts: 6.0.16 - '@dynamic-labs/utils@4.40.2': + '@dynamic-labs/utils@4.52.5': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 buffer: 6.0.3 eventemitter3: 5.0.1 tldts: 6.0.16 - '@dynamic-labs/waas-evm@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/waas': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/waas-evm@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/waas': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -8036,21 +8034,21 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/waas-sui@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs-wallet/browser-wallet-client': 0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/sui-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5) - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/waas': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@mysten/sui': 1.24.0(typescript@5.4.5) - '@mysten/wallet-standard': 0.13.29(typescript@5.4.5) + '@dynamic-labs/waas-sui@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs-wallet/browser-wallet-client': 0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/sui-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/waas': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@mysten/sui': 1.24.0(typescript@5.7.3) + '@mysten/wallet-standard': 0.13.29(typescript@5.7.3) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -8064,18 +8062,18 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/waas-svm@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/waas': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@dynamic-labs/waas-svm@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/waas': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) bs58: 5.0.0 eventemitter3: 5.0.1 transitivePeerDependencies: @@ -8091,16 +8089,17 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/waas@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs-wallet/browser-wallet-client': 0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/sui-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5) - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/waas@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs-wallet/browser-wallet-client': 0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/sui-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3) + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -8114,16 +8113,17 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/waas@4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': - dependencies: - '@dynamic-labs-wallet/browser-wallet-client': 0.0.187(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/solana-core': 4.40.2(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@dynamic-labs/sui-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.4.5) - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/waas@4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': + dependencies: + '@dynamic-labs-wallet/browser-wallet-client': 0.0.217(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/solana-core': 4.52.5(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@dynamic-labs/sui-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.3) + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -8137,38 +8137,38 @@ snapshots: - utf-8-validate - viem - '@dynamic-labs/wagmi-connector@4.40.2(d787d01458a99b301780027d790661d8)': + '@dynamic-labs/wagmi-connector@4.52.5(@dynamic-labs/assert-package-version@4.52.5)(@dynamic-labs/ethereum-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@dynamic-labs/logger@4.52.5)(@dynamic-labs/rpc-providers@4.52.5)(@dynamic-labs/sdk-react-core@4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10))(@dynamic-labs/types@4.52.5)(@dynamic-labs/wallet-connector-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(eventemitter3@5.0.1)(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@3.3.2)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/ethereum-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-react-core': 4.40.2(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10) - '@dynamic-labs/types': 4.10.4 - '@dynamic-labs/wallet-connector-core': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@wagmi/core': 2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/ethereum-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-react-core': 4.52.5(@types/react@19.1.11)(bufferutil@4.0.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(utf-8-validate@5.0.10) + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/wallet-connector-core': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@wagmi/core': 3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) eventemitter3: 5.0.1 react: 19.1.1 - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + wagmi: 3.3.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(react@19.1.1)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@dynamic-labs/wallet-book@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/wallet-book@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/iconic': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/utils': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/iconic': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/utils': 4.52.5 eventemitter3: 5.0.1 react: 19.1.1 react-dom: 19.1.1(react@19.1.1) util: 0.12.5 zod: 4.0.5 - '@dynamic-labs/wallet-connect@4.40.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@dynamic-labs/wallet-connect@4.52.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -8193,30 +8193,30 @@ snapshots: - utf-8-validate - zod - '@dynamic-labs/wallet-connector-core@4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': + '@dynamic-labs/wallet-connector-core@4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 - '@dynamic-labs/rpc-providers': 4.40.2 - '@dynamic-labs/sdk-api-core': 0.0.813 - '@dynamic-labs/types': 4.40.2 - '@dynamic-labs/utils': 4.40.2 - '@dynamic-labs/wallet-book': 4.40.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1) + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 + '@dynamic-labs/rpc-providers': 4.52.5 + '@dynamic-labs/sdk-api-core': 0.0.843 + '@dynamic-labs/types': 4.52.5 + '@dynamic-labs/utils': 4.52.5 + '@dynamic-labs/wallet-book': 4.52.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1) eventemitter3: 5.0.1 transitivePeerDependencies: - react - react-dom - '@dynamic-labs/webauthn@4.40.2': + '@dynamic-labs/webauthn@4.52.5': dependencies: - '@dynamic-labs/assert-package-version': 4.40.2 - '@dynamic-labs/logger': 4.40.2 + '@dynamic-labs/assert-package-version': 4.52.5 + '@dynamic-labs/logger': 4.52.5 '@simplewebauthn/browser': 13.1.0 '@simplewebauthn/types': 12.0.0 - '@ecies/ciphers@0.2.2(@noble/ciphers@1.2.1)': + '@ecies/ciphers@0.2.2(@noble/ciphers@1.3.0)': dependencies: - '@noble/ciphers': 1.2.1 + '@noble/ciphers': 1.3.0 '@emnapi/runtime@1.4.5': dependencies: @@ -8661,7 +8661,7 @@ snapshots: '@ethersproject/properties': 5.7.0 '@ethersproject/strings': 5.7.0 - '@evervault/wasm-attestation-bindings@0.3.0': {} + '@evervault/wasm-attestation-bindings@0.3.1': {} '@fastify/busboy@2.1.1': {} @@ -8698,18 +8698,18 @@ snapshots: prop-types: 15.8.1 react: 19.1.1 - '@gql.tada/cli-utils@1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.4.5))(graphql@16.10.0)(typescript@5.4.5)': + '@gql.tada/cli-utils@1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.7.3))(graphql@16.10.0)(typescript@5.7.3)': dependencies: - '@0no-co/graphqlsp': 1.12.16(graphql@16.10.0)(typescript@5.4.5) - '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.4.5) + '@0no-co/graphqlsp': 1.12.16(graphql@16.10.0)(typescript@5.7.3) + '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.7.3) graphql: 16.10.0 - typescript: 5.4.5 + typescript: 5.7.3 - '@gql.tada/internal@1.0.8(graphql@16.10.0)(typescript@5.4.5)': + '@gql.tada/internal@1.0.8(graphql@16.10.0)(typescript@5.7.3)': dependencies: '@0no-co/graphql.web': 1.1.2(graphql@16.10.0) graphql: 16.10.0 - typescript: 5.4.5 + typescript: 5.7.3 '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)': dependencies: @@ -8981,7 +8981,7 @@ snapshots: dependencies: '@ledgerhq/devices': 6.27.1 '@ledgerhq/errors': 6.26.0 - '@ledgerhq/hw-transport': 6.27.1 + '@ledgerhq/hw-transport': 6.31.12 '@ledgerhq/logs': 6.13.0 '@ledgerhq/hw-transport@6.27.1': @@ -9099,21 +9099,6 @@ snapshots: dependencies: openapi-fetch: 0.13.8 - '@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))': - dependencies: - bufferutil: 4.0.9 - cross-fetch: 4.1.0 - date-fns: 2.30.0 - debug: 4.4.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) - utf-8-validate: 5.0.10 - uuid: 8.3.2 - transitivePeerDependencies: - - supports-color - '@metamask/sdk-communication-layer@0.33.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))': dependencies: '@metamask/sdk-analytics': 0.0.5 @@ -9130,41 +9115,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.32.0': - dependencies: - '@paulmillr/qr': 0.2.1 - '@metamask/sdk-install-modal-web@0.32.1': dependencies: '@paulmillr/qr': 0.2.1 - '@metamask/sdk@0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.26.10 - '@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-install-modal-web': 0.32.0 - '@paulmillr/qr': 0.2.1 - bowser: 2.11.0 - cross-fetch: 4.1.0 - debug: 4.4.0 - eciesjs: 0.4.13 - eth-rpc-errors: 4.0.3 - eventemitter2: 6.4.9 - obj-multiplex: 1.0.0 - pump: 3.0.2 - readable-stream: 3.6.2 - socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) - tslib: 2.8.1 - util: 0.12.5 - uuid: 8.3.2 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@metamask/sdk@0.33.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.26.10 @@ -9288,7 +9242,7 @@ snapshots: dependencies: '@scure/base': 1.2.4 - '@mysten/sui@1.24.0(typescript@5.4.5)': + '@mysten/sui@1.24.0(typescript@5.7.3)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) '@mysten/bcs': 1.5.0 @@ -9297,7 +9251,7 @@ snapshots: '@scure/base': 1.2.4 '@scure/bip32': 1.6.2 '@scure/bip39': 1.5.4 - gql.tada: 1.8.10(graphql@16.10.0)(typescript@5.4.5) + gql.tada: 1.8.10(graphql@16.10.0)(typescript@5.7.3) graphql: 16.10.0 poseidon-lite: 0.2.1 valibot: 0.36.0 @@ -9306,9 +9260,9 @@ snapshots: - '@gql.tada/vue-support' - typescript - '@mysten/wallet-standard@0.13.29(typescript@5.4.5)': + '@mysten/wallet-standard@0.13.29(typescript@5.7.3)': dependencies: - '@mysten/sui': 1.24.0(typescript@5.4.5) + '@mysten/sui': 1.24.0(typescript@5.7.3) '@wallet-standard/core': 1.1.0 transitivePeerDependencies: - '@gql.tada/svelte-support' @@ -9462,13 +9416,13 @@ snapshots: postcss-selector-parser: 6.0.16 ts-pattern: 5.0.8 - '@pandacss/dev@0.40.1(typescript@5.4.5)': + '@pandacss/dev@0.40.1(typescript@5.7.3)': dependencies: '@clack/prompts': 0.7.0 '@pandacss/config': 0.40.1 '@pandacss/logger': 0.40.1 - '@pandacss/node': 0.40.1(typescript@5.4.5) - '@pandacss/postcss': 0.40.1(typescript@5.4.5) + '@pandacss/node': 0.40.1(typescript@5.7.3) + '@pandacss/postcss': 0.40.1(typescript@5.7.3) '@pandacss/preset-panda': 0.40.1 '@pandacss/shared': 0.40.1 '@pandacss/token-dictionary': 0.40.1 @@ -9478,10 +9432,10 @@ snapshots: - jsdom - typescript - '@pandacss/extractor@0.40.1(typescript@5.4.5)': + '@pandacss/extractor@0.40.1(typescript@5.7.3)': dependencies: '@pandacss/shared': 0.40.1 - ts-evaluator: 1.2.0(typescript@5.4.5) + ts-evaluator: 1.2.0(typescript@5.7.3) ts-morph: 21.0.1 transitivePeerDependencies: - jsdom @@ -9508,14 +9462,14 @@ snapshots: '@pandacss/types': 0.40.1 kleur: 4.1.5 - '@pandacss/node@0.40.1(typescript@5.4.5)': + '@pandacss/node@0.40.1(typescript@5.7.3)': dependencies: '@pandacss/config': 0.40.1 '@pandacss/core': 0.40.1 - '@pandacss/extractor': 0.40.1(typescript@5.4.5) + '@pandacss/extractor': 0.40.1(typescript@5.7.3) '@pandacss/generator': 0.40.1 '@pandacss/logger': 0.40.1 - '@pandacss/parser': 0.40.1(typescript@5.4.5) + '@pandacss/parser': 0.40.1(typescript@5.7.3) '@pandacss/shared': 0.40.1 '@pandacss/token-dictionary': 0.40.1 '@pandacss/types': 0.40.1 @@ -9538,16 +9492,16 @@ snapshots: prettier: 3.2.5 ts-morph: 21.0.1 ts-pattern: 5.0.8 - tsconfck: 3.0.2(typescript@5.4.5) + tsconfck: 3.0.2(typescript@5.7.3) transitivePeerDependencies: - jsdom - typescript - '@pandacss/parser@0.40.1(typescript@5.4.5)': + '@pandacss/parser@0.40.1(typescript@5.7.3)': dependencies: '@pandacss/config': 0.40.1 '@pandacss/core': 0.40.1 - '@pandacss/extractor': 0.40.1(typescript@5.4.5) + '@pandacss/extractor': 0.40.1(typescript@5.7.3) '@pandacss/logger': 0.40.1 '@pandacss/shared': 0.40.1 '@pandacss/types': 0.40.1 @@ -9559,9 +9513,9 @@ snapshots: - jsdom - typescript - '@pandacss/postcss@0.40.1(typescript@5.4.5)': + '@pandacss/postcss@0.40.1(typescript@5.7.3)': dependencies: - '@pandacss/node': 0.40.1(typescript@5.4.5) + '@pandacss/node': 0.40.1(typescript@5.7.3) postcss: 8.4.38 transitivePeerDependencies: - jsdom @@ -9593,15 +9547,15 @@ snapshots: '@polka/url@1.0.0-next.28': {} - '@privy-io/cross-app-connect@0.2.2(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': + '@privy-io/cross-app-connect@0.2.2(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': dependencies: '@noble/curves': 1.8.2 '@noble/hashes': 1.3.2 '@scure/base': 1.1.9 fflate: 0.8.2 - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: - '@wagmi/core': 2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@wagmi/core': 3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@radix-ui/colors@0.1.9': {} @@ -9990,24 +9944,24 @@ snapshots: '@radix-ui/rect@1.1.0': {} - '@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: big.js: 6.2.2 dayjs: 1.11.13 - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - typescript - utf-8-validate - zod - '@reown/appkit-controllers@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-controllers@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) valtio: 1.13.2(@types/react@19.1.11)(react@19.1.1) - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10035,12 +9989,12 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-pay@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-pay@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) lit: 3.3.0 valtio: 1.13.2(@types/react@19.1.11)(react@19.1.1) transitivePeerDependencies: @@ -10074,13 +10028,13 @@ snapshots: dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) lit: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -10110,11 +10064,11 @@ snapshots: - valtio - zod - '@reown/appkit-ui@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-ui@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) lit: 3.3.0 qrcode: 1.5.3 transitivePeerDependencies: @@ -10144,16 +10098,16 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-utils@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4)': + '@reown/appkit-utils@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-polyfills': 1.7.8 - '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 - '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) valtio: 1.13.2(@types/react@19.1.11)(react@19.1.1) - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10181,9 +10135,9 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-polyfills': 1.7.8 '@walletconnect/logger': 2.1.2 zod: 3.22.4 @@ -10192,21 +10146,21 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-pay': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-controllers': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-pay': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-polyfills': 1.7.8 - '@reown/appkit-scaffold-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) - '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@reown/appkit-scaffold-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) + '@reown/appkit-ui': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-utils': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@19.1.11)(react@19.1.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.21.0 - '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) bs58: 6.0.0 valtio: 1.13.2(@types/react@19.1.11)(react@19.1.1) - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10293,9 +10247,9 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.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.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) events: 3.3.0 transitivePeerDependencies: - bufferutil @@ -10303,20 +10257,20 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.22.9 - viem: 1.21.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 1.21.4(bufferutil@4.0.9)(typescript@5.7.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.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.22.9 - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - typescript @@ -10325,22 +10279,22 @@ snapshots: '@safe-global/safe-gateway-typescript-sdk@3.22.9': {} - '@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.4.5))': + '@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.7.3))': dependencies: axios: 1.12.0 bitcoin-address-validation: 3.0.0 buffer: 6.0.3 jsontokens: 4.0.1 - valibot: 1.1.0(typescript@5.4.5) + valibot: 1.1.0(typescript@5.7.3) transitivePeerDependencies: - debug - '@sats-connect/make-default-provider-config@0.0.10(@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.4.5)))(typescript@5.4.5)': + '@sats-connect/make-default-provider-config@0.0.10(@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.7.3)))(typescript@5.7.3)': dependencies: - '@sats-connect/core': 0.10.0(valibot@1.1.0(typescript@5.4.5)) + '@sats-connect/core': 0.10.0(valibot@1.1.0(typescript@5.7.3)) '@sats-connect/ui': 0.0.6 bowser: 2.11.0 - typescript: 5.4.5 + typescript: 5.7.3 '@sats-connect/ui@0.0.6': {} @@ -10415,10 +10369,10 @@ snapshots: '@socket.io/component-emitter@3.1.2': {} - '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)': dependencies: '@solana/buffer-layout': 4.0.1 - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) bigint-buffer: 1.1.5 bignumber.js: 9.1.2 transitivePeerDependencies: @@ -10431,100 +10385,100 @@ snapshots: dependencies: buffer: 6.0.3 - '@solana/codecs-core@2.0.0-rc.1(typescript@5.4.5)': + '@solana/codecs-core@2.0.0-rc.1(typescript@5.7.3)': dependencies: - '@solana/errors': 2.0.0-rc.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/errors': 2.0.0-rc.1(typescript@5.7.3) + typescript: 5.7.3 - '@solana/codecs-core@2.1.1(typescript@5.4.5)': + '@solana/codecs-core@2.1.1(typescript@5.7.3)': dependencies: - '@solana/errors': 2.1.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/errors': 2.1.1(typescript@5.7.3) + typescript: 5.7.3 - '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.4.5)': + '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.5) - '@solana/errors': 2.0.0-rc.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.7.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.7.3) + typescript: 5.7.3 - '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.4.5)': + '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.5) - '@solana/errors': 2.0.0-rc.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.7.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.7.3) + typescript: 5.7.3 - '@solana/codecs-numbers@2.1.1(typescript@5.4.5)': + '@solana/codecs-numbers@2.1.1(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.1.1(typescript@5.4.5) - '@solana/errors': 2.1.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/codecs-core': 2.1.1(typescript@5.7.3) + '@solana/errors': 2.1.1(typescript@5.7.3) + typescript: 5.7.3 - '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)': + '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.5) - '@solana/errors': 2.0.0-rc.1(typescript@5.4.5) + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.7.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.7.3) fastestsmallesttextencoderdecoder: 1.0.22 - typescript: 5.4.5 + typescript: 5.7.3 - '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)': + '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - typescript: 5.4.5 + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/errors@2.0.0-rc.1(typescript@5.4.5)': + '@solana/errors@2.0.0-rc.1(typescript@5.7.3)': dependencies: chalk: 5.4.1 commander: 12.1.0 - typescript: 5.4.5 + typescript: 5.7.3 - '@solana/errors@2.1.1(typescript@5.4.5)': + '@solana/errors@2.1.1(typescript@5.7.3)': dependencies: chalk: 5.4.1 commander: 13.1.0 - typescript: 5.4.5 + typescript: 5.7.3 - '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)': + '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)': dependencies: - '@solana/codecs-core': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.4.5) - '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/errors': 2.0.0-rc.1(typescript@5.4.5) - typescript: 5.4.5 + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.7.3) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/errors': 2.0.0-rc.1(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - fastestsmallesttextencoderdecoder - '@solana/spl-token-group@0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)': + '@solana/spl-token-group@0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)': dependencies: - '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - fastestsmallesttextencoderdecoder - typescript - '@solana/spl-token-metadata@0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)': + '@solana/spl-token-metadata@0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)': dependencies: - '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) transitivePeerDependencies: - fastestsmallesttextencoderdecoder - typescript - '@solana/spl-token@0.4.12(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@solana/spl-token@0.4.12(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(bufferutil@4.0.9)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3)(utf-8-validate@5.0.10)': dependencies: '@solana/buffer-layout': 4.0.1 - '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) - '@solana/spl-token-group': 0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/spl-token-metadata': 0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.4.5) - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) + '@solana/spl-token-group': 0.0.7(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/spl-token-metadata': 0.1.6(@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.7.3) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) buffer: 6.0.3 transitivePeerDependencies: - bufferutil @@ -10533,13 +10487,13 @@ snapshots: - typescript - utf-8-validate - '@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)': + '@solana/web3.js@1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.26.9 '@noble/curves': 1.8.1 '@noble/hashes': 1.8.0 '@solana/buffer-layout': 4.0.1 - '@solana/codecs-numbers': 2.1.1(typescript@5.4.5) + '@solana/codecs-numbers': 2.1.1(typescript@5.7.3) agentkeepalive: 4.6.0 bn.js: 5.2.1 borsh: 0.7.0 @@ -10660,7 +10614,7 @@ snapshots: '@tronweb3/tronwallet-adapter-binance@1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: '@binance/w3w-utils': 1.1.6 - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10669,7 +10623,7 @@ snapshots: '@tronweb3/tronwallet-adapter-bitkeep@1.1.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10678,7 +10632,7 @@ snapshots: '@tronweb3/tronwallet-adapter-bybit@1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10687,7 +10641,7 @@ snapshots: '@tronweb3/tronwallet-adapter-foxwallet@1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10696,7 +10650,7 @@ snapshots: '@tronweb3/tronwallet-adapter-gatewallet@1.0.4(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10705,7 +10659,7 @@ snapshots: '@tronweb3/tronwallet-adapter-guarda@1.0.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10714,7 +10668,7 @@ snapshots: '@tronweb3/tronwallet-adapter-imtoken@1.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10726,7 +10680,7 @@ snapshots: '@ledgerhq/hw-app-trx': 6.31.8 '@ledgerhq/hw-transport': 6.27.1 '@ledgerhq/hw-transport-webhid': 6.27.1 - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) buffer: 6.0.3 eventemitter3: 4.0.7 preact: 10.26.2 @@ -10737,7 +10691,7 @@ snapshots: '@tronweb3/tronwallet-adapter-okxwallet@1.0.7(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10755,7 +10709,7 @@ snapshots: '@tronweb3/tronwallet-adapter-tomowallet@1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -10764,7 +10718,7 @@ snapshots: '@tronweb3/tronwallet-adapter-tronlink@1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - debug @@ -10772,21 +10726,21 @@ snapshots: '@tronweb3/tronwallet-adapter-trust@1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - debug - utf-8-validate - '@tronweb3/tronwallet-adapter-walletconnect@2.0.3(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@tronweb3/tronwallet-adapter-walletconnect@2.0.3(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@tronweb3/tronwallet-abstract-adapter': 1.1.9(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@tronweb3/walletconnect-tron': 3.0.0(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@wagmi/core': 1.4.13(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@tronweb3/tronwallet-abstract-adapter': 1.1.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@tronweb3/walletconnect-tron': 3.0.0(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 1.4.13(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/types': 2.21.5 - viem: 0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10817,7 +10771,7 @@ snapshots: - utf-8-validate - zod - '@tronweb3/tronwallet-adapters@1.2.14(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@tronweb3/tronwallet-adapters@1.2.14(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@tronweb3/tronwallet-adapter-binance': 1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-bitkeep': 1.1.7(bufferutil@4.0.9)(utf-8-validate@5.0.10) @@ -10832,7 +10786,7 @@ snapshots: '@tronweb3/tronwallet-adapter-tomowallet': 1.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-tronlink': 1.1.13(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@tronweb3/tronwallet-adapter-trust': 1.0.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) - '@tronweb3/tronwallet-adapter-walletconnect': 2.0.3(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@tronweb3/tronwallet-adapter-walletconnect': 2.0.3(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10863,11 +10817,11 @@ snapshots: - utf-8-validate - zod - '@tronweb3/walletconnect-tron@3.0.0(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@tronweb3/walletconnect-tron@3.0.0(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@walletconnect/modal': 2.7.0(@types/react@19.1.11)(react@19.1.1) - '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10934,7 +10888,7 @@ snapshots: '@turnkey/api-key-stamper': 0.4.7 '@turnkey/encoding': 0.5.0 - '@turnkey/sdk-browser@5.8.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@turnkey/sdk-browser@5.8.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@turnkey/api-key-stamper': 0.4.7 '@turnkey/crypto': 2.5.0 @@ -10943,7 +10897,7 @@ snapshots: '@turnkey/iframe-stamper': 2.5.0 '@turnkey/indexed-db-stamper': 1.1.1 '@turnkey/sdk-types': 0.3.0 - '@turnkey/wallet-stamper': 1.0.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/wallet-stamper': 1.0.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@turnkey/webauthn-stamper': 0.5.1 bs58check: 4.0.0 buffer: 6.0.3 @@ -10956,11 +10910,11 @@ snapshots: - utf-8-validate - zod - '@turnkey/sdk-server@4.7.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@turnkey/sdk-server@4.7.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@turnkey/api-key-stamper': 0.4.7 '@turnkey/http': 3.10.0 - '@turnkey/wallet-stamper': 1.0.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/wallet-stamper': 1.0.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) buffer: 6.0.3 cross-fetch: 3.2.0 transitivePeerDependencies: @@ -10972,12 +10926,12 @@ snapshots: '@turnkey/sdk-types@0.3.0': {} - '@turnkey/solana@1.0.42(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@turnkey/solana@1.0.42(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10) + '@solana/web3.js': 1.98.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10) '@turnkey/http': 3.10.0 - '@turnkey/sdk-browser': 5.8.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@turnkey/sdk-server': 4.7.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/sdk-browser': 5.8.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/sdk-server': 4.7.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - encoding @@ -10985,16 +10939,16 @@ snapshots: - utf-8-validate - zod - '@turnkey/viem@0.13.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@turnkey/viem@0.13.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@noble/curves': 1.8.0 '@openzeppelin/contracts': 4.9.6 '@turnkey/api-key-stamper': 0.4.7 '@turnkey/http': 3.10.0 - '@turnkey/sdk-browser': 5.8.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@turnkey/sdk-server': 4.7.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/sdk-browser': 5.8.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@turnkey/sdk-server': 4.7.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) cross-fetch: 4.1.0 - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - encoding @@ -11002,12 +10956,12 @@ snapshots: - utf-8-validate - zod - '@turnkey/wallet-stamper@1.0.8(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@turnkey/wallet-stamper@1.0.8(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@turnkey/crypto': 2.5.0 '@turnkey/encoding': 0.5.0 optionalDependencies: - viem: 2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - bufferutil - typescript @@ -11077,34 +11031,34 @@ snapshots: dependencies: '@types/node': 22.13.4 - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.3) '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.7.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.3) '@typescript-eslint/visitor-keys': 7.18.0 eslint: 8.57.1 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.3(typescript@5.4.5) + ts-api-utils: 1.4.3(typescript@5.7.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3)': dependencies: '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.3) '@typescript-eslint/visitor-keys': 7.18.0 debug: 4.4.0 eslint: 8.57.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -11113,21 +11067,21 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.3) debug: 4.4.0 eslint: 8.57.1 - ts-api-utils: 1.4.3(typescript@5.4.5) + ts-api-utils: 1.4.3(typescript@5.7.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - supports-color '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.3)': dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 @@ -11136,18 +11090,18 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.2 - ts-api-utils: 1.4.3(typescript@5.4.5) + ts-api-utils: 1.4.3(typescript@5.7.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.7.3)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.3) eslint: 8.57.1 transitivePeerDependencies: - supports-color @@ -11238,24 +11192,24 @@ snapshots: '@vue/shared@3.5.17': {} - '@wagmi/chains@1.0.0(typescript@5.4.5)': + '@wagmi/chains@1.0.0(typescript@5.7.3)': optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 - '@wagmi/connectors@3.1.11(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/connectors@3.1.11(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 3.9.3 - '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/ethereum-provider': 2.11.0(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.6.2(@types/react@19.1.11)(react@19.1.1) '@walletconnect/utils': 2.11.0 - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + abitype: 0.8.7(typescript@5.7.3)(zod@3.22.4) eventemitter3: 4.0.7 - viem: 0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11283,54 +11237,27 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@5.8.5(@types/react@19.1.11)(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/connectors@7.1.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': dependencies: - '@coinbase/wallet-sdk': 4.3.3 - '@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.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@wagmi/core': 2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@walletconnect/ethereum-provider': 2.21.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - cbw-sdk: '@coinbase/wallet-sdk@3.9.3' - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@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 + '@coinbase/wallet-sdk': 4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/ethereum-provider': 2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + porto: 0.0.85(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@3.3.2)(zod@3.22.4) + typescript: 5.7.3 - '@wagmi/core@1.4.13(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/core@1.4.13(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: - '@wagmi/connectors': 3.1.11(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + '@wagmi/connectors': 3.1.11(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + abitype: 0.8.7(typescript@5.7.3)(zod@3.22.4) eventemitter3: 4.0.7 - viem: 0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) zustand: 4.5.7(@types/react@19.1.11)(react@19.1.1) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11359,15 +11286,15 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))': + '@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))': dependencies: eventemitter3: 5.0.1 - mipd: 0.0.7(typescript@5.4.5) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + mipd: 0.0.7(typescript@5.7.3) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) zustand: 5.0.0(@types/react@19.1.11)(react@19.1.1)(use-sync-external-store@1.4.0(react@19.1.1)) optionalDependencies: '@tanstack/query-core': 5.66.4 - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - '@types/react' - immer @@ -11457,7 +11384,7 @@ snapshots: - uploadthing - utf-8-validate - '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 @@ -11471,50 +11398,7 @@ snapshots: '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 '@walletconnect/types': 2.21.0 - '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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' - - '@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/core@2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.1 - '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/window-getters': 1.0.1 es-toolkit: 1.33.0 events: 3.3.0 @@ -11543,7 +11427,7 @@ snapshots: - utf-8-validate - zod - '@walletconnect/core@2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/core@2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 @@ -11557,7 +11441,7 @@ snapshots: '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 '@walletconnect/types': 2.21.5 - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/window-getters': 1.0.1 es-toolkit: 1.39.3 events: 3.3.0 @@ -11611,7 +11495,7 @@ snapshots: '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/modal': 2.6.2(@types/react@19.1.11)(react@19.1.1) + '@walletconnect/modal': 2.7.0(@types/react@19.1.11)(react@19.1.1) '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) '@walletconnect/types': 2.11.0 '@walletconnect/universal-provider': 2.11.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) @@ -11642,58 +11526,18 @@ snapshots: - uploadthing - utf-8-validate - '@walletconnect/ethereum-provider@2.21.1(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': - dependencies: - '@reown/appkit': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/types': 2.21.1 - '@walletconnect/universal-provider': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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' - - '@types/react' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - encoding - - ioredis - - react - - typescript - - uploadthing - - utf-8-validate - - zod - - '@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit': 1.7.8(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.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/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/types': 2.21.5 - '@walletconnect/universal-provider': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/universal-provider': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -11979,16 +11823,16 @@ snapshots: - uploadthing - utf-8-validate - '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.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.21.0 - '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -12014,51 +11858,16 @@ snapshots: - utf-8-validate - zod - '@walletconnect/sign-client@2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/sign-client@2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@walletconnect/core': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.1 - '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': - dependencies: - '@walletconnect/core': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/core': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.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.21.5 - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -12144,34 +11953,6 @@ snapshots: - ioredis - uploadthing - '@walletconnect/types@2.21.1': - 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/types@2.21.5': dependencies: '@walletconnect/events': 1.0.1 @@ -12234,7 +12015,7 @@ snapshots: - uploadthing - utf-8-validate - '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/jsonrpc-http-connection': 1.0.8 @@ -12243,9 +12024,9 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/types': 2.21.0 - '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) es-toolkit: 1.33.0 events: 3.3.0 transitivePeerDependencies: @@ -12273,7 +12054,7 @@ snapshots: - utf-8-validate - zod - '@walletconnect/universal-provider@2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/universal-provider@2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/jsonrpc-http-connection': 1.0.8 @@ -12282,48 +12063,9 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/keyvaluestorage': 1.1.1 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/types': 2.21.1 - '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/sign-client': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@walletconnect/types': 2.21.5 - '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + '@walletconnect/utils': 2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) es-toolkit: 1.39.3 events: 3.3.0 transitivePeerDependencies: @@ -12387,7 +12129,7 @@ snapshots: - ioredis - uploadthing - '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@noble/ciphers': 1.2.1 '@noble/curves': 1.8.1 @@ -12405,50 +12147,7 @@ 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.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.1(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.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.21.1 - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - bs58: 6.0.0 - detect-browser: 5.3.0 - query-string: 7.1.3 - uint8arrays: 3.1.0 - viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -12473,7 +12172,7 @@ snapshots: - utf-8-validate - zod - '@walletconnect/utils@2.21.5(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@walletconnect/utils@2.21.5(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@msgpack/msgpack': 3.1.2 '@noble/ciphers': 1.3.0 @@ -12494,7 +12193,7 @@ snapshots: detect-browser: 5.3.0 query-string: 7.1.3 uint8arrays: 3.1.1 - viem: 2.31.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.31.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -12533,30 +12232,30 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - abitype@0.8.7(typescript@5.4.5)(zod@3.22.4): + abitype@0.8.7(typescript@5.7.3)(zod@3.22.4): dependencies: - typescript: 5.4.5 + typescript: 5.7.3 optionalDependencies: zod: 3.22.4 - abitype@0.9.8(typescript@5.4.5)(zod@3.22.4): + abitype@0.9.8(typescript@5.7.3)(zod@3.22.4): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 zod: 3.22.4 - abitype@1.0.8(typescript@5.4.5)(zod@3.22.4): + abitype@1.0.8(typescript@5.7.3)(zod@3.22.4): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 zod: 3.22.4 - abitype@1.1.0(typescript@5.4.5)(zod@3.22.4): + abitype@1.1.0(typescript@5.7.3)(zod@3.22.4): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 zod: 3.22.4 - abitype@1.1.0(typescript@5.4.5)(zod@4.0.5): + abitype@1.1.0(typescript@5.7.3)(zod@4.0.5): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 zod: 4.0.5 accepts@1.3.8: @@ -12735,6 +12434,14 @@ snapshots: transitivePeerDependencies: - debug + axios@1.13.2: + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.4 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + axios@1.7.9: dependencies: follow-redirects: 1.15.9 @@ -12809,14 +12516,14 @@ snapshots: typeforce: 1.18.0 varuint-bitcoin: 1.1.2 - bitcoinjs-lib@7.0.0-rc.0(typescript@5.4.5): + bitcoinjs-lib@7.0.0-rc.0(typescript@5.7.3): dependencies: '@noble/hashes': 1.7.1 bech32: 2.0.0 bip174: 3.0.0-rc.1 bs58check: 4.0.0 uint8array-tools: 0.0.9 - valibot: 0.38.0(typescript@5.4.5) + valibot: 0.38.0(typescript@5.7.3) varuint-bitcoin: 2.0.0 transitivePeerDependencies: - typescript @@ -13244,8 +12951,8 @@ snapshots: eciesjs@0.4.13: dependencies: - '@ecies/ciphers': 0.2.2(@noble/ciphers@1.2.1) - '@noble/ciphers': 1.2.1 + '@ecies/ciphers': 0.2.2(@noble/ciphers@1.3.0) + '@noble/ciphers': 1.3.0 '@noble/curves': 1.9.2 '@noble/hashes': 1.8.0 @@ -13479,17 +13186,17 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -13500,7 +13207,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.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 @@ -13512,7 +13219,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14052,13 +13759,13 @@ snapshots: gopd@1.2.0: {} - gql.tada@1.8.10(graphql@16.10.0)(typescript@5.4.5): + gql.tada@1.8.10(graphql@16.10.0)(typescript@5.7.3): dependencies: '@0no-co/graphql.web': 1.1.2(graphql@16.10.0) - '@0no-co/graphqlsp': 1.12.16(graphql@16.10.0)(typescript@5.4.5) - '@gql.tada/cli-utils': 1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.4.5))(graphql@16.10.0)(typescript@5.4.5) - '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.4.5) - typescript: 5.4.5 + '@0no-co/graphqlsp': 1.12.16(graphql@16.10.0)(typescript@5.7.3) + '@gql.tada/cli-utils': 1.6.3(@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.7.3))(graphql@16.10.0)(typescript@5.7.3) + '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - '@gql.tada/svelte-support' - '@gql.tada/vue-support' @@ -14683,9 +14390,9 @@ snapshots: minipass@7.1.2: {} - mipd@0.0.7(typescript@5.4.5): + mipd@0.0.7(typescript@5.7.3): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 mkdirp@3.0.1: {} @@ -14914,35 +14621,35 @@ snapshots: object-keys: 1.1.1 safe-push-apply: 1.0.0 - ox@0.6.7(typescript@5.4.5)(zod@3.22.4): + ox@0.6.7(typescript@5.7.3)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/curves': 1.9.2 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod - ox@0.6.9(typescript@5.4.5)(zod@3.22.4): + ox@0.6.9(typescript@5.7.3)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/curves': 1.9.2 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod - ox@0.7.1(typescript@5.4.5)(zod@3.22.4): + ox@0.7.1(typescript@5.7.3)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 @@ -14950,14 +14657,14 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod - ox@0.9.4(typescript@5.4.5)(zod@3.22.4): + ox@0.9.4(typescript@5.7.3)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 @@ -14965,14 +14672,14 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod - ox@0.9.6(typescript@5.4.5)(zod@3.22.4): + ox@0.9.6(typescript@5.7.3)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 @@ -14980,14 +14687,14 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod - ox@0.9.6(typescript@5.4.5)(zod@4.0.5): + ox@0.9.6(typescript@5.7.3)(zod@4.0.5): dependencies: '@adraffy/ens-normalize': 1.11.0 '@noble/ciphers': 1.3.0 @@ -14995,10 +14702,10 @@ snapshots: '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@4.0.5) + abitype: 1.1.0(typescript@5.7.3)(zod@4.0.5) eventemitter3: 5.0.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - zod @@ -15034,9 +14741,9 @@ snapshots: package-manager-detector@0.2.9: {} - pandacss-preset-radix-colors@0.2.0(@pandacss/dev@0.40.1(typescript@5.4.5))(@radix-ui/colors@0.1.9): + pandacss-preset-radix-colors@0.2.0(@pandacss/dev@0.40.1(typescript@5.7.3))(@radix-ui/colors@0.1.9): dependencies: - '@pandacss/dev': 0.40.1(typescript@5.4.5) + '@pandacss/dev': 0.40.1(typescript@5.7.3) '@radix-ui/colors': 0.1.9 parent-module@1.0.1: @@ -15127,21 +14834,21 @@ snapshots: pony-cause@2.1.11: {} - porto@0.0.85(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))(zod@3.22.4): + porto@0.0.85(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@3.3.2)(zod@3.22.4): dependencies: - '@wagmi/core': 2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@wagmi/core': 3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) effect: 3.17.13 idb-keyval: 6.2.1 - mipd: 0.0.7(typescript@5.4.5) + mipd: 0.0.7(typescript@5.7.3) open: 10.2.0 - ox: 0.9.4(typescript@5.4.5)(zod@3.22.4) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + ox: 0.9.4(typescript@5.7.3)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) zustand: 5.0.8(@types/react@19.1.11)(react@19.1.1)(use-sync-external-store@1.4.0(react@19.1.1)) optionalDependencies: '@tanstack/react-query': 5.66.9(react@19.1.1) react: 19.1.1 - typescript: 5.4.5 - wagmi: 2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + typescript: 5.7.3 + wagmi: 3.3.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(react@19.1.1)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) transitivePeerDependencies: - '@types/react' - immer @@ -15553,12 +15260,12 @@ snapshots: safer-buffer@2.1.2: {} - sats-connect@4.2.0(typescript@5.4.5): + sats-connect@4.2.0(typescript@5.7.3): dependencies: - '@sats-connect/core': 0.10.0(valibot@1.1.0(typescript@5.4.5)) - '@sats-connect/make-default-provider-config': 0.0.10(@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.4.5)))(typescript@5.4.5) + '@sats-connect/core': 0.10.0(valibot@1.1.0(typescript@5.7.3)) + '@sats-connect/make-default-provider-config': 0.0.10(@sats-connect/core@0.10.0(valibot@1.1.0(typescript@5.7.3)))(typescript@5.7.3) '@sats-connect/ui': 0.0.7 - valibot: 1.1.0(typescript@5.4.5) + valibot: 1.1.0(typescript@5.7.3) transitivePeerDependencies: - debug - typescript @@ -15974,16 +15681,16 @@ snapshots: - debug - utf-8-validate - ts-api-utils@1.4.3(typescript@5.4.5): + ts-api-utils@1.4.3(typescript@5.7.3): dependencies: - typescript: 5.4.5 + typescript: 5.7.3 - ts-evaluator@1.2.0(typescript@5.4.5): + ts-evaluator@1.2.0(typescript@5.7.3): dependencies: ansi-colors: 4.1.3 crosspath: 2.0.0 object-path: 0.11.8 - typescript: 5.4.5 + typescript: 5.7.3 ts-morph@21.0.1: dependencies: @@ -15992,9 +15699,9 @@ snapshots: ts-pattern@5.0.8: {} - tsconfck@3.0.2(typescript@5.4.5): + tsconfck@3.0.2(typescript@5.7.3): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 tsconfig-paths@3.15.0: dependencies: @@ -16065,20 +15772,20 @@ snapshots: typeforce@1.18.0: {} - typescript-eslint@7.18.0(eslint@8.57.1)(typescript@5.4.5): + typescript-eslint@7.18.0(eslint@8.57.1)(typescript@5.7.3): dependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3) + '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.3) + '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.3) eslint: 8.57.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - supports-color typescript@5.3.3: {} - typescript@5.4.5: {} + typescript@5.7.3: {} ufo@1.5.4: {} @@ -16194,13 +15901,13 @@ snapshots: valibot@0.36.0: {} - valibot@0.38.0(typescript@5.4.5): + valibot@0.38.0(typescript@5.7.3): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 - valibot@1.1.0(typescript@5.4.5): + valibot@1.1.0(typescript@5.7.3): optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 validator@13.12.0: {} @@ -16231,15 +15938,15 @@ snapshots: vary@1.1.2: {} - viem@0.3.50(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@0.3.50(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.9.0 '@noble/curves': 1.0.0 '@noble/hashes': 1.3.0 '@scure/bip32': 1.3.0 '@scure/bip39': 1.2.0 - '@wagmi/chains': 1.0.0(typescript@5.4.5) - abitype: 0.8.7(typescript@5.4.5)(zod@3.22.4) + '@wagmi/chains': 1.0.0(typescript@5.7.3) + abitype: 0.8.7(typescript@5.7.3)(zod@3.22.4) isomorphic-ws: 5.0.0(ws@8.12.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) ws: 8.12.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -16248,120 +15955,120 @@ snapshots: - utf-8-validate - zod - viem@1.21.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@1.21.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.10.0 '@noble/curves': 1.2.0 '@noble/hashes': 1.3.2 '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 - abitype: 0.9.8(typescript@5.4.5)(zod@3.22.4) + abitype: 0.9.8(typescript@5.7.3)(zod@3.22.4) isows: 1.0.3(ws@8.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) ws: 8.13.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@2.23.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.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.4.5)(zod@3.22.4) + abitype: 1.0.8(typescript@5.7.3)(zod@3.22.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.4.5)(zod@3.22.4) + ox: 0.6.7(typescript@5.7.3)(zod@3.22.4) ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.29.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@2.29.0(bufferutil@4.0.9)(typescript@5.7.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.4.5)(zod@3.22.4) + abitype: 1.0.8(typescript@5.7.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.4.5)(zod@3.22.4) + ox: 0.6.9(typescript@5.7.3)(zod@3.22.4) ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.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.4.5)(zod@3.22.4) + abitype: 1.0.8(typescript@5.7.3)(zod@3.22.4) isows: 1.0.7(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - ox: 0.6.9(typescript@5.4.5)(zod@3.22.4) + ox: 0.6.9(typescript@5.7.3)(zod@3.22.4) ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.31.0(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@2.31.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.0.8(typescript@5.4.5)(zod@3.22.4) + abitype: 1.0.8(typescript@5.7.3)(zod@3.22.4) isows: 1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - ox: 0.7.1(typescript@5.4.5)(zod@3.22.4) + ox: 0.7.1(typescript@5.7.3)(zod@3.22.4) ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): + viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@3.22.4) + abitype: 1.1.0(typescript@5.7.3)(zod@3.22.4) isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - ox: 0.9.6(typescript@5.4.5)(zod@3.22.4) + ox: 0.9.6(typescript@5.7.3)(zod@3.22.4) ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate - zod - viem@2.38.2(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@4.0.5): + viem@2.38.2(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@4.0.5): dependencies: '@noble/curves': 1.9.1 '@noble/hashes': 1.8.0 '@scure/bip32': 1.7.0 '@scure/bip39': 1.6.0 - abitype: 1.1.0(typescript@5.4.5)(zod@4.0.5) + abitype: 1.1.0(typescript@5.7.3)(zod@4.0.5) isows: 1.0.7(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)) - ox: 0.9.6(typescript@5.4.5)(zod@4.0.5) + ox: 0.9.6(typescript@5.7.3)(zod@4.0.5) ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -16433,43 +16140,29 @@ snapshots: void-elements@3.1.0: {} - wagmi@2.15.6(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@3.3.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.66.4)(@tanstack/react-query@5.66.9(react@19.1.1))(@types/react@19.1.11)(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(react@19.1.1)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)): dependencies: '@tanstack/react-query': 5.66.9(react@19.1.1) - '@wagmi/connectors': 5.8.5(@types/react@19.1.11)(@wagmi/core@2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.9)(react@19.1.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) - '@wagmi/core': 2.17.3(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.4.5)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@wagmi/connectors': 7.1.2(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@wagmi/core@3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(@walletconnect/ethereum-provider@2.21.5(@types/react@19.1.11)(bufferutil@4.0.9)(react@19.1.1)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4))(porto@0.0.85)(typescript@5.7.3)(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) + '@wagmi/core': 3.2.2(@tanstack/query-core@5.66.4)(@types/react@19.1.11)(react@19.1.1)(typescript@5.7.3)(use-sync-external-store@1.4.0(react@19.1.1))(viem@2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4)) react: 19.1.1 use-sync-external-store: 1.4.0(react@19.1.1) - viem: 2.29.4(bufferutil@4.0.9)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + viem: 2.29.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.22.4) optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.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' + - '@base-org/account' + - '@coinbase/wallet-sdk' + - '@gemini-wallet/core' + - '@metamask/sdk' + - '@safe-global/safe-apps-provider' + - '@safe-global/safe-apps-sdk' - '@tanstack/query-core' - '@types/react' - - '@upstash/redis' - - '@vercel/blob' - - '@vercel/kv' - - aws4fetch - - bufferutil - - db0 - - encoding + - '@walletconnect/ethereum-provider' - immer - - ioredis - - supports-color - - uploadthing - - utf-8-validate - - zod + - ox + - porto web-streams-polyfill@3.3.3: {}