Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 493 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 493 Bytes

nodewm

Is a FAST nodejs library for signing WebMoney requests written in C/C++

Install:

Using npm

npm install nodewm

From sources

  1. go to the directory with nodewm library

  2. execute node-waf configure build

  3. get module from ./build/default/wmsigner.node

Using nodewm

var wmsigner = require("./build/default/wmsigner");

var sign = wmsigner.sign('Your Wallet', 'Your Password', 'Your Base 64 Encoded KWM file', 'String to sign');

console.log('SIGN: ' + sign);