Schemas: {
message: ZodObject<{
from: ZodString;
gasFeeCap: ZodDefault<ZodString>;
gasLimit: ZodDefault<ZodNumber>;
gasPremium: ZodDefault<ZodString>;
method: ZodDefault<ZodNumber>;
nonce: ZodDefault<ZodNumber>;
params: ZodDefault<ZodString>;
to: ZodString;
value: ZodEffects<ZodString, string, string>;
version: ZodDefault<ZodLiteral<0>>;
}, "strip", ZodTypeAny, {
from: string;
gasFeeCap: string;
gasLimit: number;
gasPremium: string;
method: number;
nonce: number;
params: string;
to: string;
value: string;
version: 0;
}, {
from: string;
gasFeeCap?: string;
gasLimit?: number;
gasPremium?: string;
method?: number;
nonce?: number;
params?: string;
to: string;
value: string;
version?: 0;
}>;
messagePartial: ZodObject<{
from: ZodString;
gasFeeCap: ZodOptional<ZodDefault<ZodString>>;
gasLimit: ZodOptional<ZodDefault<ZodNumber>>;
gasPremium: ZodOptional<ZodDefault<ZodString>>;
method: ZodOptional<ZodDefault<ZodNumber>>;
nonce: ZodOptional<ZodDefault<ZodNumber>>;
params: ZodOptional<ZodDefault<ZodString>>;
to: ZodString;
value: ZodEffects<ZodString, string, string>;
version: ZodOptional<ZodDefault<ZodLiteral<0>>>;
}, "strip", ZodTypeAny, {
from: string;
gasFeeCap: undefined | string;
gasLimit: undefined | number;
gasPremium: undefined | string;
method: undefined | number;
nonce: undefined | number;
params: undefined | string;
to: string;
value: string;
version: undefined | 0;
}, {
from: string;
gasFeeCap: undefined | string;
gasLimit: undefined | number;
gasPremium: undefined | string;
method: undefined | number;
nonce: undefined | number;
params: undefined | string;
to: string;
value: string;
version: undefined | 0;
}>;
} = ...