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

bip174-liquid

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bip174-liquid - npm Package Compare versions

Comparing version 1.0.2-liquid to 1.0.3

8

package.json
{
"name": "bip174-liquid",
"version": "1.0.2-liquid",
"version": "1.0.3",
"description": "",

@@ -33,5 +33,6 @@ "main": "src/lib/psbt.js",

"devDependencies": {
"@types/node": "12.0.8",
"@types/node": "^15.12.4",
"@types/tape": "4.2.33",
"buffer-json": "^2.0.0",
"liquidjs-lib": "^5.1.12",
"nyc": "^14.1.1",

@@ -42,4 +43,3 @@ "prettier": "^1.18.2",

"tslint": "5.17.0",
"typescript": "3.5.2",
"liquidjs-lib": "^5.1.12"
"typescript": "3.5.2"
},

@@ -46,0 +46,0 @@ "author": "Vulpem Ventures",

@@ -74,5 +74,7 @@ 'use strict';

const rangeProofLen = rangeProof ? rangeProof.length : 0;
const varintRangeProofLen = varuint.encodingLength(rangeProofLen);
const varintRangeProofLen =
nonceLen === 1 ? 0 : varuint.encodingLength(rangeProofLen);
const surjectionProofLen = surjectionProof ? surjectionProof.length : 0;
const varintSurjectionProofLen = varuint.encodingLength(surjectionProofLen);
const varintSurjectionProofLen =
nonceLen === 1 ? 0 : varuint.encodingLength(surjectionProofLen);
const result = Buffer.allocUnsafe(

@@ -79,0 +81,0 @@ assetLen +

Sorry, the diff of this file is not supported yet

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