Giter VIP home page Giter VIP logo

hivejs's Introduction

GitHub license js channel on discord

Hivejs

Hivejs the JavaScript API for Hive blockchain

Documentation

Here is full documentation: https://github.com/openhive-network/hivejs/tree/master/doc

Browser

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

CDN

https://cdn.jsdelivr.net/npm/@hivechain/hivejs/dist/hivejs.min.js

<script src="https://cdn.jsdelivr.net/npm/@hivechain/hivejs/dist/hivejs.min.js"></script>

Webpack

Please have a look at the webpack usage example.

Server

Install

$ npm install @hivechain/hivejs --save

RPC Servers

https://api.hive.blog By Default
https://anyx.io
https://api.openhive.network
https://api.hivekings.com
https://rpc.esteem.app

Examples

Broadcast Vote

var hivejs = require('@hivechain/hivejs');

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

Get Accounts

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

Get State

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

Reputation Formatter

var reputation = hivejs.formatter.reputation(user.reputation);
console.log(reputation);

Hive Testnet

Hivejs requires some configuration to work on the public Hive testnet.

You need to set two Hive API options, address_prefix and chain_id.

hivejs.api.setOptions({
  address_prefix: 'TST',
  chain_id: '46d82ab7d8db682eb1959aed0ada039a6d49afa1602491f93dde9cac3e8e6c32',
  useTestNet: true,
});

The Chain ID could change. If it does, it may not be reflected here, but will be documented on any testnet launch announcements.

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 Discord channel #javascript https://discord.gg/gWGyFy9.

Issues

When you find issues, please report them!

License

MIT

hivejs's People

Contributors

bonustrack avatar yamadapc avatar nil1511 avatar roadscape avatar jnordberg avatar feruzm avatar mvandeberg avatar goldibex avatar jredbeard avatar mahdiyari avatar dependabot[bot] avatar kaptainkrayola avatar relativityboy avatar skzap avatar jonathanporta avatar sgerbino avatar 4leem avatar netuoso avatar inertia186 avatar sneak avatar sekhmet avatar p0o avatar doctorlai avatar aaroncox avatar bnchdrff avatar drov0 avatar primerz avatar bra1n avatar gropox avatar motrebski avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.