@obolnetwork/obol-sdk 2.11.9 → 2.11.12

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.
@@ -1 +1 @@
1
- {"root":["../../tsup.config.ts","../../src/ajv.ts","../../src/base.ts","../../src/bytecodes.ts","../../src/constants.ts","../../src/errors.ts","../../src/index.ts","../../src/schema.ts","../../src/services.ts","../../src/types.ts","../../src/utils.ts","../../src/abi/BatchDeposit.ts","../../src/abi/MerkleDistributorWithDeadline.ts","../../src/abi/Multicall3.ts","../../src/abi/OVM.ts","../../src/abi/OWR.ts","../../src/abi/SplitMain.ts","../../src/abi/splitV2FactoryAbi.ts","../../src/eoa/eoa.ts","../../src/eoa/eoaHelpers.ts","../../src/exits/ethUtils.ts","../../src/exits/exit.ts","../../src/exits/verificationHelpers.ts","../../src/incentives/incentiveHelpers.ts","../../src/incentives/incentives.ts","../../src/splits/splitHelpers.ts","../../src/splits/splits.ts","../../src/verification/common.ts","../../src/verification/signature-validator.ts","../../src/verification/sszTypes.ts","../../src/verification/v1.10.0.ts","../../src/verification/v1.6.0.ts","../../src/verification/v1.7.0.ts","../../src/verification/v1.8.0.ts","../../test/fixtures.ts","../../test/client/ajv.spec.ts","../../test/client/methods.spec.ts","../../test/eoa/eoa.spec.ts","../../test/exit/ethUtils.spec.ts","../../test/exit/exit.spec.ts","../../test/exit/verificationHelpers.spec.ts","../../test/incentives/incentives.spec.ts","../../test/splits/splits.spec.ts"],"version":"5.9.3"}
1
+ {"root":["../../tsup.config.ts","../../src/ajv.ts","../../src/base.ts","../../src/blsUtils.ts","../../src/bytecodes.ts","../../src/constants.ts","../../src/errors.ts","../../src/index.ts","../../src/schema.ts","../../src/services.ts","../../src/types.ts","../../src/utils.ts","../../src/abi/BatchDeposit.ts","../../src/abi/MerkleDistributorWithDeadline.ts","../../src/abi/Multicall3.ts","../../src/abi/OVM.ts","../../src/abi/OWR.ts","../../src/abi/SplitMain.ts","../../src/abi/splitV2FactoryAbi.ts","../../src/eoa/eoa.ts","../../src/eoa/eoaHelpers.ts","../../src/exits/ethUtils.ts","../../src/exits/exit.ts","../../src/exits/verificationHelpers.ts","../../src/incentives/incentiveHelpers.ts","../../src/incentives/incentives.ts","../../src/splits/splitHelpers.ts","../../src/splits/splits.ts","../../src/verification/common.ts","../../src/verification/signature-validator.ts","../../src/verification/sszTypes.ts","../../src/verification/v1.10.0.ts","../../src/verification/v1.6.0.ts","../../src/verification/v1.7.0.ts","../../src/verification/v1.8.0.ts","../../test/fixtures.ts","../../test/client/ajv.spec.ts","../../test/client/methods.spec.ts","../../test/eoa/eoa.spec.ts","../../test/exit/ethUtils.spec.ts","../../test/exit/exit.spec.ts","../../test/exit/verificationHelpers.spec.ts","../../test/incentives/incentives.spec.ts","../../test/splits/splits.spec.ts"],"version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obolnetwork/obol-sdk",
3
- "version": "2.11.9",
3
+ "version": "2.11.12",
4
4
  "description": "A package for creating Distributed Validators using the Obol API.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/obolnetwork/obol-sdk/issues"
@@ -48,64 +48,72 @@
48
48
  "author": "Obol Labs (https://obol.org)",
49
49
  "repository": {
50
50
  "type": "git",
51
- "url": "git+https://github.com/obolnetwork/obol-sdk.git"
51
+ "url": "https://github.com/ObolNetwork/obol-sdk"
52
52
  },
53
53
  "license": "ISC",
54
54
  "publishConfig": {
55
55
  "registry": "https://registry.npmjs.org/",
56
56
  "access": "public"
57
57
  },
58
+ "//": [
59
+ "PINNING NOTES:",
60
+ "@chainsafe/ssz MUST stay at ^0.14.x — v0.15+ set type:module (ESM-only), same CJS constraint.",
61
+ "@typescript-eslint/* stays at ^6.x — eslint-config-standard-with-typescript@43 requires plugin ^6; v8 causes peer conflict.",
62
+ "uuid stays at ^9.x — v11+ sets type:module (ESM-only).",
63
+ "viem override pins a single resolved version to prevent duplicates across @safe-global/protocol-kit.",
64
+ "@noble/curves replaces @chainsafe/bls — pure-JS CJS+ESM, no native addon, same ETH2 BLS12-381 spec. See CHAINSAFE_MIGRATION_PLAN.md."
65
+ ],
66
+ "resolutions": {},
58
67
  "overrides": {
59
- "viem": "2.21.8"
68
+ "viem": "2.48.7"
60
69
  },
61
70
  "dependencies": {
62
- "@chainsafe/bls": "6.0.3",
63
- "@chainsafe/blst": "^0.2.0",
64
- "@chainsafe/enr": "^5.0.1",
65
- "@chainsafe/ssz": "^0.14.0",
66
- "@metamask/eth-sig-util": "^8.2.0",
67
- "@safe-global/protocol-kit": "6.1.1",
68
- "@safe-global/types-kit": "^3.0.0",
69
- "ajv": "^8.17.1",
70
- "ajv-formats": "^3.0.1",
71
- "ajv-keywords": "^5.1.0",
72
- "cross-fetch": "^4.1.0",
73
- "dotenv": "^17.2.2",
74
- "elliptic": "^6.6.1",
75
- "ethers": "^6.15.0",
76
- "semver": "^7.7.2",
77
- "uuid": "^9.0.0"
71
+ "@chainsafe/enr": "6.0.1",
72
+ "@noble/curves": "2.2.0",
73
+ "@chainsafe/ssz": "0.14.3",
74
+ "@metamask/eth-sig-util": "8.2.0",
75
+ "@safe-global/protocol-kit": "7.1.0",
76
+ "@safe-global/types-kit": "3.1.0",
77
+ "ajv": "8.20.0",
78
+ "ajv-formats": "3.0.1",
79
+ "ajv-keywords": "5.1.0",
80
+ "cross-fetch": "4.1.0",
81
+ "dotenv": "17.4.2",
82
+ "elliptic": "6.6.1",
83
+ "ethers": "6.16.0",
84
+ "semver": "7.7.4",
85
+ "uuid": "9.0.1"
78
86
  },
79
87
  "devDependencies": {
80
- "@release-it/conventional-changelog": "^10.0.1",
81
- "@types/elliptic": "^6.4.18",
82
- "@types/jest": "^29.5.12",
83
- "@types/node": "^24.5.2",
84
- "@types/semver": "^7.7.1",
85
- "@types/uuid": "^9.0.1",
86
- "@typescript-eslint/eslint-plugin": "^6.21.0",
87
- "@typescript-eslint/parser": "^6.21.0",
88
- "eslint": "8.57.0",
89
- "eslint-config-standard-with-typescript": "^43.0.1",
90
- "eslint-plugin-import": "^2.32.0",
91
- "eslint-plugin-n": "^16.0.0",
92
- "eslint-plugin-promise": "^6.0.0",
93
- "husky": "^9.1.7",
94
- "jest": "^29.7.0",
95
- "lint-staged": "^16.2.3",
96
- "msw": "^2.11.3",
97
- "nock": "^14.0.10",
98
- "npm-run-all": "^4.1.5",
99
- "prettier": "^3.6.2",
100
- "release-it": "^19.0.5",
101
- "ts-jest": "^29.1.5",
102
- "tsup": "^8.5.0",
103
- "typedoc": "^0.28.13",
104
- "typedoc-plugin-markdown": "^4.9.0",
105
- "typescript": "~5.9.2"
88
+ "@release-it/conventional-changelog": "11.0.0",
89
+ "@types/elliptic": "6.4.18",
90
+ "@types/jest": "29.5.14",
91
+ "@types/node": "24.12.2",
92
+ "@types/semver": "7.7.1",
93
+ "@types/uuid": "9.0.8",
94
+ "@typescript-eslint/eslint-plugin": "6.21.0",
95
+ "@typescript-eslint/parser": "6.21.0",
96
+ "eslint": "8.57.1",
97
+ "eslint-config-standard-with-typescript": "43.0.1",
98
+ "eslint-plugin-import": "2.32.0",
99
+ "eslint-plugin-n": "17.24.0",
100
+ "eslint-plugin-promise": "7.3.0",
101
+ "husky": "9.1.7",
102
+ "jest": "29.7.0",
103
+ "lint-staged": "16.4.0",
104
+ "msw": "2.14.2",
105
+ "nock": "14.0.14",
106
+ "npm-run-all": "4.1.5",
107
+ "prettier": "3.8.3",
108
+ "release-it": "19.2.4",
109
+ "ts-jest": "29.4.9",
110
+ "tsup": "8.5.1",
111
+ "typedoc": "0.28.19",
112
+ "typedoc-plugin-markdown": "4.11.0",
113
+ "typescript": "5.9.3"
106
114
  },
107
115
  "engines": {
108
- "node": ">= 16"
116
+ "node": ">= 24"
109
117
  },
110
118
  "files": [
111
119
  "package.json",
@@ -176,5 +184,6 @@
176
184
  "<rootDir>/test"
177
185
  ],
178
186
  "maxWorkers": "50%"
179
- }
187
+ },
188
+ "packageManager": "yarn@1.22.22"
180
189
  }