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

eac.js-lib

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eac.js-lib - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

29

lib/requestTracker/index.js

@@ -49,2 +49,17 @@ const Constants = require("../constants")

previousFromRight(right) {
this.checkFactory()
return new Promise((resolve, reject) => {
this.instance.query.call(
this.factory,
Constants.LTE_HEX,
right,
(err, next) => {
if (!err) resolve(next)
else reject(err)
}
)
})
}
windowStartFor(txRequestAddress) {

@@ -78,2 +93,16 @@ this.checkFactory()

previousRequest(txRequestAddress) {
this.checkFactory()
return new Promise((resolve, reject) => {
this.instance.getPreviousRequest.call(
this.factory,
txRequestAddress,
(err, next) => {
if (!err) resolve(next)
else reject(err)
}
)
})
}
/**

@@ -80,0 +109,0 @@ * Chain inits

2

package.json
{
"name": "eac.js-lib",
"version": "1.1.0",
"version": "1.1.1",
"description": "Javascript library for interacting with the Ethereum Alarm Clock contracts",

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

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