diff --git a/examples/authz/components/authz/GrantCard.tsx b/examples/authz/components/authz/GrantCard.tsx index ab631477..ba618b11 100644 --- a/examples/authz/components/authz/GrantCard.tsx +++ b/examples/authz/components/authz/GrantCard.tsx @@ -53,10 +53,8 @@ export const GrantCard = ({ const { refetch } = useGrants(chainName); const { setPermission } = useAuthzContext(); const { createRevokeMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); const { mutate: revoke } = useRevoke({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/authz/GrantDetailsModal.tsx b/examples/authz/components/authz/GrantDetailsModal.tsx index db1bd5f0..b778fb2e 100644 --- a/examples/authz/components/authz/GrantDetailsModal.tsx +++ b/examples/authz/components/authz/GrantDetailsModal.tsx @@ -5,7 +5,7 @@ import { useState } from 'react'; import { BasicModal, Box, Button } from '@interchain-ui/react'; import { useAuthzTx, useGrants, useSigningClient } from '@/hooks'; -import { PrettyGrant, PrettyPermission } from '@/utils'; +import { getTokenByChainName, PrettyGrant, PrettyPermission } from '@/utils'; import { PermissionDetailCard } from './PermissionDetailCard'; import { useRevoke } from '@interchainjs/react/cosmos/authz/v1beta1/tx.rpc.react'; import { defaultContext } from '@tanstack/react-query'; @@ -37,15 +37,14 @@ export const GrantDetailsModal = ({ const { refetch } = useGrants(chainName); const { createRevokeMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); - const { mutate: revoke } = useRevoke({ - clientResolver: client, options: { context: defaultContext, }, }); + const token = getTokenByChainName(chainName); + const handleRevoke = (permissions: PrettyPermission[]) => { setIsRevoking(true); diff --git a/examples/authz/components/authz/GrantModal.tsx b/examples/authz/components/authz/GrantModal.tsx index 80e3db2b..71d02fe3 100644 --- a/examples/authz/components/authz/GrantModal.tsx +++ b/examples/authz/components/authz/GrantModal.tsx @@ -73,10 +73,8 @@ export const GrantModal = ({ isOpen, onClose, chainName }: GrantModalProps) => { const { refetch } = useGrants(chainName); const { address } = useChain(chainName); const { createGrantMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); const { mutate: grant } = useGrant({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/claim-rewards/Overview.tsx b/examples/authz/components/claim-rewards/Overview.tsx index c0cd8d14..353fadb5 100644 --- a/examples/authz/components/claim-rewards/Overview.tsx +++ b/examples/authz/components/claim-rewards/Overview.tsx @@ -41,10 +41,7 @@ const Overview = ({ const { permission } = useAuthzContext(); const { createExecMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); - const { mutate: exec } = useExec({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/send/send.tsx b/examples/authz/components/send/send.tsx index 80ec4690..45b6f593 100644 --- a/examples/authz/components/send/send.tsx +++ b/examples/authz/components/send/send.tsx @@ -34,10 +34,8 @@ export const SendSection = ({ chainName }: SendSectionProps) => { const { status } = useChain(chainName); const { data, isLoading, refetch } = useSendData(chainName); const { createExecMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); const { mutate: exec } = useExec({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/staking/DelegateModal.tsx b/examples/authz/components/staking/DelegateModal.tsx index 35461d50..cfe1bf84 100644 --- a/examples/authz/components/staking/DelegateModal.tsx +++ b/examples/authz/components/staking/DelegateModal.tsx @@ -71,10 +71,7 @@ export const DelegateModal = ({ const { createExecMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); - const { mutate: exec } = useExec({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/staking/Overview.tsx b/examples/authz/components/staking/Overview.tsx index 5f0886df..130f98ef 100644 --- a/examples/authz/components/staking/Overview.tsx +++ b/examples/authz/components/staking/Overview.tsx @@ -39,12 +39,9 @@ const Overview = ({ const [isClaiming, setIsClaiming] = useState(false); const { address } = useChain(chainName); - const { data: client } = useSigningClient(chainName); - const totalAmount = sum(balance, staked, rewards?.total ?? 0); const coin = getCoin(chainName); const withdrawDelegatorReward = useWithdrawDelegatorReward({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/components/voting/Proposal.tsx b/examples/authz/components/voting/Proposal.tsx index dbeaa711..ac72bd74 100644 --- a/examples/authz/components/voting/Proposal.tsx +++ b/examples/authz/components/voting/Proposal.tsx @@ -73,10 +73,8 @@ export function Proposal({ const exponent = getExponent(chainName); const { createExecMsg } = useAuthzTx(chainName); - const { data: client } = useSigningClient(chainName); const { mutate: exec } = useExec({ - clientResolver: client, options: { context: defaultContext, }, diff --git a/examples/authz/configs/defaults.ts b/examples/authz/configs/defaults.ts index 0d41447b..c273d256 100644 --- a/examples/authz/configs/defaults.ts +++ b/examples/authz/configs/defaults.ts @@ -1,7 +1,7 @@ import { assetLists } from '@chain-registry/v2'; import { AssetList, Asset } from '@chain-registry/v2-types'; -export const defaultChainName = 'osmosis'; +export const defaultChainName = 'juno'; export const getChainAssets = (chainName: string = defaultChainName) => { return assetLists.find((chain) => chain.chainName === chainName) as AssetList; @@ -16,4 +16,4 @@ export const getExponent = (chainName: string) => { return getCoin(chainName).denomUnits.find( (unit) => unit.denom === getCoin(chainName).display )?.exponent as number; -}; +}; \ No newline at end of file diff --git a/examples/authz/hooks/useGrants.ts b/examples/authz/hooks/useGrants.ts index 294cdffe..67bad261 100644 --- a/examples/authz/hooks/useGrants.ts +++ b/examples/authz/hooks/useGrants.ts @@ -1,9 +1,8 @@ import { useEffect, useMemo, useRef } from 'react'; import { useChain } from '@interchain-kit/react'; -import { defaultContext, useQuery } from '@tanstack/react-query'; +import { defaultContext } from '@tanstack/react-query'; import { prettyGrants } from '@/utils'; -import { useQueryHooks } from './useQueryHooks'; import { useGetGranteeGrants, useGetGranterGrants, @@ -13,21 +12,15 @@ export const useGrants = (chainName: string) => { const { address } = useChain(chainName); const prevAddressRef = useRef(address); - const { rpcEndpoint, isFetching: isRpcQueryClientLoading } = - useQueryHooks(chainName, { - context: defaultContext, - }); - const granterGrantsQuery = useGetGranterGrants({ request: { granter: address || '', }, options: { context: defaultContext, - enabled: !!address && !!rpcEndpoint, + enabled: !!address, select: (data) => data?.grants, }, - clientResolver: rpcEndpoint, }); const granteeGrantsQuery = useGetGranteeGrants({ @@ -36,10 +29,9 @@ export const useGrants = (chainName: string) => { }, options: { context: defaultContext, - enabled: !!address && !!rpcEndpoint, + enabled: !!address, select: (data) => data?.grants, }, - clientResolver: rpcEndpoint, }); const dataQueries = { @@ -71,10 +63,9 @@ export const useGrants = (chainName: string) => { ({ isRefetching }) => isRefetching ); - const isLoading = - isRpcQueryClientLoading || isInitialFetching || isRefetching; + const isLoading = isInitialFetching || isRefetching; - const isError = !rpcEndpoint && !isRpcQueryClientLoading; + const isError = false; type DataQueries = typeof dataQueries; diff --git a/examples/authz/hooks/useSendData.ts b/examples/authz/hooks/useSendData.ts index 72e6f0d7..588faf69 100644 --- a/examples/authz/hooks/useSendData.ts +++ b/examples/authz/hooks/useSendData.ts @@ -19,7 +19,6 @@ export const useSendData = (chainName: string) => { const { isReady: isQueryHooksReady, isFetching: isQueryHooksFetching, - rpcEndpoint, } = useQueryHooks(chainName, { context: defaultContext, }); @@ -35,7 +34,6 @@ export const useSendData = (chainName: string) => { select: ({ balance }) => shiftDigits(balance?.amount || '0', -exp), staleTime: 0, }, - clientResolver: rpcEndpoint, }); const pricesQuery = usePrices(); diff --git a/examples/authz/hooks/useStakingData.ts b/examples/authz/hooks/useStakingData.ts index f527a763..807a4217 100644 --- a/examples/authz/hooks/useStakingData.ts +++ b/examples/authz/hooks/useStakingData.ts @@ -47,7 +47,6 @@ export const useStakingData = (chainName: string) => { const exp = getExponent(chainName); const { - rpcEndpoint, isReady: isQueryHooksReady, isFetching: isQueryHooksFetching, } = useQueryHooks(chainName, { @@ -64,7 +63,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady && !!address, select: ({ balance }) => shiftDigits(balance?.amount || '0', -exp), }, - clientResolver: rpcEndpoint, }); const myValidatorsQuery = useGetDelegatorValidators({ @@ -76,7 +74,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady && !!address, select: ({ validators }) => parseValidators(validators), }, - clientResolver: rpcEndpoint, }); const rewardsQuery = useGetDelegationTotalRewards({ @@ -88,7 +85,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady && !!address, select: (data) => parseRewards(data, coin.base, -exp), }, - clientResolver: rpcEndpoint, }); const validatorsQuery = useGetValidators({ @@ -112,7 +108,6 @@ export const useStakingData = (chainName: string) => { return parseValidators(sorted); }, }, - clientResolver: rpcEndpoint, }); const delegationsQuery = useGetDelegatorDelegations({ @@ -132,7 +127,6 @@ export const useStakingData = (chainName: string) => { select: ({ delegationResponses }) => parseDelegations(delegationResponses, -exp), }, - clientResolver: rpcEndpoint, }); const unbondingDaysQuery = useGetStakingParams({ @@ -142,7 +136,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady, select: ({ params }) => parseUnbondingDays(params), }, - clientResolver: rpcEndpoint, }); const annualProvisionsQuery = useGetAnnualProvisions({ @@ -153,7 +146,6 @@ export const useStakingData = (chainName: string) => { select: parseAnnualProvisions, retry: false, }, - clientResolver: rpcEndpoint, }); const poolQuery = useGetPool({ @@ -163,7 +155,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady, select: ({ pool }) => pool, }, - clientResolver: rpcEndpoint, }); const communityTaxQuery = useGetDistributionParams({ @@ -173,7 +164,6 @@ export const useStakingData = (chainName: string) => { enabled: isQueryHooksReady, select: ({ params }) => shiftDigits(params?.communityTax || '0', -18), }, - clientResolver: rpcEndpoint, }); const pricesQuery = usePrices(); diff --git a/examples/authz/hooks/useTx.ts b/examples/authz/hooks/useTx.ts index fe329986..41f72322 100644 --- a/examples/authz/hooks/useTx.ts +++ b/examples/authz/hooks/useTx.ts @@ -1,13 +1,11 @@ import { useChain } from '@interchain-kit/react'; -import { isDeliverTxSuccess, StdFee } from '@cosmjs/stargate'; -import { useToast, type CustomToast } from './useToast'; -import { useQuery } from '@tanstack/react-query'; +import { StdFee } from '@cosmjs/stargate'; +import { type CustomToast } from './useToast'; +import { defaultContext, useQuery } from '@tanstack/react-query'; -import { SigningClient } from '@interchainjs/cosmos/signing-client'; -import { - AminoGenericOfflineSigner, - DirectGenericOfflineSigner, -} from '@interchainjs/cosmos/types/wallet'; + +import { DEFAULT_SIGNING_CLIENT_QUERY_KEY } from '@interchainjs/react/react-query'; +import { WalletState } from '@interchain-kit/core'; interface Msg { typeUrl: string; @@ -26,17 +24,25 @@ export enum TxStatus { Broadcasting = 'Transaction Broadcasting', } -export const useSigningClient = (chainName: string) => { +export const useSigningClient = ( + chainName: string, + options: { + walletStatus?: WalletState; + } +) => { const { getSigningClient } = useChain(chainName); return useQuery( - ['signingClient', chainName], + [DEFAULT_SIGNING_CLIENT_QUERY_KEY, chainName], async () => { const client = await getSigningClient(); return client; }, { - enabled: !!chainName, + enabled: + !!chainName && + (!options || options?.walletStatus === WalletState.Connected), + context: defaultContext, } ); -}; \ No newline at end of file +}; diff --git a/examples/authz/hooks/useValidators.ts b/examples/authz/hooks/useValidators.ts index d3aaeb9b..37be59ed 100644 --- a/examples/authz/hooks/useValidators.ts +++ b/examples/authz/hooks/useValidators.ts @@ -26,7 +26,6 @@ export const useValidators = ( { fetchLogos = true }: UseValidatorsConfig = {} ) => { const { - rpcEndpoint, isReady: isQueryHooksReady, isFetching: isQueryHooksFetching, } = useQueryHooks(chainName, { @@ -58,7 +57,6 @@ export const useValidators = ( }, staleTime: Infinity, }, - clientResolver: rpcEndpoint, }); const validatorLogosQuery = useQuery({ diff --git a/examples/authz/hooks/useVotingData.ts b/examples/authz/hooks/useVotingData.ts index 4a7241a5..20c27486 100644 --- a/examples/authz/hooks/useVotingData.ts +++ b/examples/authz/hooks/useVotingData.ts @@ -34,7 +34,6 @@ export function useVotingData(chainName: string) { const address = permission?.granter; const { - rpcEndpoint, isReady, isFetching, } = useQueryHooks(chainName, { @@ -54,7 +53,6 @@ export function useVotingData(chainName: string) { staleTime: Infinity, select: ({ proposals }) => processProposals(proposals), }, - clientResolver: rpcEndpoint, }); const bondedTokensQuery = useGetPool({ @@ -65,7 +63,6 @@ export function useVotingData(chainName: string) { staleTime: Infinity, select: ({ pool }) => pool?.bondedTokens, }, - clientResolver: rpcEndpoint, }); const quorumQuery = useGetGovParams({ @@ -78,7 +75,6 @@ export function useVotingData(chainName: string) { staleTime: Infinity, select: ({ tallyParams }) => parseQuorum(tallyParams?.quorum), }, - clientResolver: rpcEndpoint, }); const votedProposalsQuery = useGetProposals({ @@ -94,10 +90,9 @@ export function useVotingData(chainName: string) { select: ({ proposals }) => proposals, keepPreviousData: true, }, - clientResolver: rpcEndpoint, }); - const getVote = createGetVote(rpcEndpoint); + const getVote = createGetVote(chainName); const votesQueries = useQueries({ queries: (votedProposalsQuery.data || []).map(({ proposalId }) => ({ @@ -108,7 +103,7 @@ export function useVotingData(chainName: string) { voter: address || '', }), enabled: - Boolean(rpcEndpoint) && + Boolean(chainName) && Boolean(address) && Boolean(votedProposalsQuery.data), keepPreviousData: true, diff --git a/examples/authz/package.json b/examples/authz/package.json index bf8afd8b..ffc87b4e 100644 --- a/examples/authz/package.json +++ b/examples/authz/package.json @@ -49,8 +49,8 @@ "@interchain-kit/react": "0.0.1-beta.62", "@interchain-ui/react": "1.23.22", "@interchain-ui/react-no-ssr": "^0.1.6", - "@interchainjs/cosmos": "1.8.2", - "@interchainjs/react": "1.8.2", + "@interchainjs/cosmos": "1.9.3", + "@interchainjs/react": "1.9.3", "@tanstack/react-query": "4.32.0", "bignumber.js": "9.1.0", "chain-registry": "^1.69.32", diff --git a/examples/authz/pages/index.tsx b/examples/authz/pages/index.tsx index 2e27b91c..446296a6 100644 --- a/examples/authz/pages/index.tsx +++ b/examples/authz/pages/index.tsx @@ -1,15 +1,42 @@ // TODO fix type issues // @ts-nocheck -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { Divider } from '@interchain-ui/react'; +import { useQueryClient } from '@tanstack/react-query'; +import { + DEFAULT_SIGNING_CLIENT_QUERY_KEY, + DEFAULT_RPC_CLIENT_QUERY_KEY, +} from '@interchainjs/react/react-query'; import { useAuthzContext } from '@/context'; import { Layout, Wallet, AuthzSection } from '@/components'; - +import { useChain } from '@interchain-kit/react'; +import { defaultChainName } from '@/configs'; +import { useSigningClient } from '@/hooks'; export default function Home() { const [selectedChain, setSelectedChain] = useState(); const { setChainName } = useAuthzContext(); + const queryClient = useQueryClient(); + + const { rpcEndpoint, status } = useChain(selectedChain ?? defaultChainName); + + const { data: client, isSuccess: isSigningClientSuccess } = useSigningClient( + selectedChain ?? defaultChainName, + { + walletStatus: status, + } + ); + + useEffect(() => { + if (isSigningClientSuccess) { + queryClient.setQueryData([DEFAULT_SIGNING_CLIENT_QUERY_KEY], client); + } + + if (isSigningClientSuccess && rpcEndpoint) { + queryClient.setQueryData([DEFAULT_RPC_CLIENT_QUERY_KEY], rpcEndpoint); + } + }, [isSigningClientSuccess, rpcEndpoint, client, queryClient]); return ( diff --git a/examples/authz/utils/authz.ts b/examples/authz/utils/authz.ts index a0015c8e..3900d2ad 100644 --- a/examples/authz/utils/authz.ts +++ b/examples/authz/utils/authz.ts @@ -44,6 +44,8 @@ export const prettyGrants = ( grants: GrantAuthorization[], groupBy: 'granter' | 'grantee' ) => { + if (!grants) return []; + return grants .reduce((acc, grant) => { const addr = grant[groupBy]; diff --git a/examples/authz/yarn.lock b/examples/authz/yarn.lock index 37060eea..eb9edfa7 100644 --- a/examples/authz/yarn.lock +++ b/examples/authz/yarn.lock @@ -1994,62 +1994,6 @@ __metadata: languageName: node linkType: hard -"@cosmology/authz@workspace:.": - version: 0.0.0-use.local - resolution: "@cosmology/authz@workspace:." - dependencies: - "@chain-registry/client": "npm:^1.53.13" - "@chain-registry/types": "npm:^0.50.13" - "@confio/relayer": "npm:0.7.0" - "@cosmjs/amino": "npm:0.32.4" - "@cosmjs/cosmwasm-stargate": "npm:0.32.4" - "@cosmjs/encoding": "npm:^0.32.4" - "@cosmjs/proto-signing": "npm:0.32.4" - "@cosmjs/stargate": "npm:0.32.4" - "@cosmjs/tendermint-rpc": "npm:0.32.4" - "@cosmjson/wasmswap": "npm:^0.0.9" - "@cosmology/lcd": "npm:^0.12.0" - "@cosmology/telescope": "npm:1.11.7" - "@interchain-kit/core": "npm:0.0.1-beta.62" - "@interchain-kit/keplr-extension": "npm:0.0.1-beta.62" - "@interchain-kit/leap-extension": "npm:0.0.1-beta.62" - "@interchain-kit/react": "npm:0.0.1-beta.62" - "@interchain-ui/react": "npm:1.23.22" - "@interchain-ui/react-no-ssr": "npm:^0.1.6" - "@interchainjs/cosmos": "npm:1.8.1" - "@interchainjs/react": "npm:1.8.1" - "@protobufs/cosmos": "npm:^0.1.0" - "@protobufs/cosmwasm": "npm:^0.1.1" - "@protobufs/ibc": "npm:^0.1.0" - "@tanstack/react-query": "npm:4.32.0" - "@tanstack/react-query-devtools": "npm:4.32.0" - "@types/jest": "npm:^29.5.0" - "@types/node": "npm:18.19.37" - "@types/react": "npm:18.2.0" - "@types/react-dom": "npm:18.2.0" - bignumber.js: "npm:9.1.0" - chain-registry: "npm:^1.69.32" - dayjs: "npm:1.11.10" - eslint: "npm:8.28.0" - eslint-config-next: "npm:13.0.5" - fast-fuzzy: "npm:^1.12.0" - generate-lockfile: "npm:0.0.12" - interchain-kit: "npm:0.0.1-beta.62" - jest: "npm:^29.5.0" - jest-in-case: "npm:^1.0.2" - next: "npm:^13" - node-fetch: "npm:^2.6.9" - react: "npm:18.2.0" - react-calendar: "npm:4.8.0" - react-dom: "npm:18.2.0" - react-icons: "npm:^4.4.0" - react-markdown: "npm:9.0.1" - sinon: "npm:17.0.1" - ts-jest: "npm:^29.1.0" - typescript: "npm:^5.1.6" - languageName: unknown - linkType: soft - "@cosmology/lcd@npm:^0.12.0": version: 0.12.0 resolution: "@cosmology/lcd@npm:0.12.0" @@ -2620,6 +2564,62 @@ __metadata: languageName: node linkType: hard +"@hyperweb/authz@workspace:.": + version: 0.0.0-use.local + resolution: "@hyperweb/authz@workspace:." + dependencies: + "@chain-registry/client": "npm:^1.53.13" + "@chain-registry/types": "npm:^0.50.13" + "@confio/relayer": "npm:0.7.0" + "@cosmjs/amino": "npm:0.32.4" + "@cosmjs/cosmwasm-stargate": "npm:0.32.4" + "@cosmjs/encoding": "npm:^0.32.4" + "@cosmjs/proto-signing": "npm:0.32.4" + "@cosmjs/stargate": "npm:0.32.4" + "@cosmjs/tendermint-rpc": "npm:0.32.4" + "@cosmjson/wasmswap": "npm:^0.0.9" + "@cosmology/lcd": "npm:^0.12.0" + "@cosmology/telescope": "npm:1.11.7" + "@interchain-kit/core": "npm:0.0.1-beta.62" + "@interchain-kit/keplr-extension": "npm:0.0.1-beta.62" + "@interchain-kit/leap-extension": "npm:0.0.1-beta.62" + "@interchain-kit/react": "npm:0.0.1-beta.62" + "@interchain-ui/react": "npm:1.23.22" + "@interchain-ui/react-no-ssr": "npm:^0.1.6" + "@interchainjs/cosmos": "npm:1.9.3" + "@interchainjs/react": "npm:1.9.3" + "@protobufs/cosmos": "npm:^0.1.0" + "@protobufs/cosmwasm": "npm:^0.1.1" + "@protobufs/ibc": "npm:^0.1.0" + "@tanstack/react-query": "npm:4.32.0" + "@tanstack/react-query-devtools": "npm:4.32.0" + "@types/jest": "npm:^29.5.0" + "@types/node": "npm:18.19.37" + "@types/react": "npm:18.2.0" + "@types/react-dom": "npm:18.2.0" + bignumber.js: "npm:9.1.0" + chain-registry: "npm:^1.69.32" + dayjs: "npm:1.11.10" + eslint: "npm:8.28.0" + eslint-config-next: "npm:13.0.5" + fast-fuzzy: "npm:^1.12.0" + generate-lockfile: "npm:0.0.12" + interchain-kit: "npm:0.0.1-beta.62" + jest: "npm:^29.5.0" + jest-in-case: "npm:^1.0.2" + next: "npm:^13" + node-fetch: "npm:^2.6.9" + react: "npm:18.2.0" + react-calendar: "npm:4.8.0" + react-dom: "npm:18.2.0" + react-icons: "npm:^4.4.0" + react-markdown: "npm:9.0.1" + sinon: "npm:17.0.1" + ts-jest: "npm:^29.1.0" + typescript: "npm:^5.1.6" + languageName: unknown + linkType: soft + "@interchain-kit/core@npm:0.0.1-beta.62": version: 0.0.1-beta.62 resolution: "@interchain-kit/core@npm:0.0.1-beta.62" @@ -2778,17 +2778,17 @@ __metadata: languageName: node linkType: hard -"@interchainjs/auth@npm:^1.7.9": - version: 1.7.9 - resolution: "@interchainjs/auth@npm:1.7.9" +"@interchainjs/auth@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/auth@npm:1.8.3" dependencies: - "@interchainjs/types": "npm:1.7.8" - "@interchainjs/utils": "npm:1.7.8" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" "@noble/curves": "npm:^1.1.0" "@noble/hashes": "npm:^1.3.1" "@scure/bip32": "npm:^1.0.10" ethers: "npm:^6.5.1" - checksum: 10c0/11a1f38cd8aa8d0bd42b0194f936a3b77c01f595181189f44345785271bdd75f6abc41d7e75656580f06041d8c9d712f0a699599c12aab139f3ddc3f53adcf14 + checksum: 10c0/df4b3df501fe65fbe10ca125e47b4f5c9ed57322a19128e1ab837b046692f4862ca5a0b51485b9664d981500b75aa4dad07438de5b8109001528b0fbb10dc492 languageName: node linkType: hard @@ -2802,13 +2802,13 @@ __metadata: languageName: node linkType: hard -"@interchainjs/cosmos-types@npm:^1.8.0": - version: 1.8.0 - resolution: "@interchainjs/cosmos-types@npm:1.8.0" +"@interchainjs/cosmos-types@npm:^1.9.3": + version: 1.9.3 + resolution: "@interchainjs/cosmos-types@npm:1.9.3" dependencies: - "@interchainjs/types": "npm:1.7.8" - "@interchainjs/utils": "npm:1.7.8" - checksum: 10c0/3c2f5ad0be4cc1b272f2ab394f56e40fccc76cc2c9736beeba6bb3d7bd356cbbfb36c9b5d576358901f438d734581be624a9a8013ccf06074cdfbf742df4505d + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" + checksum: 10c0/70f6f6ea1af92f83b99c71e107f5f29295c04b18fef408e6977a05b9e4e774c59fe833235eb9e226918cb7ec9a4889ac4dc81df31959e1eda0248f5d798cdc34 languageName: node linkType: hard @@ -2829,36 +2829,36 @@ __metadata: languageName: node linkType: hard -"@interchainjs/cosmos@npm:1.8.1, @interchainjs/cosmos@npm:^1.8.1": - version: 1.8.1 - resolution: "@interchainjs/cosmos@npm:1.8.1" +"@interchainjs/cosmos@npm:1.9.3, @interchainjs/cosmos@npm:^1.9.3": + version: 1.9.3 + resolution: "@interchainjs/cosmos@npm:1.9.3" dependencies: "@chain-registry/v2": "npm:^1.65.6" "@chain-registry/v2-types": "npm:^0.49.6" - "@interchainjs/auth": "npm:^1.7.9" - "@interchainjs/cosmos-types": "npm:^1.8.0" - "@interchainjs/types": "npm:1.7.8" - "@interchainjs/utils": "npm:1.7.8" + "@interchainjs/auth": "npm:^1.8.3" + "@interchainjs/cosmos-types": "npm:^1.9.3" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" "@noble/curves": "npm:^1.1.0" "@noble/hashes": "npm:^1.3.1" decimal.js: "npm:^10.4.3" - checksum: 10c0/edb3aa4d7231d9ede72eed143a83e35c84e39375accf5114c060e90bafa76b22d4b844c61f9edb18c2eab6da0493e5dee28178dffd3d17f744abe5c2c0fae2f0 + checksum: 10c0/b73a0d9bc6a7de6989c4e39f5a80ff09c9ae38001335f73fa8729ea9f9e1f26fdb72864c853acfac0b341b80e15fc4f1fdde4148c978400a29904ac5ddcf6a1d languageName: node linkType: hard -"@interchainjs/react@npm:1.8.1": - version: 1.8.1 - resolution: "@interchainjs/react@npm:1.8.1" +"@interchainjs/react@npm:1.9.3": + version: 1.9.3 + resolution: "@interchainjs/react@npm:1.9.3" dependencies: - "@interchainjs/cosmos": "npm:^1.8.1" - "@interchainjs/cosmos-types": "npm:^1.8.0" - "@interchainjs/types": "npm:1.7.8" - "@interchainjs/utils": "npm:1.7.8" + "@interchainjs/cosmos": "npm:^1.9.3" + "@interchainjs/cosmos-types": "npm:^1.9.3" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" "@noble/hashes": "npm:^1.3.1" decimal.js: "npm:^10.4.3" peerDependencies: "@tanstack/react-query": 4.29.1 - checksum: 10c0/8e2e5971be9b48e6e2f7b1db8770242f44b520df279af7a53d7ec1577a8016ce2b6286c42ac6d4da922f4b9b48f6854ebfbcb491e3d51aebc52076be5f0889a5 + checksum: 10c0/d41a480f477e9c580fb9fdb80573e344f4ce1be9c7cd04aa47f606abf72d7d2490081683cf3f5548796cb96d65ad4ea561090dfaee77dde6594c9aac77732e96 languageName: node linkType: hard @@ -2871,12 +2871,12 @@ __metadata: languageName: node linkType: hard -"@interchainjs/types@npm:1.7.8": - version: 1.7.8 - resolution: "@interchainjs/types@npm:1.7.8" +"@interchainjs/types@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/types@npm:1.8.3" dependencies: decimal.js: "npm:^10.4.3" - checksum: 10c0/5c601ca672cdc37f57c8319ef42ed6415433286cba8075ca7e514d8057f9057299d8c8227e6110aa17e3be550e1a362bebb8845a57ef7b3dbfa6097deeeb7899 + checksum: 10c0/ff579ff4f33f8288ad1942dedabea5f632aea5cd37831c935457ba9dffc0664b79c2950e94288e34c40f5aada291430a5b7f251dd4eff79028663d5405646a2a languageName: node linkType: hard @@ -2890,13 +2890,14 @@ __metadata: languageName: node linkType: hard -"@interchainjs/utils@npm:1.7.8": - version: 1.7.8 - resolution: "@interchainjs/utils@npm:1.7.8" +"@interchainjs/utils@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/utils@npm:1.8.3" dependencies: - "@interchainjs/types": "npm:1.7.8" + "@interchainjs/types": "npm:^1.8.3" bech32: "npm:^2.0.0" - checksum: 10c0/bd236dd200d7d28bd01ae2f8216ffd7c885149bc5c618d5346ed3aa8e1a2fd82eb23773e2f199cb6fefccf30d36432a0aa5285163d3bfeb7c16360b68de64e56 + decimal.js: "npm:^10.4.3" + checksum: 10c0/65a7b243780f3e13c477de51f005ebbc52491bd4c3186d5d786361ce667d8cb9c1a8458fbeb4f72c6059132e0fc57def658a4f6b2377707fa86a709d17fd4ab8 languageName: node linkType: hard @@ -8976,17 +8977,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001406": - version: 1.0.30001606 - resolution: "caniuse-lite@npm:1.0.30001606" - checksum: 10c0/fc9816f7d073e4f655c00acf9d6625f923e722430545b0aabefb9dc01347f3093608eb18841cf981acbd464fcac918a708908549738a8cd9517a14ac005bf8fc - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001629 - resolution: "caniuse-lite@npm:1.0.30001629" - checksum: 10c0/e95136a423c0c5e7f9d026ef3f9be8d06cadc4c83ad65eedfaeaba6b5eb814489ea186e90bae1085f3be7348577e25f8fe436b384c2f983324ad8dea4a7dfe1d +"caniuse-lite@npm:^1.0.30001406, caniuse-lite@npm:^1.0.30001587": + version: 1.0.30001698 + resolution: "caniuse-lite@npm:1.0.30001698" + checksum: 10c0/f3128454e6222b86349b62971501b8ebfc49faa9484398176f674293ea85091e1ca96862bc617dcac4d07850cfc5ef5173ebad03d63aa1197b6a8bf3cc46d745 languageName: node linkType: hard diff --git a/examples/injective/package.json b/examples/injective/package.json index f0e7031f..27cb3cdb 100644 --- a/examples/injective/package.json +++ b/examples/injective/package.json @@ -37,13 +37,13 @@ "@interchain-kit/react": "0.0.1-beta.23", "@interchain-ui/react": "^1.23.29", "@interchain-ui/react-no-ssr": "^0.1.6", - "@interchainjs/cosmos-types": "1.8.1", - "@interchainjs/injective": "1.8.3", + "@interchainjs/cosmos-types": "1.9.3", + "@interchainjs/injective": "1.9.3", "@tanstack/react-query": "4.29.1", "bignumber.js": "9.1.1", "chain-registry": "^1.69.32", "decimal.js": "^10.4.3", - "interchainjs": "1.8.2", + "interchainjs": "1.9.3", "mobx": "^6.13.5", "next": "^13", "react": "18.2.0", diff --git a/examples/injective/yarn.lock b/examples/injective/yarn.lock index 653da721..fe6ba788 100644 --- a/examples/injective/yarn.lock +++ b/examples/injective/yarn.lock @@ -3881,8 +3881,8 @@ __metadata: "@interchain-kit/react": "npm:0.0.1-beta.23" "@interchain-ui/react": "npm:^1.23.29" "@interchain-ui/react-no-ssr": "npm:^0.1.6" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/injective": "npm:1.6.1" + "@interchainjs/cosmos-types": "npm:1.9.3" + "@interchainjs/injective": "npm:1.9.3" "@tanstack/react-query": "npm:4.29.1" "@tanstack/react-query-devtools": "npm:4.29.1" "@types/node": "npm:^20.14.6" @@ -3894,7 +3894,7 @@ __metadata: eslint: "npm:8.28.0" eslint-config-next: "npm:13.0.5" generate-lockfile: "npm:0.0.12" - interchainjs: "npm:1.6.1" + interchainjs: "npm:1.9.3" mobx: "npm:^6.13.5" next: "npm:^13" react: "npm:18.2.0" @@ -4048,29 +4048,30 @@ __metadata: languageName: node linkType: hard -"@interchainjs/auth@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/auth@npm:1.6.1" +"@interchainjs/auth@npm:^0.0.1-beta.16": + version: 0.0.1-beta.16 + resolution: "@interchainjs/auth@npm:0.0.1-beta.16" dependencies: - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" + "@interchainjs/types": "npm:^0.0.1-beta.15" + "@interchainjs/utils": "npm:^0.0.1-beta.15" "@noble/curves": "npm:^1.1.0" "@noble/hashes": "npm:^1.3.1" ethers: "npm:^6.5.1" - checksum: 10c0/e5a3281e3a41154b790cc28bf3f7d92abdfd2b5a2dc6e5457d7082c2b4dcbd7cd2a0d76745ead24d5a6da0c038bc7f8a268014124abd982dd78d24ef564df3e0 + checksum: 10c0/c82965c9322911362803ae2b54ff2372dd4f3522e23ed5493eecb6e759e2024f58b7da179cc2a248960a3d89d3b3af5dc8a03b007f2b89fdea93ba0f3e07bddf languageName: node linkType: hard -"@interchainjs/auth@npm:^0.0.1-beta.16": - version: 0.0.1-beta.16 - resolution: "@interchainjs/auth@npm:0.0.1-beta.16" +"@interchainjs/auth@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/auth@npm:1.8.3" dependencies: - "@interchainjs/types": "npm:^0.0.1-beta.15" - "@interchainjs/utils": "npm:^0.0.1-beta.15" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" "@noble/curves": "npm:^1.1.0" "@noble/hashes": "npm:^1.3.1" + "@scure/bip32": "npm:^1.0.10" ethers: "npm:^6.5.1" - checksum: 10c0/c82965c9322911362803ae2b54ff2372dd4f3522e23ed5493eecb6e759e2024f58b7da179cc2a248960a3d89d3b3af5dc8a03b007f2b89fdea93ba0f3e07bddf + checksum: 10c0/df4b3df501fe65fbe10ca125e47b4f5c9ed57322a19128e1ab837b046692f4862ca5a0b51485b9664d981500b75aa4dad07438de5b8109001528b0fbb10dc492 languageName: node linkType: hard @@ -4084,13 +4085,13 @@ __metadata: languageName: node linkType: hard -"@interchainjs/cosmos-types@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/cosmos-types@npm:1.6.1" +"@interchainjs/cosmos-types@npm:1.9.3, @interchainjs/cosmos-types@npm:^1.9.3": + version: 1.9.3 + resolution: "@interchainjs/cosmos-types@npm:1.9.3" dependencies: - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" - checksum: 10c0/76d8edb30e4ace4f21a2ec41026acf07c4ffcd982518d207dd494f111e5e89004f1431de73fbbedde6e31a318b2007f9a59acca5d3a683221bcbb5135c53720e + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" + checksum: 10c0/70f6f6ea1af92f83b99c71e107f5f29295c04b18fef408e6977a05b9e4e774c59fe833235eb9e226918cb7ec9a4889ac4dc81df31959e1eda0248f5d798cdc34 languageName: node linkType: hard @@ -4104,23 +4105,6 @@ __metadata: languageName: node linkType: hard -"@interchainjs/cosmos@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/cosmos@npm:1.6.1" - dependencies: - "@chain-registry/v2": "npm:^1.65.6" - "@chain-registry/v2-types": "npm:^0.49.6" - "@interchainjs/auth": "npm:1.6.1" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" - "@noble/curves": "npm:^1.1.0" - "@noble/hashes": "npm:^1.3.1" - decimal.js: "npm:^10.4.3" - checksum: 10c0/97908a54bd1d4b6d7ce2fbfff122a1a06ede0540242c6354da3bbe8900031831d42c69c6e090be26b05a37a3407f474b5fca760178d71f8024532017cd6498db - languageName: node - linkType: hard - "@interchainjs/cosmos@npm:^0.0.1-beta.12, @interchainjs/cosmos@npm:^0.0.1-beta.20": version: 0.0.1-beta.20 resolution: "@interchainjs/cosmos@npm:0.0.1-beta.20" @@ -4138,19 +4122,20 @@ __metadata: languageName: node linkType: hard -"@interchainjs/ethereum@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/ethereum@npm:1.6.1" +"@interchainjs/cosmos@npm:^1.9.3": + version: 1.9.3 + resolution: "@interchainjs/cosmos@npm:1.9.3" dependencies: - "@ethersproject/bignumber": "npm:^5.7.0" - "@ethersproject/bytes": "npm:^5.7.0" - "@ethersproject/hash": "npm:^5.7.0" - "@ethersproject/transactions": "npm:^5.7.0" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" + "@chain-registry/v2": "npm:^1.65.6" + "@chain-registry/v2-types": "npm:^0.49.6" + "@interchainjs/auth": "npm:^1.8.3" + "@interchainjs/cosmos-types": "npm:^1.9.3" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" + "@noble/curves": "npm:^1.1.0" "@noble/hashes": "npm:^1.3.1" - ethers: "npm:^6.13.4" - checksum: 10c0/3fc7ab23a63f7da648176e97266266b390142a66b6fdae29221c7f363987efce1374553b126cbc5d146f510dd1a99e81d8eb08d21ad0af42f0748e286deed484 + decimal.js: "npm:^10.4.3" + checksum: 10c0/b73a0d9bc6a7de6989c4e39f5a80ff09c9ae38001335f73fa8729ea9f9e1f26fdb72864c853acfac0b341b80e15fc4f1fdde4148c978400a29904ac5ddcf6a1d languageName: node linkType: hard @@ -4169,6 +4154,22 @@ __metadata: languageName: node linkType: hard +"@interchainjs/ethereum@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/ethereum@npm:1.8.3" + dependencies: + "@ethersproject/bignumber": "npm:^5.7.0" + "@ethersproject/bytes": "npm:^5.7.0" + "@ethersproject/hash": "npm:^5.7.0" + "@ethersproject/transactions": "npm:^5.7.0" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" + "@noble/hashes": "npm:^1.3.1" + ethers: "npm:^6.13.4" + checksum: 10c0/3111b5da7305fb41dc4fac249e54a7ca695e08d5d65dab3666bc5a155e2089e790c6dcb25df95df212267fa99acbe0314a2c42cf0590a4ba31131cd7a287da27 + languageName: node + linkType: hard + "@interchainjs/injective@npm:0.0.1-beta.13": version: 0.0.1-beta.13 resolution: "@interchainjs/injective@npm:0.0.1-beta.13" @@ -4184,27 +4185,21 @@ __metadata: languageName: node linkType: hard -"@interchainjs/injective@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/injective@npm:1.6.1" - dependencies: - "@interchainjs/cosmos": "npm:1.6.1" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/ethereum": "npm:1.6.1" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" - decimal.js: "npm:^10.4.3" - interchainjs: "npm:1.6.1" - checksum: 10c0/7724f95e89406abd1ce37bee4a752ec1b98daed689df380d36e8d21c6f2de93254010cefc527c7e3ee70685d978598c8827d31d916d83ada31fcbc6eaccf1fca - languageName: node - linkType: hard - -"@interchainjs/types@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/types@npm:1.6.1" +"@interchainjs/injective@npm:1.9.3": + version: 1.9.3 + resolution: "@interchainjs/injective@npm:1.9.3" dependencies: + "@ethersproject/transactions": "npm:^5.7.0" + "@interchainjs/auth": "npm:^1.8.3" + "@interchainjs/cosmos": "npm:^1.9.3" + "@interchainjs/cosmos-types": "npm:^1.9.3" + "@interchainjs/ethereum": "npm:^1.8.3" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" + "@noble/hashes": "npm:^1.3.1" decimal.js: "npm:^10.4.3" - checksum: 10c0/76e0b78c6a44e3c5a91a5c8f47c7ddfaae9317639156c78a631b35d110bec42a977abe6f787bebd98381279dbf444e86484c4b77025c4090f599efb6e25725ea + interchainjs: "npm:^1.9.3" + checksum: 10c0/3a78312da99dcdbf3d64f5caf6be146b0ebebac0691652145f9486ffbd5cece0c8cfa8887a7a4c3854f8210e1936ebaf632561a1f64a27a67ed2f765f2adb64e languageName: node linkType: hard @@ -4217,13 +4212,12 @@ __metadata: languageName: node linkType: hard -"@interchainjs/utils@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/utils@npm:1.6.1" +"@interchainjs/types@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/types@npm:1.8.3" dependencies: - "@interchainjs/types": "npm:1.6.1" - bech32: "npm:^2.0.0" - checksum: 10c0/b2a455ee83be28da02dfaa0a6e87de36213d5f0b62fb3ce081577faa6cc991e360bc32b844f3aa0dcaee6205e3cfdbd242db01c7685fdeaf0d4f44215ac291cb + decimal.js: "npm:^10.4.3" + checksum: 10c0/ff579ff4f33f8288ad1942dedabea5f632aea5cd37831c935457ba9dffc0664b79c2950e94288e34c40f5aada291430a5b7f251dd4eff79028663d5405646a2a languageName: node linkType: hard @@ -4237,6 +4231,17 @@ __metadata: languageName: node linkType: hard +"@interchainjs/utils@npm:^1.8.3": + version: 1.8.3 + resolution: "@interchainjs/utils@npm:1.8.3" + dependencies: + "@interchainjs/types": "npm:^1.8.3" + bech32: "npm:^2.0.0" + decimal.js: "npm:^10.4.3" + checksum: 10c0/65a7b243780f3e13c477de51f005ebbc52491bd4c3186d5d786361ce667d8cb9c1a8458fbeb4f72c6059132e0fc57def658a4f6b2377707fa86a709d17fd4ab8 + languageName: node + linkType: hard + "@internationalized/date@npm:^3.5.6": version: 3.5.6 resolution: "@internationalized/date@npm:3.5.6" @@ -4597,6 +4602,15 @@ __metadata: languageName: node linkType: hard +"@noble/curves@npm:~1.8.1": + version: 1.8.1 + resolution: "@noble/curves@npm:1.8.1" + dependencies: + "@noble/hashes": "npm:1.7.1" + checksum: 10c0/84902c7af93338373a95d833f77981113e81c48d4bec78f22f63f1f7fdd893bc1d3d7a3ee78f01b9a8ad3dec812a1232866bf2ccbeb2b1560492e5e7d690ab1f + languageName: node + linkType: hard + "@noble/hashes@npm:1.3.2": version: 1.3.2 resolution: "@noble/hashes@npm:1.3.2" @@ -4611,6 +4625,13 @@ __metadata: languageName: node linkType: hard +"@noble/hashes@npm:1.7.1, @noble/hashes@npm:~1.7.1": + version: 1.7.1 + resolution: "@noble/hashes@npm:1.7.1" + checksum: 10c0/2f8ec0338ccc92b576a0f5c16ab9c017a3a494062f1fbb569ae641c5e7eab32072f9081acaa96b5048c0898f972916c818ea63cbedda707886a4b5ffcfbf94e3 + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -6377,6 +6398,24 @@ __metadata: languageName: node linkType: hard +"@scure/base@npm:~1.2.2": + version: 1.2.4 + resolution: "@scure/base@npm:1.2.4" + checksum: 10c0/469c8aee80d6d6973e1aac6184befa04568f1b4016e40c889025f4a721575db9c1ca0c2ead80613896cce929392740322a18da585a427f157157e797dc0a42a9 + languageName: node + linkType: hard + +"@scure/bip32@npm:^1.0.10": + version: 1.6.2 + resolution: "@scure/bip32@npm:1.6.2" + dependencies: + "@noble/curves": "npm:~1.8.1" + "@noble/hashes": "npm:~1.7.1" + "@scure/base": "npm:~1.2.2" + checksum: 10c0/a0abd62d1fe34b4d90b84feb25fa064ad452fd51be9fd7ea3dcd376059c0e8d08d4fe454099030f43fb91a1bee85cd955f093f221bbc522178919f779fbe565c + languageName: node + linkType: hard + "@sinclair/typebox@npm:^0.24.1": version: 0.24.51 resolution: "@sinclair/typebox@npm:0.24.51" @@ -10099,19 +10138,17 @@ __metadata: languageName: node linkType: hard -"interchainjs@npm:1.6.1": - version: 1.6.1 - resolution: "interchainjs@npm:1.6.1" +"interchainjs@npm:1.9.3, interchainjs@npm:^1.9.3": + version: 1.9.3 + resolution: "interchainjs@npm:1.9.3" dependencies: - "@interchainjs/cosmos": "npm:1.6.1" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" + "@interchainjs/cosmos": "npm:^1.9.3" + "@interchainjs/cosmos-types": "npm:^1.9.3" + "@interchainjs/types": "npm:^1.8.3" + "@interchainjs/utils": "npm:^1.8.3" "@noble/hashes": "npm:^1.3.1" decimal.js: "npm:^10.4.3" - peerDependencies: - "@tanstack/react-query": 4.29.1 - checksum: 10c0/1c9fc8242912bcb5a1f260137188e196c78b0c0d0123ef0219da26f6d1d850253e3715e148aa0c422409cda9be9bb7e1dc4797814fa5043793dc2fa5d38803f6 + checksum: 10c0/50ac565c5c095e80fa5a83656030bf853e1990474848613acdd4d47efc88be4c53214ccbf4fc7b863683bd4fdf6b9894d71be2c87ed3f7f88e94b9ba1e8a57f6 languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index fe3f0634..5875947a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,62 +34,6 @@ __metadata: languageName: node linkType: hard -"@ark-ui/vue@npm:^3.13.0": - version: 3.14.0 - resolution: "@ark-ui/vue@npm:3.14.0" - dependencies: - "@internationalized/date": "npm:3.5.5" - "@zag-js/accordion": "npm:0.71.0" - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/avatar": "npm:0.71.0" - "@zag-js/carousel": "npm:0.71.0" - "@zag-js/checkbox": "npm:0.71.0" - "@zag-js/clipboard": "npm:0.71.0" - "@zag-js/collapsible": "npm:0.71.0" - "@zag-js/color-picker": "npm:0.71.0" - "@zag-js/combobox": "npm:0.71.0" - "@zag-js/date-picker": "npm:0.71.0" - "@zag-js/dialog": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/editable": "npm:0.71.0" - "@zag-js/file-upload": "npm:0.71.0" - "@zag-js/file-utils": "npm:0.71.0" - "@zag-js/highlight-word": "npm:0.71.0" - "@zag-js/hover-card": "npm:0.71.0" - "@zag-js/i18n-utils": "npm:0.71.0" - "@zag-js/menu": "npm:0.71.0" - "@zag-js/number-input": "npm:0.71.0" - "@zag-js/pagination": "npm:0.71.0" - "@zag-js/pin-input": "npm:0.71.0" - "@zag-js/popover": "npm:0.71.0" - "@zag-js/presence": "npm:0.71.0" - "@zag-js/progress": "npm:0.71.0" - "@zag-js/qr-code": "npm:0.71.0" - "@zag-js/radio-group": "npm:0.71.0" - "@zag-js/rating-group": "npm:0.71.0" - "@zag-js/select": "npm:0.71.0" - "@zag-js/signature-pad": "npm:0.71.0" - "@zag-js/slider": "npm:0.71.0" - "@zag-js/splitter": "npm:0.71.0" - "@zag-js/steps": "npm:0.71.0" - "@zag-js/switch": "npm:0.71.0" - "@zag-js/tabs": "npm:0.71.0" - "@zag-js/tags-input": "npm:0.71.0" - "@zag-js/time-picker": "npm:0.71.0" - "@zag-js/timer": "npm:0.71.0" - "@zag-js/toast": "npm:0.71.0" - "@zag-js/toggle-group": "npm:0.71.0" - "@zag-js/tooltip": "npm:0.71.0" - "@zag-js/tree-view": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - "@zag-js/vue": "npm:0.71.0" - peerDependencies: - vue: ">=3.0.0" - checksum: 10c0/d0a6ff5937783ba1b3388b2207f5c1b4080b1b06f418d5397ed0d99dba5c767f482923cec847a94d86a27f3e356959527b6e4224c4e3aecc2e1f32d31f3bdffa - languageName: node - linkType: hard - "@babel/cli@npm:7.24.7": version: 7.24.7 resolution: "@babel/cli@npm:7.24.7" @@ -3806,7 +3750,7 @@ __metadata: languageName: node linkType: hard -"@cosmjs/json-rpc@npm:^0.32.3, @cosmjs/json-rpc@npm:^0.32.4": +"@cosmjs/json-rpc@npm:^0.32.4": version: 0.32.4 resolution: "@cosmjs/json-rpc@npm:0.32.4" dependencies: @@ -4012,7 +3956,7 @@ __metadata: languageName: node linkType: hard -"@cosmjs/socket@npm:^0.32.3, @cosmjs/socket@npm:^0.32.4": +"@cosmjs/socket@npm:^0.32.4": version: 0.32.4 resolution: "@cosmjs/socket@npm:0.32.4" dependencies: @@ -4243,24 +4187,6 @@ __metadata: languageName: node linkType: hard -"@cosmjs/tendermint-rpc@npm:0.32.3": - version: 0.32.3 - resolution: "@cosmjs/tendermint-rpc@npm:0.32.3" - dependencies: - "@cosmjs/crypto": "npm:^0.32.3" - "@cosmjs/encoding": "npm:^0.32.3" - "@cosmjs/json-rpc": "npm:^0.32.3" - "@cosmjs/math": "npm:^0.32.3" - "@cosmjs/socket": "npm:^0.32.3" - "@cosmjs/stream": "npm:^0.32.3" - "@cosmjs/utils": "npm:^0.32.3" - axios: "npm:^1.6.0" - readonly-date: "npm:^1.0.0" - xstream: "npm:^11.14.0" - checksum: 10c0/9ccde526456e9c4be7a2562c3def25a016267404a057e807ecc0f520aeb0cbfc5bf04bfca58ceecd6f7bf61b7089924c7949c13a7d685efc7ad946b71388c3df - languageName: node - linkType: hard - "@cosmjs/tendermint-rpc@npm:0.32.4, @cosmjs/tendermint-rpc@npm:^0.32.3, @cosmjs/tendermint-rpc@npm:^0.32.4": version: 0.32.4 resolution: "@cosmjs/tendermint-rpc@npm:0.32.4" @@ -6177,17 +6103,6 @@ __metadata: languageName: node linkType: hard -"@headlessui/vue@npm:^1.7.23": - version: 1.7.23 - resolution: "@headlessui/vue@npm:1.7.23" - dependencies: - "@tanstack/vue-virtual": "npm:^3.0.0-beta.60" - peerDependencies: - vue: ^3.2.0 - checksum: 10c0/6c570ab66ff7b0c2f115ab062dd8a08ce769263f5236422ecb298bfcb3d19d15fc83272d009f3c4159b8da3777ad048bf0ef49e258368096ae3b71085417fe13 - languageName: node - linkType: hard - "@hexxagon/feather.js@npm:^1.0.9-beta.8": version: 1.0.11 resolution: "@hexxagon/feather.js@npm:1.0.11" @@ -7291,31 +7206,20 @@ __metadata: languageName: node linkType: hard -"@interchainjs/cosmos@npm:0.0.1-beta.20": - version: 0.0.1-beta.20 - resolution: "@interchainjs/cosmos@npm:0.0.1-beta.20" +"@interchainjs/cosmos-types@npm:1.9.2, @interchainjs/cosmos-types@npm:^1.8.1, @interchainjs/cosmos-types@npm:^1.9.2": + version: 1.9.2 + resolution: "@interchainjs/cosmos-types@npm:1.9.2" dependencies: - "@chain-registry/v2": "npm:^1.65.6" - "@chain-registry/v2-types": "npm:^0.49.6" - "@interchainjs/auth": "npm:^0.0.1-beta.16" - "@interchainjs/cosmos-types": "npm:^0.0.1-beta.17" - "@interchainjs/types": "npm:^0.0.1-beta.15" - "@interchainjs/utils": "npm:^0.0.1-beta.15" - "@noble/curves": "npm:^1.1.0" - "@noble/hashes": "npm:^1.3.1" - decimal.js: "npm:^10.4.3" - checksum: 10c0/98298296f7a80e91192050ff5f79f98e4b969746692d7fafb4b321623b1d9d5a82f0e64588a587cf327f22701fee7ff126381dd007dbdbe2068323a1091bcc25 + "@interchainjs/types": "npm:^1.8.2" + "@interchainjs/utils": "npm:^1.8.2" + checksum: 10c0/addba96cc974c140aa750eec52082da56c8f1d842f3e1f002c2502b50963a4fbd3448d96b12c76e5457762e6556c5fa507e7b0c5bc0bb3fd8d371024de2e374b languageName: node linkType: hard "@interchainjs/cosmos@npm:0.0.1-beta.34": version: 0.0.1-beta.34 - resolution: "@interchainjs/cosmos@npm:0.0.1-beta.34" + resolution: "@interchainjs/cosmos-types@npm:0.0.1-beta.34" dependencies: - "@chain-registry/v2": "npm:^1.65.6" - "@chain-registry/v2-types": "npm:^0.49.6" - "@interchainjs/auth": "npm:^0.0.1-beta.34" - "@interchainjs/cosmos-types": "npm:^0.0.1-beta.34" "@interchainjs/types": "npm:^0.0.1-beta.34" "@interchainjs/utils": "npm:^0.0.1-beta.34" "@noble/curves": "npm:^1.1.0" @@ -7410,19 +7314,18 @@ __metadata: languageName: node linkType: hard -"@interchainjs/ethereum@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/ethereum@npm:1.6.1" +"@interchainjs/ethereum@npm:^0.0.1-beta.9": + version: 0.0.1-beta.34 + resolution: "@interchainjs/ethereum@npm:0.0.1-beta.34" dependencies: "@ethersproject/bignumber": "npm:^5.7.0" "@ethersproject/bytes": "npm:^5.7.0" "@ethersproject/hash": "npm:^5.7.0" "@ethersproject/transactions": "npm:^5.7.0" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" + "@interchainjs/types": "npm:^0.0.1-beta.34" + "@interchainjs/utils": "npm:^0.0.1-beta.34" "@noble/hashes": "npm:^1.3.1" - ethers: "npm:^6.13.4" - checksum: 10c0/3fc7ab23a63f7da648176e97266266b390142a66b6fdae29221c7f363987efce1374553b126cbc5d146f510dd1a99e81d8eb08d21ad0af42f0748e286deed484 + checksum: 10c0/1cce979f23aadde8357419df8e1ed38feef242f02742faea00f49ec34a2b915f84a224eeb386a0d6b3afef68742859df560f13107e0a1355990aa3a7ad75d522 languageName: node linkType: hard @@ -7473,18 +7376,21 @@ __metadata: languageName: node linkType: hard -"@interchainjs/injective@npm:1.6.1": - version: 1.6.1 - resolution: "@interchainjs/injective@npm:1.6.1" +"@interchainjs/injective@npm:1.9.2": + version: 1.9.2 + resolution: "@interchainjs/injective@npm:1.9.2" dependencies: - "@interchainjs/cosmos": "npm:1.6.1" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/ethereum": "npm:1.6.1" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" + "@ethersproject/transactions": "npm:^5.7.0" + "@interchainjs/auth": "npm:^1.8.2" + "@interchainjs/cosmos": "npm:^1.9.2" + "@interchainjs/cosmos-types": "npm:^1.9.2" + "@interchainjs/ethereum": "npm:^1.8.2" + "@interchainjs/types": "npm:^1.8.2" + "@interchainjs/utils": "npm:^1.8.2" + "@noble/hashes": "npm:^1.3.1" decimal.js: "npm:^10.4.3" - interchainjs: "npm:1.6.1" - checksum: 10c0/7724f95e89406abd1ce37bee4a752ec1b98daed689df380d36e8d21c6f2de93254010cefc527c7e3ee70685d978598c8827d31d916d83ada31fcbc6eaccf1fca + interchainjs: "npm:^1.9.2" + checksum: 10c0/22b623c1bfc31c9db001b669ae057a8e7c8aaaf4b397b7105d50948a236a626d57940d254361e3f1cd4f2247bdaf2aba873adc490edb358aa959161548ee58be languageName: node linkType: hard @@ -7663,15 +7569,6 @@ __metadata: languageName: node linkType: hard -"@internationalized/number@npm:3.5.3": - version: 3.5.3 - resolution: "@internationalized/number@npm:3.5.3" - dependencies: - "@swc/helpers": "npm:^0.5.0" - checksum: 10c0/dd1bb4e89c6468b97e8357e1ba0a60234bd2c8226f3241c4c7499e5b1791ba0574127ea6de0fd6c4158e2ceef564bba6531a8f5589e58b820df669e312500f99 - languageName: node - linkType: hard - "@internationalized/number@npm:^3.6.0": version: 3.6.0 resolution: "@internationalized/number@npm:3.6.0" @@ -8034,7 +7931,7 @@ __metadata: languageName: node linkType: hard -"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": version: 1.5.0 resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 @@ -11760,7 +11657,7 @@ __metadata: languageName: node linkType: hard -"@tanstack/match-sorter-utils@npm:^8.19.4, @tanstack/match-sorter-utils@npm:^8.7.0": +"@tanstack/match-sorter-utils@npm:^8.7.0": version: 8.19.4 resolution: "@tanstack/match-sorter-utils@npm:8.19.4" dependencies: @@ -11783,13 +11680,6 @@ __metadata: languageName: node linkType: hard -"@tanstack/query-core@npm:5.62.7": - version: 5.62.7 - resolution: "@tanstack/query-core@npm:5.62.7" - checksum: 10c0/d7aa83571b56e7bf1b608b8f56c90a9e9e759ba5a8899686182e8961c94432d1b6437b066a228765250498a3009623a30c5ca17b2714ddb30e2d727adea9aa0c - languageName: node - linkType: hard - "@tanstack/react-query-devtools@npm:4.29.1": version: 4.29.1 resolution: "@tanstack/react-query-devtools@npm:4.29.1" @@ -12057,7 +11947,7 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:*, @types/estree@npm:1.0.6, @types/estree@npm:^1.0.0": +"@types/estree@npm:*, @types/estree@npm:^1.0.0": version: 1.0.6 resolution: "@types/estree@npm:1.0.6" checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a @@ -12433,13 +12323,6 @@ __metadata: languageName: node linkType: hard -"@types/web-bluetooth@npm:^0.0.20": - version: 0.0.20 - resolution: "@types/web-bluetooth@npm:0.0.20" - checksum: 10c0/3a49bd9396506af8f1b047db087aeeea9fe4301b7fad4fe06ae0f6e00d331138caae878fd09e6410658b70b4aaf10e4b191c41c1a5ff72211fe58da290c7d003 - languageName: node - linkType: hard - "@types/yargs-parser@npm:*": version: 21.0.3 resolution: "@types/yargs-parser@npm:21.0.3" @@ -13318,279 +13201,6 @@ __metadata: languageName: node linkType: hard -"@zag-js/accordion@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/accordion@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/8a2d27a23b241a6e8a33b591e9f23a38ac632bc65ae05620b31d4887bcff3ec338e8a7d72c7113c6e997b5ec22a158932e3ccdafe983611ffa816b7c29ae8e3c - languageName: node - linkType: hard - -"@zag-js/anatomy@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/anatomy@npm:0.71.0" - checksum: 10c0/88c96135bbafc6a20f8bd327d750e08068ee67109e851f12b6f4782fb6b0c5edec24122be2067c6319a83fcc453f9790095947410b030183fdaf165e53fbb698 - languageName: node - linkType: hard - -"@zag-js/aria-hidden@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/aria-hidden@npm:0.71.0" - dependencies: - aria-hidden: "npm:1.2.4" - checksum: 10c0/3cecf508ba76b769d800dc6bcf4642977689d768ebc015ff7180168001922a0a1dfabda362161c1ce322390b24a475bc0a0f2df98c819e3293b4d2a5b42f722d - languageName: node - linkType: hard - -"@zag-js/auto-resize@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/auto-resize@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - checksum: 10c0/31201ba858fce9e818f765f4e54659ddf68f28a14e43118bab5a90e403d5e905d7c4fbbac3b9645c39cc8a7f7050a9c2deab648e268b8d9068d27bce99e85011 - languageName: node - linkType: hard - -"@zag-js/avatar@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/avatar@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/e7640dcbd83a8bb2153ee1cde42a0408c6bba079eeb48d3d07aece75cd12c63f1ae366a8990bd973d2251306c3e02e11c31ce9adafbe14da11cdc876eabab5f4 - languageName: node - linkType: hard - -"@zag-js/carousel@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/carousel@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/4deed2cfc156bf77c833d018a355a707361d35c266bf18c67929c190c068759348d764caef376b780757cf52eb80c840eecd81e42f7313ac01f191482de6aac1 - languageName: node - linkType: hard - -"@zag-js/checkbox@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/checkbox@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/focus-visible": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/7610e53818dd593184e7e4c26793cd8db9781de2af2e2325f23438bf1ccbc989174608e979f6d65680c238b2b06c0aaa3a2db95cba500d1608f0e050635e56f7 - languageName: node - linkType: hard - -"@zag-js/clipboard@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/clipboard@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/b46c4fb90812c307de50f7a8ca9251085573f037ce71405c2b9e4e3cb629fac37cfc178d87f569d61562125042bde06c149204f70daab3c24c3817766cdf24b7 - languageName: node - linkType: hard - -"@zag-js/collapsible@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/collapsible@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/948da21060b66fb268c18d760d94eefbd822d07cb6660958dd9fc9360723a59411e8cb37ba00d6aab29a5a226a98190038d01e1cd9f0b2fad8478d172b1863f0 - languageName: node - linkType: hard - -"@zag-js/collection@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/collection@npm:0.71.0" - dependencies: - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/58474b2055d4edbacf8828fd6d3fa1b40fd40dc4f7d4f3fddfbe5ea4b42fb994a1f30ecdd5e0f826ec512676e1d3e1d85f2b8ea5f6c6baa373b272c156e947e6 - languageName: node - linkType: hard - -"@zag-js/color-picker@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/color-picker@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/color-utils": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/text-selection": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/d8ff9278d30622fde9c6e0bc74793a4f0b3171c2856664da1bba6410f14d6d7021925a0afe8903fb89ab1f4f74e58892de9ec8c41dd238e6b874f8a453168ce9 - languageName: node - linkType: hard - -"@zag-js/color-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/color-utils@npm:0.71.0" - dependencies: - "@zag-js/numeric-range": "npm:0.71.0" - checksum: 10c0/f1647cb9480c5e078f460eb48b63da770981df65c5247172f03b6685af669d8f26f35457e58e0a9cbfe65e2dcbd25d7d2986a115a21cf7a2de761a3dd7eeaa41 - languageName: node - linkType: hard - -"@zag-js/combobox@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/combobox@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/aria-hidden": "npm:0.71.0" - "@zag-js/collection": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/8d33695c2e8a76b8348deadeb6376d55bf7a7266d274c13b007c1421bcb9466fc045a6b12da1e18fe30481a3cb34e175cbf162197b4db758212eb853245d3f89 - languageName: node - linkType: hard - -"@zag-js/core@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/core@npm:0.71.0" - dependencies: - "@zag-js/store": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - klona: "npm:2.0.6" - checksum: 10c0/15e372efe45bb8dba6738964796d411a24a23e7870ee58e1efd9e82dfd70668a87a255a67629fbeee1306e2c5e28751f418dcac70997ad978d4343628902d3ca - languageName: node - linkType: hard - -"@zag-js/date-picker@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/date-picker@npm:0.71.0" - dependencies: - "@internationalized/date": "npm:3.5.5" - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/date-utils": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/live-region": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/text-selection": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/0b8a4aef104d26a9a3e22e2c86fbde30d61e653d250ac76c25738f8dbc0072b6d186c2425a61f9cde8bf0c887947c505d5f983ed9302ff708748862457139456 - languageName: node - linkType: hard - -"@zag-js/date-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/date-utils@npm:0.71.0" - peerDependencies: - "@internationalized/date": ">=3.0.0" - checksum: 10c0/3cbe414dc0f8195d95c4f6dacba2046c46f0ec947f9d003476e443374a6267dcded1a0a1207e7e07ee2102d04c57ab3fff16d6dd4375983a826f39559963687b - languageName: node - linkType: hard - -"@zag-js/dialog@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/dialog@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/aria-hidden": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/remove-scroll": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - focus-trap: "npm:7.6.0" - checksum: 10c0/72e74b027008995bccdbd70eb5bc65418da0cd9d404776930b8d23c9a02ac7486c85341286f6888e0ce03de4dc45982e699f44bfdd01d18d6298bcdd0a38884c - languageName: node - linkType: hard - -"@zag-js/dismissable@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/dismissable@npm:0.71.0" - dependencies: - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/interact-outside": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/964e3a306b1572bd6aff98fe04d4320a33f14cc3fdb2c5aec856bf43eee96c7118d5d2aefd5bc00c744e04ec1dafb46d9c90ecd6defeb56d75320c7ad0be2673 - languageName: node - linkType: hard - -"@zag-js/dom-event@npm:0.71.0, @zag-js/dom-event@npm:^0.71.0": - version: 0.71.0 - resolution: "@zag-js/dom-event@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/text-selection": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - checksum: 10c0/c82b8224cc05a64d2f7bbed9edc11ea089b733f1202f841d59abfd0642ea4ebf1fce67b7fc6d0105dbc372b4e223c96721f1860f7fb5a75bc03749f7c9c3445c - languageName: node - linkType: hard - -"@zag-js/dom-query@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/dom-query@npm:0.71.0" - checksum: 10c0/6bb8407e141b1b58a419fe3241959e4a2d3e8353cf618584fec080f05629b6f26f8a1af29b32cda9cac9047ebc7591676ec1e8ffd135c63e2b5277f6cf56c66e - languageName: node - linkType: hard - -"@zag-js/editable@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/editable@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/interact-outside": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/95f568fde1a5f2d7930e5a17d2450df643751af2e55fdef117d0ab81997f5e0ad9986001f8d17b882a93de672d3389f54cd2ac2af0e4085899ed42e75222a9b9 - languageName: node - linkType: hard - -"@zag-js/element-rect@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/element-rect@npm:0.71.0" - checksum: 10c0/5437f3fd965fe4773b720d8c707e96a7e87dc9cf4e572ecb5b83991bcea27afdfb35f2fbbb0ea82988a32c0b41c70b647cfa34807d97ed4163252f6ac46541f8 - languageName: node - linkType: hard - "@zag-js/element-size@npm:0.3.1": version: 0.3.1 resolution: "@zag-js/element-size@npm:0.3.1" @@ -13598,37 +13208,6 @@ __metadata: languageName: node linkType: hard -"@zag-js/element-size@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/element-size@npm:0.71.0" - checksum: 10c0/12cd8e2f184596fc502b665af7b539355e08af3982b27e8f98e531008cc8bebd882cbb39d3edcfc4e8e228e785589c562f69a4b7a6324da1b4c5130d6747c362 - languageName: node - linkType: hard - -"@zag-js/file-upload@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/file-upload@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/file-utils": "npm:0.71.0" - "@zag-js/i18n-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/00327458e2ce9f0448805855b0e6145d0008177a9ce432dadcae720bf797c07661827f153c14ca3e7b4e8c430648706d163ccfe60c522552d5178a71cb419a3f - languageName: node - linkType: hard - -"@zag-js/file-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/file-utils@npm:0.71.0" - dependencies: - "@zag-js/i18n-utils": "npm:0.71.0" - checksum: 10c0/93c2d63d12106c265b3a01c339ed4cb10cfcd68ead720cffccaef39bde17a222ba0899ffbc275f17388a3d5ea5857bea013ffc3a476487b84c0cf124eb2f9879 - languageName: node - linkType: hard - "@zag-js/focus-visible@npm:0.2.1": version: 0.2.1 resolution: "@zag-js/focus-visible@npm:0.2.1" @@ -13636,524 +13215,6 @@ __metadata: languageName: node linkType: hard -"@zag-js/focus-visible@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/focus-visible@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - checksum: 10c0/36987ffb658b79ad97d09e89af96d05f6233f03ae9d6eb7a033ff584d66eebde303f30a67915d6efc8aec9dd7b146011103b3a504cdc1bed4569ca4ddee3e288 - languageName: node - linkType: hard - -"@zag-js/form-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/form-utils@npm:0.71.0" - checksum: 10c0/12dad5522a12599c844fd946721f865e5f255f1c681839955c6327f046cbb9efacf4b17c8e55ddbf8dd574540ba4ebe66ffc48e81f43586a8d2d12fbee86f9eb - languageName: node - linkType: hard - -"@zag-js/highlight-word@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/highlight-word@npm:0.71.0" - checksum: 10c0/b312cf30386e5b046191bb511555e8b7ac1655807cf907e281d14b4bc36ae90286d857c99b57e78429d1ccab5ba2544eda9451ce96eac513a3a5b8bc157f4c98 - languageName: node - linkType: hard - -"@zag-js/hover-card@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/hover-card@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/62eca4c5442ec4a8c33cbc4d19f3eee98ec5ce83c791082facd8337214a80f71933e2d06d05e33ab2ee5f7367562ff6a53d54790ebfb95c115cbacac1b53770d - languageName: node - linkType: hard - -"@zag-js/i18n-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/i18n-utils@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - checksum: 10c0/4398f207c76818a640cc371b3891eb207444f7c3b5ff9f518d42a405ba8dfe05946edcb8063b3a069da34e0ce05b99a46a4222eced5fe9a1c62cc5a0e40f5e1b - languageName: node - linkType: hard - -"@zag-js/interact-outside@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/interact-outside@npm:0.71.0" - dependencies: - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/6c8280bb5b11d8c2ab5daf5bc76e91427c757f611966324e89904099a1e34db88b5e2674414dcccc0f7a83b99d50dabf286447b443714c273d920760730b5093 - languageName: node - linkType: hard - -"@zag-js/live-region@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/live-region@npm:0.71.0" - checksum: 10c0/0a7b0b32949834994a4e557f7fc6e1af7e1c8a7acddcdb575bcbffbe9044c33dae26fe99e8dfb428493e5510dd1917736aaeac8622e2cbe0cb10f00724473603 - languageName: node - linkType: hard - -"@zag-js/menu@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/menu@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/rect-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/9786eb6c68d5f572a3468947974722ddc635e15b2f0e61d1f54b517055782be6a8294f71a6b235d3d453c8bb64be43e8c45bfb25d930c1aa82e90344822a6cbe - languageName: node - linkType: hard - -"@zag-js/number-input@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/number-input@npm:0.71.0" - dependencies: - "@internationalized/number": "npm:3.5.3" - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/number-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/f230901b4d221d47b17b59701ae14bdda1ba3ac0858ce32b03710b472dde41fae594d7fcedee4ca9d14f6d72905b7ae3ad0a4ea647aea9f8ba8d9ddff35969c4 - languageName: node - linkType: hard - -"@zag-js/number-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/number-utils@npm:0.71.0" - checksum: 10c0/aec8127ded305d9e6d3c6d934339a561991f7d54ed6da0c8c65dc0c77b5fd848ac106973e73d007f8fcedb699be8f6a9f092bb5845758fb95f9496730cbab8df - languageName: node - linkType: hard - -"@zag-js/numeric-range@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/numeric-range@npm:0.71.0" - checksum: 10c0/0458b999d63636202646da304c3eb0282dd6dbe0bb81c030009c397ee525771dd851f473329c18160dd9879f5fe372d147d934cc9d213a086b3990cf18bc01a5 - languageName: node - linkType: hard - -"@zag-js/pagination@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/pagination@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/530fd600472f546f08f725dfc01b9314ec7e66a39943d8ae1d48bbd32c6f2178e7b148dce5a704a05bfb9e60a4265c7236f7c2ca6e0acbe5c52165bad7e62cf0 - languageName: node - linkType: hard - -"@zag-js/pin-input@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/pin-input@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/3065677d80cae036bc2ec5080fe3bed1df9858e2b001bfea2f91d8b3800d7b63b285fc152f8860cd98e8e0e7bca1a3a2a9c6be631e4cbd4ef166e8da424ac9f9 - languageName: node - linkType: hard - -"@zag-js/popover@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/popover@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/aria-hidden": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/remove-scroll": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - focus-trap: "npm:7.6.0" - checksum: 10c0/7c5bae7d192cc3b5b7859ce6b7a81d6dd0e247c0e4c66666c5802cc07888db742551d7643fe1654a0cbe3e7ff2deb79107a673b2003ac45a3f44bb444828a990 - languageName: node - linkType: hard - -"@zag-js/popper@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/popper@npm:0.71.0" - dependencies: - "@floating-ui/dom": "npm:1.6.11" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/0f4d78523090da9873162a289070dc010ac310a1b98009ee15d595d67fbbd9e81b96f4376c14a8dcb48373608e3976e65aa642cc1800a90ef3b0f6fe2335d314 - languageName: node - linkType: hard - -"@zag-js/presence@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/presence@npm:0.71.0" - dependencies: - "@zag-js/core": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - checksum: 10c0/f7486d89f1152ad263ee4eddfa88e6c3d51f32e01d02fad467b6c54b3234b2e394903a0762c9a3b8eb99c8680f206eabd7e1df189eacabe0a4033bdebda0ecab - languageName: node - linkType: hard - -"@zag-js/progress@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/progress@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/bf6eb191d1a8447c789764a010d5fdcb5be6217790b1268d7672d845cd68ca032709198117505099237c56d3709aaf17c2ce2b015fdfd1a07c55c71920059563 - languageName: node - linkType: hard - -"@zag-js/qr-code@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/qr-code@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - proxy-memoize: "npm:3.0.1" - uqr: "npm:0.1.2" - checksum: 10c0/bcc22371ed9eb8a81e7aa93ab571a382745eead1670b1ab50e0a7731208eac43cad28c63575f82f56d88b39348894662860ec52b3edde7251ee6c4b1d2b72f8c - languageName: node - linkType: hard - -"@zag-js/radio-group@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/radio-group@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/element-rect": "npm:0.71.0" - "@zag-js/focus-visible": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/8f25535f7b2d2b00f83b8404fdd137f5877c200d92ff04f6e250189131bef6bdb11dc366ea56812f40c0fbe550937c02b3727afd0aa113204836e7c8fc594fba - languageName: node - linkType: hard - -"@zag-js/rating-group@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/rating-group@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/e11ab431ce991c5fca331349b88eb9c12b7f3eeaa0c53edfc985a66137a20785e50eb073c152abff40687154f2312e6b3a8cd6f911c21c067b164e016a2b2f7a - languageName: node - linkType: hard - -"@zag-js/rect-utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/rect-utils@npm:0.71.0" - checksum: 10c0/9667f286edd0ecd86dd66a8e5cb947dcd8065d0aace5f5c2b42025a9a1da29f7edfc84f07fe23655b6d352998d4706cfef83ddc49c0fd08323c6341b9089fdca - languageName: node - linkType: hard - -"@zag-js/remove-scroll@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/remove-scroll@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - checksum: 10c0/6f35ba74291579374eda570cfa2a6f6665d1a23236dacfcf888be4f35dd26a1f886327a463871b44e644b26cf1385e9db637c43fd0df0d1974dca2a95d93e513 - languageName: node - linkType: hard - -"@zag-js/select@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/select@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/collection": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/0316f6a0c42ef5a1a98e12bcc8a4f77e2f61e93b6c9a49c679d294e747043330122df181a5e6498b88ce3f95b788ea9427415b84588b6b43a14f2e8c0f46c090 - languageName: node - linkType: hard - -"@zag-js/signature-pad@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/signature-pad@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - perfect-freehand: "npm:^1.2.2" - checksum: 10c0/c6a5fa5a20b146f4e1f5c1ac8dec56830f8776c004540bc922faf82b80c70bd64aab30d60c9be02b0d9cfe68e4b5b8b454ff7ee88e959e0f3580d165634f6647 - languageName: node - linkType: hard - -"@zag-js/slider@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/slider@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/element-size": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/numeric-range": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/2e905e800ed6abedeccdfefc6d19f2daafeece0bb84b6562a1e68cda70b321c94dd17228a6719c62c93b927de9f861970245aade168b646acd01006bdca4577b - languageName: node - linkType: hard - -"@zag-js/splitter@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/splitter@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/number-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/a74f30256949b6b367d0ec7e4473fd4cda167aba3abc0838f01640eae6575de0679f8ca8a671256bac4c513d6aaa4d1dc0931bf3959fbd93c7e99ce8da71219e - languageName: node - linkType: hard - -"@zag-js/steps@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/steps@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/6d7f088cc8652c071e28167e3265610f07e52bb41ec569bf761100793bd2177e69858fb83183b49fd74276ac56c38b41cab2d65f0037df9e16db6157394a39ef - languageName: node - linkType: hard - -"@zag-js/store@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/store@npm:0.71.0" - dependencies: - proxy-compare: "npm:3.0.0" - checksum: 10c0/328c49cdcf49471a9e2d62cd0284596d28ec6a0b063b4bb0ea8d97c00a3197f6125dabc65582d6ed8d11f1e69a9f8c52889b3e5e23c0e371668b6e2bf8555ee6 - languageName: node - linkType: hard - -"@zag-js/switch@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/switch@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/focus-visible": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/4ea23c98f0e684db92fb7e1c410038899f6ff90f1051d0e69a081ed60f1102cb2df34785987859a0df84599204fb256d74ae52e3265a831548d1636514db1419 - languageName: node - linkType: hard - -"@zag-js/tabs@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/tabs@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/element-rect": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/2145cd40c86a795ee3e45cc66d0a2d749a73d4876cf5ad80f75193f27b29f1d21ba1a7a7c1ac39844d60bdca5cfbfcd8444c413833bf2fe91b76e4a86a84a8ba - languageName: node - linkType: hard - -"@zag-js/tags-input@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/tags-input@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/auto-resize": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/form-utils": "npm:0.71.0" - "@zag-js/interact-outside": "npm:0.71.0" - "@zag-js/live-region": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/5671425f00b71822fefe6e94b05d19b576419defbbb223e4afe201f663d017b97343440511f85656490c96aacfed5ee87a5fc9130aa1eefb709e33b6ae756b45 - languageName: node - linkType: hard - -"@zag-js/text-selection@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/text-selection@npm:0.71.0" - dependencies: - "@zag-js/dom-query": "npm:0.71.0" - checksum: 10c0/ab27485cf3aa2c4943826c60af240165d3a0981ea064d69462f10fc714548d555d6d544bf8a9afaaf32009cefd85b9ada7762ccb7d6d5b9031378c5fa19486f3 - languageName: node - linkType: hard - -"@zag-js/time-picker@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/time-picker@npm:0.71.0" - dependencies: - "@internationalized/date": "npm:3.5.5" - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:^0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/5f6e113d5aff88855f8e36385cc8273a5024408d8852520569f89ae8f85932e8297d377ca29a1bd9a3a2458b0d1d58e297918ce4e10e06aa207d226b0996d1ae - languageName: node - linkType: hard - -"@zag-js/timer@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/timer@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/24ca64e05c2c93f0d2619f4a00faf8d6488a2476b5cc253fd0a2bfedf30e234436f4791436c07e73b486bc14bc17f9d1afd51780cb7f065e1e8cfcdb2d9ef8e7 - languageName: node - linkType: hard - -"@zag-js/toast@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/toast@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dismissable": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/b82df2211fd95fa13451d04643e02ac11fe850adef4b1c4e244664ff9bbb2d108163dd2c282bdfdf9dcb44211849a97293d26c07e5d45802d1b0b825db97541a - languageName: node - linkType: hard - -"@zag-js/toggle-group@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/toggle-group@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/ee17c69190710272add5e5b5e80706cd208a702dc19917d6141dc26f6044a2d1ebe01d9e5614e8bb6c4f8a6d6b6c1bd8fd306790181474eb2dc5b88b8b8e8e16 - languageName: node - linkType: hard - -"@zag-js/tooltip@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/tooltip@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/focus-visible": "npm:0.71.0" - "@zag-js/popper": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/3b14a264cd78ab3c51c39aa5660ec667c68b4e13127e70f6ab5731bdb4feb27d58b867ed4d53651dd4ff6e2c23e5d0da9d78155ba841bbc1810b4dc13f30a242 - languageName: node - linkType: hard - -"@zag-js/tree-view@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/tree-view@npm:0.71.0" - dependencies: - "@zag-js/anatomy": "npm:0.71.0" - "@zag-js/core": "npm:0.71.0" - "@zag-js/dom-event": "npm:0.71.0" - "@zag-js/dom-query": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - "@zag-js/utils": "npm:0.71.0" - checksum: 10c0/9f705d15452c80037527690682faa29f190d9b0b88821190246d7a4b3f641d83878a699315045cccc171c20ed4661e9598a10149228eae0397c7321db764ba02 - languageName: node - linkType: hard - -"@zag-js/types@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/types@npm:0.71.0" - dependencies: - csstype: "npm:3.1.3" - checksum: 10c0/68ddddbc8b9679cbe86124e625d417ef52999c807bfadc5e412b5355423be74ed1d0886c2120b361b3861198e0be5bd5c4e12e56579b3c4bc833159a118eb273 - languageName: node - linkType: hard - -"@zag-js/utils@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/utils@npm:0.71.0" - checksum: 10c0/3b60280dea909023c7af791d09009ffd3ccb5ae0b84b2b98fb9872d04a38b4894a92e6872fa62509b2ebe53108c0b52c22f28673d83cee22515f9f5a5440e38d - languageName: node - linkType: hard - -"@zag-js/vue@npm:0.71.0": - version: 0.71.0 - resolution: "@zag-js/vue@npm:0.71.0" - dependencies: - "@zag-js/core": "npm:0.71.0" - "@zag-js/store": "npm:0.71.0" - "@zag-js/types": "npm:0.71.0" - peerDependencies: - vue: ">=3.0.0" - checksum: 10c0/8b979929f98b2e159b425b64eec08dbe611ced08e351aabb3d2d53aafd4d3f7abea4ca25072c09ac5f04b4f60539940c2456a707c57d71d4c7d4cab554c21c53 - languageName: node - linkType: hard - "JSONStream@npm:^1.0.4": version: 1.3.5 resolution: "JSONStream@npm:1.3.5" @@ -14479,7 +13540,7 @@ __metadata: languageName: node linkType: hard -"aria-hidden@npm:1.2.4, aria-hidden@npm:^1.2.2": +"aria-hidden@npm:^1.2.2": version: 1.2.4 resolution: "aria-hidden@npm:1.2.4" dependencies: @@ -16445,7 +15506,7 @@ __metadata: languageName: node linkType: hard -"csstype@npm:3.1.3, csstype@npm:^3.0.11, csstype@npm:^3.0.2, csstype@npm:^3.0.7, csstype@npm:^3.1.3": +"csstype@npm:^3.0.11, csstype@npm:^3.0.2, csstype@npm:^3.0.7": version: 3.1.3 resolution: "csstype@npm:3.1.3" checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 @@ -17910,13 +16971,6 @@ __metadata: languageName: node linkType: hard -"estree-walker@npm:^2.0.2": - version: 2.0.2 - resolution: "estree-walker@npm:2.0.2" - checksum: 10c0/53a6c54e2019b8c914dc395890153ffdc2322781acf4bd7d1a32d7aedc1710807bdcd866ac133903d5629ec601fbb50abe8c2e5553c7f5a0afdd9b6af6c945af - languageName: node - linkType: hard - "esutils@npm:^2.0.2": version: 2.0.3 resolution: "esutils@npm:2.0.3" @@ -18530,7 +17584,7 @@ __metadata: languageName: node linkType: hard -"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3": +"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2": version: 2.3.3 resolution: "fsevents@npm:2.3.3" dependencies: @@ -18540,7 +17594,7 @@ __metadata: languageName: node linkType: hard -"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": +"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" dependencies: @@ -19214,15 +18268,6 @@ __metadata: languageName: node linkType: hard -"he@npm:^1.2.0": - version: 1.2.0 - resolution: "he@npm:1.2.0" - bin: - he: bin/he - checksum: 10c0/a27d478befe3c8192f006cdd0639a66798979dfa6e2125c6ac582a19a5ebfec62ad83e8382e6036170d873f46e4536a7e795bf8b95bf7c247f4cc0825ccc8c17 - languageName: node - linkType: hard - "hey-listen@npm:^1.0.8": version: 1.0.8 resolution: "hey-listen@npm:1.0.8" @@ -19644,38 +18689,6 @@ __metadata: languageName: node linkType: hard -"interchainjs@npm:0.0.1-beta.27": - version: 0.0.1-beta.27 - resolution: "interchainjs@npm:0.0.1-beta.27" - dependencies: - "@interchainjs/cosmos": "npm:^0.0.1-beta.20" - "@interchainjs/cosmos-types": "npm:^0.0.1-beta.17" - "@interchainjs/types": "npm:^0.0.1-beta.15" - "@interchainjs/utils": "npm:^0.0.1-beta.15" - "@noble/hashes": "npm:^1.3.1" - decimal.js: "npm:^10.4.3" - peerDependencies: - "@tanstack/react-query": 4.29.1 - checksum: 10c0/57472614ba19864ed4c3a84d8daabb8d890780e06c0fc843dfb3393d844df52c05b6a29bed57aafdb9b4c81c75f07c04d52ce7ab4edc28aafb9ab7456ac45928 - languageName: node - linkType: hard - -"interchainjs@npm:1.6.1": - version: 1.6.1 - resolution: "interchainjs@npm:1.6.1" - dependencies: - "@interchainjs/cosmos": "npm:1.6.1" - "@interchainjs/cosmos-types": "npm:1.6.1" - "@interchainjs/types": "npm:1.6.1" - "@interchainjs/utils": "npm:1.6.1" - "@noble/hashes": "npm:^1.3.1" - decimal.js: "npm:^10.4.3" - peerDependencies: - "@tanstack/react-query": 4.29.1 - checksum: 10c0/1c9fc8242912bcb5a1f260137188e196c78b0c0d0123ef0219da26f6d1d850253e3715e148aa0c422409cda9be9bb7e1dc4797814fa5043793dc2fa5d38803f6 - languageName: node - linkType: hard - "interchainjs@npm:1.6.3": version: 1.6.3 resolution: "interchainjs@npm:1.6.3" @@ -21287,13 +20300,6 @@ __metadata: languageName: node linkType: hard -"klona@npm:2.0.6": - version: 2.0.6 - resolution: "klona@npm:2.0.6" - checksum: 10c0/94eed2c6c2ce99f409df9186a96340558897b3e62a85afdc1ee39103954d2ebe1c1c4e9fe2b0952771771fa96d70055ede8b27962a7021406374fdb695fd4d01 - languageName: node - linkType: hard - "kuler@npm:^2.0.0": version: 2.0.0 resolution: "kuler@npm:2.0.0" @@ -21658,15 +20664,6 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.11": - version: 0.30.17 - resolution: "magic-string@npm:0.30.17" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 - languageName: node - linkType: hard - "make-dir@npm:^2.1.0": version: 2.1.0 resolution: "make-dir@npm:2.1.0" @@ -22369,7 +21366,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^9.0.1, minimatch@npm:^9.0.3, minimatch@npm:^9.0.4": +"minimatch@npm:^9.0.1, minimatch@npm:^9.0.4": version: 9.0.5 resolution: "minimatch@npm:9.0.5" dependencies: @@ -22634,13 +21631,6 @@ __metadata: languageName: node linkType: hard -"muggle-string@npm:^0.4.1": - version: 0.4.1 - resolution: "muggle-string@npm:0.4.1" - checksum: 10c0/e914b63e24cd23f97e18376ec47e4ba3aa24365e4776212b666add2e47bb158003212980d732c49abf3719568900af7861873844a6e2d3a7ca7e86952c0e99e9 - languageName: node - linkType: hard - "multiformats@npm:^9.4.2": version: 9.9.0 resolution: "multiformats@npm:9.9.0" @@ -23390,19 +22380,6 @@ __metadata: languageName: node linkType: hard -"osmojs@npm:^16.15.0": - version: 16.15.0 - resolution: "osmojs@npm:16.15.0" - dependencies: - "@cosmjs/amino": "npm:0.32.3" - "@cosmjs/proto-signing": "npm:0.32.3" - "@cosmjs/stargate": "npm:0.32.3" - "@cosmjs/tendermint-rpc": "npm:0.32.3" - "@cosmology/lcd": "npm:^0.13.3" - checksum: 10c0/e427dfa7f54c967c009e7642289a13e7d51feed5472f12f6b228e8c49f3d6493612333171f8580e84e666b6ac0bd149bc131222febf8c06660394a909d019a1b - languageName: node - linkType: hard - "own-keys@npm:^1.0.1": version: 1.0.1 resolution: "own-keys@npm:1.0.1" @@ -23702,13 +22679,6 @@ __metadata: languageName: node linkType: hard -"path-browserify@npm:^1.0.1": - version: 1.0.1 - resolution: "path-browserify@npm:1.0.1" - checksum: 10c0/8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 - languageName: node - linkType: hard - "path-exists@npm:^3.0.0": version: 3.0.0 resolution: "path-exists@npm:3.0.0" @@ -23790,13 +22760,6 @@ __metadata: languageName: node linkType: hard -"perfect-freehand@npm:^1.2.2": - version: 1.2.2 - resolution: "perfect-freehand@npm:1.2.2" - checksum: 10c0/8f7ae1cd24bdd91b51b06eb8a02bee1b4ecef361df9e3ef9a56aa942e14f59820cccff919eb33831493e12af2a6b7f8617cbdc59bf0b11723f4ffdc8fe325f1a - languageName: node - linkType: hard - "performance-now@npm:^2.1.0": version: 2.1.0 resolution: "performance-now@npm:2.1.0" @@ -24110,20 +23073,6 @@ __metadata: languageName: node linkType: hard -"proxy-compare@npm:3.0.0": - version: 3.0.0 - resolution: "proxy-compare@npm:3.0.0" - checksum: 10c0/9740af3709496b16ba18ebc337df5ca4c103f345436a8c0ec2e09217b7a06e119c145bedfe7fc4ad50b77b30fa804efaa6a7fe147eafb61aaf7ef44e387710f5 - languageName: node - linkType: hard - -"proxy-compare@npm:^3.0.0": - version: 3.0.1 - resolution: "proxy-compare@npm:3.0.1" - checksum: 10c0/1e3631ef32603d4de263860ce02d84b48384dce9b62238b2148b3c58a4e4ec5b06644615dcc196a339f73b9695443317099d55a9173e02ce8492088c9330c00b - languageName: node - linkType: hard - "proxy-from-env@npm:^1.1.0": version: 1.1.0 resolution: "proxy-from-env@npm:1.1.0" @@ -24131,15 +23080,6 @@ __metadata: languageName: node linkType: hard -"proxy-memoize@npm:3.0.1": - version: 3.0.1 - resolution: "proxy-memoize@npm:3.0.1" - dependencies: - proxy-compare: "npm:^3.0.0" - checksum: 10c0/cfdd442365fb7081dcba427ded75a8a9b68af17e72eef8098aa2e6d625914ac4152021832c631f071660d2f61ec18aaaa07ec77142abaa50b12dcaa845de8e4c - languageName: node - linkType: hard - "psl@npm:^1.1.28": version: 1.15.0 resolution: "psl@npm:1.15.0" @@ -25720,7 +24660,7 @@ __metadata: languageName: node linkType: hard -"source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": +"source-map-js@npm:^1.0.2": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf