diff --git a/governance/xc_admin/packages/xc_admin_frontend/components/ProposalStatusFilter.tsx b/governance/xc_admin/packages/xc_admin_frontend/components/ProposalStatusFilter.tsx
deleted file mode 100644
index 239fb0ab77..0000000000
--- a/governance/xc_admin/packages/xc_admin_frontend/components/ProposalStatusFilter.tsx
+++ /dev/null
@@ -1,89 +0,0 @@
-import { Menu, Transition } from '@headlessui/react'
-import { useRouter } from 'next/router'
-import { Fragment, useCallback, useContext, useEffect } from 'react'
-import {
- DEFAULT_STATUS_FILTER,
- type ProposalStatusFilter,
- StatusFilterContext,
-} from '../contexts/StatusFilterContext'
-import Arrow from '@images/icons/down.inline.svg'
-
-const ProposalStatusFilter = () => {
- const router = useRouter()
- const { statusFilter, setStatusFilter } = useContext(StatusFilterContext)
-
- const handleChange = useCallback(
- (event: any) => {
- if (event.target.value) {
- router.query.status = event.target.value
- setStatusFilter(event.target.value)
- router.push(
- {
- pathname: router.pathname,
- query: router.query,
- },
- undefined,
- { scroll: false }
- )
- }
- },
- [setStatusFilter, router]
- )
-
- useEffect(() => {
- router.query && router.query.status
- ? setStatusFilter(router.query.status as ProposalStatusFilter)
- : setStatusFilter(DEFAULT_STATUS_FILTER)
- }, [setStatusFilter, router])
-
- const statuses: ProposalStatusFilter[] = [
- 'all',
- 'active',
- 'executed',
- 'executeReady',
- 'cancelled',
- 'rejected',
- 'draft',
- 'expired',
- ]
-
- return (
-
- )
-}
-
-export default ProposalStatusFilter
diff --git a/governance/xc_admin/packages/xc_admin_frontend/components/Select.tsx b/governance/xc_admin/packages/xc_admin_frontend/components/Select.tsx
new file mode 100644
index 0000000000..31a963bec5
--- /dev/null
+++ b/governance/xc_admin/packages/xc_admin_frontend/components/Select.tsx
@@ -0,0 +1,63 @@
+import {
+ Field,
+ Label,
+ Listbox,
+ ListboxButton,
+ ListboxOptions,
+ ListboxOption,
+ Transition,
+} from '@headlessui/react'
+import type { ComponentProps } from 'react'
+import Arrow from '@images/icons/down.inline.svg'
+import { Fragment } from 'react'
+
+type OwnProps = {
+ label: string
+ options: readonly T[]
+ value: T
+ onChange: (newValue: T) => void
+}
+
+type Props = Omit, keyof OwnProps> &
+ OwnProps
+
+export const Select = ({
+ options,
+ label,
+ ...props
+}: Props) => (
+
+
+
+ {({ open }) => (
+ <>
+
+ {props.value}
+
+
+
+
+ {options.map((option) => (
+
+ {option}
+
+ ))}
+
+
+ >
+ )}
+
+
+)
diff --git a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/ProposalRow.tsx b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/ProposalRow.tsx
index 185dd61b76..e38f25083f 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/ProposalRow.tsx
+++ b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/ProposalRow.tsx
@@ -9,6 +9,7 @@ import { StatusTag } from './StatusTag'
import { getInstructionsSummary, getProposalStatus } from './utils'
import NodeWallet from '@coral-xyz/anchor/dist/cjs/nodewallet'
+import { useWallet } from '@solana/wallet-adapter-react'
import { AccountMeta, Keypair } from '@solana/web3.js'
import {
MultisigParser,
@@ -30,6 +31,7 @@ export const ProposalRow = ({
const { isLoading: isMultisigLoading, connection } = useMultisigContext()
const router = useRouter()
const elementRef = useRef(null)
+ const { publicKey: walletPublicKey } = useWallet()
const formattedTime = time?.toLocaleString(undefined, {
year: 'numeric',
month: 'short',
@@ -191,6 +193,24 @@ export const ProposalRow = ({
/>
)}
+ {walletPublicKey &&
+ proposal.approved.some((vote) => vote.equals(walletPublicKey)) && (
+
+
+
+ )}
+ {walletPublicKey &&
+ proposal.rejected.some((vote) => vote.equals(walletPublicKey)) && (
+
+
+
+ )}
+ {walletPublicKey &&
+ proposal.cancelled.some((vote) => vote.equals(walletPublicKey)) && (
+
+
+
+ )}
diff --git a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/Proposals.tsx b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/Proposals.tsx
index 001b1f2831..48660cb508 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/Proposals.tsx
+++ b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/Proposals.tsx
@@ -1,25 +1,50 @@
import { TransactionAccount } from '@sqds/mesh/lib/types'
import { useRouter } from 'next/router'
-import { useCallback, useContext, useEffect, useState } from 'react'
+import { useCallback, useContext, useEffect, useState, useMemo } from 'react'
import { ClusterContext } from '../../../contexts/ClusterContext'
import { useMultisigContext } from '../../../contexts/MultisigContext'
-import { StatusFilterContext } from '../../../contexts/StatusFilterContext'
+import { PROPOSAL_STATUSES } from './utils'
import ClusterSwitch from '../../ClusterSwitch'
-import ProposalStatusFilter from '../../ProposalStatusFilter'
import Loadbar from '../../loaders/Loadbar'
+import { Select } from '../../Select'
+import { useQueryState, parseAsStringLiteral } from 'nuqs'
import { ProposalRow } from './ProposalRow'
import { getProposalStatus } from './utils'
import { Proposal } from './Proposal'
+import { useWallet } from '@solana/wallet-adapter-react'
type ProposalType = 'priceFeed' | 'governance'
+const VOTE_STATUSES = [
+ 'any',
+ 'voted',
+ 'approved',
+ 'rejected',
+ 'cancelled',
+ 'notVoted',
+] as const
+const DEFAULT_VOTE_STATUS = 'any'
+
+const PROPOSAL_STATUS_FILTERS = ['all', ...PROPOSAL_STATUSES] as const
+const DEFAULT_PROPOSAL_STATUS_FILTER = 'all'
+
const Proposals = () => {
const router = useRouter()
const [currentProposal, setCurrentProposal] = useState()
const [currentProposalPubkey, setCurrentProposalPubkey] = useState()
+ const [statusFilter, setStatusFilter] = useQueryState(
+ 'status',
+ parseAsStringLiteral(PROPOSAL_STATUS_FILTERS).withDefault(
+ DEFAULT_PROPOSAL_STATUS_FILTER
+ )
+ )
+ const [voteStatus, setVoteStatus] = useQueryState(
+ 'voteStatus',
+ parseAsStringLiteral(VOTE_STATUSES).withDefault(DEFAULT_VOTE_STATUS)
+ )
const { cluster } = useContext(ClusterContext)
- const { statusFilter } = useContext(StatusFilterContext)
+ const { publicKey: walletPublicKey } = useWallet()
const {
upgradeMultisigAccount,
@@ -40,9 +65,6 @@ const Proposals = () => {
proposalType === 'priceFeed'
? priceFeedMultisigProposals
: upgradeMultisigProposals
- const [filteredProposals, setFilteredProposals] = useState<
- TransactionAccount[]
- >([])
const handleClickBackToProposals = () => {
delete router.query.proposal
@@ -103,19 +125,60 @@ const Proposals = () => {
cluster,
])
- useEffect(() => {
- // filter price feed multisig proposals by status
- if (statusFilter === 'all') {
- setFilteredProposals(multisigProposals)
+ const proposalsFilteredByStatus = useMemo(
+ () =>
+ statusFilter === 'all'
+ ? multisigProposals
+ : multisigProposals.filter(
+ (proposal) =>
+ getProposalStatus(proposal, multisigAccount) === statusFilter
+ ),
+ [statusFilter, multisigAccount, multisigProposals]
+ )
+
+ const filteredProposals = useMemo(() => {
+ if (walletPublicKey) {
+ switch (voteStatus) {
+ case 'any':
+ return proposalsFilteredByStatus
+ case 'voted': {
+ return proposalsFilteredByStatus.filter((proposal) =>
+ [
+ ...proposal.approved,
+ ...proposal.rejected,
+ ...proposal.cancelled,
+ ].some((vote) => vote.equals(walletPublicKey))
+ )
+ }
+ case 'approved': {
+ return proposalsFilteredByStatus.filter((proposal) =>
+ proposal.approved.some((vote) => vote.equals(walletPublicKey))
+ )
+ }
+ case 'rejected': {
+ return proposalsFilteredByStatus.filter((proposal) =>
+ proposal.rejected.some((vote) => vote.equals(walletPublicKey))
+ )
+ }
+ case 'cancelled': {
+ return proposalsFilteredByStatus.filter((proposal) =>
+ proposal.cancelled.some((vote) => vote.equals(walletPublicKey))
+ )
+ }
+ case 'notVoted': {
+ return proposalsFilteredByStatus.filter((proposal) =>
+ [
+ ...proposal.approved,
+ ...proposal.rejected,
+ ...proposal.cancelled,
+ ].every((vote) => !vote.equals(walletPublicKey))
+ )
+ }
+ }
} else {
- setFilteredProposals(
- multisigProposals.filter(
- (proposal) =>
- getProposalStatus(proposal, multisigAccount) === statusFilter
- )
- )
+ return proposalsFilteredByStatus
}
- }, [statusFilter, multisigAccount, multisigProposals])
+ }, [proposalsFilteredByStatus, walletPublicKey, voteStatus])
return (
@@ -167,11 +230,26 @@ const Proposals = () => {
) : (
<>
-
+
+
+ {walletPublicKey && (
+
+ )}
+
+
Total Proposals: {filteredProposals.length}
-
{filteredProposals.length > 0 ? (
diff --git a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/utils.ts b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/utils.ts
index 793f8ec7ac..2f88168d4e 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/utils.ts
+++ b/governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/utils.ts
@@ -10,15 +10,17 @@ import {
WormholeMultisigInstruction,
} from '@pythnetwork/xc-admin-common'
-export type ProposalStatus =
- | 'active'
- | 'executed'
- | 'cancelled'
- | 'rejected'
- | 'expired'
- | 'executeReady'
- | 'draft'
- | 'unkwown'
+export const PROPOSAL_STATUSES = [
+ 'active',
+ 'executed',
+ 'cancelled',
+ 'rejected',
+ 'expired',
+ 'executeReady',
+ 'draft',
+ 'unkwown',
+] as const
+export type ProposalStatus = typeof PROPOSAL_STATUSES[number]
export const getProposalStatus = (
proposal: TransactionAccount | undefined,
diff --git a/governance/xc_admin/packages/xc_admin_frontend/contexts/StatusFilterContext.tsx b/governance/xc_admin/packages/xc_admin_frontend/contexts/StatusFilterContext.tsx
deleted file mode 100644
index e5d9190b36..0000000000
--- a/governance/xc_admin/packages/xc_admin_frontend/contexts/StatusFilterContext.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import { ReactNode, createContext, useMemo, useState } from 'react'
-import { ProposalStatus } from '../components/tabs/Proposals/utils'
-
-export const DEFAULT_STATUS_FILTER = 'all'
-
-export type ProposalStatusFilter = 'all' | ProposalStatus
-
-export const StatusFilterContext = createContext<{
- statusFilter: ProposalStatusFilter
- setStatusFilter: (_statusFilter: ProposalStatusFilter) => void
-}>({
- statusFilter: DEFAULT_STATUS_FILTER,
- setStatusFilter: () => {},
-})
-
-export const StatusFilterProvider = ({ children }: { children: ReactNode }) => {
- const [statusFilter, setStatusFilter] = useState
(
- DEFAULT_STATUS_FILTER
- )
- const contextValue = useMemo(
- () => ({
- statusFilter,
- setStatusFilter: (statusFilter: ProposalStatusFilter) => {
- setStatusFilter(statusFilter)
- },
- }),
- [statusFilter]
- )
- return (
-
- {children}
-
- )
-}
diff --git a/governance/xc_admin/packages/xc_admin_frontend/package.json b/governance/xc_admin/packages/xc_admin_frontend/package.json
index 6770b34216..de0043ea8c 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/package.json
+++ b/governance/xc_admin/packages/xc_admin_frontend/package.json
@@ -34,6 +34,7 @@
"message_buffer": "workspace:^",
"next": "catalog:",
"next-seo": "^5.15.0",
+ "nuqs": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-hot-toast": "^2.4.0",
diff --git a/governance/xc_admin/packages/xc_admin_frontend/pages/_app.tsx b/governance/xc_admin/packages/xc_admin_frontend/pages/_app.tsx
index 6f769523d5..aa3991787c 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/pages/_app.tsx
+++ b/governance/xc_admin/packages/xc_admin_frontend/pages/_app.tsx
@@ -25,6 +25,7 @@ import { Toaster } from 'react-hot-toast'
import { ClusterProvider } from '../contexts/ClusterContext'
import SEO from '../next-seo.config'
import '../styles/globals.css'
+import { NuqsAdapter } from 'nuqs/adapters/next/pages'
const walletConnectConfig: WalletConnectWalletAdapterConfig = {
network: WalletAdapterNetwork.Mainnet,
@@ -66,7 +67,7 @@ function MyApp({ Component, pageProps }: AppProps) {
)
return (
- <>
+
@@ -94,7 +95,7 @@ function MyApp({ Component, pageProps }: AppProps) {
- >
+
)
}
diff --git a/governance/xc_admin/packages/xc_admin_frontend/pages/index.tsx b/governance/xc_admin/packages/xc_admin_frontend/pages/index.tsx
index 70a6be1639..55e2f46a7f 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/pages/index.tsx
+++ b/governance/xc_admin/packages/xc_admin_frontend/pages/index.tsx
@@ -11,7 +11,6 @@ import Proposals from '../components/tabs/Proposals/Proposals'
import UpdatePermissions from '../components/tabs/UpdatePermissions'
import { MultisigContextProvider } from '../contexts/MultisigContext'
import { PythContextProvider } from '../contexts/PythContext'
-import { StatusFilterProvider } from '../contexts/StatusFilterContext'
import { classNames } from '../utils/classNames'
import '../mappings/signers.json'
@@ -165,11 +164,7 @@ const Home: NextPage<{
{tabInfoArray[currentTabIndex].queryString ===
TAB_INFO.UpdatePermissions.queryString && }
{tabInfoArray[currentTabIndex].queryString ===
- TAB_INFO.Proposals.queryString && (
-
-
-
- )}
+ TAB_INFO.Proposals.queryString && }
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bcd3f4982d..89a8644624 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -219,7 +219,7 @@ importers:
version: 2.1.4(react@19.0.0-rc-603e6108-20241029)
'@next/third-parties':
specifier: ^14.2.4
- version: 14.2.4(next@15.0.3(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)
+ version: 14.2.4(next@15.0.3(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)
'@pythnetwork/client':
specifier: ^2.22.0
version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -240,7 +240,7 @@ importers:
version: 2.1.1
connectkit:
specifier: ^1.8.2
- version: 1.8.2(@babel/core@7.25.8)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq))
+ version: 1.8.2(@babel/core@7.24.7)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i))
cryptocurrency-icons:
specifier: ^0.18.1
version: 0.18.1
@@ -249,7 +249,7 @@ importers:
version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
next:
specifier: 'catalog:'
- version: 15.0.3(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)
+ version: 15.0.3(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
@@ -273,7 +273,7 @@ importers:
version: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: ^2.10.4
- version: 2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq)
+ version: 2.10.4(slso2y5si5ebobzw4pa64fwb3i)
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -283,10 +283,10 @@ importers:
version: 4.9.1
'@cprussin/eslint-config':
specifier: 'catalog:'
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
'@cprussin/jest-config':
specifier: 'catalog:'
- version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ version: 1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
'@cprussin/prettier-config':
specifier: 'catalog:'
version: 2.1.1(prettier@3.3.2)
@@ -670,13 +670,13 @@ importers:
version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.35
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-react-ui':
specifier: ^0.9.35
- version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-wallets':
specifier: 0.19.10
- version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
+ version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -797,16 +797,16 @@ importers:
dependencies:
'@certusone/wormhole-sdk':
specifier: ^0.9.8
- version: 0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
+ version: 0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
'@coral-xyz/anchor':
specifier: ^0.29.0
- version: 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@cosmjs/cosmwasm-stargate':
specifier: ^0.32.3
- version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stargate':
specifier: ^0.32.3
- version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@injectivelabs/networks':
specifier: ^1.14.6
version: 1.14.6(google-protobuf@3.21.4)
@@ -815,7 +815,7 @@ importers:
version: 1.3.0(svelte@4.2.18)(typescript@5.4.5)
'@pythnetwork/client':
specifier: ^2.22.0
- version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@pythnetwork/cosmwasm-deploy-tools':
specifier: workspace:*
version: link:../target_chains/cosmwasm/tools
@@ -854,10 +854,10 @@ importers:
version: link:../governance/xc_admin/packages/xc_admin_common
'@solana/web3.js':
specifier: 1.92.3
- version: 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@sqds/mesh':
specifier: ^1.0.6
- version: 1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@ton/blueprint':
specifier: ^0.22.0
version: 0.22.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)(@ton/ton@15.1.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0))(@types/node@22.8.2)(encoding@0.1.13)(typescript@5.4.5)
@@ -902,7 +902,7 @@ importers:
version: 5.4.5
web3:
specifier: ^1.8.2
- version: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-eth-contract:
specifier: ^1.8.2
version: 1.10.0(encoding@0.1.13)
@@ -912,7 +912,7 @@ importers:
devDependencies:
'@types/web3':
specifier: ^1.2.2
- version: 1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
eslint:
specifier: ^8.0.0
version: 8.56.0
@@ -1251,19 +1251,19 @@ importers:
dependencies:
'@certusone/wormhole-sdk':
specifier: ^0.10.15
- version: 0.10.15(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
+ version: 0.10.15(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)
'@coral-xyz/anchor':
specifier: ^0.29.0
- version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@injectivelabs/token-metadata':
specifier: ~1.10.42
version: 1.10.42(google-protobuf@3.21.4)
'@project-serum/anchor':
specifier: ^0.25.0
- version: 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@pythnetwork/client':
specifier: ^2.22.0
- version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@pythnetwork/pyth-solana-receiver':
specifier: workspace:*
version: link:../../../../target_chains/solana/sdk/js/pyth_solana_receiver
@@ -1275,10 +1275,10 @@ importers:
version: 4.0.1
'@solana/web3.js':
specifier: 1.92.3
- version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@sqds/mesh':
specifier: ^1.0.6
- version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ version: 1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
bigint-buffer:
specifier: ^1.1.5
version: 1.1.5
@@ -1287,7 +1287,7 @@ importers:
version: 5.2.1
ethers:
specifier: ^5.7.2
- version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -1351,13 +1351,13 @@ importers:
version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.28
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-react-ui':
specifier: ^0.9.27
- version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-wallets':
specifier: 0.19.10
- version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
+ version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -1385,6 +1385,9 @@ importers:
next-seo:
specifier: ^5.15.0
version: 5.15.0(next@15.0.3(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ nuqs:
+ specifier: 'catalog:'
+ version: 2.1.2(next@15.0.3(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)
react:
specifier: 'catalog:'
version: 19.0.0-rc-603e6108-20241029
@@ -11161,21 +11164,26 @@ packages:
abstract-leveldown@2.6.3:
resolution: {integrity: sha512-2++wDf/DYqkPR3o5tbfdhF96EfMApo1GpPfzOsR/ZYXdkSmELlvOOEAl9iKkRsktMPHdGjO4rtkBpf2I7TiTeA==}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
abstract-leveldown@2.7.2:
resolution: {integrity: sha512-+OVvxH2rHVEhWLdbudP6p0+dNMXu8JA1CbhP19T8paTYAcX7oJ4OVjT+ZUVpv7mITxXHqDMej+GdqXBmXkw09w==}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
abstract-leveldown@6.2.3:
resolution: {integrity: sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
abstract-leveldown@6.3.0:
resolution: {integrity: sha512-TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
abstract-leveldown@7.2.0:
resolution: {integrity: sha512-DnhQwcFEaYsvYDnACLZhMmCWd3rkOeEvglpa4q5i/5Jlm3UIsWaxVzuXvDLFCSCWRO3yy2/+V/G7FusFgejnfQ==}
engines: {node: '>=10'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -13429,10 +13437,12 @@ packages:
deferred-leveldown@1.2.2:
resolution: {integrity: sha512-uukrWD2bguRtXilKt6cAWKyoXrTSMo5m7crUdLfWQmu8kIm88w3QZoUL+6nhpfKVmhHANER6Re3sKoNoZ3IKMA==}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
deferred-leveldown@5.3.0:
resolution: {integrity: sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
@@ -17021,6 +17031,7 @@ packages:
level-js@5.0.2:
resolution: {integrity: sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg==}
+ deprecated: Superseded by browser-level (https://github.com/Level/community#faq)
level-packager@5.1.1:
resolution: {integrity: sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==}
@@ -17055,13 +17066,16 @@ packages:
leveldown@5.6.0:
resolution: {integrity: sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ==}
engines: {node: '>=8.6.0'}
+ deprecated: Superseded by classic-level (https://github.com/Level/community#faq)
levelup@1.3.9:
resolution: {integrity: sha512-VVGHfKIlmw8w1XqpGOAGwq6sZm2WwWLmlDcULkKWQXEA5EopA8OBNJ2Ck2v6bdk8HeEZSbCSEgzXadyQFm76sQ==}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
levelup@4.4.0:
resolution: {integrity: sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==}
engines: {node: '>=6'}
+ deprecated: Superseded by abstract-level (https://github.com/Level/community#faq)
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
@@ -17443,6 +17457,7 @@ packages:
memdown@1.4.1:
resolution: {integrity: sha512-iVrGHZB8i4OQfM155xx8akvG9FIj+ht14DX5CQkCTG4EHzZ3d3sgckIf/Lm9ivZalEsFuEVnWv2B2WZvbrro2w==}
+ deprecated: Superseded by memory-level (https://github.com/Level/community#faq)
memfs@3.5.1:
resolution: {integrity: sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==}
@@ -23978,6 +23993,19 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
+ '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24049,6 +24077,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/traverse': 7.25.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24096,6 +24137,13 @@ snapshots:
regexpu-core: 6.1.1
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ regexpu-core: 6.1.1
+ semver: 6.3.1
+
'@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24284,6 +24332,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24324,6 +24382,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24370,6 +24438,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-wrap-function': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24386,6 +24463,13 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+
'@babel/helper-replace-supers@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24429,6 +24513,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24666,6 +24759,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24682,6 +24785,12 @@ snapshots:
'@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24706,6 +24815,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24729,6 +24843,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
+
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24741,6 +24861,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24753,6 +24879,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0)
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
+
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24768,6 +24900,15 @@ snapshots:
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0)
'@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0)
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7)
+
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.8)':
dependencies:
'@babel/compat-data': 7.24.7
@@ -24783,6 +24924,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0)
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
+
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24805,6 +24952,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24921,6 +25077,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -24946,6 +25107,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25046,6 +25212,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25191,6 +25362,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25239,6 +25415,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25319,6 +25500,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25373,6 +25563,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25496,6 +25691,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7)
+ '@babel/traverse': 7.25.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25538,6 +25745,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/template': 7.25.7
+ '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
+
'@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25569,6 +25782,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25690,6 +25908,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.0)
+ '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+
'@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25762,6 +25986,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25814,6 +26047,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -25934,6 +26172,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26045,6 +26292,12 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26211,6 +26464,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
'@babel/plugin-transform-parameters@7.24.1(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26236,6 +26494,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26273,6 +26536,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26320,6 +26591,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26379,6 +26659,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26404,6 +26689,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26414,6 +26704,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26457,6 +26752,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/types': 7.25.8
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26554,6 +26860,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26591,6 +26909,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26634,6 +26957,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26667,6 +26998,11 @@ snapshots:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26741,6 +27077,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -26820,6 +27167,12 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0)
'@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.25.7
+
'@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
@@ -27513,6 +27866,41 @@ snapshots:
'@types/long': 4.0.2
'@types/node': 18.19.57
+ '@certusone/wormhole-sdk@0.10.15(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@certusone/wormhole-sdk-proto-web': 0.0.7(google-protobuf@3.21.4)
+ '@certusone/wormhole-sdk-wasm': 0.0.1
+ '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
+ '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@terra-money/terra.js': 3.1.9
+ '@xpla/xpla.js': 0.2.3
+ algosdk: 2.7.0
+ aptos: 1.5.0
+ axios: 0.24.0
+ bech32: 2.0.0
+ binary-parser: 2.2.1
+ bs58: 4.0.1
+ elliptic: 6.5.6
+ js-base64: 3.7.5
+ near-api-js: 1.1.0(encoding@0.1.13)
+ optionalDependencies:
+ '@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4)
+ '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4)
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - encoding
+ - google-protobuf
+ - graphql-ws
+ - react
+ - react-dom
+ - subscriptions-transport-ws
+ - utf-8-validate
+
'@certusone/wormhole-sdk@0.10.15(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@certusone/wormhole-sdk-proto-web': 0.0.7(google-protobuf@3.21.2)
@@ -27583,15 +27971,15 @@ snapshots:
- subscriptions-transport-ws
- utf-8-validate
- '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)':
+ '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3)':
dependencies:
'@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4)
'@certusone/wormhole-sdk-wasm': 0.0.1
- '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))
+ '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
'@terra-money/terra.js': 3.1.9
'@xpla/xpla.js': 0.2.3
algosdk: 2.7.0
@@ -27605,7 +27993,7 @@ snapshots:
near-api-js: 1.1.0(encoding@0.1.13)
optionalDependencies:
'@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4)
- '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@6.0.3)
'@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4)
transitivePeerDependencies:
- bufferutil
@@ -27618,15 +28006,15 @@ snapshots:
- subscriptions-transport-ws
- utf-8-validate
- '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3)':
+ '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)':
dependencies:
'@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4)
'@certusone/wormhole-sdk-wasm': 0.0.1
- '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))
- '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)
- '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
- '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
- '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
+ '@mysten/sui.js': 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@project-serum/anchor': 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@terra-money/terra.js': 3.1.9
'@xpla/xpla.js': 0.2.3
algosdk: 2.7.0
@@ -27640,7 +28028,7 @@ snapshots:
near-api-js: 1.1.0(encoding@0.1.13)
optionalDependencies:
'@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4)
- '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
'@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4)
transitivePeerDependencies:
- bufferutil
@@ -28002,6 +28390,23 @@ snapshots:
- debug
- utf-8-validate
+ '@cosmjs/cosmwasm-stargate@0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@cosmjs/amino': 0.32.3
+ '@cosmjs/crypto': 0.32.3
+ '@cosmjs/encoding': 0.32.3
+ '@cosmjs/math': 0.32.3
+ '@cosmjs/proto-signing': 0.32.3
+ '@cosmjs/stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/utils': 0.32.3
+ cosmjs-types: 0.9.0
+ pako: 2.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
'@cosmjs/crypto@0.30.1':
dependencies:
'@cosmjs/encoding': 0.30.1
@@ -28413,7 +28818,7 @@ snapshots:
transitivePeerDependencies:
- debug
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
'@babel/core': 7.25.8
'@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
@@ -28425,22 +28830,22 @@ snapshots:
eslint: 9.12.0(jiti@1.21.0)
eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28453,7 +28858,7 @@ snapshots:
- ts-node
- typescript
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.25.8
'@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
@@ -28465,22 +28870,22 @@ snapshots:
eslint: 9.12.0(jiti@1.21.0)
eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28493,7 +28898,7 @@ snapshots:
- ts-node
- typescript
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
dependencies:
'@babel/core': 7.25.8
'@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
@@ -28505,22 +28910,22 @@ snapshots:
eslint: 9.12.0(jiti@1.21.0)
eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
eslint-plugin-tsdoc: 0.3.0
eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
- typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28613,18 +29018,18 @@ snapshots:
- ts-node
- typescript
- '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(sass@1.80.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
dependencies:
'@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.3)
'@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.5.0)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7)
+ next: 14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7)
prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4)
+ ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4)
typescript: 5.5.4
transitivePeerDependencies:
- '@babel/core'
@@ -28654,7 +29059,7 @@ snapshots:
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.9.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7)
+ next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7)
prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -28688,7 +29093,7 @@ snapshots:
jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
jest-runner-eslint: 2.2.0(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
- next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7)
+ next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7)
prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -28722,7 +29127,7 @@ snapshots:
jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))
- next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7)
+ next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7)
prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -32588,22 +32993,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
i18next: 22.5.1
qr-code-styling: 1.6.0-rc.1
- react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
optionalDependencies:
react: 19.0.0-rc-603e6108-20241029
react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
- '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 15.0.0
'@metamask/sdk-communication-layer': 0.26.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
cross-fetch: 4.0.0(encoding@0.1.13)
@@ -32616,7 +33021,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.0
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0
socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -32980,9 +33385,9 @@ snapshots:
'@next/swc-win32-x64-msvc@15.0.3':
optional: true
- '@next/third-parties@14.2.4(next@15.0.3(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)':
+ '@next/third-parties@14.2.4(next@15.0.3(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- next: 15.0.3(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)
+ next: 15.0.3(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)
react: 19.0.0-rc-603e6108-20241029
third-party-capital: 1.0.20
@@ -35149,6 +35554,12 @@ snapshots:
react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optional: true
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))':
+ dependencies:
+ merge-options: 3.0.4
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ optional: true
+
'@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
@@ -35317,6 +35728,13 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
'@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))
@@ -35373,6 +35791,55 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/babel-preset@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-export-default-from': 7.25.8(@babel/core@7.24.7)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.7)
+ '@babel/template': 7.25.7
+ '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.7)
+ react-refresh: 0.14.2
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
'@react-native/babel-preset@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/core': 7.25.8
@@ -35435,6 +35902,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/parser': 7.25.8
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ glob: 7.2.3
+ hermes-parser: 0.19.1
+ invariant: 2.2.4
+ jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - supports-color
+
'@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/parser': 7.25.8
@@ -35470,6 +35950,28 @@ snapshots:
- supports-color
- utf-8-validate
+ '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13)
+ '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ chalk: 4.1.2
+ execa: 5.1.1
+ metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-core: 0.80.12
+ node-fetch: 2.7.0(encoding@0.1.13)
+ querystring: 0.2.1
+ readline: 1.3.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
'@react-native/community-cli-plugin@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -35529,6 +36031,16 @@ snapshots:
- '@babel/preset-env'
- supports-color
+ '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@react-native/babel-preset': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ hermes-parser: 0.19.1
+ nullthrows: 1.1.1
+ transitivePeerDependencies:
+ - '@babel/preset-env'
+ - supports-color
+
'@react-native/metro-babel-transformer@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))':
dependencies:
'@babel/core': 7.25.8
@@ -35559,6 +36071,15 @@ snapshots:
optionalDependencies:
'@types/react': types-react@19.0.0-rc.1
+ '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ '@types/react': types-react@19.0.0-rc.1
+
'@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
invariant: 2.2.4
@@ -36685,18 +37206,18 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
@@ -36871,11 +37392,11 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0-rc-603e6108-20241029
react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
@@ -36883,11 +37404,11 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
react: 19.0.0-rc-603e6108-20241029
react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
@@ -36895,9 +37416,9 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -36906,9 +37427,9 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -36917,9 +37438,9 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -36928,9 +37449,9 @@ snapshots:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -37089,7 +37610,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37117,7 +37638,7 @@ snapshots:
'@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-onto': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)
+ '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
'@solana/wallet-adapter-phantom': 0.9.24(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37163,7 +37684,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37191,7 +37712,7 @@ snapshots:
'@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-onto': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
+ '@solana/wallet-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)
'@solana/wallet-adapter-phantom': 0.9.24(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -39572,9 +40093,9 @@ snapshots:
'@types/bn.js': 5.1.6
'@types/underscore': 1.11.4
- '@types/web3@1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@types/web3@1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- web3: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ web3: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -39745,25 +40266,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
- dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- '@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.2)
- optionalDependencies:
- typescript: 5.5.2
- transitivePeerDependencies:
- - supports-color
- optional: true
-
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -39802,6 +40304,25 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/scope-manager': 7.13.1
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 7.13.1
+ eslint: 9.5.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
@@ -40053,6 +40574,20 @@ snapshots:
- supports-color
optional: true
+ '@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.14.0
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.5.0
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 8.14.0
@@ -40487,6 +41022,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/types': 8.14.0
+ '@typescript-eslint/visitor-keys': 8.14.0
+ debug: 4.3.7(supports-color@8.1.1)
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 8.14.0
@@ -41184,14 +41735,14 @@ snapshots:
'@vue/shared@3.4.34': {}
- '@wagmi/connectors@5.0.16(c6fifzb677vjk75d7sjyei2p2e)':
+ '@wagmi/connectors@5.0.16(276lu6ucw5vl7m53grscpa4fqq)':
dependencies:
'@coinbase/wallet-sdk': 4.0.3
- '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
'@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
'@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
- '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
'@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
@@ -41346,21 +41897,21 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.10
'@walletconnect/relay-auth': 1.0.4
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
@@ -41388,17 +41939,17 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
- '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41507,6 +42058,28 @@ snapshots:
- ioredis
- uWebSockets.js
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
+ dependencies:
+ '@walletconnect/safe-json': 1.0.2
+ idb-keyval: 6.2.1
+ unstorage: 1.10.2(idb-keyval@6.2.1)
+ optionalDependencies:
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - ioredis
+ - uWebSockets.js
+
'@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
@@ -41649,16 +42222,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41733,12 +42306,12 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -41757,16 +42330,16 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41851,7 +42424,7 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -41861,7 +42434,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -42930,6 +43503,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-jest@29.7.0(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.6.3(@babel/core@7.24.7)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
babel-jest@29.7.0(@babel/core@7.25.8):
dependencies:
'@babel/core': 7.25.8
@@ -43051,6 +43638,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
+ core-js-compat: 3.38.0
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.8):
dependencies:
'@babel/core': 7.25.8
@@ -43110,14 +43705,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -43128,6 +43723,12 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.7):
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - '@babel/core'
+
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.8):
dependencies:
'@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
@@ -43172,6 +43773,13 @@ snapshots:
babel-plugin-jest-hoist: 27.5.1
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-jest@29.6.3(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ optional: true
+
babel-preset-jest@29.6.3(@babel/core@7.25.8):
dependencies:
'@babel/core': 7.25.8
@@ -44251,7 +44859,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- connectkit@1.8.2(@babel/core@7.25.8)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq)):
+ connectkit@1.8.2(@babel/core@7.24.7)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i)):
dependencies:
'@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029)
buffer: 6.0.3
@@ -44263,9 +44871,9 @@ snapshots:
react-transition-state: 1.1.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
react-use-measure: 2.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
resize-observer-polyfill: 1.5.1
- styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq)
+ wagmi: 2.10.4(slso2y5si5ebobzw4pa64fwb3i)
transitivePeerDependencies:
- '@babel/core'
- react-is
@@ -46015,31 +46623,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
@@ -46072,7 +46680,7 @@ snapshots:
eslint: 9.12.0(jiti@1.21.0)
eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46080,9 +46688,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.12.0(jiti@1.21.0)
+ eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -46093,13 +46701,13 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 8.14.0(eslint@8.56.0)(typescript@5.4.5)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46107,9 +46715,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.56.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -46120,13 +46728,13 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@8.56.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46136,7 +46744,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -46147,13 +46755,13 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0)):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46163,7 +46771,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -46174,7 +46782,7 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -46242,17 +46850,6 @@ snapshots:
optionalDependencies:
'@testing-library/dom': 10.4.0
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
- dependencies:
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
- eslint: 9.12.0(jiti@1.21.0)
- optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- transitivePeerDependencies:
- - supports-color
- - typescript
-
eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
'@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
@@ -46275,6 +46872,17 @@ snapshots:
- supports-color
- typescript
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
+ dependencies:
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
+ jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
'@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
@@ -46995,19 +47603,6 @@ snapshots:
transitivePeerDependencies:
- encoding
- eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.6
- nano-json-stream-parser: 0.1.2
- servify: 0.1.12
- ws: 3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- xhr-request-promise: 0.1.3
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
bn.js: 4.12.0
@@ -51819,6 +52414,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7)):
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/parser': 7.25.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-flow': 7.25.7(@babel/core@7.25.8)
+ '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/register': 7.25.7(@babel/core@7.25.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.8)
+ chalk: 4.1.2
+ flow-parser: 0.250.0
+ graceful-fs: 4.2.11
+ micromatch: 4.0.8
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ recast: 0.21.5
+ temp: 0.8.4
+ write-file-atomic: 2.4.3
+ transitivePeerDependencies:
+ - supports-color
+
jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.25.8)):
dependencies:
'@babel/core': 7.25.8
@@ -53666,7 +54286,33 @@ snapshots:
next-tick@1.1.0: {}
- next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7):
+ next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7):
+ dependencies:
+ '@next/env': 14.2.15
+ '@swc/helpers': 0.5.5
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001669
+ graceful-fs: 4.2.11
+ postcss: 8.4.31
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.24.7)(react@18.3.1)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.2.15
+ '@next/swc-darwin-x64': 14.2.15
+ '@next/swc-linux-arm64-gnu': 14.2.15
+ '@next/swc-linux-arm64-musl': 14.2.15
+ '@next/swc-linux-x64-gnu': 14.2.15
+ '@next/swc-linux-x64-musl': 14.2.15
+ '@next/swc-win32-arm64-msvc': 14.2.15
+ '@next/swc-win32-ia32-msvc': 14.2.15
+ '@next/swc-win32-x64-msvc': 14.2.15
+ sass: 1.80.7
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
+ next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.7):
dependencies:
'@next/env': 14.2.15
'@swc/helpers': 0.5.5
@@ -53718,6 +54364,32 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.0.3(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7):
+ dependencies:
+ '@next/env': 15.0.3
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001669
+ postcss: 8.4.31
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-603e6108-20241029)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.0.3
+ '@next/swc-darwin-x64': 15.0.3
+ '@next/swc-linux-arm64-gnu': 15.0.3
+ '@next/swc-linux-arm64-musl': 15.0.3
+ '@next/swc-linux-x64-gnu': 15.0.3
+ '@next/swc-linux-x64-musl': 15.0.3
+ '@next/swc-win32-arm64-msvc': 15.0.3
+ '@next/swc-win32-x64-msvc': 15.0.3
+ sass: 1.80.7
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
next@15.0.3(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7):
dependencies:
'@next/env': 15.0.3
@@ -54033,6 +54705,13 @@ snapshots:
bn.js: 4.11.6
strip-hex-prefix: 1.0.0
+ nuqs@2.1.2(next@15.0.3(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ mitt: 3.0.1
+ react: 19.0.0-rc-603e6108-20241029
+ optionalDependencies:
+ next: 15.0.3(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)
+
nuqs@2.1.2(next@15.0.3(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029):
dependencies:
mitt: 3.0.1
@@ -55923,7 +56602,7 @@ snapshots:
transitivePeerDependencies:
- csstype
- react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
+ react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@babel/runtime': 7.25.7
html-parse-stringify: 3.0.1
@@ -55931,7 +56610,7 @@ snapshots:
react: 19.0.0-rc-603e6108-20241029
optionalDependencies:
react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
react-is@16.13.1: {}
@@ -55969,12 +56648,12 @@ snapshots:
react-lifecycles-compat: 3.0.4
warning: 4.0.3
- react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
+ react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 19.0.0-rc-603e6108-20241029
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10):
dependencies:
@@ -56026,6 +56705,56 @@ snapshots:
- supports-color
- utf-8-validate
+ react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10):
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13)
+ '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13)
+ '@react-native/assets-registry': 0.74.84
+ '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native/gradle-plugin': 0.74.84
+ '@react-native/js-polyfills': 0.74.84
+ '@react-native/normalize-colors': 0.74.84
+ '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
+ abort-controller: 3.0.0
+ anser: 1.4.10
+ ansi-regex: 5.0.1
+ base64-js: 1.5.1
+ chalk: 4.1.2
+ event-target-shim: 5.0.1
+ flow-enums-runtime: 0.0.6
+ invariant: 2.2.4
+ jest-environment-node: 29.7.0
+ jsc-android: 250231.0.0
+ memoize-one: 5.2.1
+ metro-runtime: 0.80.12
+ metro-source-map: 0.80.12
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 19.0.0-rc-603e6108-20241029
+ react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ react-refresh: 0.14.2
+ react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029)
+ regenerator-runtime: 0.13.11
+ scheduler: 0.24.0-canary-efb381bbf-20230505
+ stacktrace-parser: 0.1.10
+ whatwg-fetch: 3.6.20
+ ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': types-react@19.0.0-rc.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+
react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
@@ -57720,14 +58449,14 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.8.0
- styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029):
+ styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
'@babel/traverse': 7.24.7(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 19.0.0-rc-603e6108-20241029
@@ -57738,6 +58467,13 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
+ styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1):
+ dependencies:
+ client-only: 0.0.1
+ react: 18.3.1
+ optionalDependencies:
+ '@babel/core': 7.24.7
+
styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -57752,6 +58488,13 @@ snapshots:
optionalDependencies:
'@babel/core': 7.24.0
+ styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0-rc-603e6108-20241029
+ optionalDependencies:
+ '@babel/core': 7.24.7
+
styled-jsx@5.1.6(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029):
dependencies:
client-only: 0.0.1
@@ -57948,24 +58691,6 @@ snapshots:
lower-case: 1.1.4
upper-case: 1.1.3
- swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- bluebird: 3.7.2
- buffer: 5.7.1
- eth-lib: 0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- fs-extra: 4.0.3
- got: 11.8.6
- mime-types: 2.1.35
- mkdirp-promise: 5.0.1
- mock-fs: 4.14.0
- setimmediate: 1.0.5
- tar: 4.4.19
- xhr-request: 1.1.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
bluebird: 3.7.2
@@ -58760,12 +59485,12 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
+ jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -58774,43 +59499,43 @@ snapshots:
typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.24.7
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.8)
- esbuild: 0.22.0
+ babel-jest: 29.7.0(@babel/core@7.24.7)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)))(typescript@4.9.5):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
+ jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 4.9.5
+ typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
+ esbuild: 0.22.0
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)))(typescript@4.9.5):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.4
+ typescript: 4.9.5
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
@@ -58818,12 +59543,12 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -60106,10 +60831,10 @@ snapshots:
dependencies:
xml-name-validator: 4.0.0
- wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq):
+ wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i):
dependencies:
'@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029)
- '@wagmi/connectors': 5.0.16(c6fifzb677vjk75d7sjyei2p2e)
+ '@wagmi/connectors': 5.0.16(276lu6ucw5vl7m53grscpa4fqq)
'@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
react: 19.0.0-rc-603e6108-20241029
use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
@@ -60165,21 +60890,21 @@ snapshots:
web-vitals@0.2.4: {}
- web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
'@types/node': 12.20.55
got: 12.1.0
- swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3):
+ web3-bzz@1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@types/node': 12.20.55
got: 12.1.0
- swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ swarm-js: 0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -61279,9 +62004,9 @@ snapshots:
web3-types: 1.7.0
zod: 3.23.8
- web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10):
+ web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3):
dependencies:
- web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3)
web3-core: 1.10.0(encoding@0.1.13)
web3-eth: 1.10.0(encoding@0.1.13)
web3-eth-personal: 1.10.0(encoding@0.1.13)
@@ -61294,9 +62019,9 @@ snapshots:
- supports-color
- utf-8-validate
- web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3):
+ web3@1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
- web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3)
+ web3-bzz: 1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
web3-core: 1.10.0(encoding@0.1.13)
web3-eth: 1.10.0(encoding@0.1.13)
web3-eth-personal: 1.10.0(encoding@0.1.13)
@@ -61709,15 +62434,6 @@ snapshots:
readable-stream: 0.0.4
optional: true
- ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- async-limiter: 1.0.1
- safe-buffer: 5.1.2
- ultron: 1.1.1
- optionalDependencies:
- bufferutil: 4.0.7
- utf-8-validate: 5.0.10
-
ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@6.0.3):
dependencies:
async-limiter: 1.0.1