@hypurrquant/defi-cli 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js CHANGED
@@ -7443,7 +7443,7 @@ var Executor = class _Executor {
7443
7443
  try {
7444
7444
  const block = await client.getBlock({ blockTag: "latest" });
7445
7445
  if (block.baseFeePerGas !== null && block.baseFeePerGas !== void 0) {
7446
- const maxFee = block.baseFeePerGas * 2n + priorityFee;
7446
+ const maxFee = block.baseFeePerGas * 125n / 100n + priorityFee;
7447
7447
  return [maxFee, priorityFee];
7448
7448
  }
7449
7449
  } catch {