This package has been deprecated

Author message:

Please use @whaleshares/wlsjs, wlsjs is now depreciated

wlsjs

0.1.1 • Public • Published

Steem.js

Steem.js the JavaScript API for Steem blockchain

Documentation

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

Browser

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

CDN

https://cdn.steemjs.com/lib/latest/steem.min.js

<script src="//cdn.steemjs.com/lib/latest/steem.min.js"></script>

Webpack

Please have a look at the webpack usage example.

Server

Install

$ npm install steem --save

WebSockets

wss://steemd.steemit.com By Default
wss://node.steem.ws
wss://this.piston.rocks

Examples

Broadcast Vote

var steem = require('steem');

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

Get Accounts

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

Get State

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

Reputation Formatter

var reputation = steem.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 Steemit Chat https://steemit.chat/ channel #steemjs.

Issues

When you find issues, please report them!

License

MIT

Package Sidebar

Install

npm i wlsjs

Weekly Downloads

0

Version

0.1.1

License

MIT

Unpacked Size

14.4 MB

Total Files

81

Last publish

Collaborators

  • kennybll