admin: updated dist files

This commit is contained in:
Richard Moore 2023-03-20 13:33:56 -04:00
parent 2e3802a83b
commit d2e683e8eb
12 changed files with 22 additions and 21 deletions

@ -3,10 +3,11 @@ Change Log
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated. This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
ethers/v6.2.0 (2023-03-20 12:51) ethers/v6.2.0 (2023-03-20 13:33)
-------------------------------- --------------------------------
- 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: 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), [2e3802a](https://github.com/ethers-io/ethers.js/commit/2e3802a83b8ad2f5a6269d79fbd1c83c9f2d1047)).
- tests: added contract integration tests and llocal Geth ([5318b93](https://github.com/ethers-io/ethers.js/commit/5318b939fdfe8f58cdea4bdff7923f18afbea3a2)). - 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)). - 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)). - 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)).

6
dist/ethers.js vendored

@ -13781,7 +13781,7 @@ function buildWrappedMethod(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getFunction(key); const fragment = contract.interface.getFunction(key);
assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {
@ -13800,7 +13800,7 @@ function buildWrappedEvent(contract, key) {
}); });
return fragment; return fragment;
}; };
const method = async function (...args) { const method = function (...args) {
return new PreparedTopicFilter(contract, getFragment(...args), args); return new PreparedTopicFilter(contract, getFragment(...args), args);
}; };
defineProperties(method, { defineProperties(method, {
@ -13811,7 +13811,7 @@ function buildWrappedEvent(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getEvent(key); const fragment = contract.interface.getEvent(key);
assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {

2
dist/ethers.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/ethers.umd.js vendored

@ -13787,7 +13787,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getFunction(key); const fragment = contract.interface.getFunction(key);
assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {
@ -13806,7 +13806,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
}); });
return fragment; return fragment;
}; };
const method = async function (...args) { const method = function (...args) {
return new PreparedTopicFilter(contract, getFragment(...args), args); return new PreparedTopicFilter(contract, getFragment(...args), args);
}; };
defineProperties(method, { defineProperties(method, {
@ -13817,7 +13817,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getEvent(key); const fragment = contract.interface.getEvent(key);
assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert$1(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -315,7 +315,7 @@ function buildWrappedMethod(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getFunction(key); const fragment = contract.interface.getFunction(key);
(0, index_js_3.assert)(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { (0, index_js_3.assert)(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {
@ -334,7 +334,7 @@ function buildWrappedEvent(contract, key) {
}); });
return fragment; return fragment;
}; };
const method = async function (...args) { const method = function (...args) {
return new PreparedTopicFilter(contract, getFragment(...args), args); return new PreparedTopicFilter(contract, getFragment(...args), args);
}; };
(0, index_js_3.defineProperties)(method, { (0, index_js_3.defineProperties)(method, {
@ -345,7 +345,7 @@ function buildWrappedEvent(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getEvent(key); const fragment = contract.interface.getEvent(key);
(0, index_js_3.assert)(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { (0, index_js_3.assert)(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {

File diff suppressed because one or more lines are too long

@ -310,7 +310,7 @@ function buildWrappedMethod(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getFunction(key); const fragment = contract.interface.getFunction(key);
assert(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {
@ -329,7 +329,7 @@ function buildWrappedEvent(contract, key) {
}); });
return fragment; return fragment;
}; };
const method = async function (...args) { const method = function (...args) {
return new PreparedTopicFilter(contract, getFragment(...args), args); return new PreparedTopicFilter(contract, getFragment(...args), args);
}; };
defineProperties(method, { defineProperties(method, {
@ -340,7 +340,7 @@ function buildWrappedEvent(contract, key) {
// Only works on non-ambiguous keys (refined fragment is always non-ambiguous) // Only works on non-ambiguous keys (refined fragment is always non-ambiguous)
Object.defineProperty(method, "fragment", { Object.defineProperty(method, "fragment", {
configurable: false, configurable: false,
enumerable: false, enumerable: true,
get: () => { get: () => {
const fragment = contract.interface.getEvent(key); const fragment = contract.interface.getEvent(key);
assert(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", { assert(fragment, "no matching fragment", "UNSUPPORTED_OPERATION", {

File diff suppressed because one or more lines are too long

@ -104,7 +104,7 @@
"url": "https://www.buymeacoffee.com/ricmoo" "url": "https://www.buymeacoffee.com/ricmoo"
} }
], ],
"gitHead": "7d3af512c75b4c24027ec2daef1e9f4c1064194a", "gitHead": "2e3802a83b8ad2f5a6269d79fbd1c83c9f2d1047",
"homepage": "https://ethers.org", "homepage": "https://ethers.org",
"keywords": [ "keywords": [
"ethereum", "ethereum",