Variable accountStateConst

accountState: ZodObject<{
    account_status: ZodNullable<ZodUnion<[ZodLiteral<"uninit">, ZodLiteral<"frozen">, ZodLiteral<"active">, ZodLiteral<"nonexist">]>>;
    balance: ZodNullable<ZodString>;
    code_hash: ZodNullable<ZodString>;
    data_hash: ZodNullable<ZodString>;
    frozen_hash: ZodNullable<ZodString>;
    hash: ZodString;
}, "strip", ZodTypeAny, {
    account_status: null | "active" | "frozen" | "uninit" | "nonexist";
    balance: null | string;
    code_hash: null | string;
    data_hash: null | string;
    frozen_hash: null | string;
    hash: string;
}, {
    account_status: null | "active" | "frozen" | "uninit" | "nonexist";
    balance: null | string;
    code_hash: null | string;
    data_hash: null | string;
    frozen_hash: null | string;
    hash: string;
}> = ...

Type declaration

  • account_status: ZodNullable<ZodUnion<[ZodLiteral<"uninit">, ZodLiteral<"frozen">, ZodLiteral<"active">, ZodLiteral<"nonexist">]>>
  • balance: ZodNullable<ZodString>
  • code_hash: ZodNullable<ZodString>
  • data_hash: ZodNullable<ZodString>
  • frozen_hash: ZodNullable<ZodString>
  • hash: ZodString

Type declaration

  • account_status: null | "active" | "frozen" | "uninit" | "nonexist"
  • balance: null | string
  • code_hash: null | string
  • data_hash: null | string
  • frozen_hash: null | string
  • hash: string

Type declaration

  • account_status: null | "active" | "frozen" | "uninit" | "nonexist"
  • balance: null | string
  • code_hash: null | string
  • data_hash: null | string
  • frozen_hash: null | string
  • hash: string

Generated using TypeDoc