()
| 42 | } |
| 43 | |
| 44 | export function useLaunchpadsStats() { |
| 45 | const { data, isLoading, error, mutate } = useSWR<LaunchpadsInfo[]>( |
| 46 | LaunchpadsStatsUrl, |
| 47 | getLaunchpadsStats |
| 48 | ) |
| 49 | |
| 50 | return { |
| 51 | data, |
| 52 | isLoading, |
| 53 | error, |
| 54 | mutate, |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | export function useLaunchpadDetail(launchpad: Launchpad, duration: Duration) { |
| 59 | const config = LaunchpadConfig[launchpad] |
nothing calls this directly
no outgoing calls
no test coverage detected