Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitcoin

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitcoin - npm Package Compare versions

Comparing version 1.3.1 to 1.4.0

12

Changelog.md
# node-bitcoin changelog
## v1.4.0 (2012/09/09)
* New commands for bitcoin v0.7.0
* `createRawTransaction`
* `decodeRawTransaction`
* `getPeerInfo`
* `getRawMemPool`
* `getRawTransaction`
* `listUnspent`
* `sendRawTransaction`
* `signRawTransaction`
* Remove deprecated `getBlockNumber`
## v1.3.1 (2012/08/19)

@@ -4,0 +16,0 @@ Remove `underscore` dependency

9

lib/bitcoin/client.js

@@ -9,2 +9,4 @@ var rpc = require('../jsonrpc');

backupWallet: 'backupwallet',
createRawTransaction: 'createrawtransaction', // Bitcoin v0.7+
decodeRawTransaction: 'decoderawtransaction', // Bitcoin v0.7+
dumpPrivKey: 'dumpprivkey',

@@ -19,3 +21,2 @@ encryptWallet: 'encryptwallet',

getBlockHash: 'getblockhash',
getBlockNumber: 'getblockcount', // getblocknumber deprecated since Bitcoin v0.5.1
getConnectionCount: 'getconnectioncount',

@@ -31,2 +32,5 @@ getDifficulty: 'getdifficulty',

getNewAddress: 'getnewaddress',
getPeerInfo: 'getpeerinfo', // Bitcoin v0.7+
getRawMemPool: 'getrawmempool', // Bitcoin v0.7+
getRawTransaction: 'getrawtransaction', // Bitcoin v0.7+
getReceivedByAccount: 'getreceivedbyaccount',

@@ -45,5 +49,7 @@ getReceivedByAddress: 'getreceivedbyaddress',

listTransactions: 'listtransactions',
listUnspent: 'listunspent', // Bitcoin v0.7+
move: 'move',
sendFrom: 'sendfrom',
sendMany: 'sendmany',
sendRawTransaction: 'sendrawtransaction', // Bitcoin v0.7+
sendToAddress: 'sendtoaddress',

@@ -54,2 +60,3 @@ setAccount: 'setaccount',

signMessage: 'signmessage',
signRawTransaction: 'signrawtransaction', // Bitcoin v0.7+
stop: 'stop',

@@ -56,0 +63,0 @@ validateAddress: 'validateaddress',

2

package.json
{
"name": "bitcoin",
"description": "Communicate with bitcoind via JSON-RPC",
"version": "1.3.1",
"version": "1.4.0",
"main": "./lib/bitcoin",

@@ -6,0 +6,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc