UNPKG

postchain-client

Version:

Client library for accessing a Postchain node through REST.

10 lines 237 B
import * as gtxTool from "../gtx/gtx"; /** * * Encodes the gtx using ASN.1. * @returns the gtx encoded */ export const encodeTransaction = (gtx) => { return gtxTool.serialize(gtx); }; //# sourceMappingURL=encodeTransaction.js.map