@quantara/sdk
Version:
JavaScript/TypeScript SDK for interacting with Quantara Protocol on Neura Testnet
8 lines (7 loc) • 474 B
TypeScript
export declare const ZERO_DATA = "0x";
export declare function hashData(dataTypes: string[], dataValues: (string | number | bigint | boolean)[]): string;
export declare function hashString(string: string): string;
export declare function hashDataMap<R extends Record<string, [dataTypes: string[], dataValues: (string | number | bigint | boolean)[]] | undefined>>(map: R): {
[K in keyof R]: string;
};
export declare function keccakString(string: string): `0x${string}`;