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

scryptlib

Package Overview
Dependencies
Maintainers
3
Versions
295
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scryptlib - npm Package Compare versions

Comparing version 2.1.7 to 2.1.8

4

CHANGELOG.md
# CHANGELOG
## 2.1.8
- fix bsv issue
## 2.1.7

@@ -4,0 +8,0 @@

2

package.json
{
"name": "scryptlib",
"version": "2.1.7",
"version": "2.1.8",
"description": "Javascript SDK for integration of Bitcoin SV Smart Contracts written in sCrypt language.",

@@ -5,0 +5,0 @@ "engines": {

@@ -178,2 +178,3 @@ /* eslint-disable @typescript-eslint/ban-types */

eof(): boolean;
remaining(): number;
pos: number;

@@ -180,0 +181,0 @@ }

@@ -200,2 +200,6 @@ 'use strict'

BufferReader.prototype.remaining = function () {
return this.buf.length - this.pos
}
module.exports = BufferReader

@@ -155,2 +155,5 @@ 'use strict'

if (size !== 0) {
if (br.remaining() < size) {
throw new TypeError('Unrecognized Output')
}
obj.script = br.read(size)

@@ -157,0 +160,0 @@ } else {

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