1.0.2 • Published 7 years ago

minimaldata v1.0.2

Weekly downloads
113
License
MIT
Repository
github
Last release
7 years ago

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