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