Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 2x 2x 2x 2x 2x 2x 5x 5x 5x | import useSWR from 'swr';
import createFetcher from '@/helpers/createFetcher';
import { xrpSchema } from '../types/schemas';
import type { XRPData } from '../types/api';
const url = `${process.env.NEXT_PUBLIC_DOMAIN}/api/xrp`;
const fetchXRP = createFetcher(xrpSchema, '/api/xrp');
const useXRP = (): {
data: XRPData | undefined;
error: Error | undefined;
loading: boolean;
} => {
const { data, error, isLoading } = useSWR<XRPData, Error>(url, fetchXRP, {
dedupingInterval: 5000,
keepPreviousData: true,
fallbackData: {
price: 0,
todaySummary: '',
todayPercentage: '0%',
},
});
return {
data,
error,
loading: isLoading,
};
};
export default useXRP;
|