UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

12 lines (10 loc) 249 B
/** * The argument object for [[TransactionApi.signAndBroadcastTransaction]] * * @module core */ export interface UnsignedTransactionArgs { unsignedHexMessage: string; senderPrivateKey: string; senderPublicKey: string; }