UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

9 lines 280 B
import { z } from 'zod'; import { ZHash } from '../../metadata/customZodTypes.js'; export const BigNumberSchema = z.string(); export const CallDataSchema = z.object({ to: ZHash, data: z.string(), value: BigNumberSchema.optional(), }); //# sourceMappingURL=types.js.map