(url: string)
| 30 | } |
| 31 | |
| 32 | async function getLaunchpadDetail(url: string) { |
| 33 | const res = await fetch(url) |
| 34 | const data = await res.json() |
| 35 | return (data?.pools as PoolInfo[]) || [] |
| 36 | } |
| 37 | |
| 38 | async function getTrending(url: string) { |
| 39 | const res = await fetch(url) |
nothing calls this directly
no outgoing calls
no test coverage detected