2022-09-21 10:41:36 -04:00
|
|
|
import { PaymentAccountForm, PaymentAccountFormField } from "../protobuf/pb_pb";
|
2022-05-04 21:30:48 -04:00
|
|
|
/**
|
|
|
|
* Collection of utilities for working with Haveno.
|
|
|
|
*/
|
|
|
|
export default class HavenoUtils {
|
|
|
|
static logLevel: number;
|
|
|
|
static centinerosToAUMultiplier: number;
|
|
|
|
static months: string[];
|
|
|
|
static lastLogTimeMs: number;
|
|
|
|
/**
|
|
|
|
* Set the log level with 0 being least verbose.
|
|
|
|
*
|
|
|
|
* @param {int} level - the log level
|
|
|
|
*/
|
|
|
|
static setLogLevel(level: number): Promise<void>;
|
|
|
|
/**
|
|
|
|
* Get the log level.
|
|
|
|
*
|
|
|
|
* @return {int} the current log level
|
|
|
|
*/
|
|
|
|
static getLogLevel(): number;
|
|
|
|
/**
|
|
|
|
* Log a message. // TODO (woodser): switch to log library?
|
|
|
|
*
|
|
|
|
* @param {int} level - log level of the message
|
|
|
|
* @param {string} msg - message to log
|
|
|
|
*/
|
|
|
|
static log(level: number, msg: string): void;
|
|
|
|
/**
|
|
|
|
* Format a timestamp as e.g. Jul-07 hh:mm:ss:ms. // TODO: move to GenUtils?
|
|
|
|
*
|
|
|
|
* @param {number} timestamp - the timestamp in milliseconds to format
|
|
|
|
* @return {string} the formatted timestamp
|
|
|
|
*/
|
|
|
|
static formatTimestamp(timestamp: number): string;
|
|
|
|
/**
|
|
|
|
* Kill the given process.
|
|
|
|
*
|
|
|
|
* TODO (woodser): move this to monero-javascript GenUtils.js as common utility
|
|
|
|
*
|
|
|
|
* @param {Process} process - the nodejs child process to child
|
|
|
|
* @param {String} signal - the kill signal, e.g. SIGTERM, SIGKILL, SIGINT (default)
|
|
|
|
*/
|
|
|
|
static kill(process: any, signal?: string): Promise<void>;
|
|
|
|
/**
|
|
|
|
* Convert centineros to atomic units.
|
|
|
|
*
|
|
|
|
* @param {number} centineros - denominates an amount of XMR in centineros
|
|
|
|
* @return {BigInt} the amount denominated in atomic units
|
|
|
|
*/
|
|
|
|
static centinerosToAtomicUnits(centineros: number): bigint;
|
2022-12-17 05:06:40 -05:00
|
|
|
/**
|
|
|
|
* Stringify a payment account form.
|
|
|
|
*
|
|
|
|
* @param form - form to stringify
|
|
|
|
* @return {string} the stringified form
|
|
|
|
*/
|
|
|
|
static formToString(form: PaymentAccountForm): string;
|
2022-09-21 10:41:36 -04:00
|
|
|
/**
|
|
|
|
* Get a form field value.
|
|
|
|
*
|
|
|
|
* @param {PaymentAccountForm} form - form to get the field value from
|
2022-12-17 05:06:40 -05:00
|
|
|
* @param {PaymentAccountFormField.FieldId} fieldId - id of the field to get the value from
|
2022-09-21 10:41:36 -04:00
|
|
|
* @return {string} the form field value
|
|
|
|
*/
|
2022-12-17 05:06:40 -05:00
|
|
|
static getFormValue(form: PaymentAccountForm, fieldId: PaymentAccountFormField.FieldId): string;
|
2022-09-21 10:41:36 -04:00
|
|
|
/**
|
|
|
|
* Set a form field value.
|
|
|
|
*
|
|
|
|
* @param {PaymentAccountFormField.FieldId} fieldId - id of the field to set the value of
|
|
|
|
* @param {string} value - field value to set
|
|
|
|
* @param {PaymentAccountForm} form - form to get the field from
|
|
|
|
* @return {string} the form field value
|
|
|
|
*/
|
|
|
|
static setFormValue(fieldId: PaymentAccountFormField.FieldId, value: string, form: PaymentAccountForm): void;
|
2022-05-04 21:30:48 -04:00
|
|
|
}
|