admin: updated dist files

This commit is contained in:
Richard Moore 2023-05-18 17:28:39 -04:00
parent 83d7f43b9c
commit a6000e3c6d
12 changed files with 14 additions and 13 deletions

@ -3,9 +3,10 @@ Change Log
This change log is maintained by `src.ts/_admin/update-changelog.ts` but may also be manually updated.
ethers/v6.4.0 (2023-05-18 17:12)
ethers/v6.4.0 (2023-05-18 17:28)
--------------------------------
- Coerce value into BigInt when checking for value ([83d7f43](https://github.com/ethers-io/ethers.js/commit/83d7f43b9ca4b9868a3952510e56b41ea8610baa)).
- Better errors when junk passed as Contract target ([#3947](https://github.com/ethers-io/ethers.js/issues/3947), [#4053](https://github.com/ethers-io/ethers.js/issues/4053); [219b16d](https://github.com/ethers-io/ethers.js/commit/219b16dc284b0c6a532c8c49e824d8234f94222b)).
- More robust message checking in socket providers ([#4051](https://github.com/ethers-io/ethers.js/issues/4051); [f58990b](https://github.com/ethers-io/ethers.js/commit/f58990b80cfd83579014339315e58663c0aa6ae3)).
- More robust defaultProvider start-up when a backend fails on bootstrap ([#3979](https://github.com/ethers-io/ethers.js/issues/3979); [984f6fa](https://github.com/ethers-io/ethers.js/commit/984f6fa155fca08ebec2353c75ee0a0b974e8568)).

2
dist/ethers.js vendored

@ -13129,7 +13129,7 @@ function buildWrappedFallback(contract) {
const tx = (await copyOverrides(overrides, ["data"]));
tx.to = await contract.getAddress();
const iface = contract.interface;
const noValue = ((tx.value || BN_0$1) === BN_0$1);
const noValue = (getBigInt((tx.value || BN_0$1), "overrides.value") === BN_0$1);
const noData = ((tx.data || "0x") === "0x");
if (iface.fallback && !iface.fallback.payable && iface.receive && !noData && !noValue) {
assertArgument(false, "cannot send data to receive or send value to non-payable fallback", "overrides", overrides);

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

2
dist/ethers.umd.js vendored

@ -13135,7 +13135,7 @@ const __$G = (typeof globalThis !== 'undefined' ? globalThis: typeof window !==
const tx = (await copyOverrides(overrides, ["data"]));
tx.to = await contract.getAddress();
const iface = contract.interface;
const noValue = ((tx.value || BN_0$1) === BN_0$1);
const noValue = (getBigInt((tx.value || BN_0$1), "overrides.value") === BN_0$1);
const noData = ((tx.data || "0x") === "0x");
if (iface.fallback && !iface.fallback.payable && iface.receive && !noData && !noValue) {
assertArgument(false, "cannot send data to receive or send value to non-payable fallback", "overrides", overrides);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -115,7 +115,7 @@ function buildWrappedFallback(contract) {
const tx = (await copyOverrides(overrides, ["data"]));
tx.to = await contract.getAddress();
const iface = contract.interface;
const noValue = ((tx.value || BN_0) === BN_0);
const noValue = ((0, index_js_3.getBigInt)((tx.value || BN_0), "overrides.value") === BN_0);
const noData = ((tx.data || "0x") === "0x");
if (iface.fallback && !iface.fallback.payable && iface.receive && !noData && !noValue) {
(0, index_js_3.assertArgument)(false, "cannot send data to receive or send value to non-payable fallback", "overrides", overrides);

File diff suppressed because one or more lines are too long

@ -3,7 +3,7 @@ import { isAddressable, resolveAddress } from "../address/index.js";
// import from provider.ts instead of index.ts to prevent circular dep
// from EtherscanProvider
import { copyRequest, Log } from "../providers/provider.js";
import { defineProperties, isCallException, isHexString, resolveProperties, makeError, assert, assertArgument } from "../utils/index.js";
import { defineProperties, getBigInt, isCallException, isHexString, resolveProperties, makeError, assert, assertArgument } from "../utils/index.js";
import { ContractEventPayload, ContractUnknownEventPayload, ContractTransactionResponse, EventLog } from "./wrappers.js";
const BN_0 = BigInt(0);
function canCall(value) {
@ -110,7 +110,7 @@ function buildWrappedFallback(contract) {
const tx = (await copyOverrides(overrides, ["data"]));
tx.to = await contract.getAddress();
const iface = contract.interface;
const noValue = ((tx.value || BN_0) === BN_0);
const noValue = (getBigInt((tx.value || BN_0), "overrides.value") === BN_0);
const noData = ((tx.data || "0x") === "0x");
if (iface.fallback && !iface.fallback.payable && iface.receive && !noData && !noValue) {
assertArgument(false, "cannot send data to receive or send value to non-payable fallback", "overrides", overrides);

File diff suppressed because one or more lines are too long

@ -93,7 +93,7 @@
"url": "https://www.buymeacoffee.com/ricmoo"
}
],
"gitHead": "219b16dc284b0c6a532c8c49e824d8234f94222b",
"gitHead": "83d7f43b9ca4b9868a3952510e56b41ea8610baa",
"homepage": "https://ethers.org",
"keywords": [
"ethereum",