(response: unknown)
| 11 | |
| 12 | const fetchEtherscanResponse = makeSolidFetch({ |
| 13 | async verifyResponse(response: unknown): Promise<boolean> { |
| 14 | // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition |
| 15 | return (response as any)?.message === "OK" || false; |
| 16 | }, |
| 17 | }); |
| 18 | |
| 19 | interface FetchFilesOptions { |
nothing calls this directly
no outgoing calls
no test coverage detected