Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Steem.js the JavaScript API for Steem blockchain
Here is full documentation: https://github.com/steemit/steem-js/tree/master/doc
<script src="./steem.min.js"></script>
<script>
steem.api.getAccounts(['ned', 'dan'], function(err, response){
console.log(err, response);
});
</script>
https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js
<script src="https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js"></script>
Please have a look at the webpack usage example.
$ npm install steem --save
https://api.steemit.com By Default
https://node.steem.ws
https://this.piston.rocks
var steem = require('steem');
var wif = steem.auth.toWif(username, password, 'posting');
steem.broadcast.vote(wif, voter, author, permlink, weight, function(err, result) {
console.log(err, result);
});
steem.api.getAccounts(['ned', 'dan'], function(err, result) {
console.log(err, result);
});
steem.api.getState('/trends/funny', function(err, result) {
console.log(err, result);
});
var reputation = steem.formatter.reputation(user.reputation);
console.log(reputation);
Steem-js requires some configuration to work on the public Steem testnet.
You need to set two Steem API options, address_prefix
and chain_id
.
steem.api.setOptions({
address_prefix: 'TST',
chain_id: '46d82ab7d8db682eb1959aed0ada039a6d49afa1602491f93dde9cac3e8e6c32',
});
The Chain ID could change. If it does, it may not be reflected here, but will be documented on any testnet launch announcements.
Furthermore, you need to change asset serializations for the testnet.
Types.useTestNet = true
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 Steemit Chat channel #steemjs https://steemit.chat/channel/steemjs.
When you find issues, please report them!
MIT
FAQs
Steem.js the JavaScript API for Steem blockchain
The npm package steem receives a total of 208 weekly downloads. As such, steem popularity was classified as not popular.
We found that steem demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.