Skip to content

Commit 60248f3

Browse files
committed
admin: update dist files
1 parent f5abaaf commit 60248f3

32 files changed

+185
-653
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Changelog
44
This change log is managed by `admin/cmds/update-versions` but may be manually updated.
55

66

7+
ethers/v5.7.2 (2022-10-18 23:41)
8+
--------------------------------
9+
10+
- Updated tests to use goerli instead of ropsten. ([1392803](https://github.com/ethers-io/ethers.js/commit/139280390c32b80c533e6a74c84595e6bea706b9))
11+
- Added new error strings Pocket returns. ([9f990c5](https://github.com/ethers-io/ethers.js/commit/9f990c57f0486728902d4b8e049536f2bb3487ee))
12+
- Fixed Alchemy goerli URL. ([#3320](https://github.com/ethers-io/ethers.js/issues/3320), [#3323](https://github.com/ethers-io/ethers.js/issues/3323), [#3340](https://github.com/ethers-io/ethers.js/issues/3340), [#3358](https://github.com/ethers-io/ethers.js/issues/3358), [#3423](https://github.com/ethers-io/ethers.js/issues/3423); [74e3d98](https://github.com/ethers-io/ethers.js/commit/74e3d98d1df2bd97be258202a63517d4aa1ba8fd))
13+
- Update testnets for third-party providers. ([#3320](https://github.com/ethers-io/ethers.js/issues/3320), [#3323](https://github.com/ethers-io/ethers.js/issues/3323), [#3340](https://github.com/ethers-io/ethers.js/issues/3340), [#3358](https://github.com/ethers-io/ethers.js/issues/3358), [#3423](https://github.com/ethers-io/ethers.js/issues/3423); [2a3a2e1](https://github.com/ethers-io/ethers.js/commit/2a3a2e1feda7b18c8e234c84e4de32d4246f18ed))
14+
715
ethers/v5.7.2 (2022-10-18 20:35)
816
--------------------------------
917

@@ -565,4 +573,4 @@ ethers/v5.0.0 (2020-06-12 19:58)
565573
--------------------------------
566574

567575
- Preserve config canary string. ([7157816](https://github.com/ethers-io/ethers.js/commit/7157816fa53f660d750811b293e3b1d5a2f70bd4))
568-
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))
576+
- Updated docs. ([9e4c7e6](https://github.com/ethers-io/ethers.js/commit/9e4c7e609d9eeb5f2a11d6a90bfa9d32ee696431))

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"diff": "4.0.1",
7070
"flatworm": "0.0.2-beta.7",
7171
"jison": "0.4.18",
72-
"karma": "6.3.17",
72+
"karma": "^6.4.1",
7373
"karma-chrome-launcher": "3.1.0",
7474
"karma-mocha": "2.0.1",
7575
"libnpmpublish": "3.0.1",

packages/ethers/dist/ethers.esm.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21318,7 +21318,7 @@ function checkError(method, error, params) {
2131821318
}
2131921319
message = (message || "").toLowerCase();
2132021320
// "insufficient funds for gas * price + value + cost(data)"
21321-
if (message.match(/insufficient funds|base fee exceeds gas limit/i)) {
21321+
if (message.match(/insufficient funds|base fee exceeds gas limit|InsufficientFunds/i)) {
2132221322
logger$u.throwError("insufficient funds for intrinsic transaction cost", Logger.errors.INSUFFICIENT_FUNDS, {
2132321323
error, method, transaction
2132421324
});
@@ -21341,7 +21341,7 @@ function checkError(method, error, params) {
2134121341
error, method, transaction
2134221342
});
2134321343
}
21344-
if (errorGas.indexOf(method) >= 0 && message.match(/gas required exceeds allowance|always failing transaction|execution reverted/)) {
21344+
if (errorGas.indexOf(method) >= 0 && message.match(/gas required exceeds allowance|always failing transaction|execution reverted|revert/)) {
2134521345
logger$u.throwError("cannot estimate gas; transaction may fail or may require manual gas limit", Logger.errors.UNPREDICTABLE_GAS_LIMIT, {
2134621346
error, method, transaction
2134721347
});
@@ -22337,7 +22337,7 @@ class AlchemyProvider extends UrlJsonRpcProvider {
2233722337
host = "eth-mainnet.alchemyapi.io/v2/";
2233822338
break;
2233922339
case "goerli":
22340-
host = "eth-goerli.g.alchemyapi.io/v2/";
22340+
host = "eth-goerli.g.alchemy.com/v2/";
2234122341
break;
2234222342
case "matic":
2234322343
host = "polygon-mainnet.g.alchemy.com/v2/";

packages/ethers/dist/ethers.esm.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.

packages/ethers/dist/ethers.esm.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.

packages/ethers/dist/ethers.esm.min.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.

packages/ethers/dist/ethers.umd.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27622,7 +27622,7 @@
2762227622
}
2762327623
message = (message || "").toLowerCase();
2762427624
// "insufficient funds for gas * price + value + cost(data)"
27625-
if (message.match(/insufficient funds|base fee exceeds gas limit/i)) {
27625+
if (message.match(/insufficient funds|base fee exceeds gas limit|InsufficientFunds/i)) {
2762627626
logger.throwError("insufficient funds for intrinsic transaction cost", lib.Logger.errors.INSUFFICIENT_FUNDS, {
2762727627
error: error,
2762827628
method: method,
@@ -27653,7 +27653,7 @@
2765327653
transaction: transaction
2765427654
});
2765527655
}
27656-
if (errorGas.indexOf(method) >= 0 && message.match(/gas required exceeds allowance|always failing transaction|execution reverted/)) {
27656+
if (errorGas.indexOf(method) >= 0 && message.match(/gas required exceeds allowance|always failing transaction|execution reverted|revert/)) {
2765727657
logger.throwError("cannot estimate gas; transaction may fail or may require manual gas limit", lib.Logger.errors.UNPREDICTABLE_GAS_LIMIT, {
2765827658
error: error,
2765927659
method: method,
@@ -28985,7 +28985,7 @@
2898528985
host = "eth-mainnet.alchemyapi.io/v2/";
2898628986
break;
2898728987
case "goerli":
28988-
host = "eth-goerli.g.alchemyapi.io/v2/";
28988+
host = "eth-goerli.g.alchemy.com/v2/";
2898928989
break;
2899028990
case "matic":
2899128991
host = "polygon-mainnet.g.alchemy.com/v2/";

packages/ethers/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.

packages/ethers/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.

packages/ethers/dist/ethers.umd.min.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.

packages/ethers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"test": "echo \"Error: no test specified\" && exit 1"
6363
},
6464
"sideEffects": false,
65-
"tarballHash": "0xc390b08476ef9c6def0bc9e44d41f77d2b23e7dfc6b2cf77b36d393c9de9c350",
65+
"tarballHash": "0x0787812d30a16e79d3a3da2017697837614f159ce6af12fa5704c9ee3a71995d",
6666
"types": "./lib/index.d.ts",
6767
"version": "5.7.2"
6868
}

packages/providers/lib.esm/alchemy-provider.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.

packages/providers/lib.esm/alchemy-provider.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.

packages/providers/lib.esm/json-rpc-provider.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/providers/lib.esm/json-rpc-provider.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.

packages/providers/lib/alchemy-provider.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.

packages/providers/lib/alchemy-provider.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.

packages/providers/lib/json-rpc-provider.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/providers/lib/json-rpc-provider.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.

packages/providers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"test": "echo \"Error: no test specified\" && exit 1"
6868
},
6969
"sideEffects": false,
70-
"tarballHash": "0x9abb236fa3ecc404996ea17a7f908fc6daab7b797cdc9de1dd8572b125b04806",
70+
"tarballHash": "0x7cd2809b100a1f50c6855245bf6ee7e848535447206f8fb83837445400204372",
7171
"types": "./lib/index.d.ts",
7272
"version": "5.7.2"
7373
}

0 commit comments

Comments
 (0)