UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

10 lines 403 B
import { z } from 'zod'; import { OffchainLookupIsmConfigSchema } from '../ism/types.js'; import { RouterConfigSchema } from '../router/types.js'; export const IcaRouterConfigSchema = RouterConfigSchema.extend({ commitmentIsm: OffchainLookupIsmConfigSchema, }); export const DerivedIcaRouterConfigSchema = IcaRouterConfigSchema.extend({ address: z.string(), }); //# sourceMappingURL=types.js.map