UNPKG

@macalinao/zod-solana

Version:

Zod schemas for Solana types with @solana/kit integration

12 lines (11 loc) 394 B
import * as z from "zod"; //#region src/u64-string-schema.d.ts /** * A Zod schema for u64 values as strings. * Validates that a string represents a valid u64 value (0 to 2^64-1). * Returns the value as a string to preserve precision for large numbers. */ declare const u64StringSchema: z.ZodType<string>; //#endregion export { u64StringSchema }; //# sourceMappingURL=u64-string-schema.d.ts.map