admin: updated dist files

This commit is contained in:
Richard Moore 2023-11-01 16:17:49 -04:00
parent 8fed2f8476
commit 5431723ec3
30 changed files with 53 additions and 38 deletions

@ -3,6 +3,13 @@ Change Log
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
ethers/v6.8.1 (2023-11-01 16:08)
--------------------------------
- Fixed typo in error description when converting values to arrays ([#4427](https://github.com/ethers-io/ethers.js/issues/4427), [#4446](https://github.com/ethers-io/ethers.js/issues/4446); [8fed2f8](https://github.com/ethers-io/ethers.js/commit/8fed2f84768ace4bf3e5742c931a74841da7c637)).
- Fix invalid token nonpayable being included in formatted constructor ([#4412](https://github.com/ethers-io/ethers.js/issues/4412); [2e0bd90](https://github.com/ethers-io/ethers.js/commit/2e0bd90744b8e76fcf03f75a66cb0061d50f7bd9)).
- Add ENS support for Sepolia ([#4422](https://github.com/ethers-io/ethers.js/issues/4422); [1da50ae](https://github.com/ethers-io/ethers.js/commit/1da50ae286da01e58a70bb8df8aa5cc5d260e33e)).
ethers/v6.8.0 (2023-10-10 22:42)
--------------------------------

12
dist/ethers.js vendored

@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.8.0";
const version = "6.8.1";
/**
* Property helper functions.
@ -614,7 +614,7 @@ function toBeHex(_value, _width) {
}
else {
const width = getNumber(_width, "width");
assert(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
assert(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
operation: "toBeHex",
fault: "overflow",
value: _value
@ -11879,7 +11879,9 @@ class ConstructorFragment extends Fragment {
});
}
const result = [`constructor${joinParams(format, this.inputs)}`];
result.push((this.payable) ? "payable" : "nonpayable");
if (this.payable) {
result.push("payable");
}
if (this.gas != null) {
result.push(`@${this.gas.toString()}`);
}
@ -14032,7 +14034,7 @@ class TransactionReceipt {
*/
provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
to;
/**
@ -17226,7 +17228,7 @@ function injectCommonNetworks() {
registerEth("rinkeby", 4, { ensNetwork: 4 });
registerEth("goerli", 5, { ensNetwork: 5 });
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, {});
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
registerEth("classic", 61, {});
registerEth("classicKotti", 6, {});
registerEth("arbitrum", 42161, {

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

12
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.8.0";
const version = "6.8.1";
/**
* Property helper functions.
@ -620,7 +620,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
}
else {
const width = getNumber(_width, "width");
assert(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
assert(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
operation: "toBeHex",
fault: "overflow",
value: _value
@ -11885,7 +11885,9 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
});
}
const result = [`constructor${joinParams(format, this.inputs)}`];
result.push((this.payable) ? "payable" : "nonpayable");
if (this.payable) {
result.push("payable");
}
if (this.gas != null) {
result.push(`@${this.gas.toString()}`);
}
@ -14038,7 +14040,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
*/
provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
to;
/**
@ -17232,7 +17234,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
registerEth("rinkeby", 4, { ensNetwork: 4 });
registerEth("goerli", 5, { ensNetwork: 5 });
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, {});
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
registerEth("classic", 61, {});
registerEth("classicKotti", 6, {});
registerEth("arbitrum", 42161, {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -100,7 +100,7 @@ const rotlBL = (h, l, s) => (h << (s - 32)) | (l >>> (64 - s));
/**
* The current version of Ethers.
*/
const version = "6.8.0";
const version = "6.8.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.8.0";
exports.version = "6.8.1";
//# sourceMappingURL=_version.js.map

@ -1007,7 +1007,9 @@ class ConstructorFragment extends Fragment {
});
}
const result = [`constructor${joinParams(format, this.inputs)}`];
result.push((this.payable) ? "payable" : "nonpayable");
if (this.payable) {
result.push("payable");
}
if (this.gas != null) {
result.push(`@${this.gas.toString()}`);
}

File diff suppressed because one or more lines are too long

@ -343,7 +343,7 @@ function injectCommonNetworks() {
registerEth("rinkeby", 4, { ensNetwork: 4 });
registerEth("goerli", 5, { ensNetwork: 5 });
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, {});
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
registerEth("classic", 61, {});
registerEth("classicKotti", 6, {});
registerEth("arbitrum", 42161, {

File diff suppressed because one or more lines are too long

@ -494,7 +494,7 @@ export declare class TransactionReceipt implements TransactionReceiptParams, Ite
*/
readonly provider: Provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
readonly to: null | string;
/**

@ -528,7 +528,7 @@ class TransactionReceipt {
*/
provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
to;
/**

@ -175,7 +175,7 @@ function toBeHex(_value, _width) {
}
else {
const width = getNumber(_width, "width");
(0, errors_js_1.assert)(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
(0, errors_js_1.assert)(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
operation: "toBeHex",
fault: "overflow",
value: _value

File diff suppressed because one or more lines are too long

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

@ -999,7 +999,9 @@ export class ConstructorFragment extends Fragment {
});
}
const result = [`constructor${joinParams(format, this.inputs)}`];
result.push((this.payable) ? "payable" : "nonpayable");
if (this.payable) {
result.push("payable");
}
if (this.gas != null) {
result.push(`@${this.gas.toString()}`);
}

File diff suppressed because one or more lines are too long

@ -339,7 +339,7 @@ function injectCommonNetworks() {
registerEth("rinkeby", 4, { ensNetwork: 4 });
registerEth("goerli", 5, { ensNetwork: 5 });
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, {});
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
registerEth("classic", 61, {});
registerEth("classicKotti", 6, {});
registerEth("arbitrum", 42161, {

File diff suppressed because one or more lines are too long

@ -494,7 +494,7 @@ export declare class TransactionReceipt implements TransactionReceiptParams, Ite
*/
readonly provider: Provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
readonly to: null | string;
/**

@ -521,7 +521,7 @@ export class TransactionReceipt {
*/
provider;
/**
* The address the transaction was send to.
* The address the transaction was sent to.
*/
to;
/**

@ -164,7 +164,7 @@ export function toBeHex(_value, _width) {
}
else {
const width = getNumber(_width, "width");
assert(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
assert(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
operation: "toBeHex",
fault: "overflow",
value: _value

File diff suppressed because one or more lines are too long

@ -93,7 +93,7 @@
"url": "https://www.buymeacoffee.com/ricmoo"
}
],
"gitHead": "c847f16d5c4f667e732f09b5ac3d980be758c4cf",
"gitHead": "8fed2f84768ace4bf3e5742c931a74841da7c637",
"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.8.0"
"version": "6.8.1"
}

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