Interface ITransactionOnNetwork

interface ITransactionOnNetwork {
    contractResults: IContractResults;
    data: Buffer;
    function?: string;
    hash: string;
    isCompleted?: boolean;
    logs: ITransactionLogs;
    receipt: ITransactionReceipt;
    receiver: IAddress;
    sender: IAddress;
    status: ITransactionStatus;
    type: string;
    value: string;
}

Properties

contractResults: IContractResults
data: Buffer
function?: string
hash: string
isCompleted?: boolean
receiver: IAddress
sender: IAddress
type: string
value: string