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 34 | 2x 2x 2x 2x 3x 3x 3x | import useSWR from 'swr';
import type { XRPData } from '../types/api';
const url = `${process.env.NEXT_PUBLIC_DOMAIN}/api/xrp`;
const fetchXRP = async (url: string): Promise<XRPData> => {
const response = await fetch(url);
Iif (!response.ok) {
throw new Error(`Failed to fetch XRP data: ${response.statusText}`);
}
const data = await response.json();
return data as XRPData;
};
const useXRP = () => {
const { data, error, isLoading } = useSWR<XRPData>(url, fetchXRP, {
dedupingInterval: 5000,
keepPreviousData: true,
fallbackData: {
price: 0,
todaySummary: '',
todayPorcentage: '0%',
},
});
return {
data,
error,
loading: isLoading,
};
};
export default useXRP;
|