Skip to content

BTCGPU/equihashjs-verify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

equihashjs-verify

NPM Build Status

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

ZCASH implementation: https://github.com/zcash/zcash/blob/master/qa/rpc-tests/test_framework/equihash.py

Installation

npm install equihashjs-verify

Node version: >= 10. Older versions may work but not testable because mocha dropped the support.

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%