@obolnetwork/obol-sdk 2.11.5-rc.1 → 2.11.5

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.
@@ -92,7 +92,7 @@ import { v4 as uuidv4 } from "uuid";
92
92
  // package.json
93
93
  var package_default = {
94
94
  name: "@obolnetwork/obol-sdk",
95
- version: "2.11.5-rc.1",
95
+ version: "2.11.5",
96
96
  description: "A package for creating Distributed Validators using the Obol API.",
97
97
  bugs: {
98
98
  url: "https://github.com/obolnetwork/obol-sdk/issues"
@@ -147,6 +147,9 @@ var package_default = {
147
147
  registry: "https://registry.npmjs.org/",
148
148
  access: "public"
149
149
  },
150
+ overrides: {
151
+ viem: "2.21.8"
152
+ },
150
153
  dependencies: {
151
154
  "@chainsafe/bls": "6.0.3",
152
155
  "@chainsafe/blst": "^0.2.0",
@@ -600,7 +603,7 @@ import * as semver from "semver";
600
603
  // src/verification/v1.6.0.ts
601
604
  import {
602
605
  UintNumberType as UintNumberType2
603
- } from "@chainsafe/ssz/lib/type/uint";
606
+ } from "@chainsafe/ssz/lib/type/uint.js";
604
607
 
605
608
  // src/utils.ts
606
609
  import { ethers } from "ethers";
@@ -874,7 +877,7 @@ var verifyDVV1X6 = (clusterLock) => __async(null, null, function* () {
874
877
  // src/verification/v1.7.0.ts
875
878
  import {
876
879
  UintNumberType as UintNumberType3
877
- } from "@chainsafe/ssz/lib/type/uint";
880
+ } from "@chainsafe/ssz/lib/type/uint.js";
878
881
  import {
879
882
  ByteListType as ByteListType3,
880
883
  ByteVectorType as ByteVectorType3,
@@ -12245,7 +12248,7 @@ var ENR = class _ENR extends BaseENR {
12245
12248
  // src/verification/v1.8.0.ts
12246
12249
  import {
12247
12250
  UintNumberType as UintNumberType4
12248
- } from "@chainsafe/ssz/lib/type/uint";
12251
+ } from "@chainsafe/ssz/lib/type/uint.js";
12249
12252
  import {
12250
12253
  ByteListType as ByteListType4,
12251
12254
  ByteVectorType as ByteVectorType4,
@@ -12533,7 +12536,7 @@ var validateSmartContractSignature = (_0) => __async(null, [_0], function* ({
12533
12536
  // src/verification/v1.10.0.ts
12534
12537
  import {
12535
12538
  UintNumberType as UintNumberType5
12536
- } from "@chainsafe/ssz/lib/type/uint";
12539
+ } from "@chainsafe/ssz/lib/type/uint.js";
12537
12540
  import {
12538
12541
  ByteListType as ByteListType5,
12539
12542
  ByteVectorType as ByteVectorType5,
@@ -13474,7 +13477,13 @@ var eoaDepositPayloadSchema = {
13474
13477
  };
13475
13478
 
13476
13479
  // src/splits/splitHelpers.ts
13477
- import { Contract, Interface, parseEther, ZeroAddress as ZeroAddress2 } from "ethers";
13480
+ import {
13481
+ Contract,
13482
+ Interface,
13483
+ parseEther,
13484
+ ZeroAddress as ZeroAddress2,
13485
+ getAddress as toChecksumAddress
13486
+ } from "ethers";
13478
13487
 
13479
13488
  // src/abi/OWR.ts
13480
13489
  var OWRFactoryContract = {
@@ -16041,7 +16050,7 @@ var deployOVMContract = (_0) => __async(null, [_0], function* ({
16041
16050
  throw new Error("Failed to extract OVM address from transaction logs");
16042
16051
  }
16043
16052
  const ovmAddress = "0x" + ovmAddressLog.slice(26, 66);
16044
- return ovmAddress;
16053
+ return toChecksumAddress(ovmAddress);
16045
16054
  } catch (error) {
16046
16055
  throw new Error(
16047
16056
  `Failed to deploy OVM contract: ${(_c = error.message) != null ? _c : "OVM deployment failed"}`