admin: updated dist files
This commit is contained in:
parent
603d47496e
commit
c05a84aa65
@ -3,15 +3,18 @@ Change Log
|
||||
|
||||
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
|
||||
|
||||
ethers/v6.2.1 (2023-03-23 17:33)
|
||||
--------------------------------
|
||||
|
||||
- Stall block polling bootstrap when the network is down ([#3924](https://github.com/ethers-io/ethers.js/issues/3924); [603d474](https://github.com/ethers-io/ethers.js/commit/603d47496e2b667c15b72f315261d6e299381848)).
|
||||
|
||||
ethers/v6.2.0 (2023-03-20 15:53)
|
||||
--------------------------------
|
||||
|
||||
- Added extra details in the error info field for RPC errors ([30ffa78](https://github.com/ethers-io/ethers.js/commit/30ffa78d1441fa033677fa09237fc135a314f373)).
|
||||
- Remove Ankr as a deafult for now as the provided API key is failing ([6e01e54](https://github.com/ethers-io/ethers.js/commit/6e01e5448f4a3e2d30288d4c8447db295c3a2e7a)).
|
||||
- Fixed deferred filters after unsafe-eval changes ([#3749](https://github.com/ethers-io/ethers.js/issues/3749), [#3763](https://github.com/ethers-io/ethers.js/issues/3763); [2e3802a](https://github.com/ethers-io/ethers.js/commit/2e3802a83b8ad2f5a6269d79fbd1c83c9f2d1047)).
|
||||
- tests: updated ENS normalization tests to latest standard ([0a9e4cd](https://github.com/ethers-io/ethers.js/commit/0a9e4cd67dd0187445930cdb9d75d548590af9b2)).
|
||||
- Remove use of Function sub-class to address unsafe-eval issues ([#3749](https://github.com/ethers-io/ethers.js/issues/3749), [#3763](https://github.com/ethers-io/ethers.js/issues/3763); [7d3af51](https://github.com/ethers-io/ethers.js/commit/7d3af512c75b4c24027ec2daef1e9f4c1064194a)).
|
||||
- tests: added contract integration tests and llocal Geth ([5318b93](https://github.com/ethers-io/ethers.js/commit/5318b939fdfe8f58cdea4bdff7923f18afbea3a2)).
|
||||
- Added verifyTypedData utility (reported on Farcaster) ([f06a445](https://github.com/ethers-io/ethers.js/commit/f06a445247f3b294f9fc805cc8fe0752accb8edc)).
|
||||
- Removed stray logging in IpcProvider ([#3908](https://github.com/ethers-io/ethers.js/issues/3908), [#3909](https://github.com/ethers-io/ethers.js/issues/3909); [e11d4c1](https://github.com/ethers-io/ethers.js/commit/e11d4c1c20cc5b6fd5803cf9636c4f5bc082dab7)).
|
||||
- Fixed legacy serialization for implicit chainId transactions ([#3898](https://github.com/ethers-io/ethers.js/issues/3898), [#3899](https://github.com/ethers-io/ethers.js/issues/3899); [fcf6c8f](https://github.com/ethers-io/ethers.js/commit/fcf6c8fcee95ec412aaafba8ec84d5049b077a4e)).
|
||||
|
10
dist/ethers.js
vendored
10
dist/ethers.js
vendored
@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.2.0";
|
||||
const version = "6.2.1";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -15506,7 +15506,9 @@ class PollingBlockSubscriber {
|
||||
get pollingInterval() { return this.#interval; }
|
||||
set pollingInterval(value) { this.#interval = value; }
|
||||
async #poll() {
|
||||
try {
|
||||
const blockNumber = await this.#provider.getBlockNumber();
|
||||
// Bootstrap poll to setup our initial block number
|
||||
if (this.#blockNumber === -2) {
|
||||
this.#blockNumber = blockNumber;
|
||||
return;
|
||||
@ -15522,6 +15524,12 @@ class PollingBlockSubscriber {
|
||||
}
|
||||
this.#blockNumber = blockNumber;
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
// @TODO: Minor bump, add an "error" event to let subscribers
|
||||
// know things went awry.
|
||||
//console.log(error);
|
||||
}
|
||||
// We have been stopped
|
||||
if (this.#poller == null) {
|
||||
return;
|
||||
|
2
dist/ethers.js.map
vendored
2
dist/ethers.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/ethers.min.js
vendored
2
dist/ethers.min.js
vendored
File diff suppressed because one or more lines are too long
10
dist/ethers.umd.js
vendored
10
dist/ethers.umd.js
vendored
@ -9,7 +9,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.2.0";
|
||||
const version = "6.2.1";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -15512,7 +15512,9 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
get pollingInterval() { return this.#interval; }
|
||||
set pollingInterval(value) { this.#interval = value; }
|
||||
async #poll() {
|
||||
try {
|
||||
const blockNumber = await this.#provider.getBlockNumber();
|
||||
// Bootstrap poll to setup our initial block number
|
||||
if (this.#blockNumber === -2) {
|
||||
this.#blockNumber = blockNumber;
|
||||
return;
|
||||
@ -15528,6 +15530,12 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
}
|
||||
this.#blockNumber = blockNumber;
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
// @TODO: Minor bump, add an "error" event to let subscribers
|
||||
// know things went awry.
|
||||
//console.log(error);
|
||||
}
|
||||
// We have been stopped
|
||||
if (this.#poller == null) {
|
||||
return;
|
||||
|
2
dist/ethers.umd.js.map
vendored
2
dist/ethers.umd.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/ethers.umd.min.js
vendored
2
dist/ethers.umd.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/wordlists-extra.js
vendored
2
dist/wordlists-extra.js
vendored
@ -149,7 +149,7 @@ const u64 = {
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.2.0";
|
||||
const version = "6.2.1";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
|
2
dist/wordlists-extra.js.map
vendored
2
dist/wordlists-extra.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/wordlists-extra.min.js
vendored
2
dist/wordlists-extra.min.js
vendored
File diff suppressed because one or more lines are too long
@ -5,5 +5,5 @@ exports.version = void 0;
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
exports.version = "6.2.0";
|
||||
exports.version = "6.2.1";
|
||||
//# sourceMappingURL=_version.js.map
|
@ -44,7 +44,9 @@ class PollingBlockSubscriber {
|
||||
get pollingInterval() { return this.#interval; }
|
||||
set pollingInterval(value) { this.#interval = value; }
|
||||
async #poll() {
|
||||
try {
|
||||
const blockNumber = await this.#provider.getBlockNumber();
|
||||
// Bootstrap poll to setup our initial block number
|
||||
if (this.#blockNumber === -2) {
|
||||
this.#blockNumber = blockNumber;
|
||||
return;
|
||||
@ -60,6 +62,12 @@ class PollingBlockSubscriber {
|
||||
}
|
||||
this.#blockNumber = blockNumber;
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
// @TODO: Minor bump, add an "error" event to let subscribers
|
||||
// know things went awry.
|
||||
//console.log(error);
|
||||
}
|
||||
// We have been stopped
|
||||
if (this.#poller == null) {
|
||||
return;
|
||||
|
File diff suppressed because one or more lines are too long
@ -2,5 +2,5 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version = "6.2.0";
|
||||
export const version = "6.2.1";
|
||||
//# sourceMappingURL=_version.js.map
|
@ -40,7 +40,9 @@ export class PollingBlockSubscriber {
|
||||
get pollingInterval() { return this.#interval; }
|
||||
set pollingInterval(value) { this.#interval = value; }
|
||||
async #poll() {
|
||||
try {
|
||||
const blockNumber = await this.#provider.getBlockNumber();
|
||||
// Bootstrap poll to setup our initial block number
|
||||
if (this.#blockNumber === -2) {
|
||||
this.#blockNumber = blockNumber;
|
||||
return;
|
||||
@ -56,6 +58,12 @@ export class PollingBlockSubscriber {
|
||||
}
|
||||
this.#blockNumber = blockNumber;
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
// @TODO: Minor bump, add an "error" event to let subscribers
|
||||
// know things went awry.
|
||||
//console.log(error);
|
||||
}
|
||||
// We have been stopped
|
||||
if (this.#poller == null) {
|
||||
return;
|
||||
|
File diff suppressed because one or more lines are too long
@ -104,7 +104,7 @@
|
||||
"url": "https://www.buymeacoffee.com/ricmoo"
|
||||
}
|
||||
],
|
||||
"gitHead": "30ffa78d1441fa033677fa09237fc135a314f373",
|
||||
"gitHead": "603d47496e2b667c15b72f315261d6e299381848",
|
||||
"homepage": "https://ethers.org",
|
||||
"keywords": [
|
||||
"ethereum",
|
||||
@ -144,5 +144,5 @@
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"types": "./types/index.d.ts",
|
||||
"version": "6.2.0"
|
||||
"version": "6.2.1"
|
||||
}
|
||||
|
@ -3,4 +3,4 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version: string = "6.2.0";
|
||||
export const version: string = "6.2.1";
|
||||
|
@ -1 +1 @@
|
||||
{"version":3,"file":"subscriber-polling.d.ts","sourceRoot":"","sources":["../../src.ts/providers/subscriber-polling.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC3E,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAM9E;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,KAAK,EAAE,aAAa,GAAG,UAAU,CAOjG;AAID;;;;GAIG;AACH,qBAAa,sBAAuB,YAAW,UAAU;;gBAUzC,QAAQ,EAAE,gBAAgB;IAQtC,IAAI,eAAe,IAAI,MAAM,CAA2B;IACxD,IAAI,eAAe,CAAC,KAAK,EAAE,MAAM,EAA6B;IA4B9D,KAAK,IAAI,IAAI;IAMb,IAAI,IAAI,IAAI;IAMZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IAKtC,MAAM,IAAI,IAAI;CAGjB;AAED;;;;GAIG;AACH,qBAAa,iBAAkB,YAAW,UAAU;;gBAKpC,QAAQ,EAAE,gBAAgB;IAQhC,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAI3E,KAAK,IAAI,IAAI;IAQb,IAAI,IAAI,IAAI;IAOZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IACtC,MAAM,IAAI,IAAI;CACjB;AAED;;;;GAIG;AACH,qBAAa,uBAAwB,SAAQ,iBAAiB;;gBAG9C,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,YAAY;IAKtD,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;CAI9E;AAED;;;;GAIG;AACH,qBAAa,4BAA6B,SAAQ,iBAAiB;;gBAGnD,QAAQ,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM;IAK9C,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;CAI9E;AAED;;;;GAIG;AACH,qBAAa,sBAAuB,YAAW,UAAU;;gBAWzC,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW;IAiC3D,KAAK,IAAI,IAAI;IAYb,IAAI,IAAI,IAAI;IAOZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IAKtC,MAAM,IAAI,IAAI;CAGjB"}
|
||||
{"version":3,"file":"subscriber-polling.d.ts","sourceRoot":"","sources":["../../src.ts/providers/subscriber-polling.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC3E,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAM9E;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,KAAK,EAAE,aAAa,GAAG,UAAU,CAOjG;AAID;;;;GAIG;AACH,qBAAa,sBAAuB,YAAW,UAAU;;gBAUzC,QAAQ,EAAE,gBAAgB;IAQtC,IAAI,eAAe,IAAI,MAAM,CAA2B;IACxD,IAAI,eAAe,CAAC,KAAK,EAAE,MAAM,EAA6B;IAqC9D,KAAK,IAAI,IAAI;IAMb,IAAI,IAAI,IAAI;IAMZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IAKtC,MAAM,IAAI,IAAI;CAGjB;AAED;;;;GAIG;AACH,qBAAa,iBAAkB,YAAW,UAAU;;gBAKpC,QAAQ,EAAE,gBAAgB;IAQhC,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAI3E,KAAK,IAAI,IAAI;IAQb,IAAI,IAAI,IAAI;IAOZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IACtC,MAAM,IAAI,IAAI;CACjB;AAED;;;;GAIG;AACH,qBAAa,uBAAwB,SAAQ,iBAAiB;;gBAG9C,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,YAAY;IAKtD,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;CAI9E;AAED;;;;GAIG;AACH,qBAAa,4BAA6B,SAAQ,iBAAiB;;gBAGnD,QAAQ,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM;IAK9C,KAAK,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;CAI9E;AAED;;;;GAIG;AACH,qBAAa,sBAAuB,YAAW,UAAU;;gBAWzC,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW;IAiC3D,KAAK,IAAI,IAAI;IAYb,IAAI,IAAI,IAAI;IAOZ,KAAK,CAAC,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI;IAKtC,MAAM,IAAI,IAAI;CAGjB"}
|
Loading…
Reference in New Issue
Block a user