Socket
Socket
Sign inDemoInstall

ethereum-web3-plus

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ethereum-web3-plus - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

2

package.json
{
"name": "ethereum-web3-plus",
"version": "0.3.1",
"version": "0.3.2",
"description": "Adds some simplifications to the web3 package such as compilation, instance creation, call sequencing, events readers",

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

@@ -250,2 +250,8 @@ # Documentation page for ethereum-web3-plus

## Change log
### v 0.3.2
Correction of the use of environemnt variable process.env.PWD by process.cwd() as the earlier is not available on windows.
### v 0.3.1
Correction of the path resolution for windows compatibility
### v 0.3.0

@@ -252,0 +258,0 @@ Important modification in the solidityCompiler object

@@ -83,3 +83,4 @@

}
const solidityFolder = path.resolve(process.env.PWD,".ethereum_contracts");
const solidityFolder = path.resolve(process.cwd(),".ethereum_contracts");
// save the ABI and Code (unlinked) to a folder for reloading without compilation

@@ -86,0 +87,0 @@ SolidityCompiler.prototype.persist = function() {

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