Skip to content

Commit d31f5a7

Browse files
committed
admin: updated dist files
1 parent a8803ca commit d31f5a7

20 files changed

+83
-22
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.14.3 (2025-05-26 18:55)
7+
---------------------------------
8+
9+
- Fixed non-normalized yParity on EIP-7702 JSON-RPC responses ([#4985](https://github.com/ethers-io/ethers.js/issues/4985); [a8803ca](https://github.com/ethers-io/ethers.js/commit/a8803ca4dce20d2dededed8da65e80f2a8770fb1)).
10+
611
ethers/v6.14.2 (2025-05-26 18:03)
712
---------------------------------
813

dist/ethers.js

Lines changed: 16 additions & 2 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.14.2";
6+
const version = "6.14.3";
77

88
/**
99
* Property helper functions.
@@ -17343,11 +17343,25 @@ function formatTransactionResponse(value) {
1734317343
accessList: allowNull(accessListify, null),
1734417344
blobVersionedHashes: allowNull(arrayOf(formatHash, true), null),
1734517345
authorizationList: allowNull(arrayOf((v) => {
17346+
let sig;
17347+
if (v.signature) {
17348+
sig = v.signature;
17349+
}
17350+
else {
17351+
let yParity = v.yParity;
17352+
if (yParity === "0x1b") {
17353+
yParity = 0;
17354+
}
17355+
else if (yParity === "0x1c") {
17356+
yParity = 1;
17357+
}
17358+
sig = Object.assign({}, v, { yParity });
17359+
}
1734617360
return {
1734717361
address: getAddress(v.address),
1734817362
chainId: getBigInt(v.chainId),
1734917363
nonce: getBigInt(v.nonce),
17350-
signature: Signature.from(v.signature ? v.signature : v)
17364+
signature: Signature.from(sig)
1735117365
};
1735217366
}, false), null),
1735317367
blockHash: allowNull(formatHash, null),

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: 16 additions & 2 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.14.2";
12+
const version = "6.14.3";
1313

1414
/**
1515
* Property helper functions.
@@ -17349,11 +17349,25 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
1734917349
accessList: allowNull(accessListify, null),
1735017350
blobVersionedHashes: allowNull(arrayOf(formatHash, true), null),
1735117351
authorizationList: allowNull(arrayOf((v) => {
17352+
let sig;
17353+
if (v.signature) {
17354+
sig = v.signature;
17355+
}
17356+
else {
17357+
let yParity = v.yParity;
17358+
if (yParity === "0x1b") {
17359+
yParity = 0;
17360+
}
17361+
else if (yParity === "0x1c") {
17362+
yParity = 1;
17363+
}
17364+
sig = Object.assign({}, v, { yParity });
17365+
}
1735217366
return {
1735317367
address: getAddress(v.address),
1735417368
chainId: getBigInt(v.chainId),
1735517369
nonce: getBigInt(v.nonce),
17356-
signature: Signature.from(v.signature ? v.signature : v)
17370+
signature: Signature.from(sig)
1735717371
};
1735817372
}, false), null),
1735917373
blockHash: allowNull(formatHash, null),

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.

lib.commonjs/_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.

lib.commonjs/providers/format.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.

lib.commonjs/providers/format.js

Lines changed: 15 additions & 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)