Skip to content

Commit

Permalink
admin: updated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 8, 2023
1 parent c448458 commit 026c5bb
Show file tree
Hide file tree
Showing 24 changed files with 37 additions and 28 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Change Log

This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.

ethers/v6.5.1 (2023-06-07 20:19)
--------------------------------

- Fix lost promise fulfillment when a batch has an error response ([#4126](https://github.com/ethers-io/ethers.js/issues/4126); [8dd21f0](https://github.com/ethers-io/ethers.js/commit/8dd21f03334ffd3cdb7ac532376d51fd4130c7ab)).

ethers/v6.5.0 (2023-06-06 22:41)
--------------------------------

Expand Down
7 changes: 4 additions & 3 deletions dist/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.5.0";
const version = "6.5.1";

/**
* Property helper functions.
Expand Down Expand Up @@ -15154,7 +15154,7 @@ class EnsResolver {
});
}
/**
* Resolves to the EIP-643 text record for %%key%%, or ``null``
* Resolves to the EIP-634 text record for %%key%%, or ``null``
* if unconfigured.
*/
async getText(key) {
Expand Down Expand Up @@ -18465,7 +18465,8 @@ class JsonRpcApiProvider extends AbstractProvider {
}
// The response is an error
if ("error" in resp) {
return reject(this.getRpcError(payload, resp));
reject(this.getRpcError(payload, resp));
continue;
}
// All good; send the result
resolve(resp.result);
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ethers.min.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.5.0";
const version = "6.5.1";

/**
* Property helper functions.
Expand Down Expand Up @@ -15160,7 +15160,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
});
}
/**
* Resolves to the EIP-643 text record for %%key%%, or ``null``
* Resolves to the EIP-634 text record for %%key%%, or ``null``
* if unconfigured.
*/
async getText(key) {
Expand Down Expand Up @@ -18471,7 +18471,8 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
}
// The response is an error
if ("error" in resp) {
return reject(this.getRpcError(payload, resp));
reject(this.getRpcError(payload, resp));
continue;
}
// All good; send the result
resolve(resp.result);
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ethers.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib.commonjs/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib.commonjs/providers/ens-resolver.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export declare class EnsResolver {
*/
getAddress(coinType?: number): Promise<null | string>;
/**
* Resolves to the EIP-643 text record for %%key%%, or ``null``
* Resolves to the EIP-634 text record for %%key%%, or ``null``
* if unconfigured.
*/
getText(key: string): Promise<null | string>;
Expand Down
2 changes: 1 addition & 1 deletion lib.commonjs/providers/ens-resolver.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib.commonjs/providers/provider-jsonrpc.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lib.commonjs/providers/provider-jsonrpc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib.commonjs/providers/provider-jsonrpc.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib.esm/_version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib.esm/providers/ens-resolver.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export declare class EnsResolver {
*/
getAddress(coinType?: number): Promise<null | string>;
/**
* Resolves to the EIP-643 text record for %%key%%, or ``null``
* Resolves to the EIP-634 text record for %%key%%, or ``null``
* if unconfigured.
*/
getText(key: string): Promise<null | string>;
Expand Down
2 changes: 1 addition & 1 deletion lib.esm/providers/ens-resolver.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 026c5bb

Please sign in to comment.