@bsv/overlay
Version:
BSV Blockchain Overlay Services Engine
14 lines • 587 B
TypeScript
/**
* Instructs the Overlay Services Engine about which outputs to admit and which previous outputs to retain. Returned by a Topic Manager.
*/
export type AdmittanceInstructions = {
/**
* The indices of all admissable outputs into the managed topic from the provided transaction.
*/
outputsToAdmit: number[];
/**
* The indices of all inputs from the provided transaction which spend previously-admitted outputs that should be retained for historical record-keeping.
*/
coinsToRetain: number[];
};
//# sourceMappingURL=AdmittanceInstructions.d.ts.map