@obolnetwork/obol-sdk 2.12.4 → 2.12.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.
@@ -186,7 +186,7 @@ var import_uuid = require("uuid");
186
186
  // package.json
187
187
  var package_default = {
188
188
  name: "@obolnetwork/obol-sdk",
189
- version: "2.12.4",
189
+ version: "2.12.6",
190
190
  description: "A package for creating Distributed Validators using the Obol API.",
191
191
  bugs: {
192
192
  url: "https://github.com/obolnetwork/obol-sdk/issues"
@@ -247,7 +247,8 @@ var package_default = {
247
247
  "@typescript-eslint/* stays at ^6.x \u2014 eslint-config-standard-with-typescript@43 requires plugin ^6; v8 causes peer conflict.",
248
248
  "uuid stays at ^9.x \u2014 v11+ sets type:module (ESM-only).",
249
249
  "viem override pins a single resolved version to prevent duplicates across @safe-global/protocol-kit.",
250
- "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md."
250
+ "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md.",
251
+ "@noble/curves is in devDependencies (not dependencies) because tsup bundles it inline via noExternal. Keeping it in dependencies caused consumers to install @noble/hashes@2.2.0 (major-version 2) which shadowed @noble/hashes@1.x used by ethereum-cryptography, @coinbase/wallet-sdk, etc., breaking their @noble/curves initialisation with 'anumber is not a function'."
251
252
  ],
252
253
  resolutions: {},
253
254
  overrides: {
@@ -255,7 +256,6 @@ var package_default = {
255
256
  },
256
257
  dependencies: {
257
258
  "@chainsafe/enr": "6.0.1",
258
- "@noble/curves": "2.2.0",
259
259
  "@chainsafe/ssz": "0.14.3",
260
260
  "@metamask/eth-sig-util": "8.2.0",
261
261
  "@safe-global/protocol-kit": "7.1.0",
@@ -270,6 +270,7 @@ var package_default = {
270
270
  uuid: "9.0.1"
271
271
  },
272
272
  devDependencies: {
273
+ "@noble/curves": "2.2.0",
273
274
  "@release-it/conventional-changelog": "11.0.0",
274
275
  "@types/elliptic": "6.4.18",
275
276
  "@types/jest": "29.5.14",
@@ -5090,8 +5091,8 @@ var MIN_PAIRS_PER_WORKER = 50;
5090
5091
  var MIN_PARALLEL_AGGREGATE_KEYS = 400;
5091
5092
  var MIN_KEYS_PER_WORKER_AGG = 100;
5092
5093
  var MIN_VALIDATORS_FOR_VALIDATION_WORKER = 50;
5093
- var VALIDATION_WORKER_TIMEOUT_MS = 12e4;
5094
- var WORKER_TIMEOUT_MS = 6e4;
5094
+ var VALIDATION_WORKER_TIMEOUT_MS = 3e5;
5095
+ var WORKER_TIMEOUT_MS = 18e4;
5095
5096
  function isValidationTimeoutReply(msg) {
5096
5097
  return typeof msg === "object" && msg !== null && "validationTimeoutMs" in msg && typeof msg.validationTimeoutMs === "number";
5097
5098
  }