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

web3-provider-engine

Package Overview
Dependencies
Maintainers
4
Versions
192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-provider-engine - npm Package Compare versions

Comparing version 15.0.1 to 15.0.2

7

dist/es5/subproviders/rpc.js

@@ -52,2 +52,9 @@ "use strict";

case 429:
// Too many requests (rate limiting)
return function () {
var err = new Error("Too Many Requests");
return end(new JsonRpcError.InternalError(err));
}();
default:

@@ -54,0 +61,0 @@ if (res.statusCode != 200) {

4

package.json
{
"name": "web3-provider-engine",
"version": "15.0.1",
"version": "15.0.2",
"description": "",

@@ -27,3 +27,3 @@ "repository": "https://github.com/MetaMask/web3-provider-engine",

"eth-json-rpc-infura": "^4.0.1",
"eth-json-rpc-middleware": "^4.1.4",
"eth-json-rpc-middleware": "^4.1.5",
"eth-sig-util": "^1.4.2",

@@ -30,0 +30,0 @@ "ethereumjs-block": "^1.2.2",

# Web3 ProviderEngine
[![Greenkeeper badge](https://badges.greenkeeper.io/MetaMask/provider-engine.svg)](https://greenkeeper.io/)
Web3 ProviderEngine is a tool for composing your own [web3 providers](https://github.com/ethereum/wiki/wiki/JavaScript-API#web3).

@@ -6,0 +4,0 @@

@@ -47,2 +47,7 @@ const xhr = process.browser ? require('xhr') : require('request')

})()
case 429: // Too many requests (rate limiting)
return (function(){
const err = new Error(`Too Many Requests`)
return end(new JsonRpcError.InternalError(err))
})()
default:

@@ -49,0 +54,0 @@ if (res.statusCode != 200) {

Sorry, the diff of this file is too big to display

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