@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.
@@ -154,7 +154,7 @@ var import_ethers = require("ethers");
154
154
  // package.json
155
155
  var package_default = {
156
156
  name: "@obolnetwork/obol-sdk",
157
- version: "2.12.4",
157
+ version: "2.12.6",
158
158
  description: "A package for creating Distributed Validators using the Obol API.",
159
159
  bugs: {
160
160
  url: "https://github.com/obolnetwork/obol-sdk/issues"
@@ -215,7 +215,8 @@ var package_default = {
215
215
  "@typescript-eslint/* stays at ^6.x \u2014 eslint-config-standard-with-typescript@43 requires plugin ^6; v8 causes peer conflict.",
216
216
  "uuid stays at ^9.x \u2014 v11+ sets type:module (ESM-only).",
217
217
  "viem override pins a single resolved version to prevent duplicates across @safe-global/protocol-kit.",
218
- "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md."
218
+ "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md.",
219
+ "@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'."
219
220
  ],
220
221
  resolutions: {},
221
222
  overrides: {
@@ -223,7 +224,6 @@ var package_default = {
223
224
  },
224
225
  dependencies: {
225
226
  "@chainsafe/enr": "6.0.1",
226
- "@noble/curves": "2.2.0",
227
227
  "@chainsafe/ssz": "0.14.3",
228
228
  "@metamask/eth-sig-util": "8.2.0",
229
229
  "@safe-global/protocol-kit": "7.1.0",
@@ -238,6 +238,7 @@ var package_default = {
238
238
  uuid: "9.0.1"
239
239
  },
240
240
  devDependencies: {
241
+ "@noble/curves": "2.2.0",
241
242
  "@release-it/conventional-changelog": "11.0.0",
242
243
  "@types/elliptic": "6.4.18",
243
244
  "@types/jest": "29.5.14",
@@ -4873,7 +4874,7 @@ var MIN_VALIDATORS_PER_WORKER = 25;
4873
4874
  var MIN_PAIRS_PER_WORKER = 50;
4874
4875
  var MIN_PARALLEL_AGGREGATE_KEYS = 400;
4875
4876
  var MIN_KEYS_PER_WORKER_AGG = 100;
4876
- var WORKER_TIMEOUT_MS = 6e4;
4877
+ var WORKER_TIMEOUT_MS = 18e4;
4877
4878
  var MAX_CONCURRENT_WORKERS_CAP = 8;
4878
4879
  function maxConcurrentWorkers(numWorkers) {
4879
4880
  return Math.min(numWorkers, MAX_CONCURRENT_WORKERS_CAP);