Skip to content

Latest commit

 

History

History
102 lines (84 loc) · 3.51 KB

README.md

File metadata and controls

102 lines (84 loc) · 3.51 KB

GitHub license

wehelpjs

wehelpjs the JavaScript API for WeYouMe blockchain

Documentation

Here is full documentation: https://github.com/WeYouMe/wehelpjs/tree/master/doc

Browser

<script src="./wehelpjs.min.js"></script>
<script>
wehelpjs.api.getAccounts(['ned', 'dan'], function(err, response){
    console.log(err, response);
});
</script>

CDN

https://cdn.WeYouMe.io/lib/latest/wehelpjs.min.js

<script src="//cdn.WeYouMe.io/lib/latest/wehelpjs.min.js"></script>

Webpack

Please have a look at the webpack usage example.

Server

Install

$ npm install --save wehelpjs

RPC Servers

https://api.WeYouMe.io By Default
https://peer0.WeYouMe.io:8090
https://peer0.WeYouMe.io:8091
https://peer0.WeYouMe.io:8092

Examples

Broadcast Vote

var wehelpjs = require('wehelpjs');

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

Get Accounts

wehelpjs.api.getAccounts(['ned', 'dan'], function(err, result) {
	console.log(err, result);
});

Get State

wehelpjs.api.getState('/trends/funny', function(err, result) {
	console.log(err, result);
});

Reputation Formatter

var reputation = wehelpjs.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 or on the WeYouMe Github

Issues

When you find issues, please report them!

License

MIT