1.0.0 • Published 9 years ago

bitproof v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
9 years ago

Bitproof for Node.js

Installation

You can install Bitproof with npm:

$ npm install bitproof

Certify

// dependencies
var Bitproof = require('bitproof');

// Find your API credentials in your Bitproof Dashboard
var notary = new Bitproof(YOUR_API_KEY, YOUR_SECRET_KEY);

// push some hex in the blockchain
notary.push(HEX_UP_TO_40_BYTES, function(result) {
    console.log(result);
}, function(err) {
    console.log(err);
});

Applications using Bitproof for Node.js