account: ZodObject<{
balance: ZodString;
code: ZodNullable<ZodString>;
data: ZodNullable<ZodString>;
frozen_hash: ZodNullable<ZodString>;
last_transaction_hash: ZodNullable<ZodString>;
last_transaction_lt: ZodNullable<ZodString>;
status: ZodUnion<[ZodLiteral<"uninit">, ZodLiteral<"frozen">, ZodLiteral<"active">, ZodLiteral<"nonexist">]>;
}, "strip", ZodTypeAny, {
balance: string;
code: null | string;
data: null | string;
frozen_hash: null | string;
last_transaction_hash: null | string;
last_transaction_lt: null | string;
status: "active" | "frozen" | "uninit" | "nonexist";
}, {
balance: string;
code: null | string;
data: null | string;
frozen_hash: null | string;
last_transaction_hash: null | string;
last_transaction_lt: null | string;
status: "active" | "frozen" | "uninit" | "nonexist";
}> = ...
Type declaration
balance: ZodString
code: ZodNullable<ZodString>
data: ZodNullable<ZodString>
frozen_hash: ZodNullable<ZodString>
last_transaction_hash: ZodNullable<ZodString>
last_transaction_lt: ZodNullable<ZodString>
status: ZodUnion<[ZodLiteral<"uninit">, ZodLiteral<"frozen">, ZodLiteral<"active">, ZodLiteral<"nonexist">]>
Type declaration
balance: string
code: null | string
data: null | string
frozen_hash: null | string
last_transaction_hash: null | string
last_transaction_lt: null | string
status: "active" | "frozen" | "uninit" | "nonexist"
Type declaration
balance: string
code: null | string
data: null | string
frozen_hash: null | string
last_transaction_hash: null | string
last_transaction_lt: null | string
status: "active" | "frozen" | "uninit" | "nonexist"