1.2.10 • Published 5 years ago

scorumjh v1.2.10

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

Scorumjh.js

CircleCI

Scorum-jh.js a modified JavaScript API for Scorum blockchain

Documentation

Here is full documentation: https://github.com/scorum/scorum-js/tree/master/doc

Browser

<script src="./scorumjh.min.js"></script>
<script>
scorum.api.getAccounts(['alice', 'bob'], function(err, response){
    console.log(err, response);
});
</script>

Webpack

Please have a look at the webpack usage example.

Server

Install

$ build it

Examples

Broadcast Vote

var scorum = require('@scorum/scorum-js');

var wif = scorum.auth.toWif(username, password, 'posting');
scorum.broadcast.vote(wif, voter, author, permlink, weight, function(err, result) {
  console.log(err, result);
});

Get Accounts

scorum.api.getAccounts(['bob', 'alice'], function(err, result) {
  console.log(err, result);
});

Reputation Formatter

var reputation = scorum.formatter.reputation(user.reputation);
console.log(reputation);

Contributions

Patches are welcome! Contributors are listed in the package.json file. Please run the tests before opening a pull request and make sure that you are passing all of them. If you would like to contribute, but don't know what to work on, check the issues list.

Issues

When you find issues, please report them!

License

MIT