Variable accountStateConst
accountState: ZodObject<
{
account_status: ZodNullable<
ZodUnion<
readonly [
ZodLiteral<"uninit">,
ZodLiteral<"frozen">,
ZodLiteral<"active">,
ZodLiteral<"nonexist">,
],
>,
>;
balance: ZodNullable<ZodString>;
code_hash: ZodNullable<ZodString>;
data_hash: ZodNullable<ZodString>;
extra_currencies: ZodOptional<
ZodNullable<ZodRecord<ZodString, ZodString>>,
>;
frozen_hash: ZodNullable<ZodString>;
hash: ZodString;
},
$strip,
> = ...