@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
18 lines (15 loc) • 417 B
text/typescript
/**
* Transaction Response
*
* @module core
* */
export interface TransactionResponse {
readonly fullHash: string;
readonly transaction: string;
readonly signatureHash: string;
readonly unsignedTransactionBytes: string;
readonly transactionJSON: object;
readonly broadcasted: boolean;
readonly requestProcessingTime: number;
readonly transactionBytes: string;
}