Variable walletConst

wallet: ZodObject<{
    balance: ZodString;
    last_transaction_hash: ZodNullable<ZodString>;
    last_transaction_lt: ZodNullable<ZodString>;
    seqno: ZodNullable<ZodNumber>;
    status: ZodString;
    wallet_id: ZodNullable<ZodNumber>;
    wallet_type: ZodNullable<ZodString>;
}, "strip", ZodTypeAny, {
    balance: string;
    last_transaction_hash: null | string;
    last_transaction_lt: null | string;
    seqno: null | number;
    status: string;
    wallet_id: null | number;
    wallet_type: null | string;
}, {
    balance: string;
    last_transaction_hash: null | string;
    last_transaction_lt: null | string;
    seqno: null | number;
    status: string;
    wallet_id: null | number;
    wallet_type: null | string;
}> = ...

Type declaration

  • balance: ZodString
  • last_transaction_hash: ZodNullable<ZodString>
  • last_transaction_lt: ZodNullable<ZodString>
  • seqno: ZodNullable<ZodNumber>
  • status: ZodString
  • wallet_id: ZodNullable<ZodNumber>
  • wallet_type: ZodNullable<ZodString>

Type declaration

  • balance: string
  • last_transaction_hash: null | string
  • last_transaction_lt: null | string
  • seqno: null | number
  • status: string
  • wallet_id: null | number
  • wallet_type: null | string

Type declaration

  • balance: string
  • last_transaction_hash: null | string
  • last_transaction_lt: null | string
  • seqno: null | number
  • status: string
  • wallet_id: null | number
  • wallet_type: null | string

Generated using TypeDoc