Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 369 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 369 Bytes

equihashverify

nodejs native binding to check for valid Equihash solutions

##usage:

var ev = require('bindings')('equihashverify.node');

var header = new Buffer(..., 'hex');
var solution = new Buffer(..., 'hex'); //do not include byte size preamble "fd4005"

ev.verify(header, solution);
//returns boolean

##help https://zclassic.herokuapp.com