UNPKG

@zlattice/lattice-js

Version:

Lattice blockchain TypeScript SDK with dual module support (CJS + ESM)

12 lines 517 B
import { z } from "zod"; export declare const HashSchema: z.ZodString; export type Hash = z.infer<typeof HashSchema>; export declare const AddressSchema: z.ZodUnion<[z.ZodString, z.ZodString]>; export type Addr = z.infer<typeof AddressSchema>; export declare const UInt64Schema: z.ZodEffects<z.ZodEffects<z.ZodNumber, number, number>, number, number>; export type UInt64 = z.infer<typeof UInt64Schema>; export type KeyPair = { privateKey: Buffer; publicKey: Buffer; }; //# sourceMappingURL=type.alias.d.ts.map