UNPKG

@riverfl0w/dune-client

Version:

A TypeScript client for querying the Dune API, designed to simplify the integration of Dune's powerful analytics into your projects.

9 lines (6 loc) 167 B
import { z } from 'zod'; const ErrorResponse = z.object({ error: z.string(), }); type ErrorResponse = z.infer<typeof ErrorResponse>; export default ErrorResponse;