Interface UnsignedTransaction

Unsigned Transaction

This is being returned from transaction methods, if no private key was given

interface UnsignedTransaction {
    broadcasted: boolean;
    requestProcessingTime: number;
    signatureHash: string;
    transactionJSON: object;
    unsignedTransactionBytes: string;
}

Properties

broadcasted: boolean
requestProcessingTime: number
signatureHash: string
transactionJSON: object
unsignedTransactionBytes: string