Variable walletInformationConst

walletInformation: ZodObject<{
    account_state: ZodString;
    balance: ZodUnion<[ZodNumber, ZodString]>;
    last_transaction_id: ZodObject<{
        @type: ZodLiteral<"internal.transactionId">;
        hash: ZodString;
        lt: ZodString;
    }, "strip", ZodTypeAny, {
        @type: "internal.transactionId";
        hash: string;
        lt: string;
    }, {
        @type: "internal.transactionId";
        hash: string;
        lt: string;
    }>;
    seqno: ZodNumber;
    wallet: ZodBoolean;
    wallet_id: ZodUnion<[ZodNumber, ZodString]>;
    wallet_type: ZodString;
}, "strip", ZodTypeAny, {
    account_state: string;
    balance: string | number;
    last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; };
    seqno: number;
    wallet: boolean;
    wallet_id: string | number;
    wallet_type: string;
}, {
    account_state: string;
    balance: string | number;
    last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; };
    seqno: number;
    wallet: boolean;
    wallet_id: string | number;
    wallet_type: string;
}> = ...

Type declaration

  • account_state: ZodString
  • balance: ZodUnion<[ZodNumber, ZodString]>
  • last_transaction_id: ZodObject<{
        @type: ZodLiteral<"internal.transactionId">;
        hash: ZodString;
        lt: ZodString;
    }, "strip", ZodTypeAny, {
        @type: "internal.transactionId";
        hash: string;
        lt: string;
    }, {
        @type: "internal.transactionId";
        hash: string;
        lt: string;
    }>
  • seqno: ZodNumber
  • wallet: ZodBoolean
  • wallet_id: ZodUnion<[ZodNumber, ZodString]>
  • wallet_type: ZodString

Type declaration

  • account_state: string
  • balance: string | number
  • last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; }
  • seqno: number
  • wallet: boolean
  • wallet_id: string | number
  • wallet_type: string

Type declaration

  • account_state: string
  • balance: string | number
  • last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; }
  • seqno: number
  • wallet: boolean
  • wallet_id: string | number
  • wallet_type: string

Generated using TypeDoc