2016-11-02 12:30:37 +11:00
|
|
|
// OP_0 {scriptHash}
|
|
|
|
|
2018-12-28 14:55:30 +09:00
|
|
|
import * as bscript from '../../script'
|
2018-12-29 21:39:19 +09:00
|
|
|
import { OPS } from '../../script'
|
2016-11-02 12:30:37 +11:00
|
|
|
|
2018-12-28 14:55:30 +09:00
|
|
|
export function check (script: Buffer | Array<number | Buffer>): boolean {
|
2018-06-25 16:37:45 +10:00
|
|
|
const buffer = bscript.compile(script)
|
2016-11-02 12:30:37 +11:00
|
|
|
|
|
|
|
return buffer.length === 34 &&
|
|
|
|
buffer[0] === OPS.OP_0 &&
|
|
|
|
buffer[1] === 0x20
|
|
|
|
}
|
2016-11-02 14:33:46 +11:00
|
|
|
check.toJSON = function () { return 'Witness scriptHash output' }
|