admin: updated dist files
This commit is contained in:
parent
d51e3fbff4
commit
3df09fcbe6
@ -3,6 +3,11 @@ Change Log
|
||||
|
||||
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
|
||||
|
||||
ethers/v6.6.1 (2023-06-23 00:05)
|
||||
--------------------------------
|
||||
|
||||
- Fixed CCIP read in contract calls ([#4043](https://github.com/ethers-io/ethers.js/issues/4043); [d51e3fb](https://github.com/ethers-io/ethers.js/commit/d51e3fbff43c31d88353ac71151626312d22c0b9)).
|
||||
|
||||
ethers/v6.6.0 (2023-06-13 21:42)
|
||||
--------------------------------
|
||||
|
||||
|
4
dist/ethers.js
vendored
4
dist/ethers.js
vendored
@ -3,7 +3,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.6.0";
|
||||
const version = "6.6.1";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -12720,7 +12720,7 @@ function copyRequest(req) {
|
||||
result.blockTag = req.blockTag;
|
||||
}
|
||||
if ("enableCcipRead" in req) {
|
||||
result.enableCcipReadEnabled = !!req.enableCcipRead;
|
||||
result.enableCcipRead = !!req.enableCcipRead;
|
||||
}
|
||||
if ("customData" in req) {
|
||||
result.customData = req.customData;
|
||||
|
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
4
dist/ethers.umd.js
vendored
4
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.6.0";
|
||||
const version = "6.6.1";
|
||||
|
||||
/**
|
||||
* Property helper functions.
|
||||
@ -12726,7 +12726,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
|
||||
result.blockTag = req.blockTag;
|
||||
}
|
||||
if ("enableCcipRead" in req) {
|
||||
result.enableCcipReadEnabled = !!req.enableCcipRead;
|
||||
result.enableCcipRead = !!req.enableCcipRead;
|
||||
}
|
||||
if ("customData" in req) {
|
||||
result.customData = req.customData;
|
||||
|
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
@ -151,7 +151,7 @@ const u64 = {
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
const version = "6.6.0";
|
||||
const version = "6.6.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.6.0";
|
||||
exports.version = "6.6.1";
|
||||
//# sourceMappingURL=_version.js.map
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -114,7 +114,7 @@ function copyRequest(req) {
|
||||
result.blockTag = req.blockTag;
|
||||
}
|
||||
if ("enableCcipRead" in req) {
|
||||
result.enableCcipReadEnabled = !!req.enableCcipRead;
|
||||
result.enableCcipRead = !!req.enableCcipRead;
|
||||
}
|
||||
if ("customData" in req) {
|
||||
result.customData = req.customData;
|
||||
|
File diff suppressed because one or more lines are too long
@ -2,5 +2,5 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version = "6.6.0";
|
||||
export const version = "6.6.1";
|
||||
//# sourceMappingURL=_version.js.map
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -110,7 +110,7 @@ export function copyRequest(req) {
|
||||
result.blockTag = req.blockTag;
|
||||
}
|
||||
if ("enableCcipRead" in req) {
|
||||
result.enableCcipReadEnabled = !!req.enableCcipRead;
|
||||
result.enableCcipRead = !!req.enableCcipRead;
|
||||
}
|
||||
if ("customData" in req) {
|
||||
result.customData = req.customData;
|
||||
|
File diff suppressed because one or more lines are too long
@ -93,7 +93,7 @@
|
||||
"url": "https://www.buymeacoffee.com/ricmoo"
|
||||
}
|
||||
],
|
||||
"gitHead": "203a759efc65bf6901d3e574a601525ea3936238",
|
||||
"gitHead": "d51e3fbff43c31d88353ac71151626312d22c0b9",
|
||||
"homepage": "https://ethers.org",
|
||||
"keywords": [
|
||||
"ethereum",
|
||||
@ -131,5 +131,5 @@
|
||||
"test-esm": "mocha --reporter ./reporter.cjs ./lib.esm/_tests/test-*.js"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"version": "6.6.0"
|
||||
"version": "6.6.1"
|
||||
}
|
||||
|
@ -3,4 +3,4 @@
|
||||
/**
|
||||
* The current version of Ethers.
|
||||
*/
|
||||
export const version: string = "6.6.0";
|
||||
export const version: string = "6.6.1";
|
||||
|
Loading…
Reference in New Issue
Block a user