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

web3-eth

Package Overview
Dependencies
Maintainers
1
Versions
486
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-eth - npm Package Compare versions

Comparing version 1.0.0-beta.14 to 1.0.0-beta.15

24

package.json
{
"name": "web3-eth",
"version": "1.0.0-beta.14",
"version": "1.0.0-beta.15",
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",

@@ -10,14 +10,14 @@ "repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth",

"underscore": "1.8.3",
"web3-core": "^1.0.0-beta.14",
"web3-core-helpers": "^1.0.0-beta.14",
"web3-core-method": "^1.0.0-beta.14",
"web3-core-subscriptions": "^1.0.0-beta.14",
"web3-eth-abi": "^1.0.0-beta.14",
"web3-eth-accounts": "^1.0.0-beta.14",
"web3-eth-contract": "^1.0.0-beta.14",
"web3-eth-iban": "^1.0.0-beta.14",
"web3-eth-personal": "^1.0.0-beta.14",
"web3-net": "^1.0.0-beta.14",
"web3-utils": "^1.0.0-beta.14"
"web3-core": "^1.0.0-beta.15",
"web3-core-helpers": "^1.0.0-beta.15",
"web3-core-method": "^1.0.0-beta.15",
"web3-core-subscriptions": "^1.0.0-beta.15",
"web3-eth-abi": "^1.0.0-beta.15",
"web3-eth-accounts": "^1.0.0-beta.15",
"web3-eth-contract": "^1.0.0-beta.15",
"web3-eth-iban": "^1.0.0-beta.15",
"web3-eth-personal": "^1.0.0-beta.15",
"web3-net": "^1.0.0-beta.15",
"web3-utils": "^1.0.0-beta.15"
}
}

@@ -73,2 +73,12 @@ /*

// overwrite setProvider
var setProvider = this.setProvider;
this.setProvider = function () {
setProvider.apply(_this, arguments);
_this.net.setProvider.apply(_this, arguments);
_this.personal.setProvider.apply(_this, arguments);
_this.accounts.setProvider.apply(_this, arguments);
_this.Contract.setProvider(_this.currentProvider, _this.accounts);
};
this.clearSubscriptions = _this._requestManager.clearSubscriptions;

@@ -89,3 +99,3 @@

this.Contract = Contract;
this.Contract.setProvider(this.currentProvider, _this.accounts);
this.Contract.setProvider(this.currentProvider, this.accounts);

@@ -92,0 +102,0 @@ // add IBAN

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