admin: updated dist files

This commit is contained in:
Richard Moore 2023-06-07 20:20:11 -04:00
parent c448458633
commit 026c5bb137
24 changed files with 37 additions and 28 deletions

@ -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)
--------------------------------

7
dist/ethers.js vendored

@ -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.
@ -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) {
@ -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);

2
dist/ethers.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/ethers.umd.js vendored

@ -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.
@ -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) {
@ -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);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -151,7 +151,7 @@ const u64 = {
/**
* The current version of Ethers.
*/
const version = "6.5.0";
const version = "6.5.1";
/**
* Property helper functions.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -5,5 +5,5 @@ exports.version = void 0;
/**
* The current version of Ethers.
*/
exports.version = "6.5.0";
exports.version = "6.5.1";
//# sourceMappingURL=_version.js.map

@ -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>;

@ -229,7 +229,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) {

File diff suppressed because one or more lines are too long

@ -263,7 +263,8 @@ class JsonRpcApiProvider extends abstract_provider_js_1.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);

File diff suppressed because one or more lines are too long

@ -2,5 +2,5 @@
/**
* The current version of Ethers.
*/
export const version = "6.5.0";
export const version = "6.5.1";
//# sourceMappingURL=_version.js.map

@ -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>;

@ -224,7 +224,7 @@ export 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) {

File diff suppressed because one or more lines are too long

@ -259,7 +259,8 @@ export 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);

File diff suppressed because one or more lines are too long

@ -93,7 +93,7 @@
"url": "https://www.buymeacoffee.com/ricmoo"
}
],
"gitHead": "38ee3195b0192d8180899fd61308e03fa3a0eb32",
"gitHead": "8dd21f03334ffd3cdb7ac532376d51fd4130c7ab",
"homepage": "https://ethers.org",
"keywords": [
"ethereum",
@ -131,5 +131,5 @@
"test-esm": "mocha --reporter ./reporter.cjs ./lib.esm/_tests/test-*.js"
},
"sideEffects": false,
"version": "6.5.0"
"version": "6.5.1"
}

@ -3,4 +3,4 @@
/**
* The current version of Ethers.
*/
export const version: string = "6.5.0";
export const version: string = "6.5.1";