node-peercoin is a simple wrapper for the Peercoin client's JSON-RPC API.
The API is equivalent to the API document here.
The methods are exposed as lower camelcase methods on the peercoin.Client
object.
npm install node-peercoin
-
Traverse to
~/.ppcoin
or~/Library/Application Support/PPCoin
and add a file calledppcoin.conf
if it doesn't already exist. -
Add these lines to the file:
rpcuser=username
rpcpassword=password
You will use these to login to the server.
-
Start your Litecoin client with the
-server
argument or runppcoind
-
You should now be able to communicate with Litecoin JSON-RPC API using the node-ppcoin library, try it out!
-
Find more installation instructions here
var peercoin = require('node-peercoin');
var client = new peercoin.Client('localhost', 9902, 'username', 'password');
var client = new peercoin.Client({
host: 'localhost',
port: 9902,
username: 'username',
password: 'password'
});
client.getBalance('*', 6, function(err, balance) {
if (err) console.log(err);
console.log('Balance: ' + balance);
});
client.getNetworkHashPS(function(err, hashps) {
if (err) console.log(err);
console.log('Network Hash Rate: ' + hashps);
});