UNPKG

ox

Version:

Ethereum Standard Library

76 lines 3.93 kB
import * as z from 'zod/mini'; /** Hex string schema. */ export declare const Hex: z.ZodMiniTemplateLiteral<`0x${string}`>; /** Returns a byte-sized hex string schema. */ export declare function sizedHex(size: number): z.ZodMiniTemplateLiteral<`0x${string}`>; /** 4-byte hex string schema. */ export declare const Hex4: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 8-byte hex string schema. */ export declare const Hex8: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 12-byte hex string schema. */ export declare const Hex12: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 16-byte hex string schema. */ export declare const Hex16: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 20-byte hex string schema. */ export declare const Hex20: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 24-byte hex string schema. */ export declare const Hex24: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 32-byte hex string schema. */ export declare const Hex32: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 40-byte hex string schema. */ export declare const Hex40: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 48-byte hex string schema. */ export declare const Hex48: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 56-byte hex string schema. */ export declare const Hex56: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 64-byte hex string schema. */ export declare const Hex64: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 72-byte hex string schema. */ export declare const Hex72: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 80-byte hex string schema. */ export declare const Hex80: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 88-byte hex string schema. */ export declare const Hex88: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 96-byte hex string schema. */ export declare const Hex96: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 104-byte hex string schema. */ export declare const Hex104: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 112-byte hex string schema. */ export declare const Hex112: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 120-byte hex string schema. */ export declare const Hex120: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 128-byte hex string schema. */ export declare const Hex128: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 136-byte hex string schema. */ export declare const Hex136: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 144-byte hex string schema. */ export declare const Hex144: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 152-byte hex string schema. */ export declare const Hex152: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 160-byte hex string schema. */ export declare const Hex160: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 168-byte hex string schema. */ export declare const Hex168: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 176-byte hex string schema. */ export declare const Hex176: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 184-byte hex string schema. */ export declare const Hex184: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 192-byte hex string schema. */ export declare const Hex192: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 200-byte hex string schema. */ export declare const Hex200: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 208-byte hex string schema. */ export declare const Hex208: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 216-byte hex string schema. */ export declare const Hex216: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 224-byte hex string schema. */ export declare const Hex224: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 232-byte hex string schema. */ export declare const Hex232: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 240-byte hex string schema. */ export declare const Hex240: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 248-byte hex string schema. */ export declare const Hex248: z.ZodMiniTemplateLiteral<`0x${string}`>; /** 256-byte hex string schema. */ export declare const Hex256: z.ZodMiniTemplateLiteral<`0x${string}`>; //# sourceMappingURL=Hex.d.ts.map