@node-dlc/bitcoin
Version:
16 lines (15 loc) • 385 B
TypeScript
/**
* Specifies what a time lock is based on. Currently this can either be
* a block-based or timestamp-based time lock and is used for absolute
* time locks (nLocktime) or relative time locks (nSequence).
*/
export declare enum TimeLockMode {
/**
* Block height based time lock
*/
Block = 0,
/**
* Unix timestamps based time lock
*/
Time = 1
}