0.7.113 • Published 6 years ago

ezj v0.7.113

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

GitHub license Ezira.js channel on steemit.chat

Ezira.js

Ezira.js the JavaScript API for Ezira blockchain

Documentation

Here is full documentation: https://github.com/eziranetwork/ezj/tree/master/doc

Browser

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

CDN

https://cdn.ezira.io/lib/latest/ezira.min.js

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

Webpack

Please have a look at the webpack usage example.

Server

Install

$ npm install ezira --save

RPC Servers

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

Examples

Broadcast Vote

var ezira = require('ezj');

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

Get Accounts

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

Get State

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

Reputation Formatter

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

Issues

When you find issues, please report them!

License

MIT