Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 792 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 792 Bytes

minimaldata

NPM Package Build Status js-standard-style

Following BIP62.3, this module validates that a script uses only minimal data pushes.

Example

var minimaldata = require('minimaldata')

// OP_PUSHDATA4, 1 byte
var script = new Buffer('4e0100000000', 'hex')
console.log(minimaldata(script))
// => false

script = new Buffer('0101', 'hex')
console.log(minimaldata(script))
// => true

LICENSE MIT