Skip to content
This repository has been archived by the owner on May 23, 2021. It is now read-only.

Latest commit

 

History

History
40 lines (29 loc) · 1.31 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.31 KB

equihashjs-verify

NPM Build Status

JavaScript check for valid Equihash solutions. Ported from ZCASH on Python

Installation

npm install equihashjs-verify

Usage

var eq = require('equihashjs-verify')

var equihash = new eq.Equihash(eq.networks.bitcoingold)

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

var valid = equihash.verify(header, solution)
//returns boolean
var eq = require('equihashjs-verify')

var equihash = new eq.Equihash(eq.networks.bitcoingold)

var header = new Buffer(..., 'hex') // nonce may not be included in the header
var solution = new Buffer(..., 'hex') // do not include byte size preamble "fd4005"
var nonce = new Buffer(..., 'hex')

var valid = equihash.verify(header, solution, nonce)
//returns boolean

Example:

Verify