Skip to content

Commit 52bbbae

Browse files
committed
admin: updated dist files
1 parent f1c8ca5 commit 52bbbae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+81
-66
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.7 (2025-04-25 16:38)
7+
---------------------------------
8+
9+
- Fixed Infura BSC network URLs ([#4951](https://github.com/ethers-io/ethers.js/issues/4951); [d01b4cb](https://github.com/ethers-io/ethers.js/commit/d01b4cb84b2f00dd04dc5317600a52f1fcf9b316)).
10+
611
ethers/v6.13.5 (2025-01-04 15:26)
712
---------------------------------
813

dist/ethers.js

Lines changed: 9 additions & 8 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.5";
6+
const version = "6.13.7";
77

88
/**
99
* Property helper functions.
@@ -2043,7 +2043,7 @@ function toString(val, decimals) {
20432043
* If operations are performed that cause a value to become too small
20442044
* (close to zero), the value loses precison and is said to //underflow//.
20452045
*
2046-
* For example, an value with 1 decimal place may store a number as small
2046+
* For example, a value with 1 decimal place may store a number as small
20472047
* as ``0.1``, but the value of ``0.1 / 2`` is ``0.05``, which cannot fit
20482048
* into 1 decimal place, so underflow occurs which means precision is lost
20492049
* and the value becomes ``0``.
@@ -6641,7 +6641,7 @@ class Signature {
66416641
#v;
66426642
#networkV;
66436643
/**
6644-
* The ``r`` value for a signautre.
6644+
* The ``r`` value for a signature.
66456645
*
66466646
* This represents the ``x`` coordinate of a "reference" or
66476647
* challenge point, from which the ``y`` can be computed.
@@ -7059,7 +7059,7 @@ class SigningKey {
70597059
let secpSig = secp256k1.Signature.fromCompact(getBytesCopy(concat([sig.r, sig.s])));
70607060
secpSig = secpSig.addRecoveryBit(sig.yParity);
70617061
const pubKey = secpSig.recoverPublicKey(getBytesCopy(digest));
7062-
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
7062+
assertArgument(pubKey != null, "invalid signature for digest", "signature", signature);
70637063
return "0x" + pubKey.toHex(false);
70647064
}
70657065
/**
@@ -19681,7 +19681,7 @@ class VoidSigner extends AbstractSigner {
1968119681
// Show the throttle message only once per service
1968219682
const shown = new Set();
1968319683
/**
19684-
* Displays a warning in tht console when the community resource is
19684+
* Displays a warning in the console when the community resource is
1968519685
* being used too heavily by the app, recommending the developer
1968619686
* acquire their own credentials instead of using the community
1968719687
* credentials.
@@ -22157,14 +22157,15 @@ function getHost$2(name) {
2215722157
return "arbitrum-sepolia.infura.io";
2215822158
case "base":
2215922159
return "base-mainnet.infura.io";
22160-
case "base-goerlia":
22160+
case "base-goerlia": // @TODO: Remove this typo in the future!
22161+
case "base-goerli":
2216122162
return "base-goerli.infura.io";
2216222163
case "base-sepolia":
2216322164
return "base-sepolia.infura.io";
2216422165
case "bnb":
22165-
return "bnbsmartchain-mainnet.infura.io";
22166+
return "bsc-mainnet.infura.io";
2216622167
case "bnbt":
22167-
return "bnbsmartchain-testnet.infura.io";
22168+
return "bsc-testnet.infura.io";
2216822169
case "linea":
2216922170
return "linea-mainnet.infura.io";
2217022171
case "linea-goerli":

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: 9 additions & 8 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.5";
12+
const version = "6.13.7";
1313

1414
/**
1515
* Property helper functions.
@@ -2049,7 +2049,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
20492049
* If operations are performed that cause a value to become too small
20502050
* (close to zero), the value loses precison and is said to //underflow//.
20512051
*
2052-
* For example, an value with 1 decimal place may store a number as small
2052+
* For example, a value with 1 decimal place may store a number as small
20532053
* as ``0.1``, but the value of ``0.1 / 2`` is ``0.05``, which cannot fit
20542054
* into 1 decimal place, so underflow occurs which means precision is lost
20552055
* and the value becomes ``0``.
@@ -6647,7 +6647,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
66476647
#v;
66486648
#networkV;
66496649
/**
6650-
* The ``r`` value for a signautre.
6650+
* The ``r`` value for a signature.
66516651
*
66526652
* This represents the ``x`` coordinate of a "reference" or
66536653
* challenge point, from which the ``y`` can be computed.
@@ -7065,7 +7065,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
70657065
let secpSig = secp256k1.Signature.fromCompact(getBytesCopy(concat([sig.r, sig.s])));
70667066
secpSig = secpSig.addRecoveryBit(sig.yParity);
70677067
const pubKey = secpSig.recoverPublicKey(getBytesCopy(digest));
7068-
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
7068+
assertArgument(pubKey != null, "invalid signature for digest", "signature", signature);
70697069
return "0x" + pubKey.toHex(false);
70707070
}
70717071
/**
@@ -19687,7 +19687,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
1968719687
// Show the throttle message only once per service
1968819688
const shown = new Set();
1968919689
/**
19690-
* Displays a warning in tht console when the community resource is
19690+
* Displays a warning in the console when the community resource is
1969119691
* being used too heavily by the app, recommending the developer
1969219692
* acquire their own credentials instead of using the community
1969319693
* credentials.
@@ -22163,14 +22163,15 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
2216322163
return "arbitrum-sepolia.infura.io";
2216422164
case "base":
2216522165
return "base-mainnet.infura.io";
22166-
case "base-goerlia":
22166+
case "base-goerlia": // @TODO: Remove this typo in the future!
22167+
case "base-goerli":
2216722168
return "base-goerli.infura.io";
2216822169
case "base-sepolia":
2216922170
return "base-sepolia.infura.io";
2217022171
case "bnb":
22171-
return "bnbsmartchain-mainnet.infura.io";
22172+
return "bsc-mainnet.infura.io";
2217222173
case "bnbt":
22173-
return "bnbsmartchain-testnet.infura.io";
22174+
return "bsc-testnet.infura.io";
2217422175
case "linea":
2217522176
return "linea-mainnet.infura.io";
2217622177
case "linea-goerli":

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)