Skip to content

Commit 72c2182

Browse files
committed
admin: updated dist files
1 parent 1a51af8 commit 72c2182

20 files changed

+28
-19
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.13.2 (2024-07-25 17:54)
7+
---------------------------------
8+
9+
- Prevent mutating transactions when signing ([#4789](https://github.com/ethers-io/ethers.js/issues/4789); [1a51af8](https://github.com/ethers-io/ethers.js/commit/1a51af85397283601db77ca61d5596b145e7f2cb)).
10+
611
ethers/v6.13.1 (2024-06-18 02:09)
712
---------------------------------
813

dist/ethers.js

Lines changed: 2 additions & 1 deletion
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.13.1";
6+
const version = "6.13.2";
77

88
/**
99
* Property helper functions.
@@ -23553,6 +23553,7 @@ class BaseWallet extends AbstractSigner {
2355323553
return new BaseWallet(this.#signingKey, provider);
2355423554
}
2355523555
async signTransaction(tx) {
23556+
tx = copyRequest(tx);
2355623557
// Replace any Addressable or ENS name with an address
2355723558
const { to, from } = await resolveProperties({
2355823559
to: (tx.to ? resolveAddress(tx.to, this.provider) : undefined),

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: 2 additions & 1 deletion
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.13.1";
12+
const version = "6.13.2";
1313

1414
/**
1515
* Property helper functions.
@@ -23559,6 +23559,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
2355923559
return new BaseWallet(this.#signingKey, provider);
2356023560
}
2356123561
async signTransaction(tx) {
23562+
tx = copyRequest(tx);
2356223563
// Replace any Addressable or ENS name with an address
2356323564
const { to, from } = await resolveProperties({
2356423565
to: (tx.to ? resolveAddress(tx.to, this.provider) : undefined),

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)