(resource: string, init: RequestInit)
| 16 | const TrendingUrl = "https://datapi.jup.ag/v1/pools/runners" |
| 17 | |
| 18 | export const fetcher = (resource: string, init: RequestInit) => |
| 19 | fetch(resource, init).then(res => res.json()) |
| 20 | |
| 21 | async function getLaunchpadsStats() { |
| 22 | const res = await fetch(LaunchpadsStatsUrl) |
nothing calls this directly
no outgoing calls
no test coverage detected