Interface ITransactionPayload

interface ITransactionPayload {
    encoded(): string;
    length(): number;
    toString(): string;
    valueOf(): Buffer;
}

Methods