Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
NodeJS client for btcd WebSocket API. Written in CoffeeScript (and published to npm as compiled JavaScript).
npm install btcd
// Notice the "/ws" in the url.
var btcd = require('btcd')('wss://user:password@localhost:8334/ws',
__dirname + '/rpc.cert');
// All the jsonrpc calls are available as methods:
btcd.getblockhash(0, function(err, hash){
if (err) throw err;
console.log(hash); // 000000000019d6689c085ae...
});
btcd.createrawtransaction(
[{ txid: ..., vout: 0 }],
{ '1KDZMzoahiAHtAbp8VuVvNahm5SaN3PFXc': 0.5 },
function(err, rawtx) {
// ...
}
)
// Calls with notifications emits additional events:
btcd.notifyreceived([ '1KDZMzoahiAHtAbp8VuVvNahm5SaN3PFXc' ], function(err) {
if (err) throw err;
// Listening started succesfully, transactions will now trigger 'recvtx' below
});
btcd.on('recvtx', function(tx, block) {
// process tx
});
// Close the connection
btcd.close();
(TODO: document events)
Running the tests requires setting up a local btcd and configuring the tests to connect to it.
# Install dev dependencies
npm install
# Run tests
BTCD_URI=wss://user:pass@localhost:8334/ws \
BTCD_CERT=./rpc.cert \
npm test
Information about data being sent and received can be displayed using the
debug package.
To enable this, start the process with the environment variable DEBUG=btcd
.
MIT
FAQs
NodeJS client for btcd WebSocket API
The npm package bcdt receives a total of 3 weekly downloads. As such, bcdt popularity was classified as not popular.
We found that bcdt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.