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

@bitgo/bitcoinjs-lib

Package Overview
Dependencies
Maintainers
6
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitgo/bitcoinjs-lib - npm Package Compare versions

Comparing version 7.0.0-rc.2 to 7.0.0-rc.3

2

package.json
{
"name": "@bitgo/bitcoinjs-lib",
"version": "7.0.0-rc.2",
"version": "7.0.0-rc.3",
"description": "Client-side Bitcoin JavaScript library",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -51,3 +51,4 @@ 'use strict';

const SATOSHI_MAX = 21 * 1e14;
const BIG_SATOSHI_MAX = BigInt('1000000000000000000');
// Value 2^63 - 1 is the maximum value stored in mongodb long type
const BIG_SATOSHI_MAX = (1n << 63n) - 1n;
function Satoshi(value) {

@@ -54,0 +55,0 @@ return (

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