@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
21 lines (20 loc) • 464 B
TypeScript
/** @ignore */
/** @internal */
export interface BaseTransaction {
type?: number;
version?: number;
subtype?: number;
timestamp?: number;
deadline?: number;
senderPublicKey?: string;
sender?: string;
recipient?: string;
amountNQT?: string;
feeNQT?: string;
referencedTransactionFullHash?: string;
signature?: string;
flags?: number;
ecBlockHeight?: number;
ecBlockId?: string;
cashBackId?: string;
}