2016-11-02 02:30:37 +01:00
|
|
|
// {pubKey} OP_CHECKSIG
|
|
|
|
|
2018-12-28 05:23:23 +01:00
|
|
|
import * as bscript from '../../script'
|
2018-06-25 08:25:12 +02:00
|
|
|
const OPS = require('bitcoin-ops')
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2018-12-28 05:23:23 +01:00
|
|
|
export function check (script: Buffer | Array<number | Buffer>): boolean {
|
2018-12-28 17:55:07 +01:00
|
|
|
const chunks = <Array<number | Buffer>>bscript.decompile(script)
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
return chunks.length === 2 &&
|
2018-12-28 05:23:23 +01:00
|
|
|
bscript.isCanonicalPubKey(<Buffer>chunks[0]) &&
|
2016-11-02 02:30:37 +01:00
|
|
|
chunks[1] === OPS.OP_CHECKSIG
|
|
|
|
}
|
2016-11-02 04:33:46 +01:00
|
|
|
check.toJSON = function () { return 'pubKey output' }
|