@obolnetwork/obol-sdk 2.7.0 → 2.8.0

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.
Files changed (50) hide show
  1. package/dist/cjs/package.json +4 -2
  2. package/dist/cjs/src/abi/OVMFactory.js +620 -0
  3. package/dist/cjs/src/ajv.js +33 -6
  4. package/dist/cjs/src/bytecodes.js +8 -1
  5. package/dist/cjs/src/constants.js +55 -7
  6. package/dist/cjs/src/index.js +21 -9
  7. package/dist/cjs/src/schema.js +71 -1
  8. package/dist/cjs/src/splits/splitHelpers.js +218 -12
  9. package/dist/cjs/src/splits/splits.js +261 -0
  10. package/dist/cjs/src/types.js +0 -1
  11. package/dist/cjs/test/client/ajv.spec.js +269 -0
  12. package/dist/cjs/test/client/methods.spec.js +418 -0
  13. package/dist/cjs/test/fixtures.js +13 -1
  14. package/dist/cjs/test/splits/splits.spec.js +239 -0
  15. package/dist/esm/package.json +4 -2
  16. package/dist/esm/src/abi/OVMFactory.js +617 -0
  17. package/dist/esm/src/ajv.js +33 -6
  18. package/dist/esm/src/bytecodes.js +7 -0
  19. package/dist/esm/src/constants.js +54 -7
  20. package/dist/esm/src/index.js +20 -9
  21. package/dist/esm/src/schema.js +71 -1
  22. package/dist/esm/src/splits/splitHelpers.js +213 -13
  23. package/dist/esm/src/splits/splits.js +257 -0
  24. package/dist/esm/src/types.js +0 -1
  25. package/dist/esm/test/client/ajv.spec.js +267 -0
  26. package/dist/esm/test/client/methods.spec.js +393 -0
  27. package/dist/esm/test/fixtures.js +12 -0
  28. package/dist/esm/test/splits/splits.spec.js +237 -0
  29. package/dist/types/src/abi/OVMFactory.d.ts +662 -0
  30. package/dist/types/src/bytecodes.d.ts +7 -0
  31. package/dist/types/src/constants.d.ts +10 -21
  32. package/dist/types/src/index.d.ts +7 -0
  33. package/dist/types/src/schema.d.ts +145 -0
  34. package/dist/types/src/splits/splitHelpers.d.ts +40 -1
  35. package/dist/types/src/splits/splits.d.ts +51 -0
  36. package/dist/types/src/types.d.ts +83 -2
  37. package/dist/types/test/client/ajv.spec.d.ts +1 -0
  38. package/dist/types/test/client/methods.spec.d.ts +1 -0
  39. package/dist/types/test/fixtures.d.ts +10 -0
  40. package/dist/types/test/splits/splits.spec.d.ts +1 -0
  41. package/package.json +4 -2
  42. package/src/abi/OVMFactory.ts +617 -0
  43. package/src/ajv.ts +55 -13
  44. package/src/bytecodes.ts +15 -0
  45. package/src/constants.ts +66 -8
  46. package/src/index.ts +36 -15
  47. package/src/schema.ts +80 -0
  48. package/src/splits/splitHelpers.ts +360 -14
  49. package/src/splits/splits.ts +355 -0
  50. package/src/types.ts +96 -3
package/src/index.ts CHANGED
@@ -12,10 +12,10 @@ import {
12
12
  TermsAndConditionsSigningTypes,
13
13
  DEFAULT_BASE_VERSION,
14
14
  TERMS_AND_CONDITIONS_HASH,
15
- AVAILABLE_SPLITTER_CHAINS,
16
15
  CHAIN_CONFIGURATION,
17
16
  DEFAULT_RETROACTIVE_FUNDING_REWARDS_ONLY_SPLIT,
18
17
  OBOL_SDK_EMAIL,
18
+ isChainSupportedForSplitters,
19
19
  } from './constants.js';
20
20
  import { ConflictError } from './errors.js';
21
21
  import {
@@ -49,6 +49,7 @@ import {
49
49
  import { isContractAvailable } from './utils.js';
50
50
  import { Incentives } from './incentives/incentives.js';
51
51
  import { Exit } from './exits/exit.js';
52
+ import { ObolSplits } from './splits/splits.js';
52
53
  export * from './types.js';
53
54
  export * from './services.js';
54
55
  export * from './verification/signature-validator.js';
@@ -56,6 +57,7 @@ export * from './verification/common.js';
56
57
  export * from './constants.js';
57
58
  export { Incentives } from './incentives/incentives.js';
58
59
  export { Exit } from './exits/exit.js';
60
+ export { ObolSplits } from './splits/splits.js';
59
61
 
60
62
  /**
61
63
  * Obol sdk Client can be used for creating, managing and activating distributed validators.
@@ -78,6 +80,12 @@ export class Client extends Base {
78
80
  */
79
81
  public exit: Exit;
80
82
 
83
+ /**
84
+ * The splits module, responsible for managing splits.
85
+ * @type {ObolSplits}
86
+ */
87
+ public splits: ObolSplits;
88
+
81
89
  /**
82
90
  * The blockchain provider, used to interact with the network.
83
91
  * It can be null, undefined, or a valid provider instance and defaults to the Signer provider if Signer is passed.
@@ -112,6 +120,7 @@ export class Client extends Base {
112
120
  this.provider,
113
121
  );
114
122
  this.exit = new Exit(this.chainId, this.provider);
123
+ this.splits = new ObolSplits(this.signer, this.chainId, this.provider);
115
124
  }
116
125
 
117
126
  /**
@@ -205,28 +214,35 @@ export class Client extends Base {
205
214
  );
206
215
 
207
216
  // Check if we allow splitters on this chainId
208
- if (!AVAILABLE_SPLITTER_CHAINS.includes(this.chainId)) {
217
+ if (!isChainSupportedForSplitters(this.chainId)) {
209
218
  throw new Error(
210
219
  `Splitter configuration is not supported on ${this.chainId} chain`,
211
220
  );
212
221
  }
213
222
 
223
+ const chainConfig = CHAIN_CONFIGURATION[this.chainId];
224
+ if (!chainConfig?.SPLITMAIN_ADDRESS) {
225
+ throw new Error(
226
+ `SPLITMAIN_ADDRESS is not configured for chain ${this.chainId}`,
227
+ );
228
+ }
229
+
214
230
  const checkSplitMainAddress = await isContractAvailable(
215
- CHAIN_CONFIGURATION[this.chainId].SPLITMAIN_ADDRESS.address,
231
+ chainConfig.SPLITMAIN_ADDRESS.address,
216
232
  this.signer.provider as ProviderType,
217
- CHAIN_CONFIGURATION[this.chainId].SPLITMAIN_ADDRESS.bytecode,
233
+ chainConfig.SPLITMAIN_ADDRESS.bytecode,
218
234
  );
219
235
 
220
236
  const checkMulticallAddress = await isContractAvailable(
221
- CHAIN_CONFIGURATION[this.chainId].MULTICALL_ADDRESS.address,
237
+ chainConfig.MULTICALL_ADDRESS.address,
222
238
  this.signer.provider as ProviderType,
223
- CHAIN_CONFIGURATION[this.chainId].MULTICALL_ADDRESS.bytecode,
239
+ chainConfig.MULTICALL_ADDRESS.bytecode,
224
240
  );
225
241
 
226
242
  const checkOWRFactoryAddress = await isContractAvailable(
227
- CHAIN_CONFIGURATION[this.chainId].OWR_FACTORY_ADDRESS.address,
243
+ chainConfig.OWR_FACTORY_ADDRESS.address,
228
244
  this.signer.provider as ProviderType,
229
- CHAIN_CONFIGURATION[this.chainId].OWR_FACTORY_ADDRESS.bytecode,
245
+ chainConfig.OWR_FACTORY_ADDRESS.bytecode,
230
246
  );
231
247
 
232
248
  if (
@@ -240,8 +256,7 @@ export class Client extends Base {
240
256
  }
241
257
 
242
258
  const retroActiveFundingRecipient = {
243
- account:
244
- CHAIN_CONFIGURATION[this.chainId].RETROACTIVE_FUNDING_ADDRESS.address,
259
+ account: chainConfig.RETROACTIVE_FUNDING_ADDRESS.address,
245
260
  percentAllocation: validatedPayload.ObolRAFSplit,
246
261
  };
247
262
 
@@ -320,16 +335,23 @@ export class Client extends Base {
320
335
  );
321
336
 
322
337
  // Check if we allow splitters on this chainId
323
- if (!AVAILABLE_SPLITTER_CHAINS.includes(this.chainId)) {
338
+ if (!isChainSupportedForSplitters(this.chainId)) {
324
339
  throw new Error(
325
340
  `Splitter configuration is not supported on ${this.chainId} chain`,
326
341
  );
327
342
  }
328
343
 
344
+ const chainConfig = CHAIN_CONFIGURATION[this.chainId];
345
+ if (!chainConfig?.SPLITMAIN_ADDRESS) {
346
+ throw new Error(
347
+ `SPLITMAIN_ADDRESS is not configured for chain ${this.chainId}`,
348
+ );
349
+ }
350
+
329
351
  const checkSplitMainAddress = await isContractAvailable(
330
- CHAIN_CONFIGURATION[this.chainId].SPLITMAIN_ADDRESS.address,
352
+ chainConfig.SPLITMAIN_ADDRESS.address,
331
353
  this.signer.provider as ProviderType,
332
- CHAIN_CONFIGURATION[this.chainId].SPLITMAIN_ADDRESS.bytecode,
354
+ chainConfig.SPLITMAIN_ADDRESS.bytecode,
333
355
  );
334
356
 
335
357
  if (!checkSplitMainAddress) {
@@ -339,8 +361,7 @@ export class Client extends Base {
339
361
  }
340
362
 
341
363
  const retroActiveFundingRecipient = {
342
- account:
343
- CHAIN_CONFIGURATION[this.chainId].RETROACTIVE_FUNDING_ADDRESS.address,
364
+ account: chainConfig.RETROACTIVE_FUNDING_ADDRESS.address,
344
365
  percentAllocation: validatedPayload.ObolRAFSplit,
345
366
  };
346
367
 
package/src/schema.ts CHANGED
@@ -2,8 +2,10 @@ import { ZeroAddress } from 'ethers';
2
2
  import {
3
3
  DEFAULT_RETROACTIVE_FUNDING_REWARDS_ONLY_SPLIT,
4
4
  DEFAULT_RETROACTIVE_FUNDING_TOTAL_SPLIT,
5
+ PRINCIPAL_THRESHOLD,
5
6
  } from './constants';
6
7
  import { VALID_DEPOSIT_AMOUNTS, VALID_NON_COMPOUNDING_AMOUNTS } from './ajv';
8
+ import { zeroAddress } from 'viem';
7
9
 
8
10
  export const operatorPayloadSchema = {
9
11
  type: 'object',
@@ -150,3 +152,81 @@ export const rewardsSplitterPayloadSchema = {
150
152
  validateRewardsSplitRecipients: true,
151
153
  required: ['splitRecipients', 'principalRecipient', 'etherAmount'],
152
154
  };
155
+
156
+ export const ovmBaseSplitPayload = {
157
+ rewardSplitRecipients: {
158
+ type: 'array',
159
+ items: {
160
+ type: 'object',
161
+ properties: {
162
+ address: {
163
+ type: 'string',
164
+ pattern: '^0x[a-fA-F0-9]{40}$',
165
+ },
166
+ percentAllocation: { type: 'number' },
167
+ },
168
+ required: ['address', 'percentAllocation'],
169
+ },
170
+ },
171
+ OVMOwnerAddress: {
172
+ type: 'string',
173
+ pattern: '^0x[a-fA-F0-9]{40}$',
174
+ },
175
+ splitOwnerAddress: {
176
+ type: 'string',
177
+ pattern: '^0x[a-fA-F0-9]{40}$',
178
+ default: zeroAddress,
179
+ },
180
+ principalThreshold: {
181
+ type: 'number',
182
+ minimum: 16,
183
+ default: PRINCIPAL_THRESHOLD,
184
+ },
185
+ distributorFeePercent: {
186
+ type: 'number',
187
+ minimum: 0,
188
+ maximum: 10,
189
+ default: 0,
190
+ },
191
+ };
192
+
193
+ export const ovmRewardsSplitPayloadSchema = {
194
+ type: 'object',
195
+ properties: {
196
+ ...ovmBaseSplitPayload,
197
+ principalRecipient: {
198
+ type: 'string',
199
+ pattern: '^0x[a-fA-F0-9]{40}$',
200
+ },
201
+ },
202
+ validateOVMRewardsSplitRecipients: true,
203
+ required: ['rewardSplitRecipients', 'OVMOwnerAddress', 'principalRecipient'],
204
+ };
205
+
206
+ export const ovmTotalSplitPayloadSchema = {
207
+ type: 'object',
208
+ properties: {
209
+ ...ovmBaseSplitPayload,
210
+ principalSplitRecipients: {
211
+ type: 'array',
212
+ items: {
213
+ type: 'object',
214
+ properties: {
215
+ address: {
216
+ type: 'string',
217
+ pattern: '^0x[a-fA-F0-9]{40}$',
218
+ },
219
+ percentAllocation: { type: 'number' },
220
+ },
221
+ required: ['address', 'percentAllocation'],
222
+ },
223
+ },
224
+ },
225
+ validateOVMRewardsSplitRecipients: true,
226
+ validateOVMTotalSplitRecipients: true,
227
+ required: [
228
+ 'rewardSplitRecipients',
229
+ 'principalSplitRecipients',
230
+ 'OVMOwnerAddress',
231
+ ],
232
+ };
@@ -4,15 +4,31 @@ import {
4
4
  type ETH_ADDRESS,
5
5
  type SplitRecipient,
6
6
  type SignerType,
7
+ type SplitV2Recipient,
8
+ type OVMArgs,
9
+ type ChainConfig,
7
10
  } from '../types';
8
- import { Contract, Interface, parseEther, ZeroAddress } from 'ethers';
11
+ import {
12
+ BrowserProvider,
13
+ Contract,
14
+ Interface,
15
+ parseEther,
16
+ type Wallet,
17
+ ZeroAddress,
18
+ } from 'ethers';
9
19
  import { OWRContract, OWRFactoryContract } from '../abi/OWR';
20
+ import { OVMFactoryContract } from '../abi/OVMFactory';
10
21
  import { splitMainEthereumAbi } from '../abi/SplitMain';
11
22
  import { MultiCallContract } from '../abi/Multicall';
12
- import { CHAIN_CONFIGURATION } from '../constants';
23
+ import { CHAIN_CONFIGURATION, CHAIN_PUBLIC_RPC_URL } from '../constants';
24
+ import { SplitsClient } from '@0xsplits/splits-sdk';
25
+ import { createPublicClient, createWalletClient, custom, http } from 'viem';
26
+ import { hoodi, mainnet } from 'viem/chains';
27
+ import { privateKeyToAccount } from 'viem/accounts';
13
28
 
14
29
  const splitMainContractInterface = new Interface(splitMainEthereumAbi);
15
30
  const owrFactoryContractInterface = new Interface(OWRFactoryContract.abi);
31
+ const ovmFactoryContractInterface = new Interface(OVMFactoryContract.abi);
16
32
 
17
33
  type Call = {
18
34
  target: ETH_ADDRESS;
@@ -33,14 +49,39 @@ type SplitArgs = {
33
49
  controllerAddress: ETH_ADDRESS;
34
50
  };
35
51
 
52
+ // Helper function to extract common recipient formatting logic
53
+ const formatRecipientsCommon = (
54
+ recipients: SplitRecipient[] | SplitV2Recipient[],
55
+ ): {
56
+ sortedRecipients: any[];
57
+ getAddress: (item: any) => string;
58
+ getPercentAllocation: (item: any) => number;
59
+ } => {
60
+ const copiedRecipients = [...recipients];
61
+
62
+ // Handle both SplitRecipient and SplitV2Recipient types
63
+ const getAddress = (item: any): string => item.account || item.address;
64
+ const getPercentAllocation = (item: any): number => item.percentAllocation;
65
+
66
+ // Has to be sorted when passed
67
+ copiedRecipients.sort((a, b) => getAddress(a).localeCompare(getAddress(b)));
68
+
69
+ return {
70
+ sortedRecipients: copiedRecipients,
71
+ getAddress,
72
+ getPercentAllocation,
73
+ };
74
+ };
75
+
36
76
  export const formatSplitRecipients = (
37
77
  recipients: SplitRecipient[],
38
78
  ): { accounts: ETH_ADDRESS[]; percentAllocations: number[] } => {
39
- // Has to be sorted when passed
40
- recipients.sort((a, b) => a.account.localeCompare(b.account));
41
- const accounts = recipients.map(item => item.account);
42
- const percentAllocations = recipients.map(recipient => {
43
- const splitTostring = (recipient.percentAllocation * 1e4).toFixed(0);
79
+ const { sortedRecipients, getAddress, getPercentAllocation } =
80
+ formatRecipientsCommon(recipients);
81
+
82
+ const accounts = sortedRecipients.map(item => getAddress(item));
83
+ const percentAllocations = sortedRecipients.map(recipient => {
84
+ const splitTostring = (getPercentAllocation(recipient) * 1e4).toFixed(0);
44
85
  return parseInt(splitTostring);
45
86
  });
46
87
  return { accounts, percentAllocations };
@@ -63,7 +104,7 @@ export const predictSplitterAddress = async ({
63
104
  }): Promise<ETH_ADDRESS> => {
64
105
  try {
65
106
  const splitMainContractInstance = new Contract(
66
- CHAIN_CONFIGURATION[chainId].SPLITMAIN_ADDRESS.address,
107
+ getChainConfig(chainId).SPLITMAIN_ADDRESS.address,
67
108
  splitMainEthereumAbi,
68
109
  signer,
69
110
  );
@@ -217,7 +258,7 @@ const createOWRContract = async ({
217
258
  }): Promise<ETH_ADDRESS> => {
218
259
  try {
219
260
  const OWRFactoryInstance = new Contract(
220
- CHAIN_CONFIGURATION[chainId].OWR_FACTORY_ADDRESS.address,
261
+ getChainConfig(chainId).OWR_FACTORY_ADDRESS.address,
221
262
  OWRFactoryContract.abi,
222
263
  signer,
223
264
  );
@@ -304,7 +345,7 @@ export const deploySplitterContract = async ({
304
345
  }): Promise<ETH_ADDRESS> => {
305
346
  try {
306
347
  const splitMainContractInstance = new Contract(
307
- CHAIN_CONFIGURATION[chainId].SPLITMAIN_ADDRESS.address,
348
+ getChainConfig(chainId).SPLITMAIN_ADDRESS.address,
308
349
  splitMainEthereumAbi,
309
350
  signer,
310
351
  );
@@ -403,16 +444,15 @@ export const deploySplitterAndOWRContracts = async ({
403
444
 
404
445
  executeCalls.push(
405
446
  {
406
- target: CHAIN_CONFIGURATION[chainId].SPLITMAIN_ADDRESS.address,
447
+ target: getChainConfig(chainId).SPLITMAIN_ADDRESS.address,
407
448
  callData: splitTxData,
408
449
  },
409
450
  {
410
- target: CHAIN_CONFIGURATION[chainId].OWR_FACTORY_ADDRESS.address,
451
+ target: getChainConfig(chainId).OWR_FACTORY_ADDRESS.address,
411
452
  callData: owrTxData,
412
453
  },
413
454
  );
414
- const multicallAddess =
415
- CHAIN_CONFIGURATION[chainId].MULTICALL_ADDRESS.address;
455
+ const multicallAddess = getChainConfig(chainId).MULTICALL_ADDRESS.address;
416
456
 
417
457
  const executeMultiCalls = await multicall(
418
458
  executeCalls,
@@ -555,3 +595,309 @@ const encodeCreateOWRecipientTxData = (
555
595
  parseEther(amountOfPrincipalStake.toString()),
556
596
  ]);
557
597
  };
598
+
599
+ // OVM and SplitV2 Helper Functions
600
+
601
+ // Helper function to format recipients specifically for SplitV2 (returns SplitV2Recipient[])
602
+ export const formatRecipientsForSplitV2 = (
603
+ splitRecipients: SplitRecipient[] | SplitV2Recipient[],
604
+ ): SplitV2Recipient[] => {
605
+ const { sortedRecipients, getAddress, getPercentAllocation } =
606
+ formatRecipientsCommon(splitRecipients);
607
+
608
+ return sortedRecipients
609
+ .filter(item => getAddress(item) !== '')
610
+ .map(item => ({
611
+ address: getAddress(item),
612
+ percentAllocation: parseFloat(getPercentAllocation(item).toString()),
613
+ }));
614
+ };
615
+
616
+ export const createSplitsClient = async (
617
+ signer: SignerType,
618
+ chainId: number,
619
+ ): Promise<SplitsClient> => {
620
+ const chain = chainId === 1 ? mainnet : hoodi;
621
+ const client = createPublicClient({
622
+ chain,
623
+ transport: http(CHAIN_PUBLIC_RPC_URL[chainId]),
624
+ });
625
+ // convert signer to walletClient
626
+ if (
627
+ typeof window !== 'undefined' &&
628
+ signer.provider instanceof BrowserProvider
629
+ ) {
630
+ // For browser environment
631
+ const address = await signer.getAddress();
632
+ const viemWalletClient = createWalletClient({
633
+ account: address,
634
+ chain,
635
+ transport: custom((window as any).ethereum),
636
+ });
637
+ return new SplitsClient({
638
+ publicClient: client,
639
+ walletClient: viemWalletClient,
640
+ chainId,
641
+ });
642
+ } else {
643
+ // For non-browser environment, extract private key from signer
644
+ const signerPrivateKey = (signer as Wallet)?.privateKey;
645
+ if (!signerPrivateKey) {
646
+ throw new Error('Signer private key not available');
647
+ }
648
+
649
+ const privateKey = signerPrivateKey.startsWith('0x')
650
+ ? signerPrivateKey
651
+ : `0x${signerPrivateKey}`;
652
+
653
+ const scriptAccount = privateKeyToAccount(privateKey as `0x${string}`);
654
+ const account = scriptAccount;
655
+
656
+ const viemWalletClient = createWalletClient({
657
+ account,
658
+ chain,
659
+ transport: http(CHAIN_PUBLIC_RPC_URL[chainId]),
660
+ });
661
+ return new SplitsClient({
662
+ publicClient: client,
663
+ walletClient: viemWalletClient,
664
+ chainId,
665
+ });
666
+ }
667
+ };
668
+
669
+ export const predictSplitV2Address = async ({
670
+ splitOwnerAddress,
671
+ recipients,
672
+ distributorFeePercent,
673
+ salt,
674
+ signer,
675
+ chainId,
676
+ }: {
677
+ splitOwnerAddress: string;
678
+ recipients: SplitV2Recipient[];
679
+ distributorFeePercent: number;
680
+ salt: `0x${string}`;
681
+ signer: SignerType;
682
+ chainId: number;
683
+ }): Promise<string> => {
684
+ try {
685
+ const splitsClient = await createSplitsClient(signer, chainId);
686
+
687
+ const response = await splitsClient.splitV2.predictDeterministicAddress({
688
+ ownerAddress: splitOwnerAddress,
689
+ recipients,
690
+ distributorFeePercent,
691
+ salt,
692
+ });
693
+
694
+ return response.splitAddress;
695
+ } catch (error: any) {
696
+ throw new Error(
697
+ `Failed to predict SplitV2 address: ${error.message ?? 'SplitV2 SDK call failed'}`,
698
+ );
699
+ }
700
+ };
701
+
702
+ export const isSplitV2Deployed = async ({
703
+ splitOwnerAddress,
704
+ recipients,
705
+ distributorFeePercent,
706
+ salt,
707
+ signer,
708
+ chainId,
709
+ }: {
710
+ splitOwnerAddress: string;
711
+ recipients: SplitV2Recipient[];
712
+ distributorFeePercent: number;
713
+ salt: `0x${string}`;
714
+ signer: SignerType;
715
+ chainId: number;
716
+ }): Promise<boolean> => {
717
+ try {
718
+ const splitsClient = await createSplitsClient(signer, chainId);
719
+ const response = await splitsClient.splitV2.isDeployed({
720
+ ownerAddress: splitOwnerAddress,
721
+ recipients,
722
+ distributorFeePercent,
723
+ salt,
724
+ });
725
+
726
+ return response.deployed;
727
+ } catch (error: any) {
728
+ // If the check fails, assume it's not deployed
729
+ return false;
730
+ }
731
+ };
732
+
733
+ export const deployOVMContract = async ({
734
+ OVMOwnerAddress,
735
+ principalRecipient,
736
+ rewardRecipient,
737
+ principalThreshold,
738
+ signer,
739
+ chainId,
740
+ }: {
741
+ OVMOwnerAddress: string;
742
+ principalRecipient: string;
743
+ rewardRecipient: string;
744
+ principalThreshold: number;
745
+ signer: SignerType;
746
+ chainId: number;
747
+ }): Promise<string> => {
748
+ try {
749
+ const chainConfig = getChainConfig(chainId);
750
+ if (!chainConfig?.OVM_FACTORY_ADDRESS?.address) {
751
+ throw new Error(`OVM Factory not configured for chain ${chainId}`);
752
+ }
753
+
754
+ const ovmFactoryContract = new Contract(
755
+ chainConfig.OVM_FACTORY_ADDRESS.address,
756
+ OVMFactoryContract.abi,
757
+ signer,
758
+ );
759
+
760
+ const tx = await ovmFactoryContract.createObolValidatorManager(
761
+ OVMOwnerAddress,
762
+ principalRecipient,
763
+ rewardRecipient,
764
+ principalThreshold,
765
+ );
766
+
767
+ const receipt = await tx.wait();
768
+
769
+ // Extract OVM address from logs
770
+ const ovmAddressLog = receipt?.logs[1]?.topics[1];
771
+ if (!ovmAddressLog) {
772
+ throw new Error('Failed to extract OVM address from transaction logs');
773
+ }
774
+
775
+ const ovmAddress = '0x' + ovmAddressLog.slice(26, 66);
776
+ return ovmAddress;
777
+ } catch (error: any) {
778
+ throw new Error(
779
+ `Failed to deploy OVM contract: ${error.message ?? 'OVM deployment failed'}`,
780
+ );
781
+ }
782
+ };
783
+
784
+ export const deployOVMAndSplitV2 = async ({
785
+ ovmArgs,
786
+ rewardRecipients,
787
+ isRewardsSplitterDeployed,
788
+ distributorFeePercent,
789
+ salt,
790
+ signer,
791
+ chainId,
792
+ principalSplitRecipients,
793
+ isPrincipalSplitDeployed,
794
+ splitOwnerAddress,
795
+ }: {
796
+ ovmArgs: OVMArgs;
797
+ rewardRecipients: SplitV2Recipient[];
798
+ isRewardsSplitterDeployed?: boolean;
799
+ distributorFeePercent: number;
800
+ salt: `0x${string}`;
801
+ signer: SignerType;
802
+ chainId: number;
803
+ principalSplitRecipients?: SplitV2Recipient[];
804
+ isPrincipalSplitDeployed?: boolean;
805
+ splitOwnerAddress: string;
806
+ }): Promise<string> => {
807
+ try {
808
+ const chainConfig = getChainConfig(chainId);
809
+ if (!chainConfig?.OVM_FACTORY_ADDRESS?.address) {
810
+ throw new Error(`OVM Factory not configured for chain ${chainId}`);
811
+ }
812
+
813
+ const splitsClient = await createSplitsClient(signer, chainId);
814
+ const executeCalls: any[] = [];
815
+
816
+ if (rewardRecipients && !isRewardsSplitterDeployed) {
817
+ // Create rewards split call data
818
+ const rewardsSplitTxData =
819
+ await splitsClient.splitV2.callData.createSplit({
820
+ recipients: rewardRecipients,
821
+ distributorFeePercent,
822
+ ownerAddress: splitOwnerAddress,
823
+ salt,
824
+ });
825
+
826
+ executeCalls.push(rewardsSplitTxData);
827
+ }
828
+
829
+ // Create principal split call data if needed (for total split scenario)
830
+ if (principalSplitRecipients && !isPrincipalSplitDeployed) {
831
+ const principalSplitTxData =
832
+ await splitsClient.splitV2.callData.createSplit({
833
+ recipients: principalSplitRecipients,
834
+ distributorFeePercent,
835
+ salt,
836
+ ownerAddress: splitOwnerAddress,
837
+ });
838
+ executeCalls.push(principalSplitTxData);
839
+ }
840
+
841
+ // Create OVM call data
842
+ const ovmTxData = encodeCreateOVMTxData(
843
+ ovmArgs.OVMOwnerAddress,
844
+ ovmArgs.principalRecipient,
845
+ ovmArgs.rewardRecipient,
846
+ ovmArgs.principalThreshold,
847
+ );
848
+
849
+ executeCalls.push({
850
+ address: chainConfig.OVM_FACTORY_ADDRESS.address,
851
+ data: ovmTxData,
852
+ });
853
+
854
+ // Execute multicall
855
+ const executeMultiCalls = await splitsClient.splitV2.multicall({
856
+ calls: executeCalls,
857
+ });
858
+
859
+ // Extract addresses from events
860
+ let ovmAddress: string | undefined;
861
+ const eventCount = executeMultiCalls?.events.length;
862
+
863
+ if (eventCount === 2) {
864
+ ovmAddress = executeMultiCalls?.events[0]?.address;
865
+ } else if (eventCount === 5) {
866
+ ovmAddress = executeMultiCalls?.events[3]?.address;
867
+ } else {
868
+ ovmAddress = executeMultiCalls?.events[6]?.address;
869
+ }
870
+ if (!ovmAddress) {
871
+ throw new Error(
872
+ 'Failed to extract contract addresses from multicall events',
873
+ );
874
+ }
875
+
876
+ return ovmAddress;
877
+ } catch (error: any) {
878
+ throw new Error(
879
+ `Failed to deploy OVM and SplitV2: ${error.message ?? 'Deployment failed'}`,
880
+ );
881
+ }
882
+ };
883
+
884
+ const encodeCreateOVMTxData = (
885
+ OVMOwnerAddress: string,
886
+ principalRecipient: string,
887
+ rewardRecipient: string,
888
+ principalThreshold: number,
889
+ ): string => {
890
+ return ovmFactoryContractInterface.encodeFunctionData(
891
+ 'createObolValidatorManager',
892
+ [OVMOwnerAddress, principalRecipient, rewardRecipient, principalThreshold],
893
+ );
894
+ };
895
+
896
+ // Helper function to safely get chain configuration
897
+ const getChainConfig = (chainId: number): ChainConfig => {
898
+ const config = CHAIN_CONFIGURATION[chainId];
899
+ if (!config) {
900
+ throw new Error(`Chain configuration not found for chain ID ${chainId}`);
901
+ }
902
+ return config;
903
+ };