@ixily/activ
Version:
Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.
14 lines (13 loc) • 545 B
TypeScript
export declare const deterministicStringify: (obj: any, opts?: any) => string | undefined;
/**
* Returns a hash code from a string
* Pre signing hash applicable to json strings objects
*/
export declare const hashJsonStringPreSign: (str: string) => string;
/**
*
* Receives an amount of arrays with some length each
* and returns an evenly mixed array with all the elements of the input arrays
* with no repetition or missing element in a deterministic way
*/
export declare const deterministicEvenlyMixedArray: <T>(arrs: T[][]) => T[];