This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

ecash-minimaldata

1.0.4 • Public • Published

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

Package Sidebar

Install

npm i ecash-minimaldata

Weekly Downloads

1

Version

1.0.4

License

MIT

Unpacked Size

4.85 kB

Total Files

4

Last publish

Collaborators

  • bytesofman