Skip to content

Commit d3bfd28

Browse files
committed
admin: update dist files
1 parent 419a984 commit d3bfd28

17 files changed

+241
-66
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.5 (2024-12-03 15:23)
6+
ethers/v6.13.5 (2025-01-04 01:51)
77
---------------------------------
88

99
- Fixed bad logic for searching prefetched transactions by hash ([#4868](https://github.com/ethers-io/ethers.js/issues/4868); [ef3c9bc](https://github.com/ethers-io/ethers.js/commit/ef3c9bc3afb9e36a073bbd3572e9021a852bd2c4)).

dist/ethers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ function assertArgumentCount(count, expectedCount, message) {
219219
if (message) {
220220
message = ": " + message;
221221
}
222-
assert(count >= expectedCount, "missing arguemnt" + message, "MISSING_ARGUMENT", {
222+
assert(count >= expectedCount, "missing argument" + message, "MISSING_ARGUMENT", {
223223
count: count,
224224
expectedCount: expectedCount
225225
});
@@ -23323,7 +23323,7 @@ class NonceManager extends AbstractSigner {
2332323323
class BrowserProvider extends JsonRpcApiPollingProvider {
2332423324
#request;
2332523325
/**
23326-
* Connnect to the %%ethereum%% provider, optionally forcing the
23326+
* Connect to the %%ethereum%% provider, optionally forcing the
2332723327
* %%network%%.
2332823328
*/
2332923329
constructor(ethereum, network, _options) {

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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
225225
if (message) {
226226
message = ": " + message;
227227
}
228-
assert(count >= expectedCount, "missing arguemnt" + message, "MISSING_ARGUMENT", {
228+
assert(count >= expectedCount, "missing argument" + message, "MISSING_ARGUMENT", {
229229
count: count,
230230
expectedCount: expectedCount
231231
});
@@ -23329,7 +23329,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
2332923329
class BrowserProvider extends JsonRpcApiPollingProvider {
2333023330
#request;
2333123331
/**
23332-
* Connnect to the %%ethereum%% provider, optionally forcing the
23332+
* Connect to the %%ethereum%% provider, optionally forcing the
2333323333
* %%network%%.
2333423334
*/
2333523335
constructor(ethereum, network, _options) {

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.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/provider-browser.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export type BrowserProviderOptions = {
4646
export declare class BrowserProvider extends JsonRpcApiPollingProvider {
4747
#private;
4848
/**
49-
* Connnect to the %%ethereum%% provider, optionally forcing the
49+
* Connect to the %%ethereum%% provider, optionally forcing the
5050
* %%network%%.
5151
*/
5252
constructor(ethereum: Eip1193Provider, network?: Networkish, _options?: BrowserProviderOptions);

lib.commonjs/providers/provider-browser.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)