Compare commits

..

2 Commits

Author SHA1 Message Date
Richard Moore
b145898976 admin: updated dist files 2021-10-20 04:00:49 -04:00
Richard Moore
1bd91615ee Fixed abstract Provider signature issue (#2190). 2021-10-20 03:54:24 -04:00
28 changed files with 49 additions and 44 deletions

View File

@@ -4,6 +4,11 @@ Changelog
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
ethers/v5.5.1 (2021-10-20 03:59)
--------------------------------
- Fixed abstract Provider signature issue. ([#2190](https://github.com/ethers-io/ethers.js/issues/2190); [1bd9161](https://github.com/ethers-io/ethers.js/commit/1bd91615eedcb34a24fca04aa93a9aac394968ed))
ethers/v5.5.0 (2021-10-19 00:01)
--------------------------------
@@ -418,4 +423,4 @@ ethers/v5.0.0 (2020-06-12 19:58)
--------------------------------
- Preserve config canary string. ([7157816](https://github.com/ethers-io/ethers.js/commit/7157816fa53f660d750811b293e3b1d5a2f70bd4))
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))

18
package-lock.json generated
View File

@@ -967,9 +967,9 @@
}
},
"@types/semver": {
"version": "7.3.8",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.8.tgz",
"integrity": "sha512-D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now==",
"version": "7.3.9",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.9.tgz",
"integrity": "sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==",
"dev": true
},
"@ungap/promise-all-settled": {
@@ -1773,9 +1773,9 @@
"dev": true
},
"electron-to-chromium": {
"version": "1.3.872",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.872.tgz",
"integrity": "sha512-qG96atLFY0agKyEETiBFNhpRLSXGSXOBuhXWpbkYqrLKKASpRyRBUtfkn0ZjIf/yXfA7FA4nScVOMpXSHFlUCQ==",
"version": "1.3.873",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.873.tgz",
"integrity": "sha512-TiHlCgl2uP26Z0c67u442c0a2MZCWZNCRnPTQDPhVJ4h9G6z2zU0lApD9H0K9R5yFL5SfdaiVsVD2izOY24xBQ==",
"dev": true
},
"elliptic": {
@@ -4976,9 +4976,9 @@
}
},
"typescript": {
"version": "4.4.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz",
"integrity": "sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==",
"version": "4.4.4",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz",
"integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==",
"dev": true
},
"u2f-api": {

View File

@@ -80,7 +80,7 @@
"rollup-plugin-sourcemaps": "0.6.3",
"scrypt-js": "3.0.1",
"semver": "^5.6.0",
"typescript": "4.4.3",
"typescript": "4.4.4",
"uglify-es": "3.3.9"
},
"dependencies": {

View File

@@ -1,2 +1,2 @@
export declare const version = "abstract-provider/5.5.0";
export declare const version = "abstract-provider/5.5.1";
//# sourceMappingURL=_version.d.ts.map

View File

@@ -1,2 +1,2 @@
export const version = "abstract-provider/5.5.0";
export const version = "abstract-provider/5.5.1";
//# sourceMappingURL=_version.js.map

View File

@@ -135,8 +135,8 @@ export declare abstract class Provider implements OnceBlockable {
abstract getTransaction(transactionHash: string): Promise<TransactionResponse>;
abstract getTransactionReceipt(transactionHash: string): Promise<TransactionReceipt>;
abstract getLogs(filter: Filter): Promise<Array<Log>>;
abstract resolveName(name: string | Promise<string>): Promise<string>;
abstract lookupAddress(address: string | Promise<string>): Promise<string>;
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
abstract on(eventName: EventType, listener: Listener): Provider;
abstract once(eventName: EventType, listener: Listener): Provider;
abstract emit(eventName: EventType, ...args: Array<any>): boolean;

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
export declare const version = "abstract-provider/5.5.0";
export declare const version = "abstract-provider/5.5.1";
//# sourceMappingURL=_version.d.ts.map

View File

@@ -1,5 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "abstract-provider/5.5.0";
exports.version = "abstract-provider/5.5.1";
//# sourceMappingURL=_version.js.map

View File

@@ -135,8 +135,8 @@ export declare abstract class Provider implements OnceBlockable {
abstract getTransaction(transactionHash: string): Promise<TransactionResponse>;
abstract getTransactionReceipt(transactionHash: string): Promise<TransactionReceipt>;
abstract getLogs(filter: Filter): Promise<Array<Log>>;
abstract resolveName(name: string | Promise<string>): Promise<string>;
abstract lookupAddress(address: string | Promise<string>): Promise<string>;
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
abstract on(eventName: EventType, listener: Listener): Provider;
abstract once(eventName: EventType, listener: Listener): Provider;
abstract emit(eventName: EventType, ...args: Array<any>): boolean;

File diff suppressed because one or more lines are too long

View File

@@ -41,7 +41,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0x66cbc851ce846126d129cba45d281bc88fc6f230ea4da3733564425c88e4d8be",
"tarballHash": "0x2bfa68ddd70e2bae7207dbdca73308cf780b5a896a2b8fcc518a912192898860",
"types": "./lib/index.d.ts",
"version": "5.5.0"
"version": "5.5.1"
}

View File

@@ -1 +1 @@
export const version = "abstract-provider/5.5.0";
export const version = "abstract-provider/5.5.1";

View File

@@ -274,8 +274,8 @@ export abstract class Provider implements OnceBlockable {
abstract getLogs(filter: Filter): Promise<Array<Log>>;
// ENS
abstract resolveName(name: string | Promise<string>): Promise<string>;
abstract lookupAddress(address: string | Promise<string>): Promise<string>;
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
// Event Emitter (ish)
abstract on(eventName: EventType, listener: Listener): Provider;

View File

@@ -8996,7 +8996,7 @@ class Interface {
"use strict";
const version$9 = "abstract-provider/5.5.0";
const version$9 = "abstract-provider/5.5.1";
"use strict";
var __awaiter$2 = (window && window.__awaiter) || function (thisArg, _arguments, P, generator) {
@@ -23091,7 +23091,7 @@ var utils$1 = /*#__PURE__*/Object.freeze({
Indexed: Indexed
});
const version$p = "ethers/5.5.0";
const version$p = "ethers/5.5.1";
"use strict";
const logger$I = new Logger(version$p);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -10019,7 +10019,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "abstract-provider/5.5.0";
exports.version = "abstract-provider/5.5.1";
});
@@ -26803,7 +26803,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "ethers/5.5.0";
exports.version = "ethers/5.5.1";
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
export declare const version = "ethers/5.5.0";
export declare const version = "ethers/5.5.1";
//# sourceMappingURL=_version.d.ts.map

View File

@@ -1,2 +1,2 @@
export const version = "ethers/5.5.0";
export const version = "ethers/5.5.1";
//# sourceMappingURL=_version.js.map

View File

@@ -1,2 +1,2 @@
export declare const version = "ethers/5.5.0";
export declare const version = "ethers/5.5.1";
//# sourceMappingURL=_version.d.ts.map

View File

@@ -1,5 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "ethers/5.5.0";
exports.version = "ethers/5.5.1";
//# sourceMappingURL=_version.js.map

View File

@@ -3,7 +3,7 @@
"browser-old": "./dist/ethers.umd.js",
"dependencies": {
"@ethersproject/abi": "5.5.0",
"@ethersproject/abstract-provider": "5.5.0",
"@ethersproject/abstract-provider": "5.5.1",
"@ethersproject/abstract-signer": "5.5.0",
"@ethersproject/address": "5.5.0",
"@ethersproject/base64": "5.5.0",
@@ -62,7 +62,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0xc76a974e38ab47fcb6e1b8341db9a6827710b073c30a4d5066b34dbb655be7d7",
"tarballHash": "0xe256cf0c00e87e5204aa13facde13261c0cb1c35355f18f238117265f1f31c2d",
"types": "./lib/index.d.ts",
"version": "5.5.0"
"version": "5.5.1"
}

View File

@@ -1 +1 @@
export const version = "ethers/5.5.0";
export const version = "ethers/5.5.1";