Socket
Socket
Sign inDemoInstall

web3-core-method

Package Overview
Dependencies
66
Maintainers
4
Versions
137
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.3 to 1.7.4-rc.0

6

lib/index.js

@@ -66,3 +66,3 @@ /*

var func = this.buildCall();
func.call = this.call;
Object.defineProperty(func, 'call', { configurable: true, writable: true, value: this.call });
this.setRequestManager(requestManager || this.requestManager, accounts || this.accounts);

@@ -73,3 +73,3 @@ return func;

var func = this.buildCall();
func.call = this.call;
Object.defineProperty(func, 'call', { configurable: true, writable: true, value: this.call });
var name = this.name.split('.');

@@ -379,3 +379,3 @@ if (name.length > 1) {

gas: parsedTx.gasLimit.toHexString(),
gasPrice: parsedTx.gasPrice.toHexString(),
gasPrice: parsedTx.gasPrice ? parsedTx.gasPrice.toHexString() : undefined,
value: parsedTx.value.toHexString()

@@ -382,0 +382,0 @@ });

{
"name": "web3-core-method",
"version": "1.7.3",
"version": "1.7.4-rc.0",
"description": "Creates the methods on the web3 modules. This is an internal package.",

@@ -18,6 +18,6 @@ "repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-method",

"@ethersproject/transactions": "^5.0.0-beta.135",
"web3-core-helpers": "1.7.3",
"web3-core-promievent": "1.7.3",
"web3-core-subscriptions": "1.7.3",
"web3-utils": "1.7.3"
"web3-core-helpers": "1.7.4-rc.0",
"web3-core-promievent": "1.7.4-rc.0",
"web3-core-subscriptions": "1.7.4-rc.0",
"web3-utils": "1.7.4-rc.0"
},

@@ -28,3 +28,3 @@ "devDependencies": {

},
"gitHead": "f9bcad8ae63e3d0096859172cba35387f49f964e"
"gitHead": "e3b2e8eadbdf825acfbd5c4cbb5d0ee7e1540307"
}

@@ -79,3 +79,3 @@ /*

var func = this.buildCall();
func.call = this.call;
Object.defineProperty(func, 'call', { configurable: true, writable: true, value: this.call });

@@ -89,3 +89,3 @@ this.setRequestManager(requestManager || this.requestManager, accounts || this.accounts);

var func = this.buildCall();
func.call = this.call;
Object.defineProperty(func, 'call', { configurable: true, writable: true, value: this.call });
var name = this.name.split('.');

@@ -186,3 +186,3 @@ if (name.length > 1) {

var callback = this.extractCallback(args);
var params = this.formatInput(args);

@@ -461,3 +461,3 @@ this.validateArgs(params);

gas: parsedTx.gasLimit.toHexString(),
gasPrice: parsedTx.gasPrice.toHexString(),
gasPrice: parsedTx.gasPrice ? parsedTx.gasPrice.toHexString() : undefined,
value: parsedTx.value.toHexString()

@@ -558,3 +558,3 @@ });

var startWatching = function (existingReceipt) {
let blockHeaderArrived = false;
let blockHeaderArrived = false;

@@ -567,3 +567,3 @@ const startInterval = () => {

if(!this.requestManager.provider.on) {
return startInterval();
return startInterval();
}

@@ -573,3 +573,3 @@

_ethereumCall.subscribe('newBlockHeaders', function (err, blockHeader, sub) {
blockHeaderArrived = true;
blockHeaderArrived = true;

@@ -716,3 +716,3 @@ if (err || !blockHeader) {

var signedPayload = { ... payload,
var signedPayload = { ... payload,
method: 'eth_sendRawTransaction',

@@ -719,0 +719,0 @@ params: [sign.rawTransaction]

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc