@obolnetwork/obol-sdk 2.11.2 → 2.11.4

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.
@@ -99,7 +99,7 @@ describe('EOA', () => {
99
99
  {
100
100
  pubkey: '0x123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456',
101
101
  withdrawal_credentials: '0x1234567890123456789012345678901234567890123456789012345678901234',
102
- deposit_data_root: "0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01",
102
+ deposit_data_root: '0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01',
103
103
  signature: '0x121234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012000000000000000000',
104
104
  amount: '32000000000000000000', // 32 ETH in wei
105
105
  },
@@ -141,14 +141,14 @@ describe('EOA', () => {
141
141
  {
142
142
  pubkey: '0x123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456',
143
143
  withdrawal_credentials: '0x1234567890123456789012345678901234567890123456789012345678901234',
144
- deposit_data_root: "0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01",
144
+ deposit_data_root: '0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01',
145
145
  signature: '0x121234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012000000000000000000',
146
146
  amount: '32000000000000000000',
147
147
  },
148
148
  {
149
149
  pubkey: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdcd',
150
150
  withdrawal_credentials: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcd',
151
- deposit_data_root: "0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01",
151
+ deposit_data_root: '0x7f7f280756b8d5fe06ae922e5a20afb708c0f00d8954caede4c262795d956c01',
152
152
  signature: '0x121234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012000000000000000000',
153
153
  amount: '16000000000000000000',
154
154
  },
@@ -0,0 +1,103 @@
1
+ export declare const OVMFactoryContract: {
2
+ abi: ({
3
+ inputs: {
4
+ internalType: string;
5
+ name: string;
6
+ type: string;
7
+ }[];
8
+ stateMutability: string;
9
+ type: string;
10
+ name?: undefined;
11
+ anonymous?: undefined;
12
+ outputs?: undefined;
13
+ } | {
14
+ inputs: never[];
15
+ name: string;
16
+ type: string;
17
+ stateMutability?: undefined;
18
+ anonymous?: undefined;
19
+ outputs?: undefined;
20
+ } | {
21
+ anonymous: boolean;
22
+ inputs: {
23
+ indexed: boolean;
24
+ internalType: string;
25
+ name: string;
26
+ type: string;
27
+ }[];
28
+ name: string;
29
+ type: string;
30
+ stateMutability?: undefined;
31
+ outputs?: undefined;
32
+ } | {
33
+ inputs: {
34
+ internalType: string;
35
+ name: string;
36
+ type: string;
37
+ }[];
38
+ name: string;
39
+ outputs: {
40
+ internalType: string;
41
+ name: string;
42
+ type: string;
43
+ }[];
44
+ stateMutability: string;
45
+ type: string;
46
+ anonymous?: undefined;
47
+ })[];
48
+ };
49
+ export declare const OVMContract: {
50
+ abi: ({
51
+ inputs: {
52
+ internalType: string;
53
+ name: string;
54
+ type: string;
55
+ }[];
56
+ stateMutability: string;
57
+ type: string;
58
+ name?: undefined;
59
+ anonymous?: undefined;
60
+ outputs?: undefined;
61
+ } | {
62
+ inputs: never[];
63
+ name: string;
64
+ type: string;
65
+ stateMutability?: undefined;
66
+ anonymous?: undefined;
67
+ outputs?: undefined;
68
+ } | {
69
+ anonymous: boolean;
70
+ inputs: {
71
+ indexed: boolean;
72
+ internalType: string;
73
+ name: string;
74
+ type: string;
75
+ }[];
76
+ name: string;
77
+ type: string;
78
+ stateMutability?: undefined;
79
+ outputs?: undefined;
80
+ } | {
81
+ inputs: {
82
+ internalType: string;
83
+ name: string;
84
+ type: string;
85
+ }[];
86
+ name: string;
87
+ outputs: {
88
+ internalType: string;
89
+ name: string;
90
+ type: string;
91
+ }[];
92
+ stateMutability: string;
93
+ type: string;
94
+ anonymous?: undefined;
95
+ } | {
96
+ stateMutability: string;
97
+ type: string;
98
+ inputs?: undefined;
99
+ name?: undefined;
100
+ anonymous?: undefined;
101
+ outputs?: undefined;
102
+ })[];
103
+ };