Skip to content

Commit a3bd900

Browse files
committed
admin: updated dist files
1 parent 135db72 commit a3bd900

18 files changed

+29
-24
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.1 (2025-05-15 14:17)
7+
---------------------------------
8+
9+
- Fix JSON-RPC authorizationList signature entries encoded as DATA instead of QUANTITY values ([#4916](https://github.com/ethers-io/ethers.js/issues/4916); [135db72](https://github.com/ethers-io/ethers.js/commit/135db722756b81f44f55441e1e2d24ef4f85f216)).
10+
611
ethers/v6.14.0 (2025-05-06 22:02)
712
---------------------------------
813

dist/ethers.js

Lines changed: 3 additions & 3 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.0";
6+
const version = "6.14.1";
77

88
/**
99
* Property helper functions.
@@ -20660,8 +20660,8 @@ class JsonRpcApiProvider extends AbstractProvider {
2066020660
nonce: toQuantity(a.nonce),
2066120661
chainId: toQuantity(a.chainId),
2066220662
yParity: toQuantity(a.signature.yParity),
20663-
r: a.signature.r,
20664-
s: a.signature.s,
20663+
r: toQuantity(a.signature.r),
20664+
s: toQuantity(a.signature.s),
2066520665
};
2066620666
});
2066720667
}

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: 3 additions & 3 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.0";
12+
const version = "6.14.1";
1313

1414
/**
1515
* Property helper functions.
@@ -20666,8 +20666,8 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
2066620666
nonce: toQuantity(a.nonce),
2066720667
chainId: toQuantity(a.chainId),
2066820668
yParity: toQuantity(a.signature.yParity),
20669-
r: a.signature.r,
20670-
s: a.signature.s,
20669+
r: toQuantity(a.signature.r),
20670+
s: toQuantity(a.signature.s),
2067120671
};
2067220672
});
2067320673
}

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)