Socket
Socket
Sign inDemoInstall

web3-core-requestmanager

Package Overview
Dependencies
99
Maintainers
4
Versions
113
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.0 to 1.7.1-rc.0

14

lib/givenProvider.js

@@ -26,9 +26,11 @@ /*

/* jshint ignore:start */
var global;
try {
global = Function('return this')();
var global = typeof globalThis === 'object' ? globalThis : undefined;
if (!global) {
try {
global = Function('return this')();
}
catch (e) {
global = self;
}
}
catch (e) {
global = window;
}
// EIP-1193: window.ethereum

@@ -35,0 +37,0 @@ if (typeof global.ethereum !== 'undefined') {

{
"name": "web3-core-requestmanager",
"version": "1.7.0",
"version": "1.7.1-rc.0",
"description": "Web3 module to handle requests to external providers.",

@@ -16,8 +16,8 @@ "repository": "https://github.com/ethereum/web3.js/tree/1.x/packages/web3-core-requestmanager",

"util": "^0.12.0",
"web3-core-helpers": "1.7.0",
"web3-providers-http": "1.7.0",
"web3-providers-ipc": "1.7.0",
"web3-providers-ws": "1.7.0"
"web3-core-helpers": "1.7.1-rc.0",
"web3-providers-http": "1.7.1-rc.0",
"web3-providers-ipc": "1.7.1-rc.0",
"web3-providers-ws": "1.7.1-rc.0"
},
"gitHead": "cd4b4d13e7e1d973ceee29c118798d4931860a2b"
"gitHead": "40cfea7e9f796e44574252dcdce9e4cf4eedf3bf"
}

@@ -29,7 +29,9 @@ /*

/* jshint ignore:start */
var global;
try {
global = Function('return this')();
} catch (e) {
global = window;
var global = typeof globalThis === 'object' ? globalThis : undefined;
if(!global) {
try {
global = Function('return this')();
} catch (e) {
global = self;
}
}

@@ -36,0 +38,0 @@

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