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

@ethersproject/providers

Package Overview
Dependencies
Maintainers
1
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ethersproject/providers - npm Package Compare versions

Comparing version 5.4.4 to 5.4.5

2

lib.esm/_version.d.ts

@@ -1,2 +0,2 @@

export declare const version = "providers/5.4.4";
export declare const version = "providers/5.4.5";
//# sourceMappingURL=_version.d.ts.map

@@ -1,2 +0,2 @@

export const version = "providers/5.4.4";
export const version = "providers/5.4.5";
//# sourceMappingURL=_version.js.map

@@ -15,5 +15,4 @@ import { Network, Networkish } from "@ethersproject/networks";

static getUrl(network: Network, apiKey: string): ConnectionInfo;
perform(method: string, params: any): Promise<any>;
isCommunityResource(): boolean;
}
//# sourceMappingURL=alchemy-provider.d.ts.map
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { defineReadOnly } from "@ethersproject/properties";

@@ -86,16 +77,2 @@ import { showThrottleMessage } from "./formatter";

}
perform(method, params) {
const _super = Object.create(null, {
perform: { get: () => super.perform }
});
return __awaiter(this, void 0, void 0, function* () {
if ((method === "estimateGas" && params.transaction.type === 2) || (method === "sendTransaction" && params.signedTransaction.substring(0, 4) === "0x02")) {
logger.throwError("AlchemyProvider does not currently support EIP-1559", Logger.errors.UNSUPPORTED_OPERATION, {
operation: method,
transaction: params.transaction
});
}
return _super.perform.call(this, method, params);
});
}
isCommunityResource() {

@@ -102,0 +79,0 @@ return (this.apiKey === defaultApiKey);

@@ -1,2 +0,2 @@

export declare const version = "providers/5.4.4";
export declare const version = "providers/5.4.5";
//# sourceMappingURL=_version.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "providers/5.4.4";
exports.version = "providers/5.4.5";
//# sourceMappingURL=_version.js.map

@@ -15,5 +15,4 @@ import { Network, Networkish } from "@ethersproject/networks";

static getUrl(network: Network, apiKey: string): ConnectionInfo;
perform(method: string, params: any): Promise<any>;
isCommunityResource(): boolean;
}
//# sourceMappingURL=alchemy-provider.d.ts.map

@@ -17,38 +17,2 @@ "use strict";

})();
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
Object.defineProperty(exports, "__esModule", { value: true });

@@ -140,15 +104,2 @@ exports.AlchemyProvider = exports.AlchemyWebSocketProvider = void 0;

};
AlchemyProvider.prototype.perform = function (method, params) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
if ((method === "estimateGas" && params.transaction.type === 2) || (method === "sendTransaction" && params.signedTransaction.substring(0, 4) === "0x02")) {
logger.throwError("AlchemyProvider does not currently support EIP-1559", logger_1.Logger.errors.UNSUPPORTED_OPERATION, {
operation: method,
transaction: params.transaction
});
}
return [2 /*return*/, _super.prototype.perform.call(this, method, params)];
});
});
};
AlchemyProvider.prototype.isCommunityResource = function () {

@@ -155,0 +106,0 @@ return (this.apiKey === defaultApiKey);

@@ -49,3 +49,3 @@ {

],
"gitHead": "f0b3bc32d5c3175e812fc742c4870f5285cb8eaa",
"gitHead": "c41b89a0c120893062de025a17928a5f092c64b0",
"keywords": [

@@ -71,5 +71,5 @@ "Ethereum",

"sideEffects": false,
"tarballHash": "0x2fa961124a7a09e03aa3ac427a3d597d6a1aeba4329ca50cc2ac3f029f6c4f1a",
"tarballHash": "0xf97d95aa87ac5e952d42f0cb05d9c87851fb99a98010cdc4ca66e4034fcf9ae7",
"types": "./lib/index.d.ts",
"version": "5.4.4"
"version": "5.4.5"
}

@@ -1,1 +0,1 @@

export const version = "providers/5.4.4";
export const version = "providers/5.4.5";

@@ -95,13 +95,2 @@ "use strict";

async perform(method: string, params: any): Promise<any> {
if ((method === "estimateGas" && params.transaction.type === 2) || (method === "sendTransaction" && params.signedTransaction.substring(0, 4) === "0x02")) {
logger.throwError("AlchemyProvider does not currently support EIP-1559", Logger.errors.UNSUPPORTED_OPERATION, {
operation: method,
transaction: params.transaction
});
}
return super.perform(method, params);
}
isCommunityResource(): boolean {

@@ -108,0 +97,0 @@ return (this.apiKey === defaultApiKey);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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