Socket
Socket
Sign inDemoInstall

bitcoinjs-lib

Package Overview
Dependencies
Maintainers
4
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitcoinjs-lib - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

6

package.json
{
"name": "bitcoinjs-lib",
"version": "1.1.2",
"version": "1.1.3",
"description": "Client-side Bitcoin JavaScript library",

@@ -40,2 +40,3 @@ "main": "./src/index.js",

"browserify": "^5.12.0",
"bs58": "^2.0.0",
"coveralls": "^2.11.2",

@@ -77,4 +78,3 @@ "helloblock-js": "^0.2.5",

"bigi": "^1.1.0",
"bs58": "1.2.1",
"bs58check": "1.0.1",
"bs58check": "1.0.3",
"crypto-browserify": "3.2.4",

@@ -81,0 +81,0 @@ "ecurve": "1.0.0"

@@ -86,2 +86,15 @@ // https://en.bitcoin.it/wiki/List_of_address_prefixes

estimateFee: estimateFee('viacointestnet')
},
zetacoin: {
magicPrefix: '\x18Zetacoin Signed Message:\n',
bip32: {
public: 0x0488b21e,
private: 0x0488ade4
},
pubKeyHash: 0x50,
scriptHash: 0x09,
wif: 0xe0,
dustThreshold: 546, // https://github.com/zetacoin/zetacoin/blob/master/src/core.h#L159
feePerKb: 10000, // https://github.com/zetacoin/zetacoin/blob/master/src/main.cpp#L54
estimateFee: estimateFee('zetacoin')
}

@@ -88,0 +101,0 @@ }

@@ -30,3 +30,3 @@ var assert = require('assert')

var buffer = base58.decode(fb58)
var actual = buffer.toString('hex')
var actual = new Buffer(buffer).toString('hex')

@@ -33,0 +33,0 @@ assert.equal(actual, fhex)

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