@coinbase/agentkit
Version: 
Coinbase AgentKit core primitives
16 lines (15 loc) • 373 B
TypeScript
import { z } from "zod";
export declare const WrapEthSchema: z.ZodObject<{
    amountToWrap: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amountToWrap: string;
}, {
    amountToWrap: string;
}>;
export declare const UnwrapEthSchema: z.ZodObject<{
    amountToUnwrap: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amountToUnwrap: string;
}, {
    amountToUnwrap: string;
}>;