admin: updated dist files
This commit is contained in:
parent
b993f7c3b6
commit
3a0d8685ca
@ -3,11 +3,16 @@ Change Log
|
||||
|
||||
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
|
||||
|
||||
ethers/v6.0.7 (2023-02-23 01:41)
|
||||
--------------------------------
|
||||
|
||||
- Fixed getContentHash ([#3819](https://github.com/ethers-io/ethers.js/issues/3819); [b993f7c](https://github.com/ethers-io/ethers.js/commit/b993f7c3b6c0e135c460c8b8dc5943215628231a)).
|
||||
|
||||
ethers/v6.0.6 (2023-02-22 21:53)
|
||||
--------------------------------
|
||||
|
||||
- Added chain parameters for Arbitrum and Optimism ([#3811](https://github.com/ethers-io/ethers.js/issues/3811); [77a7323](https://github.com/ethers-io/ethers.js/commit/77a7323119923e596f4def4f1bc90beae5447320)).
|
||||
- Fix NoneManager race condition ([#3812](https://github.com/ethers-io/ethers.js/issues/3812), [#3813](https://github.com/ethers-io/ethers.js/issues/3813); [5a3c10a](https://github.com/ethers-io/ethers.js/commit/5a3c10a29c047609a50828adb620d88aa8cf0014)).
|
||||
- Fix NonceManager race condition ([#3812](https://github.com/ethers-io/ethers.js/issues/3812), [#3813](https://github.com/ethers-io/ethers.js/issues/3813); [5a3c10a](https://github.com/ethers-io/ethers.js/commit/5a3c10a29c047609a50828adb620d88aa8cf0014)).
|
||||
- Add UMD output to dist builds ([#3814](https://github.com/ethers-io/ethers.js/issues/3814); [f9eed4c](https://github.com/ethers-io/ethers.js/commit/f9eed4cdb190b06dd4ddaa2382c1de42e8e98de6)).
|
||||
|
||||
ethers/v6.0.5 (2023-02-18 22:36)
|
||||
|
6
dist/ethers.js
vendored
6
dist/ethers.js
vendored
@ -2,7 +2,7 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.0.6";
|
||||
const version = "6.0.7";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -14008,7 +14008,7 @@ class EnsResolver {
|
||||
"function addr(bytes32) view returns (address)",
|
||||
"function addr(bytes32, uint) view returns (address)",
|
||||
"function text(bytes32, string) view returns (string)",
|
||||
"function contenthash() view returns (bytes)",
|
||||
"function contenthash(bytes32) view returns (bytes)",
|
||||
], provider);
|
||||
}
|
||||
/**
|
||||
@ -14137,7 +14137,7 @@ class EnsResolver {
|
||||
*/
|
||||
async getContentHash() {
|
||||
// keccak256("contenthash()")
|
||||
const data = await this.#fetch("contenthash()");
|
||||
const data = await this.#fetch("contenthash(bytes32)");
|
||||
// No contenthash
|
||||
if (data == null || data === "0x") {
|
||||
return null;
|
||||
|
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
6
dist/ethers.umd.js
vendored
6
dist/ethers.umd.js
vendored
@ -8,7 +8,7 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.0.6";
|
||||
const version = "6.0.7";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -14014,7 +14014,7 @@
|
||||
"function addr(bytes32) view returns (address)",
|
||||
"function addr(bytes32, uint) view returns (address)",
|
||||
"function text(bytes32, string) view returns (string)",
|
||||
"function contenthash() view returns (bytes)",
|
||||
"function contenthash(bytes32) view returns (bytes)",
|
||||
], provider);
|
||||
}
|
||||
/**
|
||||
@ -14143,7 +14143,7 @@
|
||||
*/
|
||||
async getContentHash() {
|
||||
// keccak256("contenthash()")
|
||||
const data = await this.#fetch("contenthash()");
|
||||
const data = await this.#fetch("contenthash(bytes32)");
|
||||
// No contenthash
|
||||
if (data == null || data === "0x") {
|
||||
return null;
|
||||
|
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.0.6";
|
||||
const version = "6.0.7";
|
||||
|
||||
/**
|
||||
* 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.0.6";
|
||||
exports.version = "6.0.7";
|
||||
//# sourceMappingURL=_version.js.map
|
@ -94,7 +94,7 @@ class EnsResolver {
|
||||
"function addr(bytes32) view returns (address)",
|
||||
"function addr(bytes32, uint) view returns (address)",
|
||||
"function text(bytes32, string) view returns (string)",
|
||||
"function contenthash() view returns (bytes)",
|
||||
"function contenthash(bytes32) view returns (bytes)",
|
||||
], provider);
|
||||
}
|
||||
/**
|
||||
@ -223,7 +223,7 @@ class EnsResolver {
|
||||
*/
|
||||
async getContentHash() {
|
||||
// keccak256("contenthash()")
|
||||
const data = await this.#fetch("contenthash()");
|
||||
const data = await this.#fetch("contenthash(bytes32)");
|
||||
// No contenthash
|
||||
if (data == null || data === "0x") {
|
||||
return null;
|
||||
|
File diff suppressed because one or more lines are too long
@ -2,5 +2,5 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version = "6.0.6";
|
||||
export const version = "6.0.7";
|
||||
//# sourceMappingURL=_version.js.map
|
@ -89,7 +89,7 @@ export class EnsResolver {
|
||||
"function addr(bytes32) view returns (address)",
|
||||
"function addr(bytes32, uint) view returns (address)",
|
||||
"function text(bytes32, string) view returns (string)",
|
||||
"function contenthash() view returns (bytes)",
|
||||
"function contenthash(bytes32) view returns (bytes)",
|
||||
], provider);
|
||||
}
|
||||
/**
|
||||
@ -218,7 +218,7 @@ export class EnsResolver {
|
||||
*/
|
||||
async getContentHash() {
|
||||
// keccak256("contenthash()")
|
||||
const data = await this.#fetch("contenthash()");
|
||||
const data = await this.#fetch("contenthash(bytes32)");
|
||||
// No contenthash
|
||||
if (data == null || data === "0x") {
|
||||
return null;
|
||||
|
File diff suppressed because one or more lines are too long
@ -105,7 +105,7 @@
|
||||
"url": "https://www.buymeacoffee.com/ricmoo"
|
||||
}
|
||||
],
|
||||
"gitHead": "fb3dffcc1298c05036c06b4f5938ef092c0d7e60",
|
||||
"gitHead": "b993f7c3b6c0e135c460c8b8dc5943215628231a",
|
||||
"homepage": "https://ethers.org",
|
||||
"keywords": [
|
||||
"ethereum",
|
||||
@ -145,5 +145,5 @@
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"types": "./types/index.d.ts",
|
||||
"version": "6.0.6"
|
||||
"version": "6.0.7"
|
||||
}
|
||||
|
@ -3,4 +3,4 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version: string = "6.0.6";
|
||||
export const version: string = "6.0.7";
|
||||
|
Loading…
Reference in New Issue
Block a user