@underscore-finance/sdk 1.2.20-next.0 → 1.2.20-next.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.
- package/AGENTS.md +28 -18
- package/abis.json +23476 -12295
- package/dist/contracts/Addys.d.ts +124 -0
- package/dist/contracts/Addys.d.ts.map +1 -0
- package/dist/contracts/Addys.js +134 -0
- package/dist/contracts/AgentSenderGeneric.d.ts +795 -153
- package/dist/contracts/AgentSenderGeneric.d.ts.map +1 -1
- package/dist/contracts/AgentSenderGeneric.js +892 -97
- package/dist/contracts/AgentSenderSpecial.d.ts +127 -0
- package/dist/contracts/AgentSenderSpecial.d.ts.map +1 -1
- package/dist/contracts/AgentSenderSpecial.js +139 -0
- package/dist/contracts/AgentSenderSpecialAdmin.d.ts +984 -0
- package/dist/contracts/AgentSenderSpecialAdmin.d.ts.map +1 -0
- package/dist/contracts/AgentSenderSpecialAdmin.js +1185 -0
- package/dist/contracts/AgentSenderSpecialSigHelper.d.ts +1010 -75
- package/dist/contracts/AgentSenderSpecialSigHelper.d.ts.map +1 -1
- package/dist/contracts/AgentSenderSpecialSigHelper.js +1240 -0
- package/dist/contracts/AgentWrapper.d.ts +164 -6
- package/dist/contracts/AgentWrapper.d.ts.map +1 -1
- package/dist/contracts/AgentWrapper.js +219 -6
- package/dist/contracts/ChequeBook.d.ts +360 -204
- package/dist/contracts/ChequeBook.d.ts.map +1 -1
- package/dist/contracts/ChequeBook.js +507 -298
- package/dist/contracts/DefaultsLocal.d.ts +320 -0
- package/dist/contracts/DefaultsLocal.d.ts.map +1 -0
- package/dist/contracts/DefaultsLocal.js +350 -0
- package/dist/contracts/ERC20.d.ts +552 -27
- package/dist/contracts/ERC20.d.ts.map +1 -1
- package/dist/contracts/ERC20.js +713 -66
- package/dist/contracts/EarnVault.d.ts +284 -255
- package/dist/contracts/EarnVault.d.ts.map +1 -1
- package/dist/contracts/EarnVault.js +488 -456
- package/dist/contracts/EarnVaultAgent.d.ts +127 -0
- package/dist/contracts/EarnVaultAgent.d.ts.map +1 -1
- package/dist/contracts/EarnVaultAgent.js +139 -0
- package/dist/contracts/EarnVaultWallet.d.ts +777 -0
- package/dist/contracts/EarnVaultWallet.d.ts.map +1 -0
- package/dist/contracts/EarnVaultWallet.js +987 -0
- package/dist/contracts/Erc20Token.d.ts +813 -0
- package/dist/contracts/Erc20Token.d.ts.map +1 -0
- package/dist/contracts/Erc20Token.js +1006 -0
- package/dist/contracts/HighCommand.d.ts +40 -0
- package/dist/contracts/HighCommand.d.ts.map +1 -1
- package/dist/contracts/HighCommand.js +45 -0
- package/dist/contracts/Kernel.d.ts +4 -0
- package/dist/contracts/Kernel.d.ts.map +1 -1
- package/dist/contracts/Kernel.js +4 -0
- package/dist/contracts/Ledger.d.ts +4 -75
- package/dist/contracts/Ledger.d.ts.map +1 -1
- package/dist/contracts/Ledger.js +4 -99
- package/dist/contracts/LevgVault.d.ts +299 -299
- package/dist/contracts/LevgVault.d.ts.map +1 -1
- package/dist/contracts/LevgVault.js +530 -530
- package/dist/contracts/LevgVaultAgent.d.ts +127 -69
- package/dist/contracts/LevgVaultAgent.d.ts.map +1 -1
- package/dist/contracts/LevgVaultAgent.js +134 -79
- package/dist/contracts/LevgVaultWallet.d.ts +1119 -0
- package/dist/contracts/LevgVaultWallet.d.ts.map +1 -0
- package/dist/contracts/LevgVaultWallet.js +1439 -0
- package/dist/contracts/LocalGov.d.ts +427 -0
- package/dist/contracts/LocalGov.d.ts.map +1 -0
- package/dist/contracts/LocalGov.js +507 -0
- package/dist/contracts/Migrator.d.ts +160 -0
- package/dist/contracts/Migrator.d.ts.map +1 -1
- package/dist/contracts/Migrator.js +187 -0
- package/dist/contracts/Ownership.d.ts +414 -0
- package/dist/contracts/Ownership.d.ts.map +1 -0
- package/dist/contracts/Ownership.js +472 -0
- package/dist/contracts/Paymaster.d.ts +119 -322
- package/dist/contracts/Paymaster.d.ts.map +1 -1
- package/dist/contracts/Paymaster.js +118 -404
- package/dist/contracts/Sentinel.d.ts +9 -6
- package/dist/contracts/Sentinel.d.ts.map +1 -1
- package/dist/contracts/Sentinel.js +8 -4
- package/dist/contracts/UndyToken.d.ts +821 -0
- package/dist/contracts/UndyToken.d.ts.map +1 -0
- package/dist/contracts/UndyToken.js +1017 -0
- package/dist/contracts/UserWalletConfig.d.ts +334 -317
- package/dist/contracts/UserWalletConfig.d.ts.map +1 -1
- package/dist/contracts/UserWalletConfig.js +391 -371
- package/dist/contracts/UserWalletSignatureHelper.d.ts +1520 -514
- package/dist/contracts/UserWalletSignatureHelper.d.ts.map +1 -1
- package/dist/contracts/UserWalletSignatureHelper.js +1906 -549
- package/dist/contracts/VaultErc20Token.d.ts +522 -0
- package/dist/contracts/VaultErc20Token.d.ts.map +1 -0
- package/dist/contracts/VaultErc20Token.js +658 -0
- package/dist/contracts/index.d.ts +10 -0
- package/dist/contracts/index.d.ts.map +1 -1
- package/dist/contracts/index.js +10 -0
- package/dist/contracts/sdk.d.ts +20 -0
- package/dist/contracts/sdk.d.ts.map +1 -1
- package/dist/contracts/sdk.js +20 -0
- package/package.json +1 -1
|
@@ -9,6 +9,9 @@ export declare const abi: readonly [{
|
|
|
9
9
|
readonly inputs: readonly [{
|
|
10
10
|
readonly name: "_agentSender";
|
|
11
11
|
readonly type: "address";
|
|
12
|
+
}, {
|
|
13
|
+
readonly name: "_agentWrapper";
|
|
14
|
+
readonly type: "address";
|
|
12
15
|
}, {
|
|
13
16
|
readonly name: "_userWallet";
|
|
14
17
|
readonly type: "address";
|
|
@@ -33,6 +36,9 @@ export declare const abi: readonly [{
|
|
|
33
36
|
readonly inputs: readonly [{
|
|
34
37
|
readonly name: "_agentSender";
|
|
35
38
|
readonly type: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly name: "_agentWrapper";
|
|
41
|
+
readonly type: "address";
|
|
36
42
|
}, {
|
|
37
43
|
readonly name: "_userWallet";
|
|
38
44
|
readonly type: "address";
|
|
@@ -60,6 +66,9 @@ export declare const abi: readonly [{
|
|
|
60
66
|
readonly inputs: readonly [{
|
|
61
67
|
readonly name: "_agentSender";
|
|
62
68
|
readonly type: "address";
|
|
69
|
+
}, {
|
|
70
|
+
readonly name: "_agentWrapper";
|
|
71
|
+
readonly type: "address";
|
|
63
72
|
}, {
|
|
64
73
|
readonly name: "_userWallet";
|
|
65
74
|
readonly type: "address";
|
|
@@ -90,6 +99,9 @@ export declare const abi: readonly [{
|
|
|
90
99
|
readonly inputs: readonly [{
|
|
91
100
|
readonly name: "_agentSender";
|
|
92
101
|
readonly type: "address";
|
|
102
|
+
}, {
|
|
103
|
+
readonly name: "_agentWrapper";
|
|
104
|
+
readonly type: "address";
|
|
93
105
|
}, {
|
|
94
106
|
readonly name: "_userWallet";
|
|
95
107
|
readonly type: "address";
|
|
@@ -123,6 +135,9 @@ export declare const abi: readonly [{
|
|
|
123
135
|
readonly inputs: readonly [{
|
|
124
136
|
readonly name: "_agentSender";
|
|
125
137
|
readonly type: "address";
|
|
138
|
+
}, {
|
|
139
|
+
readonly name: "_agentWrapper";
|
|
140
|
+
readonly type: "address";
|
|
126
141
|
}, {
|
|
127
142
|
readonly name: "_userWallet";
|
|
128
143
|
readonly type: "address";
|
|
@@ -159,6 +174,9 @@ export declare const abi: readonly [{
|
|
|
159
174
|
readonly inputs: readonly [{
|
|
160
175
|
readonly name: "_agentSender";
|
|
161
176
|
readonly type: "address";
|
|
177
|
+
}, {
|
|
178
|
+
readonly name: "_agentWrapper";
|
|
179
|
+
readonly type: "address";
|
|
162
180
|
}, {
|
|
163
181
|
readonly name: "_userWallet";
|
|
164
182
|
readonly type: "address";
|
|
@@ -189,6 +207,9 @@ export declare const abi: readonly [{
|
|
|
189
207
|
readonly inputs: readonly [{
|
|
190
208
|
readonly name: "_agentSender";
|
|
191
209
|
readonly type: "address";
|
|
210
|
+
}, {
|
|
211
|
+
readonly name: "_agentWrapper";
|
|
212
|
+
readonly type: "address";
|
|
192
213
|
}, {
|
|
193
214
|
readonly name: "_userWallet";
|
|
194
215
|
readonly type: "address";
|
|
@@ -222,6 +243,9 @@ export declare const abi: readonly [{
|
|
|
222
243
|
readonly inputs: readonly [{
|
|
223
244
|
readonly name: "_agentSender";
|
|
224
245
|
readonly type: "address";
|
|
246
|
+
}, {
|
|
247
|
+
readonly name: "_agentWrapper";
|
|
248
|
+
readonly type: "address";
|
|
225
249
|
}, {
|
|
226
250
|
readonly name: "_userWallet";
|
|
227
251
|
readonly type: "address";
|
|
@@ -254,19 +278,37 @@ export declare const abi: readonly [{
|
|
|
254
278
|
}, {
|
|
255
279
|
readonly stateMutability: "view";
|
|
256
280
|
readonly type: "function";
|
|
257
|
-
readonly name: "
|
|
281
|
+
readonly name: "getCreateChequeHash";
|
|
258
282
|
readonly inputs: readonly [{
|
|
259
283
|
readonly name: "_agentSender";
|
|
260
284
|
readonly type: "address";
|
|
285
|
+
}, {
|
|
286
|
+
readonly name: "_agentWrapper";
|
|
287
|
+
readonly type: "address";
|
|
261
288
|
}, {
|
|
262
289
|
readonly name: "_userWallet";
|
|
263
290
|
readonly type: "address";
|
|
264
291
|
}, {
|
|
265
|
-
readonly name: "
|
|
266
|
-
readonly type: "
|
|
292
|
+
readonly name: "_recipient";
|
|
293
|
+
readonly type: "address";
|
|
267
294
|
}, {
|
|
268
295
|
readonly name: "_asset";
|
|
269
296
|
readonly type: "address";
|
|
297
|
+
}, {
|
|
298
|
+
readonly name: "_amount";
|
|
299
|
+
readonly type: "uint256";
|
|
300
|
+
}, {
|
|
301
|
+
readonly name: "_unlockNumBlocks";
|
|
302
|
+
readonly type: "uint256";
|
|
303
|
+
}, {
|
|
304
|
+
readonly name: "_expiryNumBlocks";
|
|
305
|
+
readonly type: "uint256";
|
|
306
|
+
}, {
|
|
307
|
+
readonly name: "_canManagerPay";
|
|
308
|
+
readonly type: "bool";
|
|
309
|
+
}, {
|
|
310
|
+
readonly name: "_canBePulled";
|
|
311
|
+
readonly type: "bool";
|
|
270
312
|
}];
|
|
271
313
|
readonly outputs: readonly [{
|
|
272
314
|
readonly name: "";
|
|
@@ -281,22 +323,40 @@ export declare const abi: readonly [{
|
|
|
281
323
|
}, {
|
|
282
324
|
readonly stateMutability: "view";
|
|
283
325
|
readonly type: "function";
|
|
284
|
-
readonly name: "
|
|
326
|
+
readonly name: "getCreateChequeHash";
|
|
285
327
|
readonly inputs: readonly [{
|
|
286
328
|
readonly name: "_agentSender";
|
|
287
329
|
readonly type: "address";
|
|
330
|
+
}, {
|
|
331
|
+
readonly name: "_agentWrapper";
|
|
332
|
+
readonly type: "address";
|
|
288
333
|
}, {
|
|
289
334
|
readonly name: "_userWallet";
|
|
290
335
|
readonly type: "address";
|
|
291
336
|
}, {
|
|
292
|
-
readonly name: "
|
|
293
|
-
readonly type: "
|
|
337
|
+
readonly name: "_recipient";
|
|
338
|
+
readonly type: "address";
|
|
294
339
|
}, {
|
|
295
340
|
readonly name: "_asset";
|
|
296
341
|
readonly type: "address";
|
|
297
342
|
}, {
|
|
298
|
-
readonly name: "
|
|
299
|
-
readonly type: "
|
|
343
|
+
readonly name: "_amount";
|
|
344
|
+
readonly type: "uint256";
|
|
345
|
+
}, {
|
|
346
|
+
readonly name: "_unlockNumBlocks";
|
|
347
|
+
readonly type: "uint256";
|
|
348
|
+
}, {
|
|
349
|
+
readonly name: "_expiryNumBlocks";
|
|
350
|
+
readonly type: "uint256";
|
|
351
|
+
}, {
|
|
352
|
+
readonly name: "_canManagerPay";
|
|
353
|
+
readonly type: "bool";
|
|
354
|
+
}, {
|
|
355
|
+
readonly name: "_canBePulled";
|
|
356
|
+
readonly type: "bool";
|
|
357
|
+
}, {
|
|
358
|
+
readonly name: "_nonce";
|
|
359
|
+
readonly type: "uint256";
|
|
300
360
|
}];
|
|
301
361
|
readonly outputs: readonly [{
|
|
302
362
|
readonly name: "";
|
|
@@ -311,25 +371,43 @@ export declare const abi: readonly [{
|
|
|
311
371
|
}, {
|
|
312
372
|
readonly stateMutability: "view";
|
|
313
373
|
readonly type: "function";
|
|
314
|
-
readonly name: "
|
|
374
|
+
readonly name: "getCreateChequeHash";
|
|
315
375
|
readonly inputs: readonly [{
|
|
316
376
|
readonly name: "_agentSender";
|
|
317
377
|
readonly type: "address";
|
|
318
378
|
}, {
|
|
319
|
-
readonly name: "
|
|
379
|
+
readonly name: "_agentWrapper";
|
|
320
380
|
readonly type: "address";
|
|
321
381
|
}, {
|
|
322
|
-
readonly name: "
|
|
323
|
-
readonly type: "
|
|
382
|
+
readonly name: "_userWallet";
|
|
383
|
+
readonly type: "address";
|
|
324
384
|
}, {
|
|
325
|
-
readonly name: "
|
|
385
|
+
readonly name: "_recipient";
|
|
326
386
|
readonly type: "address";
|
|
327
387
|
}, {
|
|
328
|
-
readonly name: "
|
|
388
|
+
readonly name: "_asset";
|
|
329
389
|
readonly type: "address";
|
|
330
390
|
}, {
|
|
331
391
|
readonly name: "_amount";
|
|
332
392
|
readonly type: "uint256";
|
|
393
|
+
}, {
|
|
394
|
+
readonly name: "_unlockNumBlocks";
|
|
395
|
+
readonly type: "uint256";
|
|
396
|
+
}, {
|
|
397
|
+
readonly name: "_expiryNumBlocks";
|
|
398
|
+
readonly type: "uint256";
|
|
399
|
+
}, {
|
|
400
|
+
readonly name: "_canManagerPay";
|
|
401
|
+
readonly type: "bool";
|
|
402
|
+
}, {
|
|
403
|
+
readonly name: "_canBePulled";
|
|
404
|
+
readonly type: "bool";
|
|
405
|
+
}, {
|
|
406
|
+
readonly name: "_nonce";
|
|
407
|
+
readonly type: "uint256";
|
|
408
|
+
}, {
|
|
409
|
+
readonly name: "_expiration";
|
|
410
|
+
readonly type: "uint256";
|
|
333
411
|
}];
|
|
334
412
|
readonly outputs: readonly [{
|
|
335
413
|
readonly name: "";
|
|
@@ -344,28 +422,28 @@ export declare const abi: readonly [{
|
|
|
344
422
|
}, {
|
|
345
423
|
readonly stateMutability: "view";
|
|
346
424
|
readonly type: "function";
|
|
347
|
-
readonly name: "
|
|
425
|
+
readonly name: "getPayChequeHash";
|
|
348
426
|
readonly inputs: readonly [{
|
|
349
427
|
readonly name: "_agentSender";
|
|
350
428
|
readonly type: "address";
|
|
351
429
|
}, {
|
|
352
|
-
readonly name: "
|
|
430
|
+
readonly name: "_agentWrapper";
|
|
353
431
|
readonly type: "address";
|
|
354
432
|
}, {
|
|
355
|
-
readonly name: "
|
|
356
|
-
readonly type: "
|
|
433
|
+
readonly name: "_userWallet";
|
|
434
|
+
readonly type: "address";
|
|
357
435
|
}, {
|
|
358
|
-
readonly name: "
|
|
436
|
+
readonly name: "_recipient";
|
|
359
437
|
readonly type: "address";
|
|
360
438
|
}, {
|
|
361
|
-
readonly name: "
|
|
439
|
+
readonly name: "_asset";
|
|
362
440
|
readonly type: "address";
|
|
363
441
|
}, {
|
|
364
442
|
readonly name: "_amount";
|
|
365
443
|
readonly type: "uint256";
|
|
366
444
|
}, {
|
|
367
|
-
readonly name: "
|
|
368
|
-
readonly type: "
|
|
445
|
+
readonly name: "_expectedCreationBlock";
|
|
446
|
+
readonly type: "uint256";
|
|
369
447
|
}];
|
|
370
448
|
readonly outputs: readonly [{
|
|
371
449
|
readonly name: "";
|
|
@@ -380,28 +458,28 @@ export declare const abi: readonly [{
|
|
|
380
458
|
}, {
|
|
381
459
|
readonly stateMutability: "view";
|
|
382
460
|
readonly type: "function";
|
|
383
|
-
readonly name: "
|
|
461
|
+
readonly name: "getPayChequeHash";
|
|
384
462
|
readonly inputs: readonly [{
|
|
385
463
|
readonly name: "_agentSender";
|
|
386
464
|
readonly type: "address";
|
|
387
465
|
}, {
|
|
388
|
-
readonly name: "
|
|
466
|
+
readonly name: "_agentWrapper";
|
|
389
467
|
readonly type: "address";
|
|
390
468
|
}, {
|
|
391
|
-
readonly name: "
|
|
392
|
-
readonly type: "
|
|
469
|
+
readonly name: "_userWallet";
|
|
470
|
+
readonly type: "address";
|
|
393
471
|
}, {
|
|
394
|
-
readonly name: "
|
|
472
|
+
readonly name: "_recipient";
|
|
395
473
|
readonly type: "address";
|
|
396
474
|
}, {
|
|
397
|
-
readonly name: "
|
|
475
|
+
readonly name: "_asset";
|
|
398
476
|
readonly type: "address";
|
|
399
477
|
}, {
|
|
400
478
|
readonly name: "_amount";
|
|
401
479
|
readonly type: "uint256";
|
|
402
480
|
}, {
|
|
403
|
-
readonly name: "
|
|
404
|
-
readonly type: "
|
|
481
|
+
readonly name: "_expectedCreationBlock";
|
|
482
|
+
readonly type: "uint256";
|
|
405
483
|
}, {
|
|
406
484
|
readonly name: "_nonce";
|
|
407
485
|
readonly type: "uint256";
|
|
@@ -419,28 +497,28 @@ export declare const abi: readonly [{
|
|
|
419
497
|
}, {
|
|
420
498
|
readonly stateMutability: "view";
|
|
421
499
|
readonly type: "function";
|
|
422
|
-
readonly name: "
|
|
500
|
+
readonly name: "getPayChequeHash";
|
|
423
501
|
readonly inputs: readonly [{
|
|
424
502
|
readonly name: "_agentSender";
|
|
425
503
|
readonly type: "address";
|
|
426
504
|
}, {
|
|
427
|
-
readonly name: "
|
|
505
|
+
readonly name: "_agentWrapper";
|
|
428
506
|
readonly type: "address";
|
|
429
507
|
}, {
|
|
430
|
-
readonly name: "
|
|
431
|
-
readonly type: "
|
|
508
|
+
readonly name: "_userWallet";
|
|
509
|
+
readonly type: "address";
|
|
432
510
|
}, {
|
|
433
|
-
readonly name: "
|
|
511
|
+
readonly name: "_recipient";
|
|
434
512
|
readonly type: "address";
|
|
435
513
|
}, {
|
|
436
|
-
readonly name: "
|
|
514
|
+
readonly name: "_asset";
|
|
437
515
|
readonly type: "address";
|
|
438
516
|
}, {
|
|
439
517
|
readonly name: "_amount";
|
|
440
518
|
readonly type: "uint256";
|
|
441
519
|
}, {
|
|
442
|
-
readonly name: "
|
|
443
|
-
readonly type: "
|
|
520
|
+
readonly name: "_expectedCreationBlock";
|
|
521
|
+
readonly type: "uint256";
|
|
444
522
|
}, {
|
|
445
523
|
readonly name: "_nonce";
|
|
446
524
|
readonly type: "uint256";
|
|
@@ -461,10 +539,13 @@ export declare const abi: readonly [{
|
|
|
461
539
|
}, {
|
|
462
540
|
readonly stateMutability: "view";
|
|
463
541
|
readonly type: "function";
|
|
464
|
-
readonly name: "
|
|
542
|
+
readonly name: "getDepositForYieldHash";
|
|
465
543
|
readonly inputs: readonly [{
|
|
466
544
|
readonly name: "_agentSender";
|
|
467
545
|
readonly type: "address";
|
|
546
|
+
}, {
|
|
547
|
+
readonly name: "_agentWrapper";
|
|
548
|
+
readonly type: "address";
|
|
468
549
|
}, {
|
|
469
550
|
readonly name: "_userWallet";
|
|
470
551
|
readonly type: "address";
|
|
@@ -472,7 +553,7 @@ export declare const abi: readonly [{
|
|
|
472
553
|
readonly name: "_legoId";
|
|
473
554
|
readonly type: "uint256";
|
|
474
555
|
}, {
|
|
475
|
-
readonly name: "
|
|
556
|
+
readonly name: "_asset";
|
|
476
557
|
readonly type: "address";
|
|
477
558
|
}];
|
|
478
559
|
readonly outputs: readonly [{
|
|
@@ -488,10 +569,13 @@ export declare const abi: readonly [{
|
|
|
488
569
|
}, {
|
|
489
570
|
readonly stateMutability: "view";
|
|
490
571
|
readonly type: "function";
|
|
491
|
-
readonly name: "
|
|
572
|
+
readonly name: "getDepositForYieldHash";
|
|
492
573
|
readonly inputs: readonly [{
|
|
493
574
|
readonly name: "_agentSender";
|
|
494
575
|
readonly type: "address";
|
|
576
|
+
}, {
|
|
577
|
+
readonly name: "_agentWrapper";
|
|
578
|
+
readonly type: "address";
|
|
495
579
|
}, {
|
|
496
580
|
readonly name: "_userWallet";
|
|
497
581
|
readonly type: "address";
|
|
@@ -499,11 +583,11 @@ export declare const abi: readonly [{
|
|
|
499
583
|
readonly name: "_legoId";
|
|
500
584
|
readonly type: "uint256";
|
|
501
585
|
}, {
|
|
502
|
-
readonly name: "
|
|
586
|
+
readonly name: "_asset";
|
|
503
587
|
readonly type: "address";
|
|
504
588
|
}, {
|
|
505
|
-
readonly name: "
|
|
506
|
-
readonly type: "
|
|
589
|
+
readonly name: "_vaultAddr";
|
|
590
|
+
readonly type: "address";
|
|
507
591
|
}];
|
|
508
592
|
readonly outputs: readonly [{
|
|
509
593
|
readonly name: "";
|
|
@@ -518,10 +602,13 @@ export declare const abi: readonly [{
|
|
|
518
602
|
}, {
|
|
519
603
|
readonly stateMutability: "view";
|
|
520
604
|
readonly type: "function";
|
|
521
|
-
readonly name: "
|
|
605
|
+
readonly name: "getDepositForYieldHash";
|
|
522
606
|
readonly inputs: readonly [{
|
|
523
607
|
readonly name: "_agentSender";
|
|
524
608
|
readonly type: "address";
|
|
609
|
+
}, {
|
|
610
|
+
readonly name: "_agentWrapper";
|
|
611
|
+
readonly type: "address";
|
|
525
612
|
}, {
|
|
526
613
|
readonly name: "_userWallet";
|
|
527
614
|
readonly type: "address";
|
|
@@ -529,14 +616,14 @@ export declare const abi: readonly [{
|
|
|
529
616
|
readonly name: "_legoId";
|
|
530
617
|
readonly type: "uint256";
|
|
531
618
|
}, {
|
|
532
|
-
readonly name: "
|
|
619
|
+
readonly name: "_asset";
|
|
620
|
+
readonly type: "address";
|
|
621
|
+
}, {
|
|
622
|
+
readonly name: "_vaultAddr";
|
|
533
623
|
readonly type: "address";
|
|
534
624
|
}, {
|
|
535
625
|
readonly name: "_amount";
|
|
536
626
|
readonly type: "uint256";
|
|
537
|
-
}, {
|
|
538
|
-
readonly name: "_extraData";
|
|
539
|
-
readonly type: "bytes32";
|
|
540
627
|
}];
|
|
541
628
|
readonly outputs: readonly [{
|
|
542
629
|
readonly name: "";
|
|
@@ -551,10 +638,13 @@ export declare const abi: readonly [{
|
|
|
551
638
|
}, {
|
|
552
639
|
readonly stateMutability: "view";
|
|
553
640
|
readonly type: "function";
|
|
554
|
-
readonly name: "
|
|
641
|
+
readonly name: "getDepositForYieldHash";
|
|
555
642
|
readonly inputs: readonly [{
|
|
556
643
|
readonly name: "_agentSender";
|
|
557
644
|
readonly type: "address";
|
|
645
|
+
}, {
|
|
646
|
+
readonly name: "_agentWrapper";
|
|
647
|
+
readonly type: "address";
|
|
558
648
|
}, {
|
|
559
649
|
readonly name: "_userWallet";
|
|
560
650
|
readonly type: "address";
|
|
@@ -562,7 +652,10 @@ export declare const abi: readonly [{
|
|
|
562
652
|
readonly name: "_legoId";
|
|
563
653
|
readonly type: "uint256";
|
|
564
654
|
}, {
|
|
565
|
-
readonly name: "
|
|
655
|
+
readonly name: "_asset";
|
|
656
|
+
readonly type: "address";
|
|
657
|
+
}, {
|
|
658
|
+
readonly name: "_vaultAddr";
|
|
566
659
|
readonly type: "address";
|
|
567
660
|
}, {
|
|
568
661
|
readonly name: "_amount";
|
|
@@ -570,9 +663,6 @@ export declare const abi: readonly [{
|
|
|
570
663
|
}, {
|
|
571
664
|
readonly name: "_extraData";
|
|
572
665
|
readonly type: "bytes32";
|
|
573
|
-
}, {
|
|
574
|
-
readonly name: "_nonce";
|
|
575
|
-
readonly type: "uint256";
|
|
576
666
|
}];
|
|
577
667
|
readonly outputs: readonly [{
|
|
578
668
|
readonly name: "";
|
|
@@ -587,10 +677,13 @@ export declare const abi: readonly [{
|
|
|
587
677
|
}, {
|
|
588
678
|
readonly stateMutability: "view";
|
|
589
679
|
readonly type: "function";
|
|
590
|
-
readonly name: "
|
|
680
|
+
readonly name: "getDepositForYieldHash";
|
|
591
681
|
readonly inputs: readonly [{
|
|
592
682
|
readonly name: "_agentSender";
|
|
593
683
|
readonly type: "address";
|
|
684
|
+
}, {
|
|
685
|
+
readonly name: "_agentWrapper";
|
|
686
|
+
readonly type: "address";
|
|
594
687
|
}, {
|
|
595
688
|
readonly name: "_userWallet";
|
|
596
689
|
readonly type: "address";
|
|
@@ -598,7 +691,10 @@ export declare const abi: readonly [{
|
|
|
598
691
|
readonly name: "_legoId";
|
|
599
692
|
readonly type: "uint256";
|
|
600
693
|
}, {
|
|
601
|
-
readonly name: "
|
|
694
|
+
readonly name: "_asset";
|
|
695
|
+
readonly type: "address";
|
|
696
|
+
}, {
|
|
697
|
+
readonly name: "_vaultAddr";
|
|
602
698
|
readonly type: "address";
|
|
603
699
|
}, {
|
|
604
700
|
readonly name: "_amount";
|
|
@@ -609,9 +705,6 @@ export declare const abi: readonly [{
|
|
|
609
705
|
}, {
|
|
610
706
|
readonly name: "_nonce";
|
|
611
707
|
readonly type: "uint256";
|
|
612
|
-
}, {
|
|
613
|
-
readonly name: "_expiration";
|
|
614
|
-
readonly type: "uint256";
|
|
615
708
|
}];
|
|
616
709
|
readonly outputs: readonly [{
|
|
617
710
|
readonly name: "";
|
|
@@ -626,21 +719,36 @@ export declare const abi: readonly [{
|
|
|
626
719
|
}, {
|
|
627
720
|
readonly stateMutability: "view";
|
|
628
721
|
readonly type: "function";
|
|
629
|
-
readonly name: "
|
|
722
|
+
readonly name: "getDepositForYieldHash";
|
|
630
723
|
readonly inputs: readonly [{
|
|
631
724
|
readonly name: "_agentSender";
|
|
632
725
|
readonly type: "address";
|
|
726
|
+
}, {
|
|
727
|
+
readonly name: "_agentWrapper";
|
|
728
|
+
readonly type: "address";
|
|
633
729
|
}, {
|
|
634
730
|
readonly name: "_userWallet";
|
|
635
731
|
readonly type: "address";
|
|
636
732
|
}, {
|
|
637
|
-
readonly name: "
|
|
733
|
+
readonly name: "_legoId";
|
|
638
734
|
readonly type: "uint256";
|
|
639
735
|
}, {
|
|
640
|
-
readonly name: "
|
|
736
|
+
readonly name: "_asset";
|
|
641
737
|
readonly type: "address";
|
|
642
738
|
}, {
|
|
643
|
-
readonly name: "
|
|
739
|
+
readonly name: "_vaultAddr";
|
|
740
|
+
readonly type: "address";
|
|
741
|
+
}, {
|
|
742
|
+
readonly name: "_amount";
|
|
743
|
+
readonly type: "uint256";
|
|
744
|
+
}, {
|
|
745
|
+
readonly name: "_extraData";
|
|
746
|
+
readonly type: "bytes32";
|
|
747
|
+
}, {
|
|
748
|
+
readonly name: "_nonce";
|
|
749
|
+
readonly type: "uint256";
|
|
750
|
+
}, {
|
|
751
|
+
readonly name: "_expiration";
|
|
644
752
|
readonly type: "uint256";
|
|
645
753
|
}];
|
|
646
754
|
readonly outputs: readonly [{
|
|
@@ -656,24 +764,21 @@ export declare const abi: readonly [{
|
|
|
656
764
|
}, {
|
|
657
765
|
readonly stateMutability: "view";
|
|
658
766
|
readonly type: "function";
|
|
659
|
-
readonly name: "
|
|
767
|
+
readonly name: "getWithdrawFromYieldHash";
|
|
660
768
|
readonly inputs: readonly [{
|
|
661
769
|
readonly name: "_agentSender";
|
|
662
770
|
readonly type: "address";
|
|
663
771
|
}, {
|
|
664
|
-
readonly name: "
|
|
772
|
+
readonly name: "_agentWrapper";
|
|
665
773
|
readonly type: "address";
|
|
666
774
|
}, {
|
|
667
|
-
readonly name: "
|
|
668
|
-
readonly type: "uint256";
|
|
669
|
-
}, {
|
|
670
|
-
readonly name: "_fromVaultToken";
|
|
775
|
+
readonly name: "_userWallet";
|
|
671
776
|
readonly type: "address";
|
|
672
777
|
}, {
|
|
673
|
-
readonly name: "
|
|
778
|
+
readonly name: "_legoId";
|
|
674
779
|
readonly type: "uint256";
|
|
675
780
|
}, {
|
|
676
|
-
readonly name: "
|
|
781
|
+
readonly name: "_vaultToken";
|
|
677
782
|
readonly type: "address";
|
|
678
783
|
}];
|
|
679
784
|
readonly outputs: readonly [{
|
|
@@ -689,27 +794,24 @@ export declare const abi: readonly [{
|
|
|
689
794
|
}, {
|
|
690
795
|
readonly stateMutability: "view";
|
|
691
796
|
readonly type: "function";
|
|
692
|
-
readonly name: "
|
|
797
|
+
readonly name: "getWithdrawFromYieldHash";
|
|
693
798
|
readonly inputs: readonly [{
|
|
694
799
|
readonly name: "_agentSender";
|
|
695
800
|
readonly type: "address";
|
|
696
801
|
}, {
|
|
697
|
-
readonly name: "
|
|
802
|
+
readonly name: "_agentWrapper";
|
|
698
803
|
readonly type: "address";
|
|
699
804
|
}, {
|
|
700
|
-
readonly name: "
|
|
701
|
-
readonly type: "uint256";
|
|
702
|
-
}, {
|
|
703
|
-
readonly name: "_fromVaultToken";
|
|
805
|
+
readonly name: "_userWallet";
|
|
704
806
|
readonly type: "address";
|
|
705
807
|
}, {
|
|
706
|
-
readonly name: "
|
|
808
|
+
readonly name: "_legoId";
|
|
707
809
|
readonly type: "uint256";
|
|
708
810
|
}, {
|
|
709
|
-
readonly name: "
|
|
811
|
+
readonly name: "_vaultToken";
|
|
710
812
|
readonly type: "address";
|
|
711
813
|
}, {
|
|
712
|
-
readonly name: "
|
|
814
|
+
readonly name: "_amount";
|
|
713
815
|
readonly type: "uint256";
|
|
714
816
|
}];
|
|
715
817
|
readonly outputs: readonly [{
|
|
@@ -725,27 +827,24 @@ export declare const abi: readonly [{
|
|
|
725
827
|
}, {
|
|
726
828
|
readonly stateMutability: "view";
|
|
727
829
|
readonly type: "function";
|
|
728
|
-
readonly name: "
|
|
830
|
+
readonly name: "getWithdrawFromYieldHash";
|
|
729
831
|
readonly inputs: readonly [{
|
|
730
832
|
readonly name: "_agentSender";
|
|
731
833
|
readonly type: "address";
|
|
732
834
|
}, {
|
|
733
|
-
readonly name: "
|
|
835
|
+
readonly name: "_agentWrapper";
|
|
734
836
|
readonly type: "address";
|
|
735
837
|
}, {
|
|
736
|
-
readonly name: "
|
|
737
|
-
readonly type: "uint256";
|
|
738
|
-
}, {
|
|
739
|
-
readonly name: "_fromVaultToken";
|
|
838
|
+
readonly name: "_userWallet";
|
|
740
839
|
readonly type: "address";
|
|
741
840
|
}, {
|
|
742
|
-
readonly name: "
|
|
841
|
+
readonly name: "_legoId";
|
|
743
842
|
readonly type: "uint256";
|
|
744
843
|
}, {
|
|
745
|
-
readonly name: "
|
|
844
|
+
readonly name: "_vaultToken";
|
|
746
845
|
readonly type: "address";
|
|
747
846
|
}, {
|
|
748
|
-
readonly name: "
|
|
847
|
+
readonly name: "_amount";
|
|
749
848
|
readonly type: "uint256";
|
|
750
849
|
}, {
|
|
751
850
|
readonly name: "_extraData";
|
|
@@ -764,27 +863,24 @@ export declare const abi: readonly [{
|
|
|
764
863
|
}, {
|
|
765
864
|
readonly stateMutability: "view";
|
|
766
865
|
readonly type: "function";
|
|
767
|
-
readonly name: "
|
|
866
|
+
readonly name: "getWithdrawFromYieldHash";
|
|
768
867
|
readonly inputs: readonly [{
|
|
769
868
|
readonly name: "_agentSender";
|
|
770
869
|
readonly type: "address";
|
|
771
870
|
}, {
|
|
772
|
-
readonly name: "
|
|
871
|
+
readonly name: "_agentWrapper";
|
|
773
872
|
readonly type: "address";
|
|
774
873
|
}, {
|
|
775
|
-
readonly name: "
|
|
776
|
-
readonly type: "uint256";
|
|
777
|
-
}, {
|
|
778
|
-
readonly name: "_fromVaultToken";
|
|
874
|
+
readonly name: "_userWallet";
|
|
779
875
|
readonly type: "address";
|
|
780
876
|
}, {
|
|
781
|
-
readonly name: "
|
|
877
|
+
readonly name: "_legoId";
|
|
782
878
|
readonly type: "uint256";
|
|
783
879
|
}, {
|
|
784
|
-
readonly name: "
|
|
880
|
+
readonly name: "_vaultToken";
|
|
785
881
|
readonly type: "address";
|
|
786
882
|
}, {
|
|
787
|
-
readonly name: "
|
|
883
|
+
readonly name: "_amount";
|
|
788
884
|
readonly type: "uint256";
|
|
789
885
|
}, {
|
|
790
886
|
readonly name: "_extraData";
|
|
@@ -806,27 +902,24 @@ export declare const abi: readonly [{
|
|
|
806
902
|
}, {
|
|
807
903
|
readonly stateMutability: "view";
|
|
808
904
|
readonly type: "function";
|
|
809
|
-
readonly name: "
|
|
905
|
+
readonly name: "getWithdrawFromYieldHash";
|
|
810
906
|
readonly inputs: readonly [{
|
|
811
907
|
readonly name: "_agentSender";
|
|
812
908
|
readonly type: "address";
|
|
813
909
|
}, {
|
|
814
|
-
readonly name: "
|
|
910
|
+
readonly name: "_agentWrapper";
|
|
815
911
|
readonly type: "address";
|
|
816
912
|
}, {
|
|
817
|
-
readonly name: "
|
|
818
|
-
readonly type: "uint256";
|
|
819
|
-
}, {
|
|
820
|
-
readonly name: "_fromVaultToken";
|
|
913
|
+
readonly name: "_userWallet";
|
|
821
914
|
readonly type: "address";
|
|
822
915
|
}, {
|
|
823
|
-
readonly name: "
|
|
916
|
+
readonly name: "_legoId";
|
|
824
917
|
readonly type: "uint256";
|
|
825
918
|
}, {
|
|
826
|
-
readonly name: "
|
|
919
|
+
readonly name: "_vaultToken";
|
|
827
920
|
readonly type: "address";
|
|
828
921
|
}, {
|
|
829
|
-
readonly name: "
|
|
922
|
+
readonly name: "_amount";
|
|
830
923
|
readonly type: "uint256";
|
|
831
924
|
}, {
|
|
832
925
|
readonly name: "_extraData";
|
|
@@ -851,10 +944,256 @@ export declare const abi: readonly [{
|
|
|
851
944
|
}, {
|
|
852
945
|
readonly stateMutability: "view";
|
|
853
946
|
readonly type: "function";
|
|
854
|
-
readonly name: "
|
|
947
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
948
|
+
readonly inputs: readonly [{
|
|
949
|
+
readonly name: "_agentSender";
|
|
950
|
+
readonly type: "address";
|
|
951
|
+
}, {
|
|
952
|
+
readonly name: "_agentWrapper";
|
|
953
|
+
readonly type: "address";
|
|
954
|
+
}, {
|
|
955
|
+
readonly name: "_userWallet";
|
|
956
|
+
readonly type: "address";
|
|
957
|
+
}, {
|
|
958
|
+
readonly name: "_fromLegoId";
|
|
959
|
+
readonly type: "uint256";
|
|
960
|
+
}, {
|
|
961
|
+
readonly name: "_fromVaultToken";
|
|
962
|
+
readonly type: "address";
|
|
963
|
+
}, {
|
|
964
|
+
readonly name: "_toLegoId";
|
|
965
|
+
readonly type: "uint256";
|
|
966
|
+
}];
|
|
967
|
+
readonly outputs: readonly [{
|
|
968
|
+
readonly name: "";
|
|
969
|
+
readonly type: "bytes32";
|
|
970
|
+
}, {
|
|
971
|
+
readonly name: "";
|
|
972
|
+
readonly type: "uint256";
|
|
973
|
+
}, {
|
|
974
|
+
readonly name: "";
|
|
975
|
+
readonly type: "uint256";
|
|
976
|
+
}];
|
|
977
|
+
}, {
|
|
978
|
+
readonly stateMutability: "view";
|
|
979
|
+
readonly type: "function";
|
|
980
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
981
|
+
readonly inputs: readonly [{
|
|
982
|
+
readonly name: "_agentSender";
|
|
983
|
+
readonly type: "address";
|
|
984
|
+
}, {
|
|
985
|
+
readonly name: "_agentWrapper";
|
|
986
|
+
readonly type: "address";
|
|
987
|
+
}, {
|
|
988
|
+
readonly name: "_userWallet";
|
|
989
|
+
readonly type: "address";
|
|
990
|
+
}, {
|
|
991
|
+
readonly name: "_fromLegoId";
|
|
992
|
+
readonly type: "uint256";
|
|
993
|
+
}, {
|
|
994
|
+
readonly name: "_fromVaultToken";
|
|
995
|
+
readonly type: "address";
|
|
996
|
+
}, {
|
|
997
|
+
readonly name: "_toLegoId";
|
|
998
|
+
readonly type: "uint256";
|
|
999
|
+
}, {
|
|
1000
|
+
readonly name: "_toVaultAddr";
|
|
1001
|
+
readonly type: "address";
|
|
1002
|
+
}];
|
|
1003
|
+
readonly outputs: readonly [{
|
|
1004
|
+
readonly name: "";
|
|
1005
|
+
readonly type: "bytes32";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly name: "";
|
|
1008
|
+
readonly type: "uint256";
|
|
1009
|
+
}, {
|
|
1010
|
+
readonly name: "";
|
|
1011
|
+
readonly type: "uint256";
|
|
1012
|
+
}];
|
|
1013
|
+
}, {
|
|
1014
|
+
readonly stateMutability: "view";
|
|
1015
|
+
readonly type: "function";
|
|
1016
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
1017
|
+
readonly inputs: readonly [{
|
|
1018
|
+
readonly name: "_agentSender";
|
|
1019
|
+
readonly type: "address";
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly name: "_agentWrapper";
|
|
1022
|
+
readonly type: "address";
|
|
1023
|
+
}, {
|
|
1024
|
+
readonly name: "_userWallet";
|
|
1025
|
+
readonly type: "address";
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly name: "_fromLegoId";
|
|
1028
|
+
readonly type: "uint256";
|
|
1029
|
+
}, {
|
|
1030
|
+
readonly name: "_fromVaultToken";
|
|
1031
|
+
readonly type: "address";
|
|
1032
|
+
}, {
|
|
1033
|
+
readonly name: "_toLegoId";
|
|
1034
|
+
readonly type: "uint256";
|
|
1035
|
+
}, {
|
|
1036
|
+
readonly name: "_toVaultAddr";
|
|
1037
|
+
readonly type: "address";
|
|
1038
|
+
}, {
|
|
1039
|
+
readonly name: "_fromVaultAmount";
|
|
1040
|
+
readonly type: "uint256";
|
|
1041
|
+
}];
|
|
1042
|
+
readonly outputs: readonly [{
|
|
1043
|
+
readonly name: "";
|
|
1044
|
+
readonly type: "bytes32";
|
|
1045
|
+
}, {
|
|
1046
|
+
readonly name: "";
|
|
1047
|
+
readonly type: "uint256";
|
|
1048
|
+
}, {
|
|
1049
|
+
readonly name: "";
|
|
1050
|
+
readonly type: "uint256";
|
|
1051
|
+
}];
|
|
1052
|
+
}, {
|
|
1053
|
+
readonly stateMutability: "view";
|
|
1054
|
+
readonly type: "function";
|
|
1055
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
1056
|
+
readonly inputs: readonly [{
|
|
1057
|
+
readonly name: "_agentSender";
|
|
1058
|
+
readonly type: "address";
|
|
1059
|
+
}, {
|
|
1060
|
+
readonly name: "_agentWrapper";
|
|
1061
|
+
readonly type: "address";
|
|
1062
|
+
}, {
|
|
1063
|
+
readonly name: "_userWallet";
|
|
1064
|
+
readonly type: "address";
|
|
1065
|
+
}, {
|
|
1066
|
+
readonly name: "_fromLegoId";
|
|
1067
|
+
readonly type: "uint256";
|
|
1068
|
+
}, {
|
|
1069
|
+
readonly name: "_fromVaultToken";
|
|
1070
|
+
readonly type: "address";
|
|
1071
|
+
}, {
|
|
1072
|
+
readonly name: "_toLegoId";
|
|
1073
|
+
readonly type: "uint256";
|
|
1074
|
+
}, {
|
|
1075
|
+
readonly name: "_toVaultAddr";
|
|
1076
|
+
readonly type: "address";
|
|
1077
|
+
}, {
|
|
1078
|
+
readonly name: "_fromVaultAmount";
|
|
1079
|
+
readonly type: "uint256";
|
|
1080
|
+
}, {
|
|
1081
|
+
readonly name: "_extraData";
|
|
1082
|
+
readonly type: "bytes32";
|
|
1083
|
+
}];
|
|
1084
|
+
readonly outputs: readonly [{
|
|
1085
|
+
readonly name: "";
|
|
1086
|
+
readonly type: "bytes32";
|
|
1087
|
+
}, {
|
|
1088
|
+
readonly name: "";
|
|
1089
|
+
readonly type: "uint256";
|
|
1090
|
+
}, {
|
|
1091
|
+
readonly name: "";
|
|
1092
|
+
readonly type: "uint256";
|
|
1093
|
+
}];
|
|
1094
|
+
}, {
|
|
1095
|
+
readonly stateMutability: "view";
|
|
1096
|
+
readonly type: "function";
|
|
1097
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
1098
|
+
readonly inputs: readonly [{
|
|
1099
|
+
readonly name: "_agentSender";
|
|
1100
|
+
readonly type: "address";
|
|
1101
|
+
}, {
|
|
1102
|
+
readonly name: "_agentWrapper";
|
|
1103
|
+
readonly type: "address";
|
|
1104
|
+
}, {
|
|
1105
|
+
readonly name: "_userWallet";
|
|
1106
|
+
readonly type: "address";
|
|
1107
|
+
}, {
|
|
1108
|
+
readonly name: "_fromLegoId";
|
|
1109
|
+
readonly type: "uint256";
|
|
1110
|
+
}, {
|
|
1111
|
+
readonly name: "_fromVaultToken";
|
|
1112
|
+
readonly type: "address";
|
|
1113
|
+
}, {
|
|
1114
|
+
readonly name: "_toLegoId";
|
|
1115
|
+
readonly type: "uint256";
|
|
1116
|
+
}, {
|
|
1117
|
+
readonly name: "_toVaultAddr";
|
|
1118
|
+
readonly type: "address";
|
|
1119
|
+
}, {
|
|
1120
|
+
readonly name: "_fromVaultAmount";
|
|
1121
|
+
readonly type: "uint256";
|
|
1122
|
+
}, {
|
|
1123
|
+
readonly name: "_extraData";
|
|
1124
|
+
readonly type: "bytes32";
|
|
1125
|
+
}, {
|
|
1126
|
+
readonly name: "_nonce";
|
|
1127
|
+
readonly type: "uint256";
|
|
1128
|
+
}];
|
|
1129
|
+
readonly outputs: readonly [{
|
|
1130
|
+
readonly name: "";
|
|
1131
|
+
readonly type: "bytes32";
|
|
1132
|
+
}, {
|
|
1133
|
+
readonly name: "";
|
|
1134
|
+
readonly type: "uint256";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly name: "";
|
|
1137
|
+
readonly type: "uint256";
|
|
1138
|
+
}];
|
|
1139
|
+
}, {
|
|
1140
|
+
readonly stateMutability: "view";
|
|
1141
|
+
readonly type: "function";
|
|
1142
|
+
readonly name: "getRebalanceYieldPositionHash";
|
|
1143
|
+
readonly inputs: readonly [{
|
|
1144
|
+
readonly name: "_agentSender";
|
|
1145
|
+
readonly type: "address";
|
|
1146
|
+
}, {
|
|
1147
|
+
readonly name: "_agentWrapper";
|
|
1148
|
+
readonly type: "address";
|
|
1149
|
+
}, {
|
|
1150
|
+
readonly name: "_userWallet";
|
|
1151
|
+
readonly type: "address";
|
|
1152
|
+
}, {
|
|
1153
|
+
readonly name: "_fromLegoId";
|
|
1154
|
+
readonly type: "uint256";
|
|
1155
|
+
}, {
|
|
1156
|
+
readonly name: "_fromVaultToken";
|
|
1157
|
+
readonly type: "address";
|
|
1158
|
+
}, {
|
|
1159
|
+
readonly name: "_toLegoId";
|
|
1160
|
+
readonly type: "uint256";
|
|
1161
|
+
}, {
|
|
1162
|
+
readonly name: "_toVaultAddr";
|
|
1163
|
+
readonly type: "address";
|
|
1164
|
+
}, {
|
|
1165
|
+
readonly name: "_fromVaultAmount";
|
|
1166
|
+
readonly type: "uint256";
|
|
1167
|
+
}, {
|
|
1168
|
+
readonly name: "_extraData";
|
|
1169
|
+
readonly type: "bytes32";
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly name: "_nonce";
|
|
1172
|
+
readonly type: "uint256";
|
|
1173
|
+
}, {
|
|
1174
|
+
readonly name: "_expiration";
|
|
1175
|
+
readonly type: "uint256";
|
|
1176
|
+
}];
|
|
1177
|
+
readonly outputs: readonly [{
|
|
1178
|
+
readonly name: "";
|
|
1179
|
+
readonly type: "bytes32";
|
|
1180
|
+
}, {
|
|
1181
|
+
readonly name: "";
|
|
1182
|
+
readonly type: "uint256";
|
|
1183
|
+
}, {
|
|
1184
|
+
readonly name: "";
|
|
1185
|
+
readonly type: "uint256";
|
|
1186
|
+
}];
|
|
1187
|
+
}, {
|
|
1188
|
+
readonly stateMutability: "view";
|
|
1189
|
+
readonly type: "function";
|
|
1190
|
+
readonly name: "getSwapTokensHash";
|
|
855
1191
|
readonly inputs: readonly [{
|
|
856
1192
|
readonly name: "_agentSender";
|
|
857
1193
|
readonly type: "address";
|
|
1194
|
+
}, {
|
|
1195
|
+
readonly name: "_agentWrapper";
|
|
1196
|
+
readonly type: "address";
|
|
858
1197
|
}, {
|
|
859
1198
|
readonly name: "_userWallet";
|
|
860
1199
|
readonly type: "address";
|
|
@@ -895,6 +1234,9 @@ export declare const abi: readonly [{
|
|
|
895
1234
|
readonly inputs: readonly [{
|
|
896
1235
|
readonly name: "_agentSender";
|
|
897
1236
|
readonly type: "address";
|
|
1237
|
+
}, {
|
|
1238
|
+
readonly name: "_agentWrapper";
|
|
1239
|
+
readonly type: "address";
|
|
898
1240
|
}, {
|
|
899
1241
|
readonly name: "_userWallet";
|
|
900
1242
|
readonly type: "address";
|
|
@@ -938,6 +1280,9 @@ export declare const abi: readonly [{
|
|
|
938
1280
|
readonly inputs: readonly [{
|
|
939
1281
|
readonly name: "_agentSender";
|
|
940
1282
|
readonly type: "address";
|
|
1283
|
+
}, {
|
|
1284
|
+
readonly name: "_agentWrapper";
|
|
1285
|
+
readonly type: "address";
|
|
941
1286
|
}, {
|
|
942
1287
|
readonly name: "_userWallet";
|
|
943
1288
|
readonly type: "address";
|
|
@@ -984,6 +1329,9 @@ export declare const abi: readonly [{
|
|
|
984
1329
|
readonly inputs: readonly [{
|
|
985
1330
|
readonly name: "_agentSender";
|
|
986
1331
|
readonly type: "address";
|
|
1332
|
+
}, {
|
|
1333
|
+
readonly name: "_agentWrapper";
|
|
1334
|
+
readonly type: "address";
|
|
987
1335
|
}, {
|
|
988
1336
|
readonly name: "_userWallet";
|
|
989
1337
|
readonly type: "address";
|
|
@@ -1014,6 +1362,9 @@ export declare const abi: readonly [{
|
|
|
1014
1362
|
readonly inputs: readonly [{
|
|
1015
1363
|
readonly name: "_agentSender";
|
|
1016
1364
|
readonly type: "address";
|
|
1365
|
+
}, {
|
|
1366
|
+
readonly name: "_agentWrapper";
|
|
1367
|
+
readonly type: "address";
|
|
1017
1368
|
}, {
|
|
1018
1369
|
readonly name: "_userWallet";
|
|
1019
1370
|
readonly type: "address";
|
|
@@ -1047,6 +1398,9 @@ export declare const abi: readonly [{
|
|
|
1047
1398
|
readonly inputs: readonly [{
|
|
1048
1399
|
readonly name: "_agentSender";
|
|
1049
1400
|
readonly type: "address";
|
|
1401
|
+
}, {
|
|
1402
|
+
readonly name: "_agentWrapper";
|
|
1403
|
+
readonly type: "address";
|
|
1050
1404
|
}, {
|
|
1051
1405
|
readonly name: "_userWallet";
|
|
1052
1406
|
readonly type: "address";
|
|
@@ -1083,6 +1437,9 @@ export declare const abi: readonly [{
|
|
|
1083
1437
|
readonly inputs: readonly [{
|
|
1084
1438
|
readonly name: "_agentSender";
|
|
1085
1439
|
readonly type: "address";
|
|
1440
|
+
}, {
|
|
1441
|
+
readonly name: "_agentWrapper";
|
|
1442
|
+
readonly type: "address";
|
|
1086
1443
|
}, {
|
|
1087
1444
|
readonly name: "_userWallet";
|
|
1088
1445
|
readonly type: "address";
|
|
@@ -1122,6 +1479,9 @@ export declare const abi: readonly [{
|
|
|
1122
1479
|
readonly inputs: readonly [{
|
|
1123
1480
|
readonly name: "_agentSender";
|
|
1124
1481
|
readonly type: "address";
|
|
1482
|
+
}, {
|
|
1483
|
+
readonly name: "_agentWrapper";
|
|
1484
|
+
readonly type: "address";
|
|
1125
1485
|
}, {
|
|
1126
1486
|
readonly name: "_userWallet";
|
|
1127
1487
|
readonly type: "address";
|
|
@@ -1164,6 +1524,9 @@ export declare const abi: readonly [{
|
|
|
1164
1524
|
readonly inputs: readonly [{
|
|
1165
1525
|
readonly name: "_agentSender";
|
|
1166
1526
|
readonly type: "address";
|
|
1527
|
+
}, {
|
|
1528
|
+
readonly name: "_agentWrapper";
|
|
1529
|
+
readonly type: "address";
|
|
1167
1530
|
}, {
|
|
1168
1531
|
readonly name: "_userWallet";
|
|
1169
1532
|
readonly type: "address";
|
|
@@ -1209,6 +1572,9 @@ export declare const abi: readonly [{
|
|
|
1209
1572
|
readonly inputs: readonly [{
|
|
1210
1573
|
readonly name: "_agentSender";
|
|
1211
1574
|
readonly type: "address";
|
|
1575
|
+
}, {
|
|
1576
|
+
readonly name: "_agentWrapper";
|
|
1577
|
+
readonly type: "address";
|
|
1212
1578
|
}, {
|
|
1213
1579
|
readonly name: "_userWallet";
|
|
1214
1580
|
readonly type: "address";
|
|
@@ -1239,6 +1605,9 @@ export declare const abi: readonly [{
|
|
|
1239
1605
|
readonly inputs: readonly [{
|
|
1240
1606
|
readonly name: "_agentSender";
|
|
1241
1607
|
readonly type: "address";
|
|
1608
|
+
}, {
|
|
1609
|
+
readonly name: "_agentWrapper";
|
|
1610
|
+
readonly type: "address";
|
|
1242
1611
|
}, {
|
|
1243
1612
|
readonly name: "_userWallet";
|
|
1244
1613
|
readonly type: "address";
|
|
@@ -1272,6 +1641,9 @@ export declare const abi: readonly [{
|
|
|
1272
1641
|
readonly inputs: readonly [{
|
|
1273
1642
|
readonly name: "_agentSender";
|
|
1274
1643
|
readonly type: "address";
|
|
1644
|
+
}, {
|
|
1645
|
+
readonly name: "_agentWrapper";
|
|
1646
|
+
readonly type: "address";
|
|
1275
1647
|
}, {
|
|
1276
1648
|
readonly name: "_userWallet";
|
|
1277
1649
|
readonly type: "address";
|
|
@@ -1308,6 +1680,9 @@ export declare const abi: readonly [{
|
|
|
1308
1680
|
readonly inputs: readonly [{
|
|
1309
1681
|
readonly name: "_agentSender";
|
|
1310
1682
|
readonly type: "address";
|
|
1683
|
+
}, {
|
|
1684
|
+
readonly name: "_agentWrapper";
|
|
1685
|
+
readonly type: "address";
|
|
1311
1686
|
}, {
|
|
1312
1687
|
readonly name: "_userWallet";
|
|
1313
1688
|
readonly type: "address";
|
|
@@ -1347,6 +1722,9 @@ export declare const abi: readonly [{
|
|
|
1347
1722
|
readonly inputs: readonly [{
|
|
1348
1723
|
readonly name: "_agentSender";
|
|
1349
1724
|
readonly type: "address";
|
|
1725
|
+
}, {
|
|
1726
|
+
readonly name: "_agentWrapper";
|
|
1727
|
+
readonly type: "address";
|
|
1350
1728
|
}, {
|
|
1351
1729
|
readonly name: "_userWallet";
|
|
1352
1730
|
readonly type: "address";
|
|
@@ -1374,6 +1752,9 @@ export declare const abi: readonly [{
|
|
|
1374
1752
|
readonly inputs: readonly [{
|
|
1375
1753
|
readonly name: "_agentSender";
|
|
1376
1754
|
readonly type: "address";
|
|
1755
|
+
}, {
|
|
1756
|
+
readonly name: "_agentWrapper";
|
|
1757
|
+
readonly type: "address";
|
|
1377
1758
|
}, {
|
|
1378
1759
|
readonly name: "_userWallet";
|
|
1379
1760
|
readonly type: "address";
|
|
@@ -1404,6 +1785,9 @@ export declare const abi: readonly [{
|
|
|
1404
1785
|
readonly inputs: readonly [{
|
|
1405
1786
|
readonly name: "_agentSender";
|
|
1406
1787
|
readonly type: "address";
|
|
1788
|
+
}, {
|
|
1789
|
+
readonly name: "_agentWrapper";
|
|
1790
|
+
readonly type: "address";
|
|
1407
1791
|
}, {
|
|
1408
1792
|
readonly name: "_userWallet";
|
|
1409
1793
|
readonly type: "address";
|
|
@@ -1437,6 +1821,9 @@ export declare const abi: readonly [{
|
|
|
1437
1821
|
readonly inputs: readonly [{
|
|
1438
1822
|
readonly name: "_agentSender";
|
|
1439
1823
|
readonly type: "address";
|
|
1824
|
+
}, {
|
|
1825
|
+
readonly name: "_agentWrapper";
|
|
1826
|
+
readonly type: "address";
|
|
1440
1827
|
}, {
|
|
1441
1828
|
readonly name: "_userWallet";
|
|
1442
1829
|
readonly type: "address";
|
|
@@ -1473,6 +1860,9 @@ export declare const abi: readonly [{
|
|
|
1473
1860
|
readonly inputs: readonly [{
|
|
1474
1861
|
readonly name: "_agentSender";
|
|
1475
1862
|
readonly type: "address";
|
|
1863
|
+
}, {
|
|
1864
|
+
readonly name: "_agentWrapper";
|
|
1865
|
+
readonly type: "address";
|
|
1476
1866
|
}, {
|
|
1477
1867
|
readonly name: "_userWallet";
|
|
1478
1868
|
readonly type: "address";
|
|
@@ -1512,6 +1902,9 @@ export declare const abi: readonly [{
|
|
|
1512
1902
|
readonly inputs: readonly [{
|
|
1513
1903
|
readonly name: "_agentSender";
|
|
1514
1904
|
readonly type: "address";
|
|
1905
|
+
}, {
|
|
1906
|
+
readonly name: "_agentWrapper";
|
|
1907
|
+
readonly type: "address";
|
|
1515
1908
|
}, {
|
|
1516
1909
|
readonly name: "_userWallet";
|
|
1517
1910
|
readonly type: "address";
|
|
@@ -1539,6 +1932,9 @@ export declare const abi: readonly [{
|
|
|
1539
1932
|
readonly inputs: readonly [{
|
|
1540
1933
|
readonly name: "_agentSender";
|
|
1541
1934
|
readonly type: "address";
|
|
1935
|
+
}, {
|
|
1936
|
+
readonly name: "_agentWrapper";
|
|
1937
|
+
readonly type: "address";
|
|
1542
1938
|
}, {
|
|
1543
1939
|
readonly name: "_userWallet";
|
|
1544
1940
|
readonly type: "address";
|
|
@@ -1569,6 +1965,9 @@ export declare const abi: readonly [{
|
|
|
1569
1965
|
readonly inputs: readonly [{
|
|
1570
1966
|
readonly name: "_agentSender";
|
|
1571
1967
|
readonly type: "address";
|
|
1968
|
+
}, {
|
|
1969
|
+
readonly name: "_agentWrapper";
|
|
1970
|
+
readonly type: "address";
|
|
1572
1971
|
}, {
|
|
1573
1972
|
readonly name: "_userWallet";
|
|
1574
1973
|
readonly type: "address";
|
|
@@ -1602,6 +2001,9 @@ export declare const abi: readonly [{
|
|
|
1602
2001
|
readonly inputs: readonly [{
|
|
1603
2002
|
readonly name: "_agentSender";
|
|
1604
2003
|
readonly type: "address";
|
|
2004
|
+
}, {
|
|
2005
|
+
readonly name: "_agentWrapper";
|
|
2006
|
+
readonly type: "address";
|
|
1605
2007
|
}, {
|
|
1606
2008
|
readonly name: "_userWallet";
|
|
1607
2009
|
readonly type: "address";
|
|
@@ -1638,6 +2040,9 @@ export declare const abi: readonly [{
|
|
|
1638
2040
|
readonly inputs: readonly [{
|
|
1639
2041
|
readonly name: "_agentSender";
|
|
1640
2042
|
readonly type: "address";
|
|
2043
|
+
}, {
|
|
2044
|
+
readonly name: "_agentWrapper";
|
|
2045
|
+
readonly type: "address";
|
|
1641
2046
|
}, {
|
|
1642
2047
|
readonly name: "_userWallet";
|
|
1643
2048
|
readonly type: "address";
|
|
@@ -1677,6 +2082,9 @@ export declare const abi: readonly [{
|
|
|
1677
2082
|
readonly inputs: readonly [{
|
|
1678
2083
|
readonly name: "_agentSender";
|
|
1679
2084
|
readonly type: "address";
|
|
2085
|
+
}, {
|
|
2086
|
+
readonly name: "_agentWrapper";
|
|
2087
|
+
readonly type: "address";
|
|
1680
2088
|
}, {
|
|
1681
2089
|
readonly name: "_userWallet";
|
|
1682
2090
|
readonly type: "address";
|
|
@@ -1704,6 +2112,9 @@ export declare const abi: readonly [{
|
|
|
1704
2112
|
readonly inputs: readonly [{
|
|
1705
2113
|
readonly name: "_agentSender";
|
|
1706
2114
|
readonly type: "address";
|
|
2115
|
+
}, {
|
|
2116
|
+
readonly name: "_agentWrapper";
|
|
2117
|
+
readonly type: "address";
|
|
1707
2118
|
}, {
|
|
1708
2119
|
readonly name: "_userWallet";
|
|
1709
2120
|
readonly type: "address";
|
|
@@ -1734,6 +2145,9 @@ export declare const abi: readonly [{
|
|
|
1734
2145
|
readonly inputs: readonly [{
|
|
1735
2146
|
readonly name: "_agentSender";
|
|
1736
2147
|
readonly type: "address";
|
|
2148
|
+
}, {
|
|
2149
|
+
readonly name: "_agentWrapper";
|
|
2150
|
+
readonly type: "address";
|
|
1737
2151
|
}, {
|
|
1738
2152
|
readonly name: "_userWallet";
|
|
1739
2153
|
readonly type: "address";
|
|
@@ -1767,6 +2181,9 @@ export declare const abi: readonly [{
|
|
|
1767
2181
|
readonly inputs: readonly [{
|
|
1768
2182
|
readonly name: "_agentSender";
|
|
1769
2183
|
readonly type: "address";
|
|
2184
|
+
}, {
|
|
2185
|
+
readonly name: "_agentWrapper";
|
|
2186
|
+
readonly type: "address";
|
|
1770
2187
|
}, {
|
|
1771
2188
|
readonly name: "_userWallet";
|
|
1772
2189
|
readonly type: "address";
|
|
@@ -1803,6 +2220,9 @@ export declare const abi: readonly [{
|
|
|
1803
2220
|
readonly inputs: readonly [{
|
|
1804
2221
|
readonly name: "_agentSender";
|
|
1805
2222
|
readonly type: "address";
|
|
2223
|
+
}, {
|
|
2224
|
+
readonly name: "_agentWrapper";
|
|
2225
|
+
readonly type: "address";
|
|
1806
2226
|
}, {
|
|
1807
2227
|
readonly name: "_userWallet";
|
|
1808
2228
|
readonly type: "address";
|
|
@@ -1842,6 +2262,9 @@ export declare const abi: readonly [{
|
|
|
1842
2262
|
readonly inputs: readonly [{
|
|
1843
2263
|
readonly name: "_agentSender";
|
|
1844
2264
|
readonly type: "address";
|
|
2265
|
+
}, {
|
|
2266
|
+
readonly name: "_agentWrapper";
|
|
2267
|
+
readonly type: "address";
|
|
1845
2268
|
}, {
|
|
1846
2269
|
readonly name: "_userWallet";
|
|
1847
2270
|
readonly type: "address";
|
|
@@ -1869,6 +2292,9 @@ export declare const abi: readonly [{
|
|
|
1869
2292
|
readonly inputs: readonly [{
|
|
1870
2293
|
readonly name: "_agentSender";
|
|
1871
2294
|
readonly type: "address";
|
|
2295
|
+
}, {
|
|
2296
|
+
readonly name: "_agentWrapper";
|
|
2297
|
+
readonly type: "address";
|
|
1872
2298
|
}, {
|
|
1873
2299
|
readonly name: "_userWallet";
|
|
1874
2300
|
readonly type: "address";
|
|
@@ -1899,6 +2325,9 @@ export declare const abi: readonly [{
|
|
|
1899
2325
|
readonly inputs: readonly [{
|
|
1900
2326
|
readonly name: "_agentSender";
|
|
1901
2327
|
readonly type: "address";
|
|
2328
|
+
}, {
|
|
2329
|
+
readonly name: "_agentWrapper";
|
|
2330
|
+
readonly type: "address";
|
|
1902
2331
|
}, {
|
|
1903
2332
|
readonly name: "_userWallet";
|
|
1904
2333
|
readonly type: "address";
|
|
@@ -1932,6 +2361,9 @@ export declare const abi: readonly [{
|
|
|
1932
2361
|
readonly inputs: readonly [{
|
|
1933
2362
|
readonly name: "_agentSender";
|
|
1934
2363
|
readonly type: "address";
|
|
2364
|
+
}, {
|
|
2365
|
+
readonly name: "_agentWrapper";
|
|
2366
|
+
readonly type: "address";
|
|
1935
2367
|
}, {
|
|
1936
2368
|
readonly name: "_userWallet";
|
|
1937
2369
|
readonly type: "address";
|
|
@@ -1968,6 +2400,9 @@ export declare const abi: readonly [{
|
|
|
1968
2400
|
readonly inputs: readonly [{
|
|
1969
2401
|
readonly name: "_agentSender";
|
|
1970
2402
|
readonly type: "address";
|
|
2403
|
+
}, {
|
|
2404
|
+
readonly name: "_agentWrapper";
|
|
2405
|
+
readonly type: "address";
|
|
1971
2406
|
}, {
|
|
1972
2407
|
readonly name: "_userWallet";
|
|
1973
2408
|
readonly type: "address";
|
|
@@ -2003,181 +2438,16 @@ export declare const abi: readonly [{
|
|
|
2003
2438
|
}, {
|
|
2004
2439
|
readonly stateMutability: "view";
|
|
2005
2440
|
readonly type: "function";
|
|
2006
|
-
readonly name: "
|
|
2007
|
-
readonly inputs: readonly [{
|
|
2008
|
-
readonly name: "_agentSender";
|
|
2009
|
-
readonly type: "address";
|
|
2010
|
-
}, {
|
|
2011
|
-
readonly name: "_userWallet";
|
|
2012
|
-
readonly type: "address";
|
|
2013
|
-
}, {
|
|
2014
|
-
readonly name: "_legoId";
|
|
2015
|
-
readonly type: "uint256";
|
|
2016
|
-
}];
|
|
2017
|
-
readonly outputs: readonly [{
|
|
2018
|
-
readonly name: "";
|
|
2019
|
-
readonly type: "bytes32";
|
|
2020
|
-
}, {
|
|
2021
|
-
readonly name: "";
|
|
2022
|
-
readonly type: "uint256";
|
|
2023
|
-
}, {
|
|
2024
|
-
readonly name: "";
|
|
2025
|
-
readonly type: "uint256";
|
|
2026
|
-
}];
|
|
2027
|
-
}, {
|
|
2028
|
-
readonly stateMutability: "view";
|
|
2029
|
-
readonly type: "function";
|
|
2030
|
-
readonly name: "getClaimRewardsHash";
|
|
2031
|
-
readonly inputs: readonly [{
|
|
2032
|
-
readonly name: "_agentSender";
|
|
2033
|
-
readonly type: "address";
|
|
2034
|
-
}, {
|
|
2035
|
-
readonly name: "_userWallet";
|
|
2036
|
-
readonly type: "address";
|
|
2037
|
-
}, {
|
|
2038
|
-
readonly name: "_legoId";
|
|
2039
|
-
readonly type: "uint256";
|
|
2040
|
-
}, {
|
|
2041
|
-
readonly name: "_rewardToken";
|
|
2042
|
-
readonly type: "address";
|
|
2043
|
-
}];
|
|
2044
|
-
readonly outputs: readonly [{
|
|
2045
|
-
readonly name: "";
|
|
2046
|
-
readonly type: "bytes32";
|
|
2047
|
-
}, {
|
|
2048
|
-
readonly name: "";
|
|
2049
|
-
readonly type: "uint256";
|
|
2050
|
-
}, {
|
|
2051
|
-
readonly name: "";
|
|
2052
|
-
readonly type: "uint256";
|
|
2053
|
-
}];
|
|
2054
|
-
}, {
|
|
2055
|
-
readonly stateMutability: "view";
|
|
2056
|
-
readonly type: "function";
|
|
2057
|
-
readonly name: "getClaimRewardsHash";
|
|
2058
|
-
readonly inputs: readonly [{
|
|
2059
|
-
readonly name: "_agentSender";
|
|
2060
|
-
readonly type: "address";
|
|
2061
|
-
}, {
|
|
2062
|
-
readonly name: "_userWallet";
|
|
2063
|
-
readonly type: "address";
|
|
2064
|
-
}, {
|
|
2065
|
-
readonly name: "_legoId";
|
|
2066
|
-
readonly type: "uint256";
|
|
2067
|
-
}, {
|
|
2068
|
-
readonly name: "_rewardToken";
|
|
2069
|
-
readonly type: "address";
|
|
2070
|
-
}, {
|
|
2071
|
-
readonly name: "_rewardAmount";
|
|
2072
|
-
readonly type: "uint256";
|
|
2073
|
-
}];
|
|
2074
|
-
readonly outputs: readonly [{
|
|
2075
|
-
readonly name: "";
|
|
2076
|
-
readonly type: "bytes32";
|
|
2077
|
-
}, {
|
|
2078
|
-
readonly name: "";
|
|
2079
|
-
readonly type: "uint256";
|
|
2080
|
-
}, {
|
|
2081
|
-
readonly name: "";
|
|
2082
|
-
readonly type: "uint256";
|
|
2083
|
-
}];
|
|
2084
|
-
}, {
|
|
2085
|
-
readonly stateMutability: "view";
|
|
2086
|
-
readonly type: "function";
|
|
2087
|
-
readonly name: "getClaimRewardsHash";
|
|
2088
|
-
readonly inputs: readonly [{
|
|
2089
|
-
readonly name: "_agentSender";
|
|
2090
|
-
readonly type: "address";
|
|
2091
|
-
}, {
|
|
2092
|
-
readonly name: "_userWallet";
|
|
2093
|
-
readonly type: "address";
|
|
2094
|
-
}, {
|
|
2095
|
-
readonly name: "_legoId";
|
|
2096
|
-
readonly type: "uint256";
|
|
2097
|
-
}, {
|
|
2098
|
-
readonly name: "_rewardToken";
|
|
2099
|
-
readonly type: "address";
|
|
2100
|
-
}, {
|
|
2101
|
-
readonly name: "_rewardAmount";
|
|
2102
|
-
readonly type: "uint256";
|
|
2103
|
-
}, {
|
|
2104
|
-
readonly name: "_extraData";
|
|
2105
|
-
readonly type: "bytes32";
|
|
2106
|
-
}];
|
|
2107
|
-
readonly outputs: readonly [{
|
|
2108
|
-
readonly name: "";
|
|
2109
|
-
readonly type: "bytes32";
|
|
2110
|
-
}, {
|
|
2111
|
-
readonly name: "";
|
|
2112
|
-
readonly type: "uint256";
|
|
2113
|
-
}, {
|
|
2114
|
-
readonly name: "";
|
|
2115
|
-
readonly type: "uint256";
|
|
2116
|
-
}];
|
|
2117
|
-
}, {
|
|
2118
|
-
readonly stateMutability: "view";
|
|
2119
|
-
readonly type: "function";
|
|
2120
|
-
readonly name: "getClaimRewardsHash";
|
|
2441
|
+
readonly name: "getConvertWethToEthHash";
|
|
2121
2442
|
readonly inputs: readonly [{
|
|
2122
2443
|
readonly name: "_agentSender";
|
|
2123
2444
|
readonly type: "address";
|
|
2124
2445
|
}, {
|
|
2125
|
-
readonly name: "
|
|
2126
|
-
readonly type: "address";
|
|
2127
|
-
}, {
|
|
2128
|
-
readonly name: "_legoId";
|
|
2129
|
-
readonly type: "uint256";
|
|
2130
|
-
}, {
|
|
2131
|
-
readonly name: "_rewardToken";
|
|
2132
|
-
readonly type: "address";
|
|
2133
|
-
}, {
|
|
2134
|
-
readonly name: "_rewardAmount";
|
|
2135
|
-
readonly type: "uint256";
|
|
2136
|
-
}, {
|
|
2137
|
-
readonly name: "_extraData";
|
|
2138
|
-
readonly type: "bytes32";
|
|
2139
|
-
}, {
|
|
2140
|
-
readonly name: "_nonce";
|
|
2141
|
-
readonly type: "uint256";
|
|
2142
|
-
}];
|
|
2143
|
-
readonly outputs: readonly [{
|
|
2144
|
-
readonly name: "";
|
|
2145
|
-
readonly type: "bytes32";
|
|
2146
|
-
}, {
|
|
2147
|
-
readonly name: "";
|
|
2148
|
-
readonly type: "uint256";
|
|
2149
|
-
}, {
|
|
2150
|
-
readonly name: "";
|
|
2151
|
-
readonly type: "uint256";
|
|
2152
|
-
}];
|
|
2153
|
-
}, {
|
|
2154
|
-
readonly stateMutability: "view";
|
|
2155
|
-
readonly type: "function";
|
|
2156
|
-
readonly name: "getClaimRewardsHash";
|
|
2157
|
-
readonly inputs: readonly [{
|
|
2158
|
-
readonly name: "_agentSender";
|
|
2446
|
+
readonly name: "_agentWrapper";
|
|
2159
2447
|
readonly type: "address";
|
|
2160
2448
|
}, {
|
|
2161
2449
|
readonly name: "_userWallet";
|
|
2162
2450
|
readonly type: "address";
|
|
2163
|
-
}, {
|
|
2164
|
-
readonly name: "_legoId";
|
|
2165
|
-
readonly type: "uint256";
|
|
2166
|
-
}, {
|
|
2167
|
-
readonly name: "_rewardToken";
|
|
2168
|
-
readonly type: "address";
|
|
2169
|
-
}, {
|
|
2170
|
-
readonly name: "_rewardAmount";
|
|
2171
|
-
readonly type: "uint256";
|
|
2172
|
-
}, {
|
|
2173
|
-
readonly name: "_extraData";
|
|
2174
|
-
readonly type: "bytes32";
|
|
2175
|
-
}, {
|
|
2176
|
-
readonly name: "_nonce";
|
|
2177
|
-
readonly type: "uint256";
|
|
2178
|
-
}, {
|
|
2179
|
-
readonly name: "_expiration";
|
|
2180
|
-
readonly type: "uint256";
|
|
2181
2451
|
}];
|
|
2182
2452
|
readonly outputs: readonly [{
|
|
2183
2453
|
readonly name: "";
|
|
@@ -2197,25 +2467,7 @@ export declare const abi: readonly [{
|
|
|
2197
2467
|
readonly name: "_agentSender";
|
|
2198
2468
|
readonly type: "address";
|
|
2199
2469
|
}, {
|
|
2200
|
-
readonly name: "
|
|
2201
|
-
readonly type: "address";
|
|
2202
|
-
}];
|
|
2203
|
-
readonly outputs: readonly [{
|
|
2204
|
-
readonly name: "";
|
|
2205
|
-
readonly type: "bytes32";
|
|
2206
|
-
}, {
|
|
2207
|
-
readonly name: "";
|
|
2208
|
-
readonly type: "uint256";
|
|
2209
|
-
}, {
|
|
2210
|
-
readonly name: "";
|
|
2211
|
-
readonly type: "uint256";
|
|
2212
|
-
}];
|
|
2213
|
-
}, {
|
|
2214
|
-
readonly stateMutability: "view";
|
|
2215
|
-
readonly type: "function";
|
|
2216
|
-
readonly name: "getConvertWethToEthHash";
|
|
2217
|
-
readonly inputs: readonly [{
|
|
2218
|
-
readonly name: "_agentSender";
|
|
2470
|
+
readonly name: "_agentWrapper";
|
|
2219
2471
|
readonly type: "address";
|
|
2220
2472
|
}, {
|
|
2221
2473
|
readonly name: "_userWallet";
|
|
@@ -2241,6 +2493,9 @@ export declare const abi: readonly [{
|
|
|
2241
2493
|
readonly inputs: readonly [{
|
|
2242
2494
|
readonly name: "_agentSender";
|
|
2243
2495
|
readonly type: "address";
|
|
2496
|
+
}, {
|
|
2497
|
+
readonly name: "_agentWrapper";
|
|
2498
|
+
readonly type: "address";
|
|
2244
2499
|
}, {
|
|
2245
2500
|
readonly name: "_userWallet";
|
|
2246
2501
|
readonly type: "address";
|
|
@@ -2268,6 +2523,9 @@ export declare const abi: readonly [{
|
|
|
2268
2523
|
readonly inputs: readonly [{
|
|
2269
2524
|
readonly name: "_agentSender";
|
|
2270
2525
|
readonly type: "address";
|
|
2526
|
+
}, {
|
|
2527
|
+
readonly name: "_agentWrapper";
|
|
2528
|
+
readonly type: "address";
|
|
2271
2529
|
}, {
|
|
2272
2530
|
readonly name: "_userWallet";
|
|
2273
2531
|
readonly type: "address";
|
|
@@ -2298,6 +2556,9 @@ export declare const abi: readonly [{
|
|
|
2298
2556
|
readonly inputs: readonly [{
|
|
2299
2557
|
readonly name: "_agentSender";
|
|
2300
2558
|
readonly type: "address";
|
|
2559
|
+
}, {
|
|
2560
|
+
readonly name: "_agentWrapper";
|
|
2561
|
+
readonly type: "address";
|
|
2301
2562
|
}, {
|
|
2302
2563
|
readonly name: "_userWallet";
|
|
2303
2564
|
readonly type: "address";
|
|
@@ -2319,6 +2580,9 @@ export declare const abi: readonly [{
|
|
|
2319
2580
|
readonly inputs: readonly [{
|
|
2320
2581
|
readonly name: "_agentSender";
|
|
2321
2582
|
readonly type: "address";
|
|
2583
|
+
}, {
|
|
2584
|
+
readonly name: "_agentWrapper";
|
|
2585
|
+
readonly type: "address";
|
|
2322
2586
|
}, {
|
|
2323
2587
|
readonly name: "_userWallet";
|
|
2324
2588
|
readonly type: "address";
|
|
@@ -2343,6 +2607,9 @@ export declare const abi: readonly [{
|
|
|
2343
2607
|
readonly inputs: readonly [{
|
|
2344
2608
|
readonly name: "_agentSender";
|
|
2345
2609
|
readonly type: "address";
|
|
2610
|
+
}, {
|
|
2611
|
+
readonly name: "_agentWrapper";
|
|
2612
|
+
readonly type: "address";
|
|
2346
2613
|
}, {
|
|
2347
2614
|
readonly name: "_userWallet";
|
|
2348
2615
|
readonly type: "address";
|
|
@@ -2370,6 +2637,9 @@ export declare const abi: readonly [{
|
|
|
2370
2637
|
readonly inputs: readonly [{
|
|
2371
2638
|
readonly name: "_agentSender";
|
|
2372
2639
|
readonly type: "address";
|
|
2640
|
+
}, {
|
|
2641
|
+
readonly name: "_agentWrapper";
|
|
2642
|
+
readonly type: "address";
|
|
2373
2643
|
}, {
|
|
2374
2644
|
readonly name: "_userWallet";
|
|
2375
2645
|
readonly type: "address";
|
|
@@ -2400,6 +2670,9 @@ export declare const abi: readonly [{
|
|
|
2400
2670
|
readonly inputs: readonly [{
|
|
2401
2671
|
readonly name: "_agentSender";
|
|
2402
2672
|
readonly type: "address";
|
|
2673
|
+
}, {
|
|
2674
|
+
readonly name: "_agentWrapper";
|
|
2675
|
+
readonly type: "address";
|
|
2403
2676
|
}, {
|
|
2404
2677
|
readonly name: "_userWallet";
|
|
2405
2678
|
readonly type: "address";
|
|
@@ -2433,6 +2706,9 @@ export declare const abi: readonly [{
|
|
|
2433
2706
|
readonly inputs: readonly [{
|
|
2434
2707
|
readonly name: "_agentSender";
|
|
2435
2708
|
readonly type: "address";
|
|
2709
|
+
}, {
|
|
2710
|
+
readonly name: "_agentWrapper";
|
|
2711
|
+
readonly type: "address";
|
|
2436
2712
|
}, {
|
|
2437
2713
|
readonly name: "_userWallet";
|
|
2438
2714
|
readonly type: "address";
|
|
@@ -2469,6 +2745,9 @@ export declare const abi: readonly [{
|
|
|
2469
2745
|
readonly inputs: readonly [{
|
|
2470
2746
|
readonly name: "_agentSender";
|
|
2471
2747
|
readonly type: "address";
|
|
2748
|
+
}, {
|
|
2749
|
+
readonly name: "_agentWrapper";
|
|
2750
|
+
readonly type: "address";
|
|
2472
2751
|
}, {
|
|
2473
2752
|
readonly name: "_userWallet";
|
|
2474
2753
|
readonly type: "address";
|
|
@@ -2508,6 +2787,9 @@ export declare const abi: readonly [{
|
|
|
2508
2787
|
readonly inputs: readonly [{
|
|
2509
2788
|
readonly name: "_agentSender";
|
|
2510
2789
|
readonly type: "address";
|
|
2790
|
+
}, {
|
|
2791
|
+
readonly name: "_agentWrapper";
|
|
2792
|
+
readonly type: "address";
|
|
2511
2793
|
}, {
|
|
2512
2794
|
readonly name: "_userWallet";
|
|
2513
2795
|
readonly type: "address";
|
|
@@ -2550,6 +2832,9 @@ export declare const abi: readonly [{
|
|
|
2550
2832
|
readonly inputs: readonly [{
|
|
2551
2833
|
readonly name: "_agentSender";
|
|
2552
2834
|
readonly type: "address";
|
|
2835
|
+
}, {
|
|
2836
|
+
readonly name: "_agentWrapper";
|
|
2837
|
+
readonly type: "address";
|
|
2553
2838
|
}, {
|
|
2554
2839
|
readonly name: "_userWallet";
|
|
2555
2840
|
readonly type: "address";
|
|
@@ -2595,6 +2880,9 @@ export declare const abi: readonly [{
|
|
|
2595
2880
|
readonly inputs: readonly [{
|
|
2596
2881
|
readonly name: "_agentSender";
|
|
2597
2882
|
readonly type: "address";
|
|
2883
|
+
}, {
|
|
2884
|
+
readonly name: "_agentWrapper";
|
|
2885
|
+
readonly type: "address";
|
|
2598
2886
|
}, {
|
|
2599
2887
|
readonly name: "_userWallet";
|
|
2600
2888
|
readonly type: "address";
|
|
@@ -2643,6 +2931,9 @@ export declare const abi: readonly [{
|
|
|
2643
2931
|
readonly inputs: readonly [{
|
|
2644
2932
|
readonly name: "_agentSender";
|
|
2645
2933
|
readonly type: "address";
|
|
2934
|
+
}, {
|
|
2935
|
+
readonly name: "_agentWrapper";
|
|
2936
|
+
readonly type: "address";
|
|
2646
2937
|
}, {
|
|
2647
2938
|
readonly name: "_userWallet";
|
|
2648
2939
|
readonly type: "address";
|
|
@@ -2695,7 +2986,10 @@ export declare const abi: readonly [{
|
|
|
2695
2986
|
readonly name: "_agentSender";
|
|
2696
2987
|
readonly type: "address";
|
|
2697
2988
|
}, {
|
|
2698
|
-
readonly name: "
|
|
2989
|
+
readonly name: "_agentWrapper";
|
|
2990
|
+
readonly type: "address";
|
|
2991
|
+
}, {
|
|
2992
|
+
readonly name: "_userWallet";
|
|
2699
2993
|
readonly type: "address";
|
|
2700
2994
|
}, {
|
|
2701
2995
|
readonly name: "_legoId";
|
|
@@ -2748,6 +3042,9 @@ export declare const abi: readonly [{
|
|
|
2748
3042
|
readonly inputs: readonly [{
|
|
2749
3043
|
readonly name: "_agentSender";
|
|
2750
3044
|
readonly type: "address";
|
|
3045
|
+
}, {
|
|
3046
|
+
readonly name: "_agentWrapper";
|
|
3047
|
+
readonly type: "address";
|
|
2751
3048
|
}, {
|
|
2752
3049
|
readonly name: "_userWallet";
|
|
2753
3050
|
readonly type: "address";
|
|
@@ -2805,6 +3102,9 @@ export declare const abi: readonly [{
|
|
|
2805
3102
|
readonly inputs: readonly [{
|
|
2806
3103
|
readonly name: "_agentSender";
|
|
2807
3104
|
readonly type: "address";
|
|
3105
|
+
}, {
|
|
3106
|
+
readonly name: "_agentWrapper";
|
|
3107
|
+
readonly type: "address";
|
|
2808
3108
|
}, {
|
|
2809
3109
|
readonly name: "_userWallet";
|
|
2810
3110
|
readonly type: "address";
|
|
@@ -2841,6 +3141,9 @@ export declare const abi: readonly [{
|
|
|
2841
3141
|
readonly inputs: readonly [{
|
|
2842
3142
|
readonly name: "_agentSender";
|
|
2843
3143
|
readonly type: "address";
|
|
3144
|
+
}, {
|
|
3145
|
+
readonly name: "_agentWrapper";
|
|
3146
|
+
readonly type: "address";
|
|
2844
3147
|
}, {
|
|
2845
3148
|
readonly name: "_userWallet";
|
|
2846
3149
|
readonly type: "address";
|
|
@@ -2880,6 +3183,9 @@ export declare const abi: readonly [{
|
|
|
2880
3183
|
readonly inputs: readonly [{
|
|
2881
3184
|
readonly name: "_agentSender";
|
|
2882
3185
|
readonly type: "address";
|
|
3186
|
+
}, {
|
|
3187
|
+
readonly name: "_agentWrapper";
|
|
3188
|
+
readonly type: "address";
|
|
2883
3189
|
}, {
|
|
2884
3190
|
readonly name: "_userWallet";
|
|
2885
3191
|
readonly type: "address";
|
|
@@ -2922,6 +3228,9 @@ export declare const abi: readonly [{
|
|
|
2922
3228
|
readonly inputs: readonly [{
|
|
2923
3229
|
readonly name: "_agentSender";
|
|
2924
3230
|
readonly type: "address";
|
|
3231
|
+
}, {
|
|
3232
|
+
readonly name: "_agentWrapper";
|
|
3233
|
+
readonly type: "address";
|
|
2925
3234
|
}, {
|
|
2926
3235
|
readonly name: "_userWallet";
|
|
2927
3236
|
readonly type: "address";
|
|
@@ -2967,6 +3276,9 @@ export declare const abi: readonly [{
|
|
|
2967
3276
|
readonly inputs: readonly [{
|
|
2968
3277
|
readonly name: "_agentSender";
|
|
2969
3278
|
readonly type: "address";
|
|
3279
|
+
}, {
|
|
3280
|
+
readonly name: "_agentWrapper";
|
|
3281
|
+
readonly type: "address";
|
|
2970
3282
|
}, {
|
|
2971
3283
|
readonly name: "_userWallet";
|
|
2972
3284
|
readonly type: "address";
|
|
@@ -3015,6 +3327,9 @@ export declare const abi: readonly [{
|
|
|
3015
3327
|
readonly inputs: readonly [{
|
|
3016
3328
|
readonly name: "_agentSender";
|
|
3017
3329
|
readonly type: "address";
|
|
3330
|
+
}, {
|
|
3331
|
+
readonly name: "_agentWrapper";
|
|
3332
|
+
readonly type: "address";
|
|
3018
3333
|
}, {
|
|
3019
3334
|
readonly name: "_userWallet";
|
|
3020
3335
|
readonly type: "address";
|
|
@@ -3066,6 +3381,9 @@ export declare const abi: readonly [{
|
|
|
3066
3381
|
readonly inputs: readonly [{
|
|
3067
3382
|
readonly name: "_agentSender";
|
|
3068
3383
|
readonly type: "address";
|
|
3384
|
+
}, {
|
|
3385
|
+
readonly name: "_agentWrapper";
|
|
3386
|
+
readonly type: "address";
|
|
3069
3387
|
}, {
|
|
3070
3388
|
readonly name: "_userWallet";
|
|
3071
3389
|
readonly type: "address";
|
|
@@ -3120,6 +3438,9 @@ export declare const abi: readonly [{
|
|
|
3120
3438
|
readonly inputs: readonly [{
|
|
3121
3439
|
readonly name: "_agentSender";
|
|
3122
3440
|
readonly type: "address";
|
|
3441
|
+
}, {
|
|
3442
|
+
readonly name: "_agentWrapper";
|
|
3443
|
+
readonly type: "address";
|
|
3123
3444
|
}, {
|
|
3124
3445
|
readonly name: "_userWallet";
|
|
3125
3446
|
readonly type: "address";
|
|
@@ -3159,6 +3480,9 @@ export declare const abi: readonly [{
|
|
|
3159
3480
|
readonly inputs: readonly [{
|
|
3160
3481
|
readonly name: "_agentSender";
|
|
3161
3482
|
readonly type: "address";
|
|
3483
|
+
}, {
|
|
3484
|
+
readonly name: "_agentWrapper";
|
|
3485
|
+
readonly type: "address";
|
|
3162
3486
|
}, {
|
|
3163
3487
|
readonly name: "_userWallet";
|
|
3164
3488
|
readonly type: "address";
|
|
@@ -3201,6 +3525,9 @@ export declare const abi: readonly [{
|
|
|
3201
3525
|
readonly inputs: readonly [{
|
|
3202
3526
|
readonly name: "_agentSender";
|
|
3203
3527
|
readonly type: "address";
|
|
3528
|
+
}, {
|
|
3529
|
+
readonly name: "_agentWrapper";
|
|
3530
|
+
readonly type: "address";
|
|
3204
3531
|
}, {
|
|
3205
3532
|
readonly name: "_userWallet";
|
|
3206
3533
|
readonly type: "address";
|
|
@@ -3246,6 +3573,9 @@ export declare const abi: readonly [{
|
|
|
3246
3573
|
readonly inputs: readonly [{
|
|
3247
3574
|
readonly name: "_agentSender";
|
|
3248
3575
|
readonly type: "address";
|
|
3576
|
+
}, {
|
|
3577
|
+
readonly name: "_agentWrapper";
|
|
3578
|
+
readonly type: "address";
|
|
3249
3579
|
}, {
|
|
3250
3580
|
readonly name: "_userWallet";
|
|
3251
3581
|
readonly type: "address";
|
|
@@ -3294,6 +3624,9 @@ export declare const abi: readonly [{
|
|
|
3294
3624
|
readonly inputs: readonly [{
|
|
3295
3625
|
readonly name: "_agentSender";
|
|
3296
3626
|
readonly type: "address";
|
|
3627
|
+
}, {
|
|
3628
|
+
readonly name: "_agentWrapper";
|
|
3629
|
+
readonly type: "address";
|
|
3297
3630
|
}, {
|
|
3298
3631
|
readonly name: "_userWallet";
|
|
3299
3632
|
readonly type: "address";
|
|
@@ -3345,6 +3678,9 @@ export declare const abi: readonly [{
|
|
|
3345
3678
|
readonly inputs: readonly [{
|
|
3346
3679
|
readonly name: "_agentSender";
|
|
3347
3680
|
readonly type: "address";
|
|
3681
|
+
}, {
|
|
3682
|
+
readonly name: "_agentWrapper";
|
|
3683
|
+
readonly type: "address";
|
|
3348
3684
|
}, {
|
|
3349
3685
|
readonly name: "_userWallet";
|
|
3350
3686
|
readonly type: "address";
|
|
@@ -3399,6 +3735,9 @@ export declare const abi: readonly [{
|
|
|
3399
3735
|
readonly inputs: readonly [{
|
|
3400
3736
|
readonly name: "_agentSender";
|
|
3401
3737
|
readonly type: "address";
|
|
3738
|
+
}, {
|
|
3739
|
+
readonly name: "_agentWrapper";
|
|
3740
|
+
readonly type: "address";
|
|
3402
3741
|
}, {
|
|
3403
3742
|
readonly name: "_userWallet";
|
|
3404
3743
|
readonly type: "address";
|
|
@@ -3456,6 +3795,9 @@ export declare const abi: readonly [{
|
|
|
3456
3795
|
readonly inputs: readonly [{
|
|
3457
3796
|
readonly name: "_agentSender";
|
|
3458
3797
|
readonly type: "address";
|
|
3798
|
+
}, {
|
|
3799
|
+
readonly name: "_agentWrapper";
|
|
3800
|
+
readonly type: "address";
|
|
3459
3801
|
}, {
|
|
3460
3802
|
readonly name: "_userWallet";
|
|
3461
3803
|
readonly type: "address";
|
|
@@ -3516,6 +3858,9 @@ export declare const abi: readonly [{
|
|
|
3516
3858
|
readonly inputs: readonly [{
|
|
3517
3859
|
readonly name: "_agentSender";
|
|
3518
3860
|
readonly type: "address";
|
|
3861
|
+
}, {
|
|
3862
|
+
readonly name: "_agentWrapper";
|
|
3863
|
+
readonly type: "address";
|
|
3519
3864
|
}, {
|
|
3520
3865
|
readonly name: "_userWallet";
|
|
3521
3866
|
readonly type: "address";
|
|
@@ -3579,6 +3924,9 @@ export declare const abi: readonly [{
|
|
|
3579
3924
|
readonly inputs: readonly [{
|
|
3580
3925
|
readonly name: "_agentSender";
|
|
3581
3926
|
readonly type: "address";
|
|
3927
|
+
}, {
|
|
3928
|
+
readonly name: "_agentWrapper";
|
|
3929
|
+
readonly type: "address";
|
|
3582
3930
|
}, {
|
|
3583
3931
|
readonly name: "_userWallet";
|
|
3584
3932
|
readonly type: "address";
|
|
@@ -3641,30 +3989,762 @@ export declare const abi: readonly [{
|
|
|
3641
3989
|
}, {
|
|
3642
3990
|
readonly stateMutability: "view";
|
|
3643
3991
|
readonly type: "function";
|
|
3644
|
-
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
3992
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
3993
|
+
readonly inputs: readonly [{
|
|
3994
|
+
readonly name: "_agentSender";
|
|
3995
|
+
readonly type: "address";
|
|
3996
|
+
}, {
|
|
3997
|
+
readonly name: "_agentWrapper";
|
|
3998
|
+
readonly type: "address";
|
|
3999
|
+
}, {
|
|
4000
|
+
readonly name: "_userWallet";
|
|
4001
|
+
readonly type: "address";
|
|
4002
|
+
}, {
|
|
4003
|
+
readonly name: "_legoId";
|
|
4004
|
+
readonly type: "uint256";
|
|
4005
|
+
}, {
|
|
4006
|
+
readonly name: "_nftAddr";
|
|
4007
|
+
readonly type: "address";
|
|
4008
|
+
}, {
|
|
4009
|
+
readonly name: "_nftTokenId";
|
|
4010
|
+
readonly type: "uint256";
|
|
4011
|
+
}, {
|
|
4012
|
+
readonly name: "_pool";
|
|
4013
|
+
readonly type: "address";
|
|
4014
|
+
}, {
|
|
4015
|
+
readonly name: "_tokenA";
|
|
4016
|
+
readonly type: "address";
|
|
4017
|
+
}, {
|
|
4018
|
+
readonly name: "_tokenB";
|
|
4019
|
+
readonly type: "address";
|
|
4020
|
+
}];
|
|
4021
|
+
readonly outputs: readonly [{
|
|
4022
|
+
readonly name: "";
|
|
4023
|
+
readonly type: "bytes32";
|
|
4024
|
+
}, {
|
|
4025
|
+
readonly name: "";
|
|
4026
|
+
readonly type: "uint256";
|
|
4027
|
+
}, {
|
|
4028
|
+
readonly name: "";
|
|
4029
|
+
readonly type: "uint256";
|
|
4030
|
+
}];
|
|
4031
|
+
}, {
|
|
4032
|
+
readonly stateMutability: "view";
|
|
4033
|
+
readonly type: "function";
|
|
4034
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4035
|
+
readonly inputs: readonly [{
|
|
4036
|
+
readonly name: "_agentSender";
|
|
4037
|
+
readonly type: "address";
|
|
4038
|
+
}, {
|
|
4039
|
+
readonly name: "_agentWrapper";
|
|
4040
|
+
readonly type: "address";
|
|
4041
|
+
}, {
|
|
4042
|
+
readonly name: "_userWallet";
|
|
4043
|
+
readonly type: "address";
|
|
4044
|
+
}, {
|
|
4045
|
+
readonly name: "_legoId";
|
|
4046
|
+
readonly type: "uint256";
|
|
4047
|
+
}, {
|
|
4048
|
+
readonly name: "_nftAddr";
|
|
4049
|
+
readonly type: "address";
|
|
4050
|
+
}, {
|
|
4051
|
+
readonly name: "_nftTokenId";
|
|
4052
|
+
readonly type: "uint256";
|
|
4053
|
+
}, {
|
|
4054
|
+
readonly name: "_pool";
|
|
4055
|
+
readonly type: "address";
|
|
4056
|
+
}, {
|
|
4057
|
+
readonly name: "_tokenA";
|
|
4058
|
+
readonly type: "address";
|
|
4059
|
+
}, {
|
|
4060
|
+
readonly name: "_tokenB";
|
|
4061
|
+
readonly type: "address";
|
|
4062
|
+
}, {
|
|
4063
|
+
readonly name: "_liqToRemove";
|
|
4064
|
+
readonly type: "uint256";
|
|
4065
|
+
}];
|
|
4066
|
+
readonly outputs: readonly [{
|
|
4067
|
+
readonly name: "";
|
|
4068
|
+
readonly type: "bytes32";
|
|
4069
|
+
}, {
|
|
4070
|
+
readonly name: "";
|
|
4071
|
+
readonly type: "uint256";
|
|
4072
|
+
}, {
|
|
4073
|
+
readonly name: "";
|
|
4074
|
+
readonly type: "uint256";
|
|
4075
|
+
}];
|
|
4076
|
+
}, {
|
|
4077
|
+
readonly stateMutability: "view";
|
|
4078
|
+
readonly type: "function";
|
|
4079
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4080
|
+
readonly inputs: readonly [{
|
|
4081
|
+
readonly name: "_agentSender";
|
|
4082
|
+
readonly type: "address";
|
|
4083
|
+
}, {
|
|
4084
|
+
readonly name: "_agentWrapper";
|
|
4085
|
+
readonly type: "address";
|
|
4086
|
+
}, {
|
|
4087
|
+
readonly name: "_userWallet";
|
|
4088
|
+
readonly type: "address";
|
|
4089
|
+
}, {
|
|
4090
|
+
readonly name: "_legoId";
|
|
4091
|
+
readonly type: "uint256";
|
|
4092
|
+
}, {
|
|
4093
|
+
readonly name: "_nftAddr";
|
|
4094
|
+
readonly type: "address";
|
|
4095
|
+
}, {
|
|
4096
|
+
readonly name: "_nftTokenId";
|
|
4097
|
+
readonly type: "uint256";
|
|
4098
|
+
}, {
|
|
4099
|
+
readonly name: "_pool";
|
|
4100
|
+
readonly type: "address";
|
|
4101
|
+
}, {
|
|
4102
|
+
readonly name: "_tokenA";
|
|
4103
|
+
readonly type: "address";
|
|
4104
|
+
}, {
|
|
4105
|
+
readonly name: "_tokenB";
|
|
4106
|
+
readonly type: "address";
|
|
4107
|
+
}, {
|
|
4108
|
+
readonly name: "_liqToRemove";
|
|
4109
|
+
readonly type: "uint256";
|
|
4110
|
+
}, {
|
|
4111
|
+
readonly name: "_minAmountA";
|
|
4112
|
+
readonly type: "uint256";
|
|
4113
|
+
}];
|
|
4114
|
+
readonly outputs: readonly [{
|
|
4115
|
+
readonly name: "";
|
|
4116
|
+
readonly type: "bytes32";
|
|
4117
|
+
}, {
|
|
4118
|
+
readonly name: "";
|
|
4119
|
+
readonly type: "uint256";
|
|
4120
|
+
}, {
|
|
4121
|
+
readonly name: "";
|
|
4122
|
+
readonly type: "uint256";
|
|
4123
|
+
}];
|
|
4124
|
+
}, {
|
|
4125
|
+
readonly stateMutability: "view";
|
|
4126
|
+
readonly type: "function";
|
|
4127
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4128
|
+
readonly inputs: readonly [{
|
|
4129
|
+
readonly name: "_agentSender";
|
|
4130
|
+
readonly type: "address";
|
|
4131
|
+
}, {
|
|
4132
|
+
readonly name: "_agentWrapper";
|
|
4133
|
+
readonly type: "address";
|
|
4134
|
+
}, {
|
|
4135
|
+
readonly name: "_userWallet";
|
|
4136
|
+
readonly type: "address";
|
|
4137
|
+
}, {
|
|
4138
|
+
readonly name: "_legoId";
|
|
4139
|
+
readonly type: "uint256";
|
|
4140
|
+
}, {
|
|
4141
|
+
readonly name: "_nftAddr";
|
|
4142
|
+
readonly type: "address";
|
|
4143
|
+
}, {
|
|
4144
|
+
readonly name: "_nftTokenId";
|
|
4145
|
+
readonly type: "uint256";
|
|
4146
|
+
}, {
|
|
4147
|
+
readonly name: "_pool";
|
|
4148
|
+
readonly type: "address";
|
|
4149
|
+
}, {
|
|
4150
|
+
readonly name: "_tokenA";
|
|
4151
|
+
readonly type: "address";
|
|
4152
|
+
}, {
|
|
4153
|
+
readonly name: "_tokenB";
|
|
4154
|
+
readonly type: "address";
|
|
4155
|
+
}, {
|
|
4156
|
+
readonly name: "_liqToRemove";
|
|
4157
|
+
readonly type: "uint256";
|
|
4158
|
+
}, {
|
|
4159
|
+
readonly name: "_minAmountA";
|
|
4160
|
+
readonly type: "uint256";
|
|
4161
|
+
}, {
|
|
4162
|
+
readonly name: "_minAmountB";
|
|
4163
|
+
readonly type: "uint256";
|
|
4164
|
+
}];
|
|
4165
|
+
readonly outputs: readonly [{
|
|
4166
|
+
readonly name: "";
|
|
4167
|
+
readonly type: "bytes32";
|
|
4168
|
+
}, {
|
|
4169
|
+
readonly name: "";
|
|
4170
|
+
readonly type: "uint256";
|
|
4171
|
+
}, {
|
|
4172
|
+
readonly name: "";
|
|
4173
|
+
readonly type: "uint256";
|
|
4174
|
+
}];
|
|
4175
|
+
}, {
|
|
4176
|
+
readonly stateMutability: "view";
|
|
4177
|
+
readonly type: "function";
|
|
4178
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4179
|
+
readonly inputs: readonly [{
|
|
4180
|
+
readonly name: "_agentSender";
|
|
4181
|
+
readonly type: "address";
|
|
4182
|
+
}, {
|
|
4183
|
+
readonly name: "_agentWrapper";
|
|
4184
|
+
readonly type: "address";
|
|
4185
|
+
}, {
|
|
4186
|
+
readonly name: "_userWallet";
|
|
4187
|
+
readonly type: "address";
|
|
4188
|
+
}, {
|
|
4189
|
+
readonly name: "_legoId";
|
|
4190
|
+
readonly type: "uint256";
|
|
4191
|
+
}, {
|
|
4192
|
+
readonly name: "_nftAddr";
|
|
4193
|
+
readonly type: "address";
|
|
4194
|
+
}, {
|
|
4195
|
+
readonly name: "_nftTokenId";
|
|
4196
|
+
readonly type: "uint256";
|
|
4197
|
+
}, {
|
|
4198
|
+
readonly name: "_pool";
|
|
4199
|
+
readonly type: "address";
|
|
4200
|
+
}, {
|
|
4201
|
+
readonly name: "_tokenA";
|
|
4202
|
+
readonly type: "address";
|
|
4203
|
+
}, {
|
|
4204
|
+
readonly name: "_tokenB";
|
|
4205
|
+
readonly type: "address";
|
|
4206
|
+
}, {
|
|
4207
|
+
readonly name: "_liqToRemove";
|
|
4208
|
+
readonly type: "uint256";
|
|
4209
|
+
}, {
|
|
4210
|
+
readonly name: "_minAmountA";
|
|
4211
|
+
readonly type: "uint256";
|
|
4212
|
+
}, {
|
|
4213
|
+
readonly name: "_minAmountB";
|
|
4214
|
+
readonly type: "uint256";
|
|
4215
|
+
}, {
|
|
4216
|
+
readonly name: "_extraData";
|
|
4217
|
+
readonly type: "bytes32";
|
|
4218
|
+
}];
|
|
4219
|
+
readonly outputs: readonly [{
|
|
4220
|
+
readonly name: "";
|
|
4221
|
+
readonly type: "bytes32";
|
|
4222
|
+
}, {
|
|
4223
|
+
readonly name: "";
|
|
4224
|
+
readonly type: "uint256";
|
|
4225
|
+
}, {
|
|
4226
|
+
readonly name: "";
|
|
4227
|
+
readonly type: "uint256";
|
|
4228
|
+
}];
|
|
4229
|
+
}, {
|
|
4230
|
+
readonly stateMutability: "view";
|
|
4231
|
+
readonly type: "function";
|
|
4232
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4233
|
+
readonly inputs: readonly [{
|
|
4234
|
+
readonly name: "_agentSender";
|
|
4235
|
+
readonly type: "address";
|
|
4236
|
+
}, {
|
|
4237
|
+
readonly name: "_agentWrapper";
|
|
4238
|
+
readonly type: "address";
|
|
4239
|
+
}, {
|
|
4240
|
+
readonly name: "_userWallet";
|
|
4241
|
+
readonly type: "address";
|
|
4242
|
+
}, {
|
|
4243
|
+
readonly name: "_legoId";
|
|
4244
|
+
readonly type: "uint256";
|
|
4245
|
+
}, {
|
|
4246
|
+
readonly name: "_nftAddr";
|
|
4247
|
+
readonly type: "address";
|
|
4248
|
+
}, {
|
|
4249
|
+
readonly name: "_nftTokenId";
|
|
4250
|
+
readonly type: "uint256";
|
|
4251
|
+
}, {
|
|
4252
|
+
readonly name: "_pool";
|
|
4253
|
+
readonly type: "address";
|
|
4254
|
+
}, {
|
|
4255
|
+
readonly name: "_tokenA";
|
|
4256
|
+
readonly type: "address";
|
|
4257
|
+
}, {
|
|
4258
|
+
readonly name: "_tokenB";
|
|
4259
|
+
readonly type: "address";
|
|
4260
|
+
}, {
|
|
4261
|
+
readonly name: "_liqToRemove";
|
|
4262
|
+
readonly type: "uint256";
|
|
4263
|
+
}, {
|
|
4264
|
+
readonly name: "_minAmountA";
|
|
4265
|
+
readonly type: "uint256";
|
|
4266
|
+
}, {
|
|
4267
|
+
readonly name: "_minAmountB";
|
|
4268
|
+
readonly type: "uint256";
|
|
4269
|
+
}, {
|
|
4270
|
+
readonly name: "_extraData";
|
|
4271
|
+
readonly type: "bytes32";
|
|
4272
|
+
}, {
|
|
4273
|
+
readonly name: "_nonce";
|
|
4274
|
+
readonly type: "uint256";
|
|
4275
|
+
}];
|
|
4276
|
+
readonly outputs: readonly [{
|
|
4277
|
+
readonly name: "";
|
|
4278
|
+
readonly type: "bytes32";
|
|
4279
|
+
}, {
|
|
4280
|
+
readonly name: "";
|
|
4281
|
+
readonly type: "uint256";
|
|
4282
|
+
}, {
|
|
4283
|
+
readonly name: "";
|
|
4284
|
+
readonly type: "uint256";
|
|
4285
|
+
}];
|
|
4286
|
+
}, {
|
|
4287
|
+
readonly stateMutability: "view";
|
|
4288
|
+
readonly type: "function";
|
|
4289
|
+
readonly name: "getRemoveLiquidityConcentratedHash";
|
|
4290
|
+
readonly inputs: readonly [{
|
|
4291
|
+
readonly name: "_agentSender";
|
|
4292
|
+
readonly type: "address";
|
|
4293
|
+
}, {
|
|
4294
|
+
readonly name: "_agentWrapper";
|
|
4295
|
+
readonly type: "address";
|
|
4296
|
+
}, {
|
|
4297
|
+
readonly name: "_userWallet";
|
|
4298
|
+
readonly type: "address";
|
|
4299
|
+
}, {
|
|
4300
|
+
readonly name: "_legoId";
|
|
4301
|
+
readonly type: "uint256";
|
|
4302
|
+
}, {
|
|
4303
|
+
readonly name: "_nftAddr";
|
|
4304
|
+
readonly type: "address";
|
|
4305
|
+
}, {
|
|
4306
|
+
readonly name: "_nftTokenId";
|
|
4307
|
+
readonly type: "uint256";
|
|
4308
|
+
}, {
|
|
4309
|
+
readonly name: "_pool";
|
|
4310
|
+
readonly type: "address";
|
|
4311
|
+
}, {
|
|
4312
|
+
readonly name: "_tokenA";
|
|
4313
|
+
readonly type: "address";
|
|
4314
|
+
}, {
|
|
4315
|
+
readonly name: "_tokenB";
|
|
4316
|
+
readonly type: "address";
|
|
4317
|
+
}, {
|
|
4318
|
+
readonly name: "_liqToRemove";
|
|
4319
|
+
readonly type: "uint256";
|
|
4320
|
+
}, {
|
|
4321
|
+
readonly name: "_minAmountA";
|
|
4322
|
+
readonly type: "uint256";
|
|
4323
|
+
}, {
|
|
4324
|
+
readonly name: "_minAmountB";
|
|
4325
|
+
readonly type: "uint256";
|
|
4326
|
+
}, {
|
|
4327
|
+
readonly name: "_extraData";
|
|
4328
|
+
readonly type: "bytes32";
|
|
4329
|
+
}, {
|
|
4330
|
+
readonly name: "_nonce";
|
|
4331
|
+
readonly type: "uint256";
|
|
4332
|
+
}, {
|
|
4333
|
+
readonly name: "_expiration";
|
|
4334
|
+
readonly type: "uint256";
|
|
4335
|
+
}];
|
|
4336
|
+
readonly outputs: readonly [{
|
|
4337
|
+
readonly name: "";
|
|
4338
|
+
readonly type: "bytes32";
|
|
4339
|
+
}, {
|
|
4340
|
+
readonly name: "";
|
|
4341
|
+
readonly type: "uint256";
|
|
4342
|
+
}, {
|
|
4343
|
+
readonly name: "";
|
|
4344
|
+
readonly type: "uint256";
|
|
4345
|
+
}];
|
|
4346
|
+
}, {
|
|
4347
|
+
readonly stateMutability: "view";
|
|
4348
|
+
readonly type: "function";
|
|
4349
|
+
readonly name: "getClaimIncentivesHash";
|
|
4350
|
+
readonly inputs: readonly [{
|
|
4351
|
+
readonly name: "_agentSender";
|
|
4352
|
+
readonly type: "address";
|
|
4353
|
+
}, {
|
|
4354
|
+
readonly name: "_agentWrapper";
|
|
4355
|
+
readonly type: "address";
|
|
4356
|
+
}, {
|
|
4357
|
+
readonly name: "_userWallet";
|
|
4358
|
+
readonly type: "address";
|
|
4359
|
+
}, {
|
|
4360
|
+
readonly name: "_legoId";
|
|
4361
|
+
readonly type: "uint256";
|
|
4362
|
+
}];
|
|
4363
|
+
readonly outputs: readonly [{
|
|
4364
|
+
readonly name: "";
|
|
4365
|
+
readonly type: "bytes32";
|
|
4366
|
+
}, {
|
|
4367
|
+
readonly name: "";
|
|
4368
|
+
readonly type: "uint256";
|
|
4369
|
+
}, {
|
|
4370
|
+
readonly name: "";
|
|
4371
|
+
readonly type: "uint256";
|
|
4372
|
+
}];
|
|
4373
|
+
}, {
|
|
4374
|
+
readonly stateMutability: "view";
|
|
4375
|
+
readonly type: "function";
|
|
4376
|
+
readonly name: "getClaimIncentivesHash";
|
|
4377
|
+
readonly inputs: readonly [{
|
|
4378
|
+
readonly name: "_agentSender";
|
|
4379
|
+
readonly type: "address";
|
|
4380
|
+
}, {
|
|
4381
|
+
readonly name: "_agentWrapper";
|
|
4382
|
+
readonly type: "address";
|
|
4383
|
+
}, {
|
|
4384
|
+
readonly name: "_userWallet";
|
|
4385
|
+
readonly type: "address";
|
|
4386
|
+
}, {
|
|
4387
|
+
readonly name: "_legoId";
|
|
4388
|
+
readonly type: "uint256";
|
|
4389
|
+
}, {
|
|
4390
|
+
readonly name: "_rewardToken";
|
|
4391
|
+
readonly type: "address";
|
|
4392
|
+
}];
|
|
4393
|
+
readonly outputs: readonly [{
|
|
4394
|
+
readonly name: "";
|
|
4395
|
+
readonly type: "bytes32";
|
|
4396
|
+
}, {
|
|
4397
|
+
readonly name: "";
|
|
4398
|
+
readonly type: "uint256";
|
|
4399
|
+
}, {
|
|
4400
|
+
readonly name: "";
|
|
4401
|
+
readonly type: "uint256";
|
|
4402
|
+
}];
|
|
4403
|
+
}, {
|
|
4404
|
+
readonly stateMutability: "view";
|
|
4405
|
+
readonly type: "function";
|
|
4406
|
+
readonly name: "getClaimIncentivesHash";
|
|
4407
|
+
readonly inputs: readonly [{
|
|
4408
|
+
readonly name: "_agentSender";
|
|
4409
|
+
readonly type: "address";
|
|
4410
|
+
}, {
|
|
4411
|
+
readonly name: "_agentWrapper";
|
|
4412
|
+
readonly type: "address";
|
|
4413
|
+
}, {
|
|
4414
|
+
readonly name: "_userWallet";
|
|
4415
|
+
readonly type: "address";
|
|
4416
|
+
}, {
|
|
4417
|
+
readonly name: "_legoId";
|
|
4418
|
+
readonly type: "uint256";
|
|
4419
|
+
}, {
|
|
4420
|
+
readonly name: "_rewardToken";
|
|
4421
|
+
readonly type: "address";
|
|
4422
|
+
}, {
|
|
4423
|
+
readonly name: "_rewardAmount";
|
|
4424
|
+
readonly type: "uint256";
|
|
4425
|
+
}];
|
|
4426
|
+
readonly outputs: readonly [{
|
|
4427
|
+
readonly name: "";
|
|
4428
|
+
readonly type: "bytes32";
|
|
4429
|
+
}, {
|
|
4430
|
+
readonly name: "";
|
|
4431
|
+
readonly type: "uint256";
|
|
4432
|
+
}, {
|
|
4433
|
+
readonly name: "";
|
|
4434
|
+
readonly type: "uint256";
|
|
4435
|
+
}];
|
|
4436
|
+
}, {
|
|
4437
|
+
readonly stateMutability: "view";
|
|
4438
|
+
readonly type: "function";
|
|
4439
|
+
readonly name: "getClaimIncentivesHash";
|
|
4440
|
+
readonly inputs: readonly [{
|
|
4441
|
+
readonly name: "_agentSender";
|
|
4442
|
+
readonly type: "address";
|
|
4443
|
+
}, {
|
|
4444
|
+
readonly name: "_agentWrapper";
|
|
4445
|
+
readonly type: "address";
|
|
4446
|
+
}, {
|
|
4447
|
+
readonly name: "_userWallet";
|
|
4448
|
+
readonly type: "address";
|
|
4449
|
+
}, {
|
|
4450
|
+
readonly name: "_legoId";
|
|
4451
|
+
readonly type: "uint256";
|
|
4452
|
+
}, {
|
|
4453
|
+
readonly name: "_rewardToken";
|
|
4454
|
+
readonly type: "address";
|
|
4455
|
+
}, {
|
|
4456
|
+
readonly name: "_rewardAmount";
|
|
4457
|
+
readonly type: "uint256";
|
|
4458
|
+
}, {
|
|
4459
|
+
readonly name: "_proofs";
|
|
4460
|
+
readonly type: "bytes32[]";
|
|
4461
|
+
}];
|
|
4462
|
+
readonly outputs: readonly [{
|
|
4463
|
+
readonly name: "";
|
|
4464
|
+
readonly type: "bytes32";
|
|
4465
|
+
}, {
|
|
4466
|
+
readonly name: "";
|
|
4467
|
+
readonly type: "uint256";
|
|
4468
|
+
}, {
|
|
4469
|
+
readonly name: "";
|
|
4470
|
+
readonly type: "uint256";
|
|
4471
|
+
}];
|
|
4472
|
+
}, {
|
|
4473
|
+
readonly stateMutability: "view";
|
|
4474
|
+
readonly type: "function";
|
|
4475
|
+
readonly name: "getClaimIncentivesHash";
|
|
4476
|
+
readonly inputs: readonly [{
|
|
4477
|
+
readonly name: "_agentSender";
|
|
4478
|
+
readonly type: "address";
|
|
4479
|
+
}, {
|
|
4480
|
+
readonly name: "_agentWrapper";
|
|
4481
|
+
readonly type: "address";
|
|
4482
|
+
}, {
|
|
4483
|
+
readonly name: "_userWallet";
|
|
4484
|
+
readonly type: "address";
|
|
4485
|
+
}, {
|
|
4486
|
+
readonly name: "_legoId";
|
|
4487
|
+
readonly type: "uint256";
|
|
4488
|
+
}, {
|
|
4489
|
+
readonly name: "_rewardToken";
|
|
4490
|
+
readonly type: "address";
|
|
4491
|
+
}, {
|
|
4492
|
+
readonly name: "_rewardAmount";
|
|
4493
|
+
readonly type: "uint256";
|
|
4494
|
+
}, {
|
|
4495
|
+
readonly name: "_proofs";
|
|
4496
|
+
readonly type: "bytes32[]";
|
|
4497
|
+
}, {
|
|
4498
|
+
readonly name: "_nonce";
|
|
4499
|
+
readonly type: "uint256";
|
|
4500
|
+
}];
|
|
4501
|
+
readonly outputs: readonly [{
|
|
4502
|
+
readonly name: "";
|
|
4503
|
+
readonly type: "bytes32";
|
|
4504
|
+
}, {
|
|
4505
|
+
readonly name: "";
|
|
4506
|
+
readonly type: "uint256";
|
|
4507
|
+
}, {
|
|
4508
|
+
readonly name: "";
|
|
4509
|
+
readonly type: "uint256";
|
|
4510
|
+
}];
|
|
4511
|
+
}, {
|
|
4512
|
+
readonly stateMutability: "view";
|
|
4513
|
+
readonly type: "function";
|
|
4514
|
+
readonly name: "getClaimIncentivesHash";
|
|
4515
|
+
readonly inputs: readonly [{
|
|
4516
|
+
readonly name: "_agentSender";
|
|
4517
|
+
readonly type: "address";
|
|
4518
|
+
}, {
|
|
4519
|
+
readonly name: "_agentWrapper";
|
|
4520
|
+
readonly type: "address";
|
|
4521
|
+
}, {
|
|
4522
|
+
readonly name: "_userWallet";
|
|
4523
|
+
readonly type: "address";
|
|
4524
|
+
}, {
|
|
4525
|
+
readonly name: "_legoId";
|
|
4526
|
+
readonly type: "uint256";
|
|
4527
|
+
}, {
|
|
4528
|
+
readonly name: "_rewardToken";
|
|
4529
|
+
readonly type: "address";
|
|
4530
|
+
}, {
|
|
4531
|
+
readonly name: "_rewardAmount";
|
|
4532
|
+
readonly type: "uint256";
|
|
4533
|
+
}, {
|
|
4534
|
+
readonly name: "_proofs";
|
|
4535
|
+
readonly type: "bytes32[]";
|
|
4536
|
+
}, {
|
|
4537
|
+
readonly name: "_nonce";
|
|
4538
|
+
readonly type: "uint256";
|
|
4539
|
+
}, {
|
|
4540
|
+
readonly name: "_expiration";
|
|
4541
|
+
readonly type: "uint256";
|
|
4542
|
+
}];
|
|
4543
|
+
readonly outputs: readonly [{
|
|
4544
|
+
readonly name: "";
|
|
4545
|
+
readonly type: "bytes32";
|
|
4546
|
+
}, {
|
|
4547
|
+
readonly name: "";
|
|
4548
|
+
readonly type: "uint256";
|
|
4549
|
+
}, {
|
|
4550
|
+
readonly name: "";
|
|
4551
|
+
readonly type: "uint256";
|
|
4552
|
+
}];
|
|
4553
|
+
}, {
|
|
4554
|
+
readonly stateMutability: "view";
|
|
4555
|
+
readonly type: "function";
|
|
4556
|
+
readonly name: "getConfirmWhitelistAddrHash";
|
|
4557
|
+
readonly inputs: readonly [{
|
|
4558
|
+
readonly name: "_agentSender";
|
|
4559
|
+
readonly type: "address";
|
|
4560
|
+
}, {
|
|
4561
|
+
readonly name: "_agentWrapper";
|
|
4562
|
+
readonly type: "address";
|
|
4563
|
+
}, {
|
|
4564
|
+
readonly name: "_userWallet";
|
|
4565
|
+
readonly type: "address";
|
|
4566
|
+
}, {
|
|
4567
|
+
readonly name: "_whitelistAddr";
|
|
4568
|
+
readonly type: "address";
|
|
4569
|
+
}];
|
|
4570
|
+
readonly outputs: readonly [{
|
|
4571
|
+
readonly name: "";
|
|
4572
|
+
readonly type: "bytes32";
|
|
4573
|
+
}, {
|
|
4574
|
+
readonly name: "";
|
|
4575
|
+
readonly type: "uint256";
|
|
4576
|
+
}, {
|
|
4577
|
+
readonly name: "";
|
|
4578
|
+
readonly type: "uint256";
|
|
4579
|
+
}];
|
|
4580
|
+
}, {
|
|
4581
|
+
readonly stateMutability: "view";
|
|
4582
|
+
readonly type: "function";
|
|
4583
|
+
readonly name: "getConfirmWhitelistAddrHash";
|
|
4584
|
+
readonly inputs: readonly [{
|
|
4585
|
+
readonly name: "_agentSender";
|
|
4586
|
+
readonly type: "address";
|
|
4587
|
+
}, {
|
|
4588
|
+
readonly name: "_agentWrapper";
|
|
4589
|
+
readonly type: "address";
|
|
4590
|
+
}, {
|
|
4591
|
+
readonly name: "_userWallet";
|
|
4592
|
+
readonly type: "address";
|
|
4593
|
+
}, {
|
|
4594
|
+
readonly name: "_whitelistAddr";
|
|
4595
|
+
readonly type: "address";
|
|
4596
|
+
}, {
|
|
4597
|
+
readonly name: "_nonce";
|
|
4598
|
+
readonly type: "uint256";
|
|
4599
|
+
}];
|
|
4600
|
+
readonly outputs: readonly [{
|
|
4601
|
+
readonly name: "";
|
|
4602
|
+
readonly type: "bytes32";
|
|
4603
|
+
}, {
|
|
4604
|
+
readonly name: "";
|
|
4605
|
+
readonly type: "uint256";
|
|
4606
|
+
}, {
|
|
4607
|
+
readonly name: "";
|
|
4608
|
+
readonly type: "uint256";
|
|
4609
|
+
}];
|
|
4610
|
+
}, {
|
|
4611
|
+
readonly stateMutability: "view";
|
|
4612
|
+
readonly type: "function";
|
|
4613
|
+
readonly name: "getConfirmWhitelistAddrHash";
|
|
4614
|
+
readonly inputs: readonly [{
|
|
4615
|
+
readonly name: "_agentSender";
|
|
4616
|
+
readonly type: "address";
|
|
4617
|
+
}, {
|
|
4618
|
+
readonly name: "_agentWrapper";
|
|
4619
|
+
readonly type: "address";
|
|
4620
|
+
}, {
|
|
4621
|
+
readonly name: "_userWallet";
|
|
4622
|
+
readonly type: "address";
|
|
4623
|
+
}, {
|
|
4624
|
+
readonly name: "_whitelistAddr";
|
|
4625
|
+
readonly type: "address";
|
|
4626
|
+
}, {
|
|
4627
|
+
readonly name: "_nonce";
|
|
4628
|
+
readonly type: "uint256";
|
|
4629
|
+
}, {
|
|
4630
|
+
readonly name: "_expiration";
|
|
4631
|
+
readonly type: "uint256";
|
|
4632
|
+
}];
|
|
4633
|
+
readonly outputs: readonly [{
|
|
4634
|
+
readonly name: "";
|
|
4635
|
+
readonly type: "bytes32";
|
|
4636
|
+
}, {
|
|
4637
|
+
readonly name: "";
|
|
4638
|
+
readonly type: "uint256";
|
|
4639
|
+
}, {
|
|
4640
|
+
readonly name: "";
|
|
4641
|
+
readonly type: "uint256";
|
|
4642
|
+
}];
|
|
4643
|
+
}, {
|
|
4644
|
+
readonly stateMutability: "view";
|
|
4645
|
+
readonly type: "function";
|
|
4646
|
+
readonly name: "getCancelPendingWhitelistAddrHash";
|
|
4647
|
+
readonly inputs: readonly [{
|
|
4648
|
+
readonly name: "_agentSender";
|
|
4649
|
+
readonly type: "address";
|
|
4650
|
+
}, {
|
|
4651
|
+
readonly name: "_agentWrapper";
|
|
4652
|
+
readonly type: "address";
|
|
4653
|
+
}, {
|
|
4654
|
+
readonly name: "_userWallet";
|
|
4655
|
+
readonly type: "address";
|
|
4656
|
+
}, {
|
|
4657
|
+
readonly name: "_whitelistAddr";
|
|
4658
|
+
readonly type: "address";
|
|
4659
|
+
}];
|
|
4660
|
+
readonly outputs: readonly [{
|
|
4661
|
+
readonly name: "";
|
|
4662
|
+
readonly type: "bytes32";
|
|
4663
|
+
}, {
|
|
4664
|
+
readonly name: "";
|
|
4665
|
+
readonly type: "uint256";
|
|
4666
|
+
}, {
|
|
4667
|
+
readonly name: "";
|
|
4668
|
+
readonly type: "uint256";
|
|
4669
|
+
}];
|
|
4670
|
+
}, {
|
|
4671
|
+
readonly stateMutability: "view";
|
|
4672
|
+
readonly type: "function";
|
|
4673
|
+
readonly name: "getCancelPendingWhitelistAddrHash";
|
|
4674
|
+
readonly inputs: readonly [{
|
|
4675
|
+
readonly name: "_agentSender";
|
|
4676
|
+
readonly type: "address";
|
|
4677
|
+
}, {
|
|
4678
|
+
readonly name: "_agentWrapper";
|
|
4679
|
+
readonly type: "address";
|
|
4680
|
+
}, {
|
|
4681
|
+
readonly name: "_userWallet";
|
|
4682
|
+
readonly type: "address";
|
|
4683
|
+
}, {
|
|
4684
|
+
readonly name: "_whitelistAddr";
|
|
4685
|
+
readonly type: "address";
|
|
4686
|
+
}, {
|
|
4687
|
+
readonly name: "_nonce";
|
|
4688
|
+
readonly type: "uint256";
|
|
4689
|
+
}];
|
|
4690
|
+
readonly outputs: readonly [{
|
|
4691
|
+
readonly name: "";
|
|
4692
|
+
readonly type: "bytes32";
|
|
4693
|
+
}, {
|
|
4694
|
+
readonly name: "";
|
|
4695
|
+
readonly type: "uint256";
|
|
4696
|
+
}, {
|
|
4697
|
+
readonly name: "";
|
|
4698
|
+
readonly type: "uint256";
|
|
4699
|
+
}];
|
|
4700
|
+
}, {
|
|
4701
|
+
readonly stateMutability: "view";
|
|
4702
|
+
readonly type: "function";
|
|
4703
|
+
readonly name: "getCancelPendingWhitelistAddrHash";
|
|
4704
|
+
readonly inputs: readonly [{
|
|
4705
|
+
readonly name: "_agentSender";
|
|
4706
|
+
readonly type: "address";
|
|
4707
|
+
}, {
|
|
4708
|
+
readonly name: "_agentWrapper";
|
|
4709
|
+
readonly type: "address";
|
|
4710
|
+
}, {
|
|
4711
|
+
readonly name: "_userWallet";
|
|
4712
|
+
readonly type: "address";
|
|
4713
|
+
}, {
|
|
4714
|
+
readonly name: "_whitelistAddr";
|
|
4715
|
+
readonly type: "address";
|
|
4716
|
+
}, {
|
|
4717
|
+
readonly name: "_nonce";
|
|
4718
|
+
readonly type: "uint256";
|
|
4719
|
+
}, {
|
|
4720
|
+
readonly name: "_expiration";
|
|
4721
|
+
readonly type: "uint256";
|
|
4722
|
+
}];
|
|
4723
|
+
readonly outputs: readonly [{
|
|
4724
|
+
readonly name: "";
|
|
4725
|
+
readonly type: "bytes32";
|
|
4726
|
+
}, {
|
|
4727
|
+
readonly name: "";
|
|
4728
|
+
readonly type: "uint256";
|
|
4729
|
+
}, {
|
|
4730
|
+
readonly name: "";
|
|
4731
|
+
readonly type: "uint256";
|
|
4732
|
+
}];
|
|
4733
|
+
}, {
|
|
4734
|
+
readonly stateMutability: "view";
|
|
4735
|
+
readonly type: "function";
|
|
4736
|
+
readonly name: "getRemoveWhitelistAddrHash";
|
|
3645
4737
|
readonly inputs: readonly [{
|
|
3646
4738
|
readonly name: "_agentSender";
|
|
3647
4739
|
readonly type: "address";
|
|
3648
4740
|
}, {
|
|
3649
|
-
readonly name: "
|
|
3650
|
-
readonly type: "address";
|
|
3651
|
-
}, {
|
|
3652
|
-
readonly name: "_legoId";
|
|
3653
|
-
readonly type: "uint256";
|
|
3654
|
-
}, {
|
|
3655
|
-
readonly name: "_nftAddr";
|
|
3656
|
-
readonly type: "address";
|
|
3657
|
-
}, {
|
|
3658
|
-
readonly name: "_nftTokenId";
|
|
3659
|
-
readonly type: "uint256";
|
|
3660
|
-
}, {
|
|
3661
|
-
readonly name: "_pool";
|
|
4741
|
+
readonly name: "_agentWrapper";
|
|
3662
4742
|
readonly type: "address";
|
|
3663
4743
|
}, {
|
|
3664
|
-
readonly name: "
|
|
4744
|
+
readonly name: "_userWallet";
|
|
3665
4745
|
readonly type: "address";
|
|
3666
4746
|
}, {
|
|
3667
|
-
readonly name: "
|
|
4747
|
+
readonly name: "_whitelistAddr";
|
|
3668
4748
|
readonly type: "address";
|
|
3669
4749
|
}];
|
|
3670
4750
|
readonly outputs: readonly [{
|
|
@@ -3680,33 +4760,21 @@ export declare const abi: readonly [{
|
|
|
3680
4760
|
}, {
|
|
3681
4761
|
readonly stateMutability: "view";
|
|
3682
4762
|
readonly type: "function";
|
|
3683
|
-
readonly name: "
|
|
4763
|
+
readonly name: "getRemoveWhitelistAddrHash";
|
|
3684
4764
|
readonly inputs: readonly [{
|
|
3685
4765
|
readonly name: "_agentSender";
|
|
3686
4766
|
readonly type: "address";
|
|
3687
4767
|
}, {
|
|
3688
|
-
readonly name: "
|
|
3689
|
-
readonly type: "address";
|
|
3690
|
-
}, {
|
|
3691
|
-
readonly name: "_legoId";
|
|
3692
|
-
readonly type: "uint256";
|
|
3693
|
-
}, {
|
|
3694
|
-
readonly name: "_nftAddr";
|
|
3695
|
-
readonly type: "address";
|
|
3696
|
-
}, {
|
|
3697
|
-
readonly name: "_nftTokenId";
|
|
3698
|
-
readonly type: "uint256";
|
|
3699
|
-
}, {
|
|
3700
|
-
readonly name: "_pool";
|
|
4768
|
+
readonly name: "_agentWrapper";
|
|
3701
4769
|
readonly type: "address";
|
|
3702
4770
|
}, {
|
|
3703
|
-
readonly name: "
|
|
4771
|
+
readonly name: "_userWallet";
|
|
3704
4772
|
readonly type: "address";
|
|
3705
4773
|
}, {
|
|
3706
|
-
readonly name: "
|
|
4774
|
+
readonly name: "_whitelistAddr";
|
|
3707
4775
|
readonly type: "address";
|
|
3708
4776
|
}, {
|
|
3709
|
-
readonly name: "
|
|
4777
|
+
readonly name: "_nonce";
|
|
3710
4778
|
readonly type: "uint256";
|
|
3711
4779
|
}];
|
|
3712
4780
|
readonly outputs: readonly [{
|
|
@@ -3722,36 +4790,24 @@ export declare const abi: readonly [{
|
|
|
3722
4790
|
}, {
|
|
3723
4791
|
readonly stateMutability: "view";
|
|
3724
4792
|
readonly type: "function";
|
|
3725
|
-
readonly name: "
|
|
4793
|
+
readonly name: "getRemoveWhitelistAddrHash";
|
|
3726
4794
|
readonly inputs: readonly [{
|
|
3727
4795
|
readonly name: "_agentSender";
|
|
3728
4796
|
readonly type: "address";
|
|
3729
4797
|
}, {
|
|
3730
|
-
readonly name: "
|
|
3731
|
-
readonly type: "address";
|
|
3732
|
-
}, {
|
|
3733
|
-
readonly name: "_legoId";
|
|
3734
|
-
readonly type: "uint256";
|
|
3735
|
-
}, {
|
|
3736
|
-
readonly name: "_nftAddr";
|
|
3737
|
-
readonly type: "address";
|
|
3738
|
-
}, {
|
|
3739
|
-
readonly name: "_nftTokenId";
|
|
3740
|
-
readonly type: "uint256";
|
|
3741
|
-
}, {
|
|
3742
|
-
readonly name: "_pool";
|
|
4798
|
+
readonly name: "_agentWrapper";
|
|
3743
4799
|
readonly type: "address";
|
|
3744
4800
|
}, {
|
|
3745
|
-
readonly name: "
|
|
4801
|
+
readonly name: "_userWallet";
|
|
3746
4802
|
readonly type: "address";
|
|
3747
4803
|
}, {
|
|
3748
|
-
readonly name: "
|
|
4804
|
+
readonly name: "_whitelistAddr";
|
|
3749
4805
|
readonly type: "address";
|
|
3750
4806
|
}, {
|
|
3751
|
-
readonly name: "
|
|
4807
|
+
readonly name: "_nonce";
|
|
3752
4808
|
readonly type: "uint256";
|
|
3753
4809
|
}, {
|
|
3754
|
-
readonly name: "
|
|
4810
|
+
readonly name: "_expiration";
|
|
3755
4811
|
readonly type: "uint256";
|
|
3756
4812
|
}];
|
|
3757
4813
|
readonly outputs: readonly [{
|
|
@@ -3767,39 +4823,42 @@ export declare const abi: readonly [{
|
|
|
3767
4823
|
}, {
|
|
3768
4824
|
readonly stateMutability: "view";
|
|
3769
4825
|
readonly type: "function";
|
|
3770
|
-
readonly name: "
|
|
4826
|
+
readonly name: "getRemoveSelfAsManagerHash";
|
|
3771
4827
|
readonly inputs: readonly [{
|
|
3772
4828
|
readonly name: "_agentSender";
|
|
3773
4829
|
readonly type: "address";
|
|
3774
4830
|
}, {
|
|
3775
|
-
readonly name: "
|
|
4831
|
+
readonly name: "_agentWrapper";
|
|
3776
4832
|
readonly type: "address";
|
|
3777
4833
|
}, {
|
|
3778
|
-
readonly name: "
|
|
3779
|
-
readonly type: "uint256";
|
|
3780
|
-
}, {
|
|
3781
|
-
readonly name: "_nftAddr";
|
|
4834
|
+
readonly name: "_userWallet";
|
|
3782
4835
|
readonly type: "address";
|
|
4836
|
+
}];
|
|
4837
|
+
readonly outputs: readonly [{
|
|
4838
|
+
readonly name: "";
|
|
4839
|
+
readonly type: "bytes32";
|
|
3783
4840
|
}, {
|
|
3784
|
-
readonly name: "
|
|
4841
|
+
readonly name: "";
|
|
3785
4842
|
readonly type: "uint256";
|
|
3786
4843
|
}, {
|
|
3787
|
-
readonly name: "
|
|
4844
|
+
readonly name: "";
|
|
4845
|
+
readonly type: "uint256";
|
|
4846
|
+
}];
|
|
4847
|
+
}, {
|
|
4848
|
+
readonly stateMutability: "view";
|
|
4849
|
+
readonly type: "function";
|
|
4850
|
+
readonly name: "getRemoveSelfAsManagerHash";
|
|
4851
|
+
readonly inputs: readonly [{
|
|
4852
|
+
readonly name: "_agentSender";
|
|
3788
4853
|
readonly type: "address";
|
|
3789
4854
|
}, {
|
|
3790
|
-
readonly name: "
|
|
4855
|
+
readonly name: "_agentWrapper";
|
|
3791
4856
|
readonly type: "address";
|
|
3792
4857
|
}, {
|
|
3793
|
-
readonly name: "
|
|
4858
|
+
readonly name: "_userWallet";
|
|
3794
4859
|
readonly type: "address";
|
|
3795
4860
|
}, {
|
|
3796
|
-
readonly name: "
|
|
3797
|
-
readonly type: "uint256";
|
|
3798
|
-
}, {
|
|
3799
|
-
readonly name: "_minAmountA";
|
|
3800
|
-
readonly type: "uint256";
|
|
3801
|
-
}, {
|
|
3802
|
-
readonly name: "_minAmountB";
|
|
4861
|
+
readonly name: "_nonce";
|
|
3803
4862
|
readonly type: "uint256";
|
|
3804
4863
|
}];
|
|
3805
4864
|
readonly outputs: readonly [{
|
|
@@ -3815,43 +4874,22 @@ export declare const abi: readonly [{
|
|
|
3815
4874
|
}, {
|
|
3816
4875
|
readonly stateMutability: "view";
|
|
3817
4876
|
readonly type: "function";
|
|
3818
|
-
readonly name: "
|
|
4877
|
+
readonly name: "getRemoveSelfAsManagerHash";
|
|
3819
4878
|
readonly inputs: readonly [{
|
|
3820
4879
|
readonly name: "_agentSender";
|
|
3821
4880
|
readonly type: "address";
|
|
3822
4881
|
}, {
|
|
3823
|
-
readonly name: "
|
|
3824
|
-
readonly type: "address";
|
|
3825
|
-
}, {
|
|
3826
|
-
readonly name: "_legoId";
|
|
3827
|
-
readonly type: "uint256";
|
|
3828
|
-
}, {
|
|
3829
|
-
readonly name: "_nftAddr";
|
|
3830
|
-
readonly type: "address";
|
|
3831
|
-
}, {
|
|
3832
|
-
readonly name: "_nftTokenId";
|
|
3833
|
-
readonly type: "uint256";
|
|
3834
|
-
}, {
|
|
3835
|
-
readonly name: "_pool";
|
|
3836
|
-
readonly type: "address";
|
|
3837
|
-
}, {
|
|
3838
|
-
readonly name: "_tokenA";
|
|
4882
|
+
readonly name: "_agentWrapper";
|
|
3839
4883
|
readonly type: "address";
|
|
3840
4884
|
}, {
|
|
3841
|
-
readonly name: "
|
|
4885
|
+
readonly name: "_userWallet";
|
|
3842
4886
|
readonly type: "address";
|
|
3843
4887
|
}, {
|
|
3844
|
-
readonly name: "
|
|
3845
|
-
readonly type: "uint256";
|
|
3846
|
-
}, {
|
|
3847
|
-
readonly name: "_minAmountA";
|
|
4888
|
+
readonly name: "_nonce";
|
|
3848
4889
|
readonly type: "uint256";
|
|
3849
4890
|
}, {
|
|
3850
|
-
readonly name: "
|
|
4891
|
+
readonly name: "_expiration";
|
|
3851
4892
|
readonly type: "uint256";
|
|
3852
|
-
}, {
|
|
3853
|
-
readonly name: "_extraData";
|
|
3854
|
-
readonly type: "bytes32";
|
|
3855
4893
|
}];
|
|
3856
4894
|
readonly outputs: readonly [{
|
|
3857
4895
|
readonly name: "";
|
|
@@ -3866,43 +4904,40 @@ export declare const abi: readonly [{
|
|
|
3866
4904
|
}, {
|
|
3867
4905
|
readonly stateMutability: "view";
|
|
3868
4906
|
readonly type: "function";
|
|
3869
|
-
readonly name: "
|
|
4907
|
+
readonly name: "getClaimAllLootHash";
|
|
3870
4908
|
readonly inputs: readonly [{
|
|
3871
4909
|
readonly name: "_agentSender";
|
|
3872
4910
|
readonly type: "address";
|
|
3873
4911
|
}, {
|
|
3874
|
-
readonly name: "
|
|
4912
|
+
readonly name: "_agentWrapper";
|
|
3875
4913
|
readonly type: "address";
|
|
3876
4914
|
}, {
|
|
3877
|
-
readonly name: "
|
|
3878
|
-
readonly type: "uint256";
|
|
3879
|
-
}, {
|
|
3880
|
-
readonly name: "_nftAddr";
|
|
4915
|
+
readonly name: "_userWallet";
|
|
3881
4916
|
readonly type: "address";
|
|
4917
|
+
}];
|
|
4918
|
+
readonly outputs: readonly [{
|
|
4919
|
+
readonly name: "";
|
|
4920
|
+
readonly type: "bytes32";
|
|
3882
4921
|
}, {
|
|
3883
|
-
readonly name: "
|
|
4922
|
+
readonly name: "";
|
|
3884
4923
|
readonly type: "uint256";
|
|
3885
4924
|
}, {
|
|
3886
|
-
readonly name: "
|
|
4925
|
+
readonly name: "";
|
|
4926
|
+
readonly type: "uint256";
|
|
4927
|
+
}];
|
|
4928
|
+
}, {
|
|
4929
|
+
readonly stateMutability: "view";
|
|
4930
|
+
readonly type: "function";
|
|
4931
|
+
readonly name: "getClaimAllLootHash";
|
|
4932
|
+
readonly inputs: readonly [{
|
|
4933
|
+
readonly name: "_agentSender";
|
|
3887
4934
|
readonly type: "address";
|
|
3888
4935
|
}, {
|
|
3889
|
-
readonly name: "
|
|
4936
|
+
readonly name: "_agentWrapper";
|
|
3890
4937
|
readonly type: "address";
|
|
3891
4938
|
}, {
|
|
3892
|
-
readonly name: "
|
|
4939
|
+
readonly name: "_userWallet";
|
|
3893
4940
|
readonly type: "address";
|
|
3894
|
-
}, {
|
|
3895
|
-
readonly name: "_liqToRemove";
|
|
3896
|
-
readonly type: "uint256";
|
|
3897
|
-
}, {
|
|
3898
|
-
readonly name: "_minAmountA";
|
|
3899
|
-
readonly type: "uint256";
|
|
3900
|
-
}, {
|
|
3901
|
-
readonly name: "_minAmountB";
|
|
3902
|
-
readonly type: "uint256";
|
|
3903
|
-
}, {
|
|
3904
|
-
readonly name: "_extraData";
|
|
3905
|
-
readonly type: "bytes32";
|
|
3906
4941
|
}, {
|
|
3907
4942
|
readonly name: "_nonce";
|
|
3908
4943
|
readonly type: "uint256";
|
|
@@ -3920,43 +4955,16 @@ export declare const abi: readonly [{
|
|
|
3920
4955
|
}, {
|
|
3921
4956
|
readonly stateMutability: "view";
|
|
3922
4957
|
readonly type: "function";
|
|
3923
|
-
readonly name: "
|
|
4958
|
+
readonly name: "getClaimAllLootHash";
|
|
3924
4959
|
readonly inputs: readonly [{
|
|
3925
4960
|
readonly name: "_agentSender";
|
|
3926
4961
|
readonly type: "address";
|
|
3927
4962
|
}, {
|
|
3928
|
-
readonly name: "
|
|
3929
|
-
readonly type: "address";
|
|
3930
|
-
}, {
|
|
3931
|
-
readonly name: "_legoId";
|
|
3932
|
-
readonly type: "uint256";
|
|
3933
|
-
}, {
|
|
3934
|
-
readonly name: "_nftAddr";
|
|
3935
|
-
readonly type: "address";
|
|
3936
|
-
}, {
|
|
3937
|
-
readonly name: "_nftTokenId";
|
|
3938
|
-
readonly type: "uint256";
|
|
3939
|
-
}, {
|
|
3940
|
-
readonly name: "_pool";
|
|
3941
|
-
readonly type: "address";
|
|
3942
|
-
}, {
|
|
3943
|
-
readonly name: "_tokenA";
|
|
4963
|
+
readonly name: "_agentWrapper";
|
|
3944
4964
|
readonly type: "address";
|
|
3945
4965
|
}, {
|
|
3946
|
-
readonly name: "
|
|
4966
|
+
readonly name: "_userWallet";
|
|
3947
4967
|
readonly type: "address";
|
|
3948
|
-
}, {
|
|
3949
|
-
readonly name: "_liqToRemove";
|
|
3950
|
-
readonly type: "uint256";
|
|
3951
|
-
}, {
|
|
3952
|
-
readonly name: "_minAmountA";
|
|
3953
|
-
readonly type: "uint256";
|
|
3954
|
-
}, {
|
|
3955
|
-
readonly name: "_minAmountB";
|
|
3956
|
-
readonly type: "uint256";
|
|
3957
|
-
}, {
|
|
3958
|
-
readonly name: "_extraData";
|
|
3959
|
-
readonly type: "bytes32";
|
|
3960
4968
|
}, {
|
|
3961
4969
|
readonly name: "_nonce";
|
|
3962
4970
|
readonly type: "uint256";
|
|
@@ -3977,16 +4985,16 @@ export declare const abi: readonly [{
|
|
|
3977
4985
|
}, {
|
|
3978
4986
|
readonly stateMutability: "view";
|
|
3979
4987
|
readonly type: "function";
|
|
3980
|
-
readonly name: "
|
|
4988
|
+
readonly name: "getClaimRevShareAndBonusLootHash";
|
|
3981
4989
|
readonly inputs: readonly [{
|
|
3982
4990
|
readonly name: "_agentSender";
|
|
3983
4991
|
readonly type: "address";
|
|
3984
4992
|
}, {
|
|
3985
|
-
readonly name: "
|
|
4993
|
+
readonly name: "_agentWrapper";
|
|
3986
4994
|
readonly type: "address";
|
|
3987
4995
|
}, {
|
|
3988
|
-
readonly name: "
|
|
3989
|
-
readonly type: "
|
|
4996
|
+
readonly name: "_userWallet";
|
|
4997
|
+
readonly type: "address";
|
|
3990
4998
|
}];
|
|
3991
4999
|
readonly outputs: readonly [{
|
|
3992
5000
|
readonly name: "";
|
|
@@ -4001,19 +5009,19 @@ export declare const abi: readonly [{
|
|
|
4001
5009
|
}, {
|
|
4002
5010
|
readonly stateMutability: "view";
|
|
4003
5011
|
readonly type: "function";
|
|
4004
|
-
readonly name: "
|
|
5012
|
+
readonly name: "getClaimRevShareAndBonusLootHash";
|
|
4005
5013
|
readonly inputs: readonly [{
|
|
4006
5014
|
readonly name: "_agentSender";
|
|
4007
5015
|
readonly type: "address";
|
|
5016
|
+
}, {
|
|
5017
|
+
readonly name: "_agentWrapper";
|
|
5018
|
+
readonly type: "address";
|
|
4008
5019
|
}, {
|
|
4009
5020
|
readonly name: "_userWallet";
|
|
4010
5021
|
readonly type: "address";
|
|
4011
5022
|
}, {
|
|
4012
|
-
readonly name: "
|
|
5023
|
+
readonly name: "_nonce";
|
|
4013
5024
|
readonly type: "uint256";
|
|
4014
|
-
}, {
|
|
4015
|
-
readonly name: "_rewardToken";
|
|
4016
|
-
readonly type: "address";
|
|
4017
5025
|
}];
|
|
4018
5026
|
readonly outputs: readonly [{
|
|
4019
5027
|
readonly name: "";
|
|
@@ -4028,21 +5036,21 @@ export declare const abi: readonly [{
|
|
|
4028
5036
|
}, {
|
|
4029
5037
|
readonly stateMutability: "view";
|
|
4030
5038
|
readonly type: "function";
|
|
4031
|
-
readonly name: "
|
|
5039
|
+
readonly name: "getClaimRevShareAndBonusLootHash";
|
|
4032
5040
|
readonly inputs: readonly [{
|
|
4033
5041
|
readonly name: "_agentSender";
|
|
4034
5042
|
readonly type: "address";
|
|
5043
|
+
}, {
|
|
5044
|
+
readonly name: "_agentWrapper";
|
|
5045
|
+
readonly type: "address";
|
|
4035
5046
|
}, {
|
|
4036
5047
|
readonly name: "_userWallet";
|
|
4037
5048
|
readonly type: "address";
|
|
4038
5049
|
}, {
|
|
4039
|
-
readonly name: "
|
|
5050
|
+
readonly name: "_nonce";
|
|
4040
5051
|
readonly type: "uint256";
|
|
4041
5052
|
}, {
|
|
4042
|
-
readonly name: "
|
|
4043
|
-
readonly type: "address";
|
|
4044
|
-
}, {
|
|
4045
|
-
readonly name: "_rewardAmount";
|
|
5053
|
+
readonly name: "_expiration";
|
|
4046
5054
|
readonly type: "uint256";
|
|
4047
5055
|
}];
|
|
4048
5056
|
readonly outputs: readonly [{
|
|
@@ -4058,25 +5066,16 @@ export declare const abi: readonly [{
|
|
|
4058
5066
|
}, {
|
|
4059
5067
|
readonly stateMutability: "view";
|
|
4060
5068
|
readonly type: "function";
|
|
4061
|
-
readonly name: "
|
|
5069
|
+
readonly name: "getClaimDepositRewardsHash";
|
|
4062
5070
|
readonly inputs: readonly [{
|
|
4063
5071
|
readonly name: "_agentSender";
|
|
4064
5072
|
readonly type: "address";
|
|
4065
5073
|
}, {
|
|
4066
|
-
readonly name: "
|
|
5074
|
+
readonly name: "_agentWrapper";
|
|
4067
5075
|
readonly type: "address";
|
|
4068
5076
|
}, {
|
|
4069
|
-
readonly name: "
|
|
4070
|
-
readonly type: "uint256";
|
|
4071
|
-
}, {
|
|
4072
|
-
readonly name: "_rewardToken";
|
|
5077
|
+
readonly name: "_userWallet";
|
|
4073
5078
|
readonly type: "address";
|
|
4074
|
-
}, {
|
|
4075
|
-
readonly name: "_rewardAmount";
|
|
4076
|
-
readonly type: "uint256";
|
|
4077
|
-
}, {
|
|
4078
|
-
readonly name: "_proofs";
|
|
4079
|
-
readonly type: "bytes32[]";
|
|
4080
5079
|
}];
|
|
4081
5080
|
readonly outputs: readonly [{
|
|
4082
5081
|
readonly name: "";
|
|
@@ -4091,25 +5090,16 @@ export declare const abi: readonly [{
|
|
|
4091
5090
|
}, {
|
|
4092
5091
|
readonly stateMutability: "view";
|
|
4093
5092
|
readonly type: "function";
|
|
4094
|
-
readonly name: "
|
|
5093
|
+
readonly name: "getClaimDepositRewardsHash";
|
|
4095
5094
|
readonly inputs: readonly [{
|
|
4096
5095
|
readonly name: "_agentSender";
|
|
4097
5096
|
readonly type: "address";
|
|
4098
5097
|
}, {
|
|
4099
|
-
readonly name: "
|
|
5098
|
+
readonly name: "_agentWrapper";
|
|
4100
5099
|
readonly type: "address";
|
|
4101
5100
|
}, {
|
|
4102
|
-
readonly name: "
|
|
4103
|
-
readonly type: "uint256";
|
|
4104
|
-
}, {
|
|
4105
|
-
readonly name: "_rewardToken";
|
|
5101
|
+
readonly name: "_userWallet";
|
|
4106
5102
|
readonly type: "address";
|
|
4107
|
-
}, {
|
|
4108
|
-
readonly name: "_rewardAmount";
|
|
4109
|
-
readonly type: "uint256";
|
|
4110
|
-
}, {
|
|
4111
|
-
readonly name: "_proofs";
|
|
4112
|
-
readonly type: "bytes32[]";
|
|
4113
5103
|
}, {
|
|
4114
5104
|
readonly name: "_nonce";
|
|
4115
5105
|
readonly type: "uint256";
|
|
@@ -4127,25 +5117,16 @@ export declare const abi: readonly [{
|
|
|
4127
5117
|
}, {
|
|
4128
5118
|
readonly stateMutability: "view";
|
|
4129
5119
|
readonly type: "function";
|
|
4130
|
-
readonly name: "
|
|
5120
|
+
readonly name: "getClaimDepositRewardsHash";
|
|
4131
5121
|
readonly inputs: readonly [{
|
|
4132
5122
|
readonly name: "_agentSender";
|
|
4133
5123
|
readonly type: "address";
|
|
4134
5124
|
}, {
|
|
4135
|
-
readonly name: "
|
|
5125
|
+
readonly name: "_agentWrapper";
|
|
4136
5126
|
readonly type: "address";
|
|
4137
5127
|
}, {
|
|
4138
|
-
readonly name: "
|
|
4139
|
-
readonly type: "uint256";
|
|
4140
|
-
}, {
|
|
4141
|
-
readonly name: "_rewardToken";
|
|
5128
|
+
readonly name: "_userWallet";
|
|
4142
5129
|
readonly type: "address";
|
|
4143
|
-
}, {
|
|
4144
|
-
readonly name: "_rewardAmount";
|
|
4145
|
-
readonly type: "uint256";
|
|
4146
|
-
}, {
|
|
4147
|
-
readonly name: "_proofs";
|
|
4148
|
-
readonly type: "bytes32[]";
|
|
4149
5130
|
}, {
|
|
4150
5131
|
readonly name: "_nonce";
|
|
4151
5132
|
readonly type: "uint256";
|
|
@@ -4170,6 +5151,9 @@ export declare const abi: readonly [{
|
|
|
4170
5151
|
readonly inputs: readonly [{
|
|
4171
5152
|
readonly name: "_agentSender";
|
|
4172
5153
|
readonly type: "address";
|
|
5154
|
+
}, {
|
|
5155
|
+
readonly name: "_agentWrapper";
|
|
5156
|
+
readonly type: "address";
|
|
4173
5157
|
}, {
|
|
4174
5158
|
readonly name: "_userWallet";
|
|
4175
5159
|
readonly type: "address";
|
|
@@ -4259,6 +5243,9 @@ export declare const abi: readonly [{
|
|
|
4259
5243
|
readonly inputs: readonly [{
|
|
4260
5244
|
readonly name: "_agentSender";
|
|
4261
5245
|
readonly type: "address";
|
|
5246
|
+
}, {
|
|
5247
|
+
readonly name: "_agentWrapper";
|
|
5248
|
+
readonly type: "address";
|
|
4262
5249
|
}, {
|
|
4263
5250
|
readonly name: "_userWallet";
|
|
4264
5251
|
readonly type: "address";
|
|
@@ -4351,6 +5338,9 @@ export declare const abi: readonly [{
|
|
|
4351
5338
|
readonly inputs: readonly [{
|
|
4352
5339
|
readonly name: "_agentSender";
|
|
4353
5340
|
readonly type: "address";
|
|
5341
|
+
}, {
|
|
5342
|
+
readonly name: "_agentWrapper";
|
|
5343
|
+
readonly type: "address";
|
|
4354
5344
|
}, {
|
|
4355
5345
|
readonly name: "_userWallet";
|
|
4356
5346
|
readonly type: "address";
|
|
@@ -4443,33 +5433,41 @@ export declare const abi: readonly [{
|
|
|
4443
5433
|
export declare const deployAddress: Address | undefined;
|
|
4444
5434
|
export type Contract = {
|
|
4445
5435
|
calls: {
|
|
4446
|
-
getTransferFundsHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset?: `0x${string}`, amount?: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4447
|
-
getCreateAndPayChequeHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset: `0x${string}`, amount: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
5436
|
+
getTransferFundsHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset?: `0x${string}`, amount?: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5437
|
+
getCreateAndPayChequeHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset: `0x${string}`, amount: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5438
|
+
getCreateChequeHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset: `0x${string}`, amount: bigint, unlockNumBlocks: bigint, expiryNumBlocks: bigint, canManagerPay: boolean, canBePulled: boolean, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5439
|
+
getPayChequeHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, recipient: `0x${string}`, asset: `0x${string}`, amount: bigint, expectedCreationBlock: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5440
|
+
getDepositForYieldHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, asset: `0x${string}`, vaultAddr?: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5441
|
+
getWithdrawFromYieldHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, vaultToken: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5442
|
+
getRebalanceYieldPositionHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, fromLegoId: bigint, fromVaultToken: `0x${string}`, toLegoId: bigint, toVaultAddr?: `0x${string}`, fromVaultAmount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5443
|
+
getSwapTokensHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, swapInstructions: {
|
|
4452
5444
|
legoId: bigint;
|
|
4453
5445
|
amountIn: bigint;
|
|
4454
5446
|
minAmountOut: bigint;
|
|
4455
5447
|
tokenPath: `0x${string}`[];
|
|
4456
5448
|
poolPath: `0x${string}`[];
|
|
4457
5449
|
}[], nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4458
|
-
getMintOrRedeemAssetHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, tokenIn: `0x${string}`, tokenOut: `0x${string}`, amountIn?: bigint, minAmountOut?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4459
|
-
getConfirmMintOrRedeemAssetHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, tokenIn: `0x${string}`, tokenOut: `0x${string}`, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4460
|
-
getAddCollateralHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, asset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4461
|
-
getRemoveCollateralHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, asset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4462
|
-
getBorrowHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, borrowAsset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4463
|
-
getRepayDebtHash: (agentSender: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, paymentAsset: `0x${string}`, paymentAmount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
5450
|
+
getMintOrRedeemAssetHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, tokenIn: `0x${string}`, tokenOut: `0x${string}`, amountIn?: bigint, minAmountOut?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5451
|
+
getConfirmMintOrRedeemAssetHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, tokenIn: `0x${string}`, tokenOut: `0x${string}`, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5452
|
+
getAddCollateralHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, asset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5453
|
+
getRemoveCollateralHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, asset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5454
|
+
getBorrowHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, borrowAsset: `0x${string}`, amount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5455
|
+
getRepayDebtHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, paymentAsset: `0x${string}`, paymentAmount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5456
|
+
getConvertWethToEthHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, amount?: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5457
|
+
getConvertEthToWethHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, amount?: bigint, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5458
|
+
getAddLiquidityHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, pool: `0x${string}`, tokenA: `0x${string}`, tokenB: `0x${string}`, amountA?: bigint, amountB?: bigint, minAmountA?: bigint, minAmountB?: bigint, minLpAmount?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5459
|
+
getRemoveLiquidityHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, pool: `0x${string}`, tokenA: `0x${string}`, tokenB: `0x${string}`, lpToken: `0x${string}`, lpAmount?: bigint, minAmountA?: bigint, minAmountB?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5460
|
+
getAddLiquidityConcentratedHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, nftAddr: `0x${string}`, nftTokenId: bigint, pool: `0x${string}`, tokenA: `0x${string}`, tokenB: `0x${string}`, amountA?: bigint, amountB?: bigint, tickLower?: unknown, tickUpper?: unknown, minAmountA?: bigint, minAmountB?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5461
|
+
getRemoveLiquidityConcentratedHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, nftAddr: `0x${string}`, nftTokenId: bigint, pool: `0x${string}`, tokenA: `0x${string}`, tokenB: `0x${string}`, liqToRemove?: bigint, minAmountA?: bigint, minAmountB?: bigint, extraData?: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5462
|
+
getClaimIncentivesHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, legoId: bigint, rewardToken?: `0x${string}`, rewardAmount?: bigint, proofs?: `0x${string}`[], nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5463
|
+
getConfirmWhitelistAddrHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, whitelistAddr: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5464
|
+
getCancelPendingWhitelistAddrHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, whitelistAddr: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5465
|
+
getRemoveWhitelistAddrHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, whitelistAddr: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5466
|
+
getRemoveSelfAsManagerHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5467
|
+
getClaimAllLootHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5468
|
+
getClaimRevShareAndBonusLootHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5469
|
+
getClaimDepositRewardsHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, nonce?: bigint, expiration?: bigint) => Promise<[`0x${string}`, bigint, bigint]>;
|
|
5470
|
+
getBatchActionsHash: (agentSender: `0x${string}`, agentWrapper: `0x${string}`, userWallet: `0x${string}`, instructions: {
|
|
4473
5471
|
usePrevAmountOut: boolean;
|
|
4474
5472
|
action: number;
|
|
4475
5473
|
legoId: number;
|
|
@@ -4527,6 +5525,8 @@ export type SDK = {
|
|
|
4527
5525
|
abi: typeof abi;
|
|
4528
5526
|
getTransferFundsHash: (...args: ExtractArgs<Contract['calls']['getTransferFundsHash']>) => Promise<CallReturn<'getTransferFundsHash'>>;
|
|
4529
5527
|
getCreateAndPayChequeHash: (...args: ExtractArgs<Contract['calls']['getCreateAndPayChequeHash']>) => Promise<CallReturn<'getCreateAndPayChequeHash'>>;
|
|
5528
|
+
getCreateChequeHash: (...args: ExtractArgs<Contract['calls']['getCreateChequeHash']>) => Promise<CallReturn<'getCreateChequeHash'>>;
|
|
5529
|
+
getPayChequeHash: (...args: ExtractArgs<Contract['calls']['getPayChequeHash']>) => Promise<CallReturn<'getPayChequeHash'>>;
|
|
4530
5530
|
getDepositForYieldHash: (...args: ExtractArgs<Contract['calls']['getDepositForYieldHash']>) => Promise<CallReturn<'getDepositForYieldHash'>>;
|
|
4531
5531
|
getWithdrawFromYieldHash: (...args: ExtractArgs<Contract['calls']['getWithdrawFromYieldHash']>) => Promise<CallReturn<'getWithdrawFromYieldHash'>>;
|
|
4532
5532
|
getRebalanceYieldPositionHash: (...args: ExtractArgs<Contract['calls']['getRebalanceYieldPositionHash']>) => Promise<CallReturn<'getRebalanceYieldPositionHash'>>;
|
|
@@ -4537,7 +5537,6 @@ export type SDK = {
|
|
|
4537
5537
|
getRemoveCollateralHash: (...args: ExtractArgs<Contract['calls']['getRemoveCollateralHash']>) => Promise<CallReturn<'getRemoveCollateralHash'>>;
|
|
4538
5538
|
getBorrowHash: (...args: ExtractArgs<Contract['calls']['getBorrowHash']>) => Promise<CallReturn<'getBorrowHash'>>;
|
|
4539
5539
|
getRepayDebtHash: (...args: ExtractArgs<Contract['calls']['getRepayDebtHash']>) => Promise<CallReturn<'getRepayDebtHash'>>;
|
|
4540
|
-
getClaimRewardsHash: (...args: ExtractArgs<Contract['calls']['getClaimRewardsHash']>) => Promise<CallReturn<'getClaimRewardsHash'>>;
|
|
4541
5540
|
getConvertWethToEthHash: (...args: ExtractArgs<Contract['calls']['getConvertWethToEthHash']>) => Promise<CallReturn<'getConvertWethToEthHash'>>;
|
|
4542
5541
|
getConvertEthToWethHash: (...args: ExtractArgs<Contract['calls']['getConvertEthToWethHash']>) => Promise<CallReturn<'getConvertEthToWethHash'>>;
|
|
4543
5542
|
getAddLiquidityHash: (...args: ExtractArgs<Contract['calls']['getAddLiquidityHash']>) => Promise<CallReturn<'getAddLiquidityHash'>>;
|
|
@@ -4545,6 +5544,13 @@ export type SDK = {
|
|
|
4545
5544
|
getAddLiquidityConcentratedHash: (...args: ExtractArgs<Contract['calls']['getAddLiquidityConcentratedHash']>) => Promise<CallReturn<'getAddLiquidityConcentratedHash'>>;
|
|
4546
5545
|
getRemoveLiquidityConcentratedHash: (...args: ExtractArgs<Contract['calls']['getRemoveLiquidityConcentratedHash']>) => Promise<CallReturn<'getRemoveLiquidityConcentratedHash'>>;
|
|
4547
5546
|
getClaimIncentivesHash: (...args: ExtractArgs<Contract['calls']['getClaimIncentivesHash']>) => Promise<CallReturn<'getClaimIncentivesHash'>>;
|
|
5547
|
+
getConfirmWhitelistAddrHash: (...args: ExtractArgs<Contract['calls']['getConfirmWhitelistAddrHash']>) => Promise<CallReturn<'getConfirmWhitelistAddrHash'>>;
|
|
5548
|
+
getCancelPendingWhitelistAddrHash: (...args: ExtractArgs<Contract['calls']['getCancelPendingWhitelistAddrHash']>) => Promise<CallReturn<'getCancelPendingWhitelistAddrHash'>>;
|
|
5549
|
+
getRemoveWhitelistAddrHash: (...args: ExtractArgs<Contract['calls']['getRemoveWhitelistAddrHash']>) => Promise<CallReturn<'getRemoveWhitelistAddrHash'>>;
|
|
5550
|
+
getRemoveSelfAsManagerHash: (...args: ExtractArgs<Contract['calls']['getRemoveSelfAsManagerHash']>) => Promise<CallReturn<'getRemoveSelfAsManagerHash'>>;
|
|
5551
|
+
getClaimAllLootHash: (...args: ExtractArgs<Contract['calls']['getClaimAllLootHash']>) => Promise<CallReturn<'getClaimAllLootHash'>>;
|
|
5552
|
+
getClaimRevShareAndBonusLootHash: (...args: ExtractArgs<Contract['calls']['getClaimRevShareAndBonusLootHash']>) => Promise<CallReturn<'getClaimRevShareAndBonusLootHash'>>;
|
|
5553
|
+
getClaimDepositRewardsHash: (...args: ExtractArgs<Contract['calls']['getClaimDepositRewardsHash']>) => Promise<CallReturn<'getClaimDepositRewardsHash'>>;
|
|
4548
5554
|
getBatchActionsHash: (...args: ExtractArgs<Contract['calls']['getBatchActionsHash']>) => Promise<CallReturn<'getBatchActionsHash'>>;
|
|
4549
5555
|
};
|
|
4550
5556
|
export declare function toSdk(deployAddress: Address, publicClient?: PublicClient, walletClient?: WalletClient, addressResolver?: AddressResolverFunction): SDK;
|