UNPKG

@pump-fun/shared-contracts

Version:

Shared contracts for Pump.fun microservices.

8 lines (5 loc) 144 B
import { z } from "zod"; export const UserSchema = z.object({ walletAddress: z.string(), }); export type User = z.infer<typeof UserSchema>;