Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

ezj

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezj

Ezj is the JavaScript API Library for the Ezira blockchain

latest
Source
npmnpm
Version
0.7.113
Version published
Weekly downloads
21
40%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

eziranetwork

FAQs

Package last updated on 14 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts