Skip to content

Commit b145898

Browse files
committed
admin: updated dist files
1 parent 1bd9161 commit b145898

27 files changed

+47
-42
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changelog
44
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
55

66

7+
ethers/v5.5.1 (2021-10-20 03:59)
8+
--------------------------------
9+
10+
- 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))
11+
712
ethers/v5.5.0 (2021-10-19 00:01)
813
--------------------------------
914

@@ -418,4 +423,4 @@ ethers/v5.0.0 (2020-06-12 19:58)
418423
--------------------------------
419424

420425
- Preserve config canary string. ([7157816](https://github.com/ethers-io/ethers.js/commit/7157816fa53f660d750811b293e3b1d5a2f70bd4))
421-
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))
426+
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"rollup-plugin-sourcemaps": "0.6.3",
8181
"scrypt-js": "3.0.1",
8282
"semver": "^5.6.0",
83-
"typescript": "4.4.3",
83+
"typescript": "4.4.4",
8484
"uglify-es": "3.3.9"
8585
},
8686
"dependencies": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export declare const version = "abstract-provider/5.5.0";
1+
export declare const version = "abstract-provider/5.5.1";
22
//# sourceMappingURL=_version.d.ts.map

packages/abstract-provider/lib.esm/_version.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abstract-provider/lib.esm/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export declare abstract class Provider implements OnceBlockable {
135135
abstract getTransaction(transactionHash: string): Promise<TransactionResponse>;
136136
abstract getTransactionReceipt(transactionHash: string): Promise<TransactionReceipt>;
137137
abstract getLogs(filter: Filter): Promise<Array<Log>>;
138-
abstract resolveName(name: string | Promise<string>): Promise<string>;
139-
abstract lookupAddress(address: string | Promise<string>): Promise<string>;
138+
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
139+
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
140140
abstract on(eventName: EventType, listener: Listener): Provider;
141141
abstract once(eventName: EventType, listener: Listener): Provider;
142142
abstract emit(eventName: EventType, ...args: Array<any>): boolean;

packages/abstract-provider/lib.esm/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export declare const version = "abstract-provider/5.5.0";
1+
export declare const version = "abstract-provider/5.5.1";
22
//# sourceMappingURL=_version.d.ts.map

packages/abstract-provider/lib/_version.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abstract-provider/lib/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export declare abstract class Provider implements OnceBlockable {
135135
abstract getTransaction(transactionHash: string): Promise<TransactionResponse>;
136136
abstract getTransactionReceipt(transactionHash: string): Promise<TransactionReceipt>;
137137
abstract getLogs(filter: Filter): Promise<Array<Log>>;
138-
abstract resolveName(name: string | Promise<string>): Promise<string>;
139-
abstract lookupAddress(address: string | Promise<string>): Promise<string>;
138+
abstract resolveName(name: string | Promise<string>): Promise<null | string>;
139+
abstract lookupAddress(address: string | Promise<string>): Promise<null | string>;
140140
abstract on(eventName: EventType, listener: Listener): Provider;
141141
abstract once(eventName: EventType, listener: Listener): Provider;
142142
abstract emit(eventName: EventType, ...args: Array<any>): boolean;

0 commit comments

Comments
 (0)