export interface TransactionBase {
readonly hash: Hash256;
readonly type: TransactionType;
readonly attributes: Attribute[];
readonly outputs: Output[];
readonly inputs: Input[];
readonly references: Output[];
readonly unspentOutputs: Output[];
readonly [OpaqueTagSymbol0]: unique symbol;
}