@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
11 lines (10 loc) • 355 B
TypeScript
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;
}