Skip to content
Snippets Groups Projects

implement RC delegations box related to issue 285

Merged mcfarhat requested to merge mcfarhat-285-add_rc_delegations into develop
4 files
+ 128
0
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 18
0
import { useQuery } from "@tanstack/react-query";
import fetchingService from "@/services/FetchingService";
const useRcDelegations = (delegatorAccount: string, limit: number) => {
const {
data: rcDelegationsData,
isLoading: isRcDelegationsLoading,
isError: isRcDelegationsError,
} = useQuery({
queryKey: ["RcDelegations", delegatorAccount, limit],
queryFn: () => fetchingService.getRcDelegations(delegatorAccount, limit),
refetchOnWindowFocus: false,
});
return { rcDelegationsData, isRcDelegationsLoading, isRcDelegationsError };
};
export default useRcDelegations;
\ No newline at end of file
Loading