@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.
@@ -98,7 +98,7 @@ import { v4 as uuidv4 } from "uuid";
98
98
  // package.json
99
99
  var package_default = {
100
100
  name: "@obolnetwork/obol-sdk",
101
- version: "2.12.4",
101
+ version: "2.12.6",
102
102
  description: "A package for creating Distributed Validators using the Obol API.",
103
103
  bugs: {
104
104
  url: "https://github.com/obolnetwork/obol-sdk/issues"
@@ -159,7 +159,8 @@ var package_default = {
159
159
  "@typescript-eslint/* stays at ^6.x \u2014 eslint-config-standard-with-typescript@43 requires plugin ^6; v8 causes peer conflict.",
160
160
  "uuid stays at ^9.x \u2014 v11+ sets type:module (ESM-only).",
161
161
  "viem override pins a single resolved version to prevent duplicates across @safe-global/protocol-kit.",
162
- "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md."
162
+ "@noble/curves replaces @chainsafe/bls \u2014 pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md.",
163
+ "@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'."
163
164
  ],
164
165
  resolutions: {},
165
166
  overrides: {
@@ -167,7 +168,6 @@ var package_default = {
167
168
  },
168
169
  dependencies: {
169
170
  "@chainsafe/enr": "6.0.1",
170
- "@noble/curves": "2.2.0",
171
171
  "@chainsafe/ssz": "0.14.3",
172
172
  "@metamask/eth-sig-util": "8.2.0",
173
173
  "@safe-global/protocol-kit": "7.1.0",
@@ -182,6 +182,7 @@ var package_default = {
182
182
  uuid: "9.0.1"
183
183
  },
184
184
  devDependencies: {
185
+ "@noble/curves": "2.2.0",
185
186
  "@release-it/conventional-changelog": "11.0.0",
186
187
  "@types/elliptic": "6.4.18",
187
188
  "@types/jest": "29.5.14",
@@ -5286,8 +5287,8 @@ var MIN_PAIRS_PER_WORKER = 50;
5286
5287
  var MIN_PARALLEL_AGGREGATE_KEYS = 400;
5287
5288
  var MIN_KEYS_PER_WORKER_AGG = 100;
5288
5289
  var MIN_VALIDATORS_FOR_VALIDATION_WORKER = 50;
5289
- var VALIDATION_WORKER_TIMEOUT_MS = 12e4;
5290
- var WORKER_TIMEOUT_MS = 6e4;
5290
+ var VALIDATION_WORKER_TIMEOUT_MS = 3e5;
5291
+ var WORKER_TIMEOUT_MS = 18e4;
5291
5292
  function isValidationTimeoutReply(msg) {
5292
5293
  return typeof msg === "object" && msg !== null && "validationTimeoutMs" in msg && typeof msg.validationTimeoutMs === "number";
5293
5294
  }