chain-node
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -25,3 +25,3 @@ var request = require('request'); | ||
sendTransaction: function(txnHex, cb) { | ||
sendTransaction: function(hex, cb) { | ||
request({ | ||
@@ -33,3 +33,3 @@ method: 'PUT', | ||
auth: {user: this.getKey()}, | ||
json: {hex: txnHex}, | ||
json: {hex: hex}, | ||
}, function(err, msg, resp) { | ||
@@ -40,3 +40,3 @@ cb(err, resp); | ||
getUnspentOutputs: function(addr, cb) { | ||
getAddressUnspents: function(addr, cb) { | ||
request({ | ||
@@ -43,0 +43,0 @@ method: 'GET', |
{ | ||
"name": "chain-node", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "The Official Node.js SDK for Chain's Bitcoin API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7214