MCPcopy Create free account
hub / github.com/evolify/dumpfun / useLaunchpadsStats

Function useLaunchpadsStats

common/hooks/api.ts:44–56  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

42}
43
44export 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
58export function useLaunchpadDetail(launchpad: Launchpad, duration: Duration) {
59 const config = LaunchpadConfig[launchpad]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected