Variable EvmDataParameterConditionListSchemaConst
EvmDataParameterConditionListSchema: ZodObject<
{
name: ZodUnion<[ZodString, ZodString]>;
operator: ZodEnum<["in", "not in"]>;
values: ZodArray<ZodString, "many">;
},
"strip",
ZodTypeAny,
{ name: string; operator: "in"
| "not in"; values: string[] },
{ name: string; operator: "in" | "not in"; values: string[] },
> = ...
A list of comparables to apply against encoded arguments in the transaction's
data
field.