Skip to content

Commit 610799b

Browse files
committed
admin: updated dist files
1 parent be3e6b1 commit 610799b

20 files changed

+30
-20
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ output/**
55
**/*.swp
66
**/*.tgz
77
dist/*.gz
8+
9+
**/.DS_Store
10+
11+
.iterm2-project

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ testcases/**
2525

2626
# Ignore random junk
2727
.DS_Store
28+
.iterm2-project
2829
node_modules/**
2930
misc/**
3031
**/*.tgz

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.4 (2024-10-10 17:22)
7+
---------------------------------
8+
9+
- Fixed bug in JSON-RPC error checking ([#4827](https://github.com/ethers-io/ethers.js/issues/4827), [#4837](https://github.com/ethers-io/ethers.js/issues/4837), [#4851](https://github.com/ethers-io/ethers.js/issues/4851); [be3e6b1](https://github.com/ethers-io/ethers.js/commit/be3e6b14433bc88ad8c0c98a4f3a2a627cea6b99)).
10+
611
ethers/v6.13.3 (2024-09-30 22:08)
712
---------------------------------
813

dist/ethers.js

Lines changed: 2 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.13.3";
6+
const version = "6.13.4";
77

88
/**
99
* Property helper functions.
@@ -20022,7 +20022,7 @@ class JsonRpcSigner extends AbstractSigner {
2002220022
// If the network changed: calling again will also fail
2002320023
// If unsupported: likely destroyed
2002420024
if (isError(error, "CANCELLED") || isError(error, "BAD_DATA") ||
20025-
isError(error, "NETWORK_ERROR" )) {
20025+
isError(error, "NETWORK_ERROR") || isError(error, "UNSUPPORTED_OPERATION")) {
2002620026
if (error.info == null) {
2002720027
error.info = {};
2002820028
}

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
@@ -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.3";
12+
const version = "6.13.4";
1313

1414
/**
1515
* Property helper functions.
@@ -20028,7 +20028,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
2002820028
// If the network changed: calling again will also fail
2002920029
// If unsupported: likely destroyed
2003020030
if (isError(error, "CANCELLED") || isError(error, "BAD_DATA") ||
20031-
isError(error, "NETWORK_ERROR" )) {
20031+
isError(error, "NETWORK_ERROR") || isError(error, "UNSUPPORTED_OPERATION")) {
2003220032
if (error.info == null) {
2003320033
error.info = {};
2003420034
}

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.

0 commit comments

Comments
 (0)