import type { GetSocialsReturnType, UseQueryOptions } from '@/identity/types'; import { getSocials } from '@/identity/utils/getSocials'; import { DEFAULT_QUERY_OPTIONS } from '@/internal/constants'; import { useQuery } from '@tanstack/react-query'; import type { Chain } from 'viem'; import { mainnet } from 'viem/chains'; type UseSocialsOptions = { ensName: string; chain?: Chain; }; export const useSocials = ( { ensName, chain = mainnet }: UseSocialsOptions, queryOptions?: UseQueryOptions, ) => { const queryKey = ['useSocials', ensName, chain.id]; return useQuery({ queryKey, queryFn: () => getSocials({ ensName, chain }), ...DEFAULT_QUERY_OPTIONS, ...queryOptions, }); };