UNPKG

@b3dotfun/anyspend-sdk

Version:

React Hooks and UI Components for AnySpend by B3

10 lines (8 loc) 236 B
import { z } from "zod"; export const zGlobalWallet = z.object({ chain: z.number(), encryptedPrvkey: z.string(), address: z.string(), orderId: z.string().nullable() }); export type GlobalWallet = z.infer<typeof zGlobalWallet>;