Pixa.js the JavaScript API for Pixa blockchain
Here is full documentation: https://github.com/pixagram-blockchain/pixa-js/tree/master/doc
<script src="./pixa.min.js"></script>
<script>
pixa.api.getAccounts(['ned', 'dan'], function(err, response){
console.log(err, response);
});
</script>
https://cdn.jsdelivr.net/npm/pixa/dist/pixa.min.js
<script src="https://cdn.jsdelivr.net/npm/pixa/dist/pixa.min.js"></script>
Please have a look at the webpack usage example.
$ npm install pixa --save
https://api.steemit.com By Default
var pixa = require('pixa');
var wif = pixa.auth.toWif(username, password, 'posting');
pixa.broadcast.vote(wif, voter, author, permlink, weight, function(err, result) {
console.log(err, result);
});
pixa.api.getAccounts(['ned', 'dan'], function(err, result) {
console.log(err, result);
});
pixa.api.getState('/trends/funny', function(err, result) {
console.log(err, result);
});
var reputation = pixa.formatter.reputation(user.reputation);
console.log(reputation);
Pixa-js requires some configuration to work on the public Pixa testnet.
You need to set two Pixa API options, address_prefix
and chain_id
.
pixa.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.
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.
When you find issues, please report them!
MIT