zic-evm-sdk
Version:
An sdk for interacting with zebec card evm contracts
16 lines (15 loc) • 473 B
TypeScript
/**
* Converts percentage value to bps
* @param percent
* @returns
*/
export declare function percentToBps(percent: string): string;
/**
* Coverts bps value to percentage
* @param bps
* @returns
*/
export declare function bpsToPercent(bps: string): string;
export declare function hashSHA256(input: string): Promise<string>;
export declare function isEmailValid(value: string): boolean;
export declare function areDatesOfSameDay(date1: Date, date2: Date): boolean;