
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
bitcoind-rpc-client
Advanced tools
Bitcoind RPC client with blackjack and hookers.
Current rpc client support promises and callbacks.
npm install bitcoind-rpc-client
You can find list of all available commands in source code.
var client = new RpcClient({
host: '127.0.0.1',
port: 18332
});
client.set('user', 'bitcoinrpc')
client.getNewAddress(function (err, result) {
console.log(err, result) // null, {result: {...}, error: null}
})
client.getNewAddress().then(function (result) {
console.log(result) // {result: {...}, error: null}
})
client.getnewaddress().then(function (result) {
console.log(result) // {result: {...}, error: null}
})
cmdclient.cmd('getnewaddress').then(function (result) {
console.log(result) // {result: {...}, error: null}
})
client.batch([
{method: 'getnewaddress', params: ['myaccount']},
{method: 'getnewaddress', params: ['myaccount']}
])
.then(function (result) {
console.log(result) // [{result: {...}, error: null}, {result: {...}, error: null}]
})
client.batch()
.getInfo()
.clear()
.getNewAddress('myaccount')
.getNewAddress('secondaccount')
.call()
.then(function (result) {
console.log(result) // [{result: {...}, error: null}, {result: {...}, error: null}]
})
Code released under the MIT license.
FAQs
Bitcoind RPC client
The npm package bitcoind-rpc-client receives a total of 12 weekly downloads. As such, bitcoind-rpc-client popularity was classified as not popular.
We found that bitcoind-rpc-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.