@ssv-labs/ssv-sdk 0.1.3 → 1.0.2

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 (61) hide show
  1. package/README.html +4 -7
  2. package/README.md +56 -29
  3. package/dist/{KeyShares-B_4l2THg.js → KeyShares-Bk9uzOlK.js} +194 -51
  4. package/dist/{KeyShares-ClzHwMUy.mjs → KeyShares-Dlp4Pa3b.mjs} +198 -55
  5. package/dist/abi/mainnet/v4/getter.d.ts +699 -74
  6. package/dist/abi/mainnet/v4/setter.d.ts +939 -59
  7. package/dist/api/subgraph/index.d.ts +50 -48
  8. package/dist/config/create.d.ts +2 -2
  9. package/dist/config/globals.d.ts +3 -0
  10. package/dist/{globals-CDOcDUnk.mjs → config-BdEJjnYA.mjs} +107 -79
  11. package/dist/{globals-DsaKgq3v.js → config-ClGS9Tic.js} +73 -45
  12. package/dist/contract-interactions/create.d.ts +1 -1
  13. package/dist/contract-interactions/types.d.ts +9 -3
  14. package/dist/graphql/graphql.d.ts +4799 -921
  15. package/dist/keys.js +1 -1
  16. package/dist/keys.mjs +5 -5
  17. package/dist/libs/api/index.d.ts +1 -0
  18. package/dist/libs/cluster/index.d.ts +3 -1
  19. package/dist/libs/cluster/methods/deposit.d.ts +150 -4
  20. package/dist/libs/cluster/methods/exit-validators.d.ts +149 -0
  21. package/dist/libs/cluster/methods/index.d.ts +3 -1
  22. package/dist/libs/cluster/methods/liquidate-cluster.d.ts +149 -0
  23. package/dist/libs/cluster/methods/liquidate-ssv.d.ts +430 -0
  24. package/dist/libs/cluster/methods/migrate-cluster-to-eth.d.ts +431 -0
  25. package/dist/libs/cluster/methods/reactivate-cluster.d.ts +149 -0
  26. package/dist/libs/cluster/methods/register-validators.d.ts +2222 -309
  27. package/dist/libs/cluster/methods/remove-validators.d.ts +149 -0
  28. package/dist/libs/cluster/methods/set-fee-recipient.d.ts +149 -0
  29. package/dist/libs/cluster/methods/withdraw.d.ts +149 -0
  30. package/dist/libs/dao/index.d.ts +8 -0
  31. package/dist/libs/dao/methods/commit-root.d.ts +432 -0
  32. package/dist/libs/dao/methods/index.d.ts +3 -0
  33. package/dist/libs/dao/methods/update-network-fee-ssv.d.ts +430 -0
  34. package/dist/libs/dao/methods/withdraw-network-ssv-earnings.d.ts +430 -0
  35. package/dist/libs/operator/index.d.ts +1525 -32
  36. package/dist/libs/operator/methods.d.ts +1732 -3
  37. package/dist/libs/ssv-keys/Encryption/__test__/RsaKeys.d.ts +1 -1
  38. package/dist/libs/ssv-keys/KeyShares/KeySharesItem.d.ts +1 -1
  39. package/dist/libs/ssv-keys/SSVKeys.d.ts +1 -1
  40. package/dist/libs/ssv-keys/exceptions/index.d.ts +1 -1
  41. package/dist/libs/ssv-keys/index.d.ts +1 -1
  42. package/dist/libs/ssv-keys/interfaces/index.d.ts +2 -2
  43. package/dist/libs/utils/index.d.ts +8 -4
  44. package/dist/libs/utils/methods/calc-deposit-from-runway.d.ts +11 -0
  45. package/dist/libs/utils/methods/get-cluster-balance.d.ts +4 -1
  46. package/dist/libs/utils/methods/index.d.ts +1 -0
  47. package/dist/libs/utils/methods/keyshares.d.ts +4 -2
  48. package/dist/libs/utils/methods/keystores.d.ts +4 -4
  49. package/dist/libs/utils/methods/write-keyshares-file.d.ts +16 -0
  50. package/dist/main.d.ts +1 -0
  51. package/dist/main.js +2970 -733
  52. package/dist/main.mjs +2961 -746
  53. package/dist/sdk.d.ts +8 -4
  54. package/dist/types/contract-interactions.d.ts +11 -0
  55. package/dist/types/methods.d.ts +4 -3
  56. package/dist/utils/cluster.d.ts +3 -3
  57. package/dist/utils/funding.d.ts +29 -0
  58. package/dist/utils/zod/config.d.ts +1 -1
  59. package/dist/utils.js +38 -38
  60. package/dist/utils.mjs +34 -34
  61. package/package.json +18 -6
@@ -39,6 +39,21 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
39
39
  args: {
40
40
  implementation: `0x${string}`;
41
41
  };
42
+ } | {
43
+ eventName: "ClusterBalanceUpdated";
44
+ args: {
45
+ owner: `0x${string}`;
46
+ operatorIds: readonly bigint[];
47
+ blockNum: bigint;
48
+ effectiveBalance: number;
49
+ cluster: {
50
+ validatorCount: number;
51
+ networkFeeIndex: bigint;
52
+ index: bigint;
53
+ active: boolean;
54
+ balance: bigint;
55
+ };
56
+ };
42
57
  } | {
43
58
  eventName: "ClusterDeposited";
44
59
  args: {
@@ -66,6 +81,22 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
66
81
  balance: bigint;
67
82
  };
68
83
  };
84
+ } | {
85
+ eventName: "ClusterMigratedToETH";
86
+ args: {
87
+ owner: `0x${string}`;
88
+ operatorIds: readonly bigint[];
89
+ ethDeposited: bigint;
90
+ ssvRefunded: bigint;
91
+ effectiveBalance: number;
92
+ cluster: {
93
+ validatorCount: number;
94
+ networkFeeIndex: bigint;
95
+ index: bigint;
96
+ active: boolean;
97
+ balance: bigint;
98
+ };
99
+ };
69
100
  } | {
70
101
  eventName: "ClusterReactivated";
71
102
  args: {
@@ -93,11 +124,23 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
93
124
  balance: bigint;
94
125
  };
95
126
  };
127
+ } | {
128
+ eventName: "CooldownDurationUpdated";
129
+ args: {
130
+ newCooldownDuration: bigint;
131
+ };
96
132
  } | {
97
133
  eventName: "DeclareOperatorFeePeriodUpdated";
98
134
  args: {
99
135
  value: bigint;
100
136
  };
137
+ } | {
138
+ eventName: "ERC20Rescued";
139
+ args: {
140
+ token: `0x${string}`;
141
+ to: `0x${string}`;
142
+ amount: bigint;
143
+ };
101
144
  } | {
102
145
  eventName: "ExecuteOperatorFeePeriodUpdated";
103
146
  args: {
@@ -109,16 +152,42 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
109
152
  owner: `0x${string}`;
110
153
  recipientAddress: `0x${string}`;
111
154
  };
155
+ } | {
156
+ eventName: "FeesSynced";
157
+ args: {
158
+ newFeesWei: bigint;
159
+ accEthPerShare: bigint;
160
+ };
161
+ } | {
162
+ eventName: "LiquidationThresholdPeriodSSVUpdated";
163
+ args: {
164
+ value: bigint;
165
+ };
112
166
  } | {
113
167
  eventName: "LiquidationThresholdPeriodUpdated";
114
168
  args: {
115
169
  value: bigint;
116
170
  };
171
+ } | {
172
+ eventName: "MinBlocksBetweenUpdatesUpdated";
173
+ args: {
174
+ newMinBlocksBetweenUpdates: number;
175
+ };
176
+ } | {
177
+ eventName: "MinimumLiquidationCollateralSSVUpdated";
178
+ args: {
179
+ value: bigint;
180
+ };
117
181
  } | {
118
182
  eventName: "MinimumLiquidationCollateralUpdated";
119
183
  args: {
120
184
  value: bigint;
121
185
  };
186
+ } | {
187
+ eventName: "MinimumOperatorEthFeeUpdated";
188
+ args: {
189
+ minFee: bigint;
190
+ };
122
191
  } | {
123
192
  eventName: "ModuleUpgraded";
124
193
  args: {
@@ -137,6 +206,12 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
137
206
  oldFee: bigint;
138
207
  newFee: bigint;
139
208
  };
209
+ } | {
210
+ eventName: "NetworkFeeUpdatedSSV";
211
+ args: {
212
+ oldFee: bigint;
213
+ newFee: bigint;
214
+ };
140
215
  } | {
141
216
  eventName: "OperatorAdded";
142
217
  args: {
@@ -219,6 +294,70 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
219
294
  operatorId: bigint;
220
295
  value: bigint;
221
296
  };
297
+ } | {
298
+ eventName: "OperatorWithdrawnSSV";
299
+ args: {
300
+ owner: `0x${string}`;
301
+ operatorId: bigint;
302
+ value: bigint;
303
+ };
304
+ } | {
305
+ eventName: "OracleReplaced";
306
+ args: {
307
+ oracleId: number;
308
+ oldOracle: `0x${string}`;
309
+ newOracle: `0x${string}`;
310
+ };
311
+ } | {
312
+ eventName: "QuorumUpdated";
313
+ args: {
314
+ newQuorum: number;
315
+ };
316
+ } | {
317
+ eventName: "RewardsClaimed";
318
+ args: {
319
+ user: `0x${string}`;
320
+ amount: bigint;
321
+ };
322
+ } | {
323
+ eventName: "RewardsSettled";
324
+ args: {
325
+ user: `0x${string}`;
326
+ pending: bigint;
327
+ accrued: bigint;
328
+ userIndex: bigint;
329
+ };
330
+ } | {
331
+ eventName: "RootCommitted";
332
+ args: {
333
+ merkleRoot: `0x${string}`;
334
+ blockNum: bigint;
335
+ };
336
+ } | {
337
+ eventName: "SSVNetworkUpgradeBlock";
338
+ args: {
339
+ version: string;
340
+ blockNumber: bigint;
341
+ };
342
+ } | {
343
+ eventName: "Staked";
344
+ args: {
345
+ user: `0x${string}`;
346
+ amount: bigint;
347
+ };
348
+ } | {
349
+ eventName: "UnstakeRequested";
350
+ args: {
351
+ user: `0x${string}`;
352
+ amount: bigint;
353
+ unlockTime: bigint;
354
+ };
355
+ } | {
356
+ eventName: "UnstakedWithdrawn";
357
+ args: {
358
+ user: `0x${string}`;
359
+ amount: bigint;
360
+ };
222
361
  } | {
223
362
  eventName: "ValidatorAdded";
224
363
  args: {
@@ -255,6 +394,16 @@ export declare const liquidateCluster: (config: ConfigReturnType, { args: { id }
255
394
  balance: bigint;
256
395
  };
257
396
  };
397
+ } | {
398
+ eventName: "WeightedRootProposed";
399
+ args: {
400
+ merkleRoot: `0x${string}`;
401
+ blockNum: bigint;
402
+ accumulatedWeight: bigint;
403
+ quorum: bigint;
404
+ oracleId: number;
405
+ oracle: `0x${string}`;
406
+ };
258
407
  } | {
259
408
  eventName: "OwnershipTransferred";
260
409
  args: {
@@ -0,0 +1,430 @@
1
+ import { ConfigReturnType } from '../../../config/create';
2
+ import { SmartFnWriteOptions } from '../../../contract-interactions/types';
3
+ type LiquidateSSVProps = SmartFnWriteOptions<{
4
+ id: string;
5
+ }>;
6
+ export declare const liquidateSSV: (config: ConfigReturnType, { args: { id }, ...writeOptions }: LiquidateSSVProps) => Promise<{
7
+ hash: import('viem').Hash;
8
+ wait: () => Promise<import('viem').TransactionReceipt & {
9
+ events: ({
10
+ eventName: "AdminChanged";
11
+ args: {
12
+ previousAdmin: `0x${string}`;
13
+ newAdmin: `0x${string}`;
14
+ };
15
+ } | {
16
+ eventName: "BeaconUpgraded";
17
+ args: {
18
+ beacon: `0x${string}`;
19
+ };
20
+ } | {
21
+ eventName: "Initialized";
22
+ args: {
23
+ version: number;
24
+ };
25
+ } | {
26
+ eventName: "OwnershipTransferStarted";
27
+ args: {
28
+ previousOwner: `0x${string}`;
29
+ newOwner: `0x${string}`;
30
+ };
31
+ } | {
32
+ eventName: "OwnershipTransferred";
33
+ args: {
34
+ previousOwner: `0x${string}`;
35
+ newOwner: `0x${string}`;
36
+ };
37
+ } | {
38
+ eventName: "Upgraded";
39
+ args: {
40
+ implementation: `0x${string}`;
41
+ };
42
+ } | {
43
+ eventName: "ClusterBalanceUpdated";
44
+ args: {
45
+ owner: `0x${string}`;
46
+ operatorIds: readonly bigint[];
47
+ blockNum: bigint;
48
+ effectiveBalance: number;
49
+ cluster: {
50
+ validatorCount: number;
51
+ networkFeeIndex: bigint;
52
+ index: bigint;
53
+ active: boolean;
54
+ balance: bigint;
55
+ };
56
+ };
57
+ } | {
58
+ eventName: "ClusterDeposited";
59
+ args: {
60
+ owner: `0x${string}`;
61
+ operatorIds: readonly bigint[];
62
+ value: bigint;
63
+ cluster: {
64
+ validatorCount: number;
65
+ networkFeeIndex: bigint;
66
+ index: bigint;
67
+ active: boolean;
68
+ balance: bigint;
69
+ };
70
+ };
71
+ } | {
72
+ eventName: "ClusterLiquidated";
73
+ args: {
74
+ owner: `0x${string}`;
75
+ operatorIds: readonly bigint[];
76
+ cluster: {
77
+ validatorCount: number;
78
+ networkFeeIndex: bigint;
79
+ index: bigint;
80
+ active: boolean;
81
+ balance: bigint;
82
+ };
83
+ };
84
+ } | {
85
+ eventName: "ClusterMigratedToETH";
86
+ args: {
87
+ owner: `0x${string}`;
88
+ operatorIds: readonly bigint[];
89
+ ethDeposited: bigint;
90
+ ssvRefunded: bigint;
91
+ effectiveBalance: number;
92
+ cluster: {
93
+ validatorCount: number;
94
+ networkFeeIndex: bigint;
95
+ index: bigint;
96
+ active: boolean;
97
+ balance: bigint;
98
+ };
99
+ };
100
+ } | {
101
+ eventName: "ClusterReactivated";
102
+ args: {
103
+ owner: `0x${string}`;
104
+ operatorIds: readonly bigint[];
105
+ cluster: {
106
+ validatorCount: number;
107
+ networkFeeIndex: bigint;
108
+ index: bigint;
109
+ active: boolean;
110
+ balance: bigint;
111
+ };
112
+ };
113
+ } | {
114
+ eventName: "ClusterWithdrawn";
115
+ args: {
116
+ owner: `0x${string}`;
117
+ operatorIds: readonly bigint[];
118
+ value: bigint;
119
+ cluster: {
120
+ validatorCount: number;
121
+ networkFeeIndex: bigint;
122
+ index: bigint;
123
+ active: boolean;
124
+ balance: bigint;
125
+ };
126
+ };
127
+ } | {
128
+ eventName: "CooldownDurationUpdated";
129
+ args: {
130
+ newCooldownDuration: bigint;
131
+ };
132
+ } | {
133
+ eventName: "DeclareOperatorFeePeriodUpdated";
134
+ args: {
135
+ value: bigint;
136
+ };
137
+ } | {
138
+ eventName: "ERC20Rescued";
139
+ args: {
140
+ token: `0x${string}`;
141
+ to: `0x${string}`;
142
+ amount: bigint;
143
+ };
144
+ } | {
145
+ eventName: "ExecuteOperatorFeePeriodUpdated";
146
+ args: {
147
+ value: bigint;
148
+ };
149
+ } | {
150
+ eventName: "FeeRecipientAddressUpdated";
151
+ args: {
152
+ owner: `0x${string}`;
153
+ recipientAddress: `0x${string}`;
154
+ };
155
+ } | {
156
+ eventName: "FeesSynced";
157
+ args: {
158
+ newFeesWei: bigint;
159
+ accEthPerShare: bigint;
160
+ };
161
+ } | {
162
+ eventName: "LiquidationThresholdPeriodSSVUpdated";
163
+ args: {
164
+ value: bigint;
165
+ };
166
+ } | {
167
+ eventName: "LiquidationThresholdPeriodUpdated";
168
+ args: {
169
+ value: bigint;
170
+ };
171
+ } | {
172
+ eventName: "MinBlocksBetweenUpdatesUpdated";
173
+ args: {
174
+ newMinBlocksBetweenUpdates: number;
175
+ };
176
+ } | {
177
+ eventName: "MinimumLiquidationCollateralSSVUpdated";
178
+ args: {
179
+ value: bigint;
180
+ };
181
+ } | {
182
+ eventName: "MinimumLiquidationCollateralUpdated";
183
+ args: {
184
+ value: bigint;
185
+ };
186
+ } | {
187
+ eventName: "MinimumOperatorEthFeeUpdated";
188
+ args: {
189
+ minFee: bigint;
190
+ };
191
+ } | {
192
+ eventName: "ModuleUpgraded";
193
+ args: {
194
+ moduleId: number;
195
+ moduleAddress: `0x${string}`;
196
+ };
197
+ } | {
198
+ eventName: "NetworkEarningsWithdrawn";
199
+ args: {
200
+ value: bigint;
201
+ recipient: `0x${string}`;
202
+ };
203
+ } | {
204
+ eventName: "NetworkFeeUpdated";
205
+ args: {
206
+ oldFee: bigint;
207
+ newFee: bigint;
208
+ };
209
+ } | {
210
+ eventName: "NetworkFeeUpdatedSSV";
211
+ args: {
212
+ oldFee: bigint;
213
+ newFee: bigint;
214
+ };
215
+ } | {
216
+ eventName: "OperatorAdded";
217
+ args: {
218
+ operatorId: bigint;
219
+ owner: `0x${string}`;
220
+ publicKey: `0x${string}`;
221
+ fee: bigint;
222
+ };
223
+ } | {
224
+ eventName: "OperatorFeeDeclarationCancelled";
225
+ args: {
226
+ owner: `0x${string}`;
227
+ operatorId: bigint;
228
+ };
229
+ } | {
230
+ eventName: "OperatorFeeDeclared";
231
+ args: {
232
+ owner: `0x${string}`;
233
+ operatorId: bigint;
234
+ blockNumber: bigint;
235
+ fee: bigint;
236
+ };
237
+ } | {
238
+ eventName: "OperatorFeeExecuted";
239
+ args: {
240
+ owner: `0x${string}`;
241
+ operatorId: bigint;
242
+ blockNumber: bigint;
243
+ fee: bigint;
244
+ };
245
+ } | {
246
+ eventName: "OperatorFeeIncreaseLimitUpdated";
247
+ args: {
248
+ value: bigint;
249
+ };
250
+ } | {
251
+ eventName: "OperatorMaximumFeeUpdated";
252
+ args: {
253
+ maxFee: bigint;
254
+ };
255
+ } | {
256
+ eventName: "OperatorMultipleWhitelistRemoved";
257
+ args: {
258
+ operatorIds: readonly bigint[];
259
+ whitelistAddresses: readonly `0x${string}`[];
260
+ };
261
+ } | {
262
+ eventName: "OperatorMultipleWhitelistUpdated";
263
+ args: {
264
+ operatorIds: readonly bigint[];
265
+ whitelistAddresses: readonly `0x${string}`[];
266
+ };
267
+ } | {
268
+ eventName: "OperatorPrivacyStatusUpdated";
269
+ args: {
270
+ operatorIds: readonly bigint[];
271
+ toPrivate: boolean;
272
+ };
273
+ } | {
274
+ eventName: "OperatorRemoved";
275
+ args: {
276
+ operatorId: bigint;
277
+ };
278
+ } | {
279
+ eventName: "OperatorWhitelistUpdated";
280
+ args: {
281
+ operatorId: bigint;
282
+ whitelisted: `0x${string}`;
283
+ };
284
+ } | {
285
+ eventName: "OperatorWhitelistingContractUpdated";
286
+ args: {
287
+ operatorIds: readonly bigint[];
288
+ whitelistingContract: `0x${string}`;
289
+ };
290
+ } | {
291
+ eventName: "OperatorWithdrawn";
292
+ args: {
293
+ owner: `0x${string}`;
294
+ operatorId: bigint;
295
+ value: bigint;
296
+ };
297
+ } | {
298
+ eventName: "OperatorWithdrawnSSV";
299
+ args: {
300
+ owner: `0x${string}`;
301
+ operatorId: bigint;
302
+ value: bigint;
303
+ };
304
+ } | {
305
+ eventName: "OracleReplaced";
306
+ args: {
307
+ oracleId: number;
308
+ oldOracle: `0x${string}`;
309
+ newOracle: `0x${string}`;
310
+ };
311
+ } | {
312
+ eventName: "QuorumUpdated";
313
+ args: {
314
+ newQuorum: number;
315
+ };
316
+ } | {
317
+ eventName: "RewardsClaimed";
318
+ args: {
319
+ user: `0x${string}`;
320
+ amount: bigint;
321
+ };
322
+ } | {
323
+ eventName: "RewardsSettled";
324
+ args: {
325
+ user: `0x${string}`;
326
+ pending: bigint;
327
+ accrued: bigint;
328
+ userIndex: bigint;
329
+ };
330
+ } | {
331
+ eventName: "RootCommitted";
332
+ args: {
333
+ merkleRoot: `0x${string}`;
334
+ blockNum: bigint;
335
+ };
336
+ } | {
337
+ eventName: "SSVNetworkUpgradeBlock";
338
+ args: {
339
+ version: string;
340
+ blockNumber: bigint;
341
+ };
342
+ } | {
343
+ eventName: "Staked";
344
+ args: {
345
+ user: `0x${string}`;
346
+ amount: bigint;
347
+ };
348
+ } | {
349
+ eventName: "UnstakeRequested";
350
+ args: {
351
+ user: `0x${string}`;
352
+ amount: bigint;
353
+ unlockTime: bigint;
354
+ };
355
+ } | {
356
+ eventName: "UnstakedWithdrawn";
357
+ args: {
358
+ user: `0x${string}`;
359
+ amount: bigint;
360
+ };
361
+ } | {
362
+ eventName: "ValidatorAdded";
363
+ args: {
364
+ owner: `0x${string}`;
365
+ operatorIds: readonly bigint[];
366
+ publicKey: `0x${string}`;
367
+ shares: `0x${string}`;
368
+ cluster: {
369
+ validatorCount: number;
370
+ networkFeeIndex: bigint;
371
+ index: bigint;
372
+ active: boolean;
373
+ balance: bigint;
374
+ };
375
+ };
376
+ } | {
377
+ eventName: "ValidatorExited";
378
+ args: {
379
+ owner: `0x${string}`;
380
+ operatorIds: readonly bigint[];
381
+ publicKey: `0x${string}`;
382
+ };
383
+ } | {
384
+ eventName: "ValidatorRemoved";
385
+ args: {
386
+ owner: `0x${string}`;
387
+ operatorIds: readonly bigint[];
388
+ publicKey: `0x${string}`;
389
+ cluster: {
390
+ validatorCount: number;
391
+ networkFeeIndex: bigint;
392
+ index: bigint;
393
+ active: boolean;
394
+ balance: bigint;
395
+ };
396
+ };
397
+ } | {
398
+ eventName: "WeightedRootProposed";
399
+ args: {
400
+ merkleRoot: `0x${string}`;
401
+ blockNum: bigint;
402
+ accumulatedWeight: bigint;
403
+ quorum: bigint;
404
+ oracleId: number;
405
+ oracle: `0x${string}`;
406
+ };
407
+ } | {
408
+ eventName: "OwnershipTransferred";
409
+ args: {
410
+ previousOwner: `0x${string}`;
411
+ newOwner: `0x${string}`;
412
+ };
413
+ } | {
414
+ eventName: "Approval";
415
+ args: {
416
+ owner: `0x${string}`;
417
+ spender: `0x${string}`;
418
+ value: bigint;
419
+ };
420
+ } | {
421
+ eventName: "Transfer";
422
+ args: {
423
+ from: `0x${string}`;
424
+ to: `0x${string}`;
425
+ value: bigint;
426
+ };
427
+ })[];
428
+ }>;
429
+ }>;
430
+ export {};