UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

14 lines (13 loc) 390 B
/** @ignore */ /** @internal */ /** * Try to rebuild the form data based on unsignedBytes in a response. * @param hexUnsignedBytes string with unsignedBytes * @returns Any object, expected to match the form data * @throws Error on failure * @internal */ export declare function rebuildTransactionPostData(hexUnsignedBytes: string): { requestType: string; rebuiltData: any; };