@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
25 lines (22 loc) • 668 B
text/typescript
import { ChainType, isBatchingSupported } from '@lifi/sdk'
import type { ExtendedChain } from '@lifi/sdk'
import { useQuery } from '@tanstack/react-query'
export function useIsBatchingSupported(
chain?: ExtendedChain,
address?: string
) {
const enabled = chain && chain.chainType === ChainType.EVM && !!address
const { data, isLoading } = useQuery({
queryKey: ['isBatchingSupported', chain?.id, address],
queryFn: () => {
return isBatchingSupported({ chainId: chain!.id })
},
enabled,
staleTime: 3_600_000,
retry: false,
})
return {
isBatchingSupported: data,
isBatchingSupportedLoading: enabled && isLoading,
}
}