Skip to content

Commit 5431723

Browse files
committed
admin: updated dist files
1 parent 8fed2f8 commit 5431723

30 files changed

+53
-38
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Change Log
33

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

6+
ethers/v6.8.1 (2023-11-01 16:08)
7+
--------------------------------
8+
9+
- 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)).
10+
- 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)).
11+
- 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)).
12+
613
ethers/v6.8.0 (2023-10-10 22:42)
714
--------------------------------
815

dist/ethers.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
33
/**
44
* The current version of Ethers.
55
*/
6-
const version = "6.8.0";
6+
const version = "6.8.1";
77

88
/**
99
* Property helper functions.
@@ -614,7 +614,7 @@ function toBeHex(_value, _width) {
614614
}
615615
else {
616616
const width = getNumber(_width, "width");
617-
assert(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
617+
assert(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
618618
operation: "toBeHex",
619619
fault: "overflow",
620620
value: _value
@@ -11879,7 +11879,9 @@ class ConstructorFragment extends Fragment {
1187911879
});
1188011880
}
1188111881
const result = [`constructor${joinParams(format, this.inputs)}`];
11882-
result.push((this.payable) ? "payable" : "nonpayable");
11882+
if (this.payable) {
11883+
result.push("payable");
11884+
}
1188311885
if (this.gas != null) {
1188411886
result.push(`@${this.gas.toString()}`);
1188511887
}
@@ -14032,7 +14034,7 @@ class TransactionReceipt {
1403214034
*/
1403314035
provider;
1403414036
/**
14035-
* The address the transaction was send to.
14037+
* The address the transaction was sent to.
1403614038
*/
1403714039
to;
1403814040
/**
@@ -17226,7 +17228,7 @@ function injectCommonNetworks() {
1722617228
registerEth("rinkeby", 4, { ensNetwork: 4 });
1722717229
registerEth("goerli", 5, { ensNetwork: 5 });
1722817230
registerEth("kovan", 42, { ensNetwork: 42 });
17229-
registerEth("sepolia", 11155111, {});
17231+
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
1723017232
registerEth("classic", 61, {});
1723117233
registerEth("classicKotti", 6, {});
1723217234
registerEth("arbitrum", 42161, {

dist/ethers.js.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.

dist/ethers.min.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.

dist/ethers.umd.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
99
/**
1010
* The current version of Ethers.
1111
*/
12-
const version = "6.8.0";
12+
const version = "6.8.1";
1313

1414
/**
1515
* Property helper functions.
@@ -620,7 +620,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
620620
}
621621
else {
622622
const width = getNumber(_width, "width");
623-
assert(width * 2 >= result.length, `value exceeds width (${width} bits)`, "NUMERIC_FAULT", {
623+
assert(width * 2 >= result.length, `value exceeds width (${width} bytes)`, "NUMERIC_FAULT", {
624624
operation: "toBeHex",
625625
fault: "overflow",
626626
value: _value
@@ -11885,7 +11885,9 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
1188511885
});
1188611886
}
1188711887
const result = [`constructor${joinParams(format, this.inputs)}`];
11888-
result.push((this.payable) ? "payable" : "nonpayable");
11888+
if (this.payable) {
11889+
result.push("payable");
11890+
}
1188911891
if (this.gas != null) {
1189011892
result.push(`@${this.gas.toString()}`);
1189111893
}
@@ -14038,7 +14040,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
1403814040
*/
1403914041
provider;
1404014042
/**
14041-
* The address the transaction was send to.
14043+
* The address the transaction was sent to.
1404214044
*/
1404314045
to;
1404414046
/**
@@ -17232,7 +17234,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
1723217234
registerEth("rinkeby", 4, { ensNetwork: 4 });
1723317235
registerEth("goerli", 5, { ensNetwork: 5 });
1723417236
registerEth("kovan", 42, { ensNetwork: 42 });
17235-
registerEth("sepolia", 11155111, {});
17237+
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
1723617238
registerEth("classic", 61, {});
1723717239
registerEth("classicKotti", 6, {});
1723817240
registerEth("arbitrum", 42161, {

dist/ethers.umd.js.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.

dist/ethers.umd.min.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.

dist/wordlists-extra.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.

dist/wordlists-extra.js.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.

dist/wordlists-extra.min.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.

0 commit comments

Comments
 (0)