UNPKG

@b3dotfun/anyspend-sdk

Version:

React Hooks and UI Components for AnySpend by B3

11 lines (9 loc) 212 B
import { z } from "zod"; export const zPermit = z.object({ ownerAddress: z.string(), deadline: z.number(), v: z.number(), r: z.string(), s: z.string() }); export type Permit = z.infer<typeof zPermit>;