Crea.js the JavaScript API for Crea blockchain
Here is full documentation: https://github.com/creativechain/crea-js/tree/master/doc
<script src="./crea.min.js"></script>
<script>
crea.api.getAccounts(['ned', 'dan'], function(err, response){
console.log(err, response);
});
</script>
https://cdn.creajs.com/lib/latest/crea.min.js
<script src="//cdn.creajs.com/lib/latest/crea.min.js"></script>
Please have a look at the webpack usage example.
$ npm install crea --save
https://api.creativechain.com By Default
https://node.crea.ws
https://this.piston.rocks
var crea = require('crea');
var wif = crea.auth.toWif(username, password, 'posting');
crea.broadcast.vote(wif, voter, author, permlink, weight, function(err, result) {
console.log(err, result);
});
crea.api.getAccounts(['ned', 'dan'], function(err, result) {
console.log(err, result);
});
crea.api.getState('/trends/funny', function(err, result) {
console.log(err, result);
});
var reputation = crea.formatter.reputation(user.reputation);
console.log(reputation);
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 Crea Chat channel #creajs https://creativechain.chat/channel/creajs.
When you find issues, please report them!
MIT