Skip to content

Commit

Permalink
admin: updated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Aug 15, 2023
1 parent 71606b5 commit 30d3d6e
Show file tree
Hide file tree
Showing 65 changed files with 103 additions and 77 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Change Log

This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.

ethers/v6.7.1 (2023-08-15 00:57)
--------------------------------

- Fix VSCode reported lint issues ([#4153](https://github.com/ethers-io/ethers.js/issues/4153), [#4156](https://github.com/ethers-io/ethers.js/issues/4156), [#4158](https://github.com/ethers-io/ethers.js/issues/4158), [#4159](https://github.com/ethers-io/ethers.js/issues/4159); [4eb84da](https://github.com/ethers-io/ethers.js/commit/4eb84da865a82a27c5113c38102b6b710096958e), [203dfc3](https://github.com/ethers-io/ethers.js/commit/203dfc33b9c8e72c9cdfe0a349ac763ef17a4484)).
- Add gasPrice to Polygon feeData for type 0 and type 1 legacy transactions ([#4315](https://github.com/ethers-io/ethers.js/issues/4315); [0df3ab9](https://github.com/ethers-io/ethers.js/commit/0df3ab93137039de1e1986bbfe9a5b32ceffa8a4)).

ethers/v6.7.0 (2023-08-02 23:52)
--------------------------------

Expand Down
19 changes: 12 additions & 7 deletions dist/ethers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.7.0";
const version = "6.7.1";

/**
* Property helper functions.
Expand Down Expand Up @@ -6156,7 +6156,7 @@ class SigningKey {
const sig = Signature.from(signature);
const der = Signature$1.fromCompact(getBytesCopy(concat([sig.r, sig.s]))).toDERRawBytes();
const pubKey = recoverPublicKey(getBytesCopy(digest), der, sig.yParity);
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
assertArgument(pubKey != null, "invalid signature for digest", "signature", signature);
return hexlify(pubKey);
}
/**
Expand Down Expand Up @@ -16276,9 +16276,13 @@ function getGasStationPlugin(url) {
request.setHeader("User-Agent", "ethers");
let response;
try {
response = await request.send();
const [_response, _feeData] = await Promise.all([
request.send(), fetchFeeData()
]);
response = _response;
const payload = response.bodyJson.standard;
const feeData = {
gasPrice: _feeData.gasPrice,
maxFeePerGas: parseUnits(payload.maxFee, 9),
maxPriorityFeePerGas: parseUnits(payload.maxPriorityFee, 9),
};
Expand Down Expand Up @@ -17200,7 +17204,8 @@ class AbstractProvider {
return null;
})())
});
let maxFeePerGas = null, maxPriorityFeePerGas = null;
let maxFeePerGas = null;
let maxPriorityFeePerGas = null;
// These are the recommended EIP-1559 heuristics for fee data
const block = this._wrapBlock(_block, network);
if (block && block.baseFeePerGas) {
Expand Down Expand Up @@ -19974,7 +19979,7 @@ const _WebSocket = getGlobal().WebSocket;
* - a sub-class MUST override the `_write(string)` method
* - a sub-class MUST call `_processMessage(string)` for each message
*
* @_subsection: api/providers/abstract-provider
* @_subsection: api/providers/abstract-provider:Socket Providers [about-socketProvider]
*/
/**
* A **SocketSubscriber** uses a socket transport to handle events and
Expand Down Expand Up @@ -23243,7 +23248,7 @@ export class HDNodeWalletManager {
}
*/
/**
* Returns the [[link-bip-32]] path for the acount at %%index%%.
* Returns the [[link-bip-32]] path for the account at %%index%%.
*
* This is the pattern used by wallets like Ledger.
*
Expand Down Expand Up @@ -23334,7 +23339,7 @@ function stall(duration) {
*/
class Wallet extends BaseWallet {
/**
* Create a new wallet for the %%privateKey%%, optionally connected
* Create a new wallet for the private %%key%%, optionally connected
* to %%provider%%.
*/
constructor(key, provider) {
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ethers.min.js

Large diffs are not rendered by default.

19 changes: 12 additions & 7 deletions dist/ethers.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
/**
* The current version of Ethers.
*/
const version = "6.7.0";
const version = "6.7.1";

/**
* Property helper functions.
Expand Down Expand Up @@ -6162,7 +6162,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
const sig = Signature.from(signature);
const der = Signature$1.fromCompact(getBytesCopy(concat([sig.r, sig.s]))).toDERRawBytes();
const pubKey = recoverPublicKey(getBytesCopy(digest), der, sig.yParity);
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
assertArgument(pubKey != null, "invalid signature for digest", "signature", signature);
return hexlify(pubKey);
}
/**
Expand Down Expand Up @@ -16282,9 +16282,13 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
request.setHeader("User-Agent", "ethers");
let response;
try {
response = await request.send();
const [_response, _feeData] = await Promise.all([
request.send(), fetchFeeData()
]);
response = _response;
const payload = response.bodyJson.standard;
const feeData = {
gasPrice: _feeData.gasPrice,
maxFeePerGas: parseUnits(payload.maxFee, 9),
maxPriorityFeePerGas: parseUnits(payload.maxPriorityFee, 9),
};
Expand Down Expand Up @@ -17206,7 +17210,8 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
return null;
})())
});
let maxFeePerGas = null, maxPriorityFeePerGas = null;
let maxFeePerGas = null;
let maxPriorityFeePerGas = null;
// These are the recommended EIP-1559 heuristics for fee data
const block = this._wrapBlock(_block, network);
if (block && block.baseFeePerGas) {
Expand Down Expand Up @@ -19980,7 +19985,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
* - a sub-class MUST override the `_write(string)` method
* - a sub-class MUST call `_processMessage(string)` for each message
*
* @_subsection: api/providers/abstract-provider
* @_subsection: api/providers/abstract-provider:Socket Providers [about-socketProvider]
*/
/**
* A **SocketSubscriber** uses a socket transport to handle events and
Expand Down Expand Up @@ -23249,7 +23254,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
}
*/
/**
* Returns the [[link-bip-32]] path for the acount at %%index%%.
* Returns the [[link-bip-32]] path for the account at %%index%%.
*
* This is the pattern used by wallets like Ledger.
*
Expand Down Expand Up @@ -23340,7 +23345,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
*/
class Wallet extends BaseWallet {
/**
* Create a new wallet for the %%privateKey%%, optionally connected
* Create a new wallet for the private %%key%%, optionally connected
* to %%provider%%.
*/
constructor(key, provider) {
Expand Down
2 changes: 1 addition & 1 deletion dist/ethers.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ethers.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wordlists-extra.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 30d3d6e

Please sign in to comment.