@obolnetwork/obol-sdk 2.11.5 → 2.11.6

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.
@@ -171,7 +171,7 @@ var import_uuid = require("uuid");
171
171
  // package.json
172
172
  var package_default = {
173
173
  name: "@obolnetwork/obol-sdk",
174
- version: "2.11.5",
174
+ version: "2.11.6",
175
175
  description: "A package for creating Distributed Validators using the Obol API.",
176
176
  bugs: {
177
177
  url: "https://github.com/obolnetwork/obol-sdk/issues"
@@ -16766,11 +16766,10 @@ function submitEOAWithdrawalRequest(_0) {
16766
16766
  withdrawalContractAddress,
16767
16767
  requiredFee,
16768
16768
  chainId,
16769
- signer,
16770
- provider
16769
+ signer
16771
16770
  }) {
16772
16771
  if (!withdrawalAddress) throw new Error("No withdrawal address provided");
16773
- if (!allocation) throw new Error("No allocation provided");
16772
+ if (allocation === void 0 || allocation === null) throw new Error("No allocation provided");
16774
16773
  const amountInGwei = BigInt(Math.floor(Number(allocation) * ETHER_TO_GWEI));
16775
16774
  const data = `0x${pubkey.slice(2)}${amountInGwei.toString(16).padStart(16, "0")}`;
16776
16775
  const tx = yield signer.sendTransaction({
@@ -16887,8 +16886,7 @@ var EOA = class {
16887
16886
  withdrawalContractAddress: chainConfig.EOA_WITHDRAWAL_CONTRACT.address,
16888
16887
  requiredFee: validatedPayload.requiredFee,
16889
16888
  chainId: this.chainId,
16890
- signer: this.signer,
16891
- provider: this.provider
16889
+ signer: this.signer
16892
16890
  });
16893
16891
  });
16894
16892
  }