Skip to content
Snippets Groups Projects
user avatar
adcpm authored
- Added new formatter for reply permlink
- Browser version updated
95db432b
History

Steem.js

Steem.js the JavaScript API for Steem blockchain

Documentation

Here is full documentation: https://github.com/adcpm/steem/tree/master/doc

Browser

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

CDN

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

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

Server

Install

$ npm install steem --save

WebSockets

wss://steemit.com/wspa By @steemit (Set By Default)
wss://node.steem.ws
wss://this.piston.rocks

Examples

Broadcast Vote

var steem = require('steem');

steem.broadcast.vote(username, password, 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 Slack https://steem.slack.com/ channel #steemjs.

Issues

When you find issues, please report them!

License

MIT