pawtils
Version:
This repository contains several utils to work with the cryptocurrency [Paw](https://paw.digital/) inside the browser.
15 lines • 412 B
TypeScript
/**
* Represents a RPC work generate response
*/
export interface IWorkGenerateResponse {
/**
* The work that was generated
*/
work: Uint8Array;
}
/**
* Parses the provided json into an abstract representation
* @param json - The json to parse
*/
export declare function parseWorkGenerateResponse(json: any): IWorkGenerateResponse;
//# sourceMappingURL=work-generate.d.ts.map