1.0.4 • Published 1 year ago

ecash-minimaldata v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ecash-minimaldata

NPM Package

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

Example

var minimaldata = require('ecash-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