@pendle/core-v2 2.19.0-tradingbot → 2.19.1-tradingbot

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/build/artifacts/contracts/core/TradingBot/LongYield/LongYieldActionHelper.sol/LongYieldActionHelper.dbg.json +4 -0
  2. package/build/artifacts/contracts/core/TradingBot/{base/BotActionHelper.sol/BotActionHelper.json → LongYield/LongYieldActionHelper.sol/LongYieldActionHelper.json} +2 -119
  3. package/build/artifacts/contracts/core/TradingBot/LongYield/LongYieldDecisionHelper.sol/LongYieldDecisionHelper.dbg.json +1 -1
  4. package/build/artifacts/contracts/core/TradingBot/LongYield/LongYieldDecisionHelper.sol/LongYieldDecisionHelper.json +2 -2
  5. package/build/artifacts/contracts/core/TradingBot/LongYield/LongYieldTradingBot.sol/LongYieldTradingBot.dbg.json +1 -1
  6. package/build/artifacts/contracts/core/TradingBot/LongYield/LongYieldTradingBot.sol/LongYieldTradingBot.json +2 -119
  7. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldActionHelper.sol/ShortYieldActionHelper.dbg.json +4 -0
  8. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldActionHelper.sol/ShortYieldActionHelper.json +765 -0
  9. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldDecisionHelper.sol/ShortYieldDecisionHelper.dbg.json +1 -1
  10. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldDecisionHelper.sol/ShortYieldDecisionHelper.json +2 -2
  11. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldTradingBot.sol/ShortYieldTradingBot.dbg.json +1 -1
  12. package/build/artifacts/contracts/core/TradingBot/ShortYield/ShortYieldTradingBot.sol/ShortYieldTradingBot.json +6 -173
  13. package/build/artifacts/contracts/core/TradingBot/base/BotActionCallback.sol/BotActionCallback.dbg.json +1 -1
  14. package/build/artifacts/contracts/core/TradingBot/base/BotActionCallback.sol/BotActionCallback.json +0 -117
  15. package/build/artifacts/contracts/core/TradingBot/base/BotDecisionHelperBase.sol/BotDecisionHelperBase.dbg.json +1 -1
  16. package/build/artifacts/contracts/core/TradingBot/base/TradingBotBase.sol/TradingBotBase.dbg.json +1 -1
  17. package/build/artifacts/contracts/core/TradingBot/base/TradingBotBase.sol/TradingBotBase.json +0 -117
  18. package/build/artifacts/contracts/core/TradingBot/libraries/BotSimulationLib.sol/BotSimulationLib.dbg.json +1 -1
  19. package/build/artifacts/contracts/core/TradingBot/libraries/BotSimulationLib.sol/BotSimulationLib.json +2 -2
  20. package/build/artifacts/contracts/core/TradingBot/libraries/SpecSegmentLib.sol/SpecSegmentLib.dbg.json +1 -1
  21. package/build/artifacts/contracts/core/TradingBot/libraries/SpecSegmentLib.sol/SpecSegmentLib.json +2 -2
  22. package/build/artifacts/contracts/interfaces/TradingBot/IBotDecisionHelper.sol/IBotDecisionHelper.dbg.json +1 -1
  23. package/build/artifacts/contracts/interfaces/TradingBot/ILongYieldDecisionHelper.sol/ILongYieldDecisionHelper.dbg.json +1 -1
  24. package/build/artifacts/contracts/interfaces/TradingBot/ILongYieldTradingBot.sol/ILongYieldTradingBot.dbg.json +1 -1
  25. package/build/artifacts/contracts/interfaces/TradingBot/ILongYieldTradingBot.sol/ILongYieldTradingBot.json +0 -117
  26. package/build/artifacts/contracts/interfaces/TradingBot/IShortYieldDecisionHelper.sol/IShortYieldDecisionHelper.dbg.json +1 -1
  27. package/build/artifacts/contracts/interfaces/TradingBot/IShortYieldTradingBot.sol/IShortYieldTradingBot.dbg.json +1 -1
  28. package/build/artifacts/contracts/interfaces/TradingBot/IShortYieldTradingBot.sol/IShortYieldTradingBot.json +4 -121
  29. package/build/artifacts/contracts/interfaces/TradingBot/ITradingBotBase.sol/ITradingBotBase.dbg.json +1 -1
  30. package/build/artifacts/contracts/interfaces/TradingBot/ITradingBotBase.sol/ITradingBotBase.json +0 -117
  31. package/contracts/core/TradingBot/{base/BotActionHelper.sol → LongYield/LongYieldActionHelper.sol} +4 -81
  32. package/contracts/core/TradingBot/LongYield/LongYieldTradingBot.sol +2 -2
  33. package/contracts/core/TradingBot/ShortYield/ShortYieldActionHelper.sol +54 -0
  34. package/contracts/core/TradingBot/ShortYield/ShortYieldTradingBot.sol +2 -2
  35. package/contracts/core/TradingBot/base/TradingBotBase.sol +5 -5
  36. package/contracts/interfaces/TradingBot/ITradingBotBase.sol +0 -4
  37. package/package.json +1 -1
  38. package/typechain-types/BotActionCallback.ts +0 -50
  39. package/typechain-types/ILongYieldTradingBot.ts +0 -50
  40. package/typechain-types/IShortYieldTradingBot.ts +2 -52
  41. package/typechain-types/ITradingBotBase.ts +0 -50
  42. package/typechain-types/LongYieldActionHelper.ts +900 -0
  43. package/typechain-types/LongYieldTradingBot.ts +0 -50
  44. package/typechain-types/ShortYieldActionHelper.ts +856 -0
  45. package/typechain-types/ShortYieldTradingBot.ts +2 -96
  46. package/typechain-types/TradingBotBase.ts +0 -50
  47. package/typechain-types/factories/BotActionCallback__factory.ts +0 -117
  48. package/typechain-types/factories/ILongYieldTradingBot__factory.ts +0 -117
  49. package/typechain-types/factories/IShortYieldTradingBot__factory.ts +4 -121
  50. package/typechain-types/factories/ITradingBotBase__factory.ts +0 -117
  51. package/typechain-types/factories/LongYieldActionHelper__factory.ts +834 -0
  52. package/typechain-types/factories/LongYieldDecisionHelper__factory.ts +1 -1
  53. package/typechain-types/factories/LongYieldTradingBot__factory.ts +1 -118
  54. package/typechain-types/factories/ShortYieldActionHelper__factory.ts +784 -0
  55. package/typechain-types/factories/ShortYieldDecisionHelper__factory.ts +1 -1
  56. package/typechain-types/factories/ShortYieldTradingBot__factory.ts +5 -172
  57. package/typechain-types/factories/TradingBotBase__factory.ts +0 -117
  58. package/typechain-types/hardhat.d.ts +18 -0
  59. package/typechain-types/index.ts +4 -0
  60. package/build/artifacts/contracts/core/TradingBot/base/BotActionHelper.sol/BotActionHelper.dbg.json +0 -4
@@ -0,0 +1,784 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type {
8
+ ShortYieldActionHelper,
9
+ ShortYieldActionHelperInterface,
10
+ } from "../ShortYieldActionHelper";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [
15
+ {
16
+ internalType: "uint256",
17
+ name: "actualSyOut",
18
+ type: "uint256",
19
+ },
20
+ {
21
+ internalType: "uint256",
22
+ name: "requiredSyOut",
23
+ type: "uint256",
24
+ },
25
+ ],
26
+ name: "BotInsufficientSyOut",
27
+ type: "error",
28
+ },
29
+ {
30
+ anonymous: false,
31
+ inputs: [
32
+ {
33
+ indexed: false,
34
+ internalType: "uint256",
35
+ name: "netSyOut",
36
+ type: "uint256",
37
+ },
38
+ {
39
+ indexed: false,
40
+ internalType: "uint256",
41
+ name: "netPendleOut",
42
+ type: "uint256",
43
+ },
44
+ ],
45
+ name: "ClaimAndCompound",
46
+ type: "event",
47
+ },
48
+ {
49
+ anonymous: false,
50
+ inputs: [
51
+ {
52
+ indexed: false,
53
+ internalType: "uint256",
54
+ name: "netSyIn",
55
+ type: "uint256",
56
+ },
57
+ ],
58
+ name: "DepositSy",
59
+ type: "event",
60
+ },
61
+ {
62
+ anonymous: false,
63
+ inputs: [
64
+ {
65
+ indexed: true,
66
+ internalType: "address",
67
+ name: "token",
68
+ type: "address",
69
+ },
70
+ {
71
+ indexed: false,
72
+ internalType: "uint256",
73
+ name: "netTokenIn",
74
+ type: "uint256",
75
+ },
76
+ ],
77
+ name: "DepositToken",
78
+ type: "event",
79
+ },
80
+ {
81
+ anonymous: false,
82
+ inputs: [
83
+ {
84
+ indexed: false,
85
+ internalType: "uint8",
86
+ name: "version",
87
+ type: "uint8",
88
+ },
89
+ ],
90
+ name: "Initialized",
91
+ type: "event",
92
+ },
93
+ {
94
+ anonymous: false,
95
+ inputs: [
96
+ {
97
+ indexed: true,
98
+ internalType: "address",
99
+ name: "previousOwner",
100
+ type: "address",
101
+ },
102
+ {
103
+ indexed: true,
104
+ internalType: "address",
105
+ name: "newOwner",
106
+ type: "address",
107
+ },
108
+ ],
109
+ name: "OwnershipTransferred",
110
+ type: "event",
111
+ },
112
+ {
113
+ anonymous: false,
114
+ inputs: [
115
+ {
116
+ indexed: true,
117
+ internalType: "address",
118
+ name: "token",
119
+ type: "address",
120
+ },
121
+ {
122
+ indexed: false,
123
+ internalType: "uint256",
124
+ name: "amount",
125
+ type: "uint256",
126
+ },
127
+ ],
128
+ name: "WithdrawFunds",
129
+ type: "event",
130
+ },
131
+ {
132
+ inputs: [],
133
+ name: "PENDLE",
134
+ outputs: [
135
+ {
136
+ internalType: "address",
137
+ name: "",
138
+ type: "address",
139
+ },
140
+ ],
141
+ stateMutability: "view",
142
+ type: "function",
143
+ },
144
+ {
145
+ inputs: [],
146
+ name: "PT",
147
+ outputs: [
148
+ {
149
+ internalType: "address",
150
+ name: "",
151
+ type: "address",
152
+ },
153
+ ],
154
+ stateMutability: "view",
155
+ type: "function",
156
+ },
157
+ {
158
+ inputs: [],
159
+ name: "SY",
160
+ outputs: [
161
+ {
162
+ internalType: "address",
163
+ name: "",
164
+ type: "address",
165
+ },
166
+ ],
167
+ stateMutability: "view",
168
+ type: "function",
169
+ },
170
+ {
171
+ inputs: [],
172
+ name: "YT",
173
+ outputs: [
174
+ {
175
+ internalType: "address",
176
+ name: "",
177
+ type: "address",
178
+ },
179
+ ],
180
+ stateMutability: "view",
181
+ type: "function",
182
+ },
183
+ {
184
+ inputs: [
185
+ {
186
+ components: [
187
+ {
188
+ internalType: "address[]",
189
+ name: "tokens",
190
+ type: "address[]",
191
+ },
192
+ {
193
+ internalType: "address",
194
+ name: "spender",
195
+ type: "address",
196
+ },
197
+ ],
198
+ internalType: "struct ITradingBotBase.MultiApproval[]",
199
+ name: "arr",
200
+ type: "tuple[]",
201
+ },
202
+ ],
203
+ name: "approveInf",
204
+ outputs: [],
205
+ stateMutability: "nonpayable",
206
+ type: "function",
207
+ },
208
+ {
209
+ inputs: [],
210
+ name: "buyBins",
211
+ outputs: [
212
+ {
213
+ internalType: "uint256",
214
+ name: "",
215
+ type: "uint256",
216
+ },
217
+ ],
218
+ stateMutability: "view",
219
+ type: "function",
220
+ },
221
+ {
222
+ inputs: [
223
+ {
224
+ components: [
225
+ {
226
+ internalType: "address",
227
+ name: "tokenIn",
228
+ type: "address",
229
+ },
230
+ {
231
+ internalType: "uint256",
232
+ name: "netTokenIn",
233
+ type: "uint256",
234
+ },
235
+ {
236
+ internalType: "address",
237
+ name: "tokenMintSy",
238
+ type: "address",
239
+ },
240
+ {
241
+ internalType: "address",
242
+ name: "bulk",
243
+ type: "address",
244
+ },
245
+ {
246
+ internalType: "address",
247
+ name: "pendleSwap",
248
+ type: "address",
249
+ },
250
+ {
251
+ components: [
252
+ {
253
+ internalType: "enum SwapType",
254
+ name: "swapType",
255
+ type: "uint8",
256
+ },
257
+ {
258
+ internalType: "address",
259
+ name: "extRouter",
260
+ type: "address",
261
+ },
262
+ {
263
+ internalType: "bytes",
264
+ name: "extCalldata",
265
+ type: "bytes",
266
+ },
267
+ {
268
+ internalType: "bool",
269
+ name: "needScale",
270
+ type: "bool",
271
+ },
272
+ ],
273
+ internalType: "struct SwapData",
274
+ name: "swapData",
275
+ type: "tuple",
276
+ },
277
+ ],
278
+ internalType: "struct TokenInput[]",
279
+ name: "inps",
280
+ type: "tuple[]",
281
+ },
282
+ {
283
+ internalType: "uint256",
284
+ name: "minSyOut",
285
+ type: "uint256",
286
+ },
287
+ ],
288
+ name: "claimAndCompound",
289
+ outputs: [
290
+ {
291
+ internalType: "uint256",
292
+ name: "netSyOut",
293
+ type: "uint256",
294
+ },
295
+ {
296
+ internalType: "uint256",
297
+ name: "netPendleOut",
298
+ type: "uint256",
299
+ },
300
+ ],
301
+ stateMutability: "nonpayable",
302
+ type: "function",
303
+ },
304
+ {
305
+ inputs: [],
306
+ name: "claimOwnership",
307
+ outputs: [],
308
+ stateMutability: "nonpayable",
309
+ type: "function",
310
+ },
311
+ {
312
+ inputs: [],
313
+ name: "claimWithoutCompound",
314
+ outputs: [
315
+ {
316
+ components: [
317
+ {
318
+ internalType: "address",
319
+ name: "token",
320
+ type: "address",
321
+ },
322
+ {
323
+ internalType: "uint256",
324
+ name: "amount",
325
+ type: "uint256",
326
+ },
327
+ ],
328
+ internalType: "struct TokenAmount[]",
329
+ name: "rewards",
330
+ type: "tuple[]",
331
+ },
332
+ ],
333
+ stateMutability: "nonpayable",
334
+ type: "function",
335
+ },
336
+ {
337
+ inputs: [],
338
+ name: "decisionHelper",
339
+ outputs: [
340
+ {
341
+ internalType: "contract IBotDecisionHelper",
342
+ name: "",
343
+ type: "address",
344
+ },
345
+ ],
346
+ stateMutability: "view",
347
+ type: "function",
348
+ },
349
+ {
350
+ inputs: [
351
+ {
352
+ internalType: "uint256",
353
+ name: "netSyIn",
354
+ type: "uint256",
355
+ },
356
+ ],
357
+ name: "depositSy",
358
+ outputs: [],
359
+ stateMutability: "nonpayable",
360
+ type: "function",
361
+ },
362
+ {
363
+ inputs: [
364
+ {
365
+ components: [
366
+ {
367
+ internalType: "address",
368
+ name: "tokenIn",
369
+ type: "address",
370
+ },
371
+ {
372
+ internalType: "uint256",
373
+ name: "netTokenIn",
374
+ type: "uint256",
375
+ },
376
+ {
377
+ internalType: "address",
378
+ name: "tokenMintSy",
379
+ type: "address",
380
+ },
381
+ {
382
+ internalType: "address",
383
+ name: "bulk",
384
+ type: "address",
385
+ },
386
+ {
387
+ internalType: "address",
388
+ name: "pendleSwap",
389
+ type: "address",
390
+ },
391
+ {
392
+ components: [
393
+ {
394
+ internalType: "enum SwapType",
395
+ name: "swapType",
396
+ type: "uint8",
397
+ },
398
+ {
399
+ internalType: "address",
400
+ name: "extRouter",
401
+ type: "address",
402
+ },
403
+ {
404
+ internalType: "bytes",
405
+ name: "extCalldata",
406
+ type: "bytes",
407
+ },
408
+ {
409
+ internalType: "bool",
410
+ name: "needScale",
411
+ type: "bool",
412
+ },
413
+ ],
414
+ internalType: "struct SwapData",
415
+ name: "swapData",
416
+ type: "tuple",
417
+ },
418
+ ],
419
+ internalType: "struct TokenInput",
420
+ name: "inp",
421
+ type: "tuple",
422
+ },
423
+ {
424
+ internalType: "uint256",
425
+ name: "minSyOut",
426
+ type: "uint256",
427
+ },
428
+ ],
429
+ name: "depositToken",
430
+ outputs: [],
431
+ stateMutability: "payable",
432
+ type: "function",
433
+ },
434
+ {
435
+ inputs: [],
436
+ name: "market",
437
+ outputs: [
438
+ {
439
+ internalType: "address",
440
+ name: "",
441
+ type: "address",
442
+ },
443
+ ],
444
+ stateMutability: "view",
445
+ type: "function",
446
+ },
447
+ {
448
+ inputs: [],
449
+ name: "owner",
450
+ outputs: [
451
+ {
452
+ internalType: "address",
453
+ name: "",
454
+ type: "address",
455
+ },
456
+ ],
457
+ stateMutability: "view",
458
+ type: "function",
459
+ },
460
+ {
461
+ inputs: [],
462
+ name: "pendingOwner",
463
+ outputs: [
464
+ {
465
+ internalType: "address",
466
+ name: "",
467
+ type: "address",
468
+ },
469
+ ],
470
+ stateMutability: "view",
471
+ type: "function",
472
+ },
473
+ {
474
+ inputs: [],
475
+ name: "readStrategyData",
476
+ outputs: [
477
+ {
478
+ components: [
479
+ {
480
+ components: [
481
+ {
482
+ internalType: "uint256",
483
+ name: "lpBalance",
484
+ type: "uint256",
485
+ },
486
+ {
487
+ internalType: "uint256",
488
+ name: "ytBalance",
489
+ type: "uint256",
490
+ },
491
+ {
492
+ internalType: "uint256",
493
+ name: "ptBalance",
494
+ type: "uint256",
495
+ },
496
+ {
497
+ internalType: "uint256",
498
+ name: "syBalance",
499
+ type: "uint256",
500
+ },
501
+ {
502
+ internalType: "uint256",
503
+ name: "buyBins",
504
+ type: "uint256",
505
+ },
506
+ ],
507
+ internalType: "struct BotState",
508
+ name: "botState",
509
+ type: "tuple",
510
+ },
511
+ {
512
+ components: [
513
+ {
514
+ components: [
515
+ {
516
+ internalType: "int256",
517
+ name: "totalPt",
518
+ type: "int256",
519
+ },
520
+ {
521
+ internalType: "int256",
522
+ name: "totalSy",
523
+ type: "int256",
524
+ },
525
+ {
526
+ internalType: "int256",
527
+ name: "totalLp",
528
+ type: "int256",
529
+ },
530
+ {
531
+ internalType: "address",
532
+ name: "treasury",
533
+ type: "address",
534
+ },
535
+ {
536
+ internalType: "int256",
537
+ name: "scalarRoot",
538
+ type: "int256",
539
+ },
540
+ {
541
+ internalType: "uint256",
542
+ name: "expiry",
543
+ type: "uint256",
544
+ },
545
+ {
546
+ internalType: "uint256",
547
+ name: "lnFeeRateRoot",
548
+ type: "uint256",
549
+ },
550
+ {
551
+ internalType: "uint256",
552
+ name: "reserveFeePercent",
553
+ type: "uint256",
554
+ },
555
+ {
556
+ internalType: "uint256",
557
+ name: "lastLnImpliedRate",
558
+ type: "uint256",
559
+ },
560
+ ],
561
+ internalType: "struct MarketState",
562
+ name: "state",
563
+ type: "tuple",
564
+ },
565
+ {
566
+ internalType: "PYIndex",
567
+ name: "index",
568
+ type: "uint256",
569
+ },
570
+ {
571
+ internalType: "uint256",
572
+ name: "blockTime",
573
+ type: "uint256",
574
+ },
575
+ ],
576
+ internalType: "struct MarketExtState",
577
+ name: "marketExt",
578
+ type: "tuple",
579
+ },
580
+ {
581
+ components: [
582
+ {
583
+ internalType: "uint256",
584
+ name: "buyYtIy",
585
+ type: "uint256",
586
+ },
587
+ {
588
+ internalType: "uint256",
589
+ name: "sellYtIy",
590
+ type: "uint256",
591
+ },
592
+ {
593
+ internalType: "uint256",
594
+ name: "targetSyRatio",
595
+ type: "uint256",
596
+ },
597
+ {
598
+ internalType: "uint256",
599
+ name: "maxSyRatio",
600
+ type: "uint256",
601
+ },
602
+ {
603
+ internalType: "uint256",
604
+ name: "targetYtPtRatio",
605
+ type: "uint256",
606
+ },
607
+ {
608
+ internalType: "uint256",
609
+ name: "numOfBins",
610
+ type: "uint256",
611
+ },
612
+ ],
613
+ internalType: "struct TradingSpecs",
614
+ name: "specs",
615
+ type: "tuple",
616
+ },
617
+ ],
618
+ internalType: "struct StrategyData",
619
+ name: "strategyData",
620
+ type: "tuple",
621
+ },
622
+ ],
623
+ stateMutability: "nonpayable",
624
+ type: "function",
625
+ },
626
+ {
627
+ inputs: [],
628
+ name: "router",
629
+ outputs: [
630
+ {
631
+ internalType: "address",
632
+ name: "",
633
+ type: "address",
634
+ },
635
+ ],
636
+ stateMutability: "view",
637
+ type: "function",
638
+ },
639
+ {
640
+ inputs: [
641
+ {
642
+ components: [
643
+ {
644
+ internalType: "uint256",
645
+ name: "buyYtIy",
646
+ type: "uint256",
647
+ },
648
+ {
649
+ internalType: "uint256",
650
+ name: "sellYtIy",
651
+ type: "uint256",
652
+ },
653
+ {
654
+ internalType: "uint256",
655
+ name: "targetSyRatio",
656
+ type: "uint256",
657
+ },
658
+ {
659
+ internalType: "uint256",
660
+ name: "maxSyRatio",
661
+ type: "uint256",
662
+ },
663
+ {
664
+ internalType: "uint256",
665
+ name: "targetYtPtRatio",
666
+ type: "uint256",
667
+ },
668
+ {
669
+ internalType: "uint256",
670
+ name: "numOfBins",
671
+ type: "uint256",
672
+ },
673
+ ],
674
+ internalType: "struct TradingSpecs",
675
+ name: "_specs",
676
+ type: "tuple",
677
+ },
678
+ ],
679
+ name: "setSpecs",
680
+ outputs: [],
681
+ stateMutability: "nonpayable",
682
+ type: "function",
683
+ },
684
+ {
685
+ inputs: [],
686
+ name: "specs",
687
+ outputs: [
688
+ {
689
+ internalType: "uint256",
690
+ name: "buyYtIy",
691
+ type: "uint256",
692
+ },
693
+ {
694
+ internalType: "uint256",
695
+ name: "sellYtIy",
696
+ type: "uint256",
697
+ },
698
+ {
699
+ internalType: "uint256",
700
+ name: "targetSyRatio",
701
+ type: "uint256",
702
+ },
703
+ {
704
+ internalType: "uint256",
705
+ name: "maxSyRatio",
706
+ type: "uint256",
707
+ },
708
+ {
709
+ internalType: "uint256",
710
+ name: "targetYtPtRatio",
711
+ type: "uint256",
712
+ },
713
+ {
714
+ internalType: "uint256",
715
+ name: "numOfBins",
716
+ type: "uint256",
717
+ },
718
+ ],
719
+ stateMutability: "view",
720
+ type: "function",
721
+ },
722
+ {
723
+ inputs: [
724
+ {
725
+ internalType: "address",
726
+ name: "newOwner",
727
+ type: "address",
728
+ },
729
+ {
730
+ internalType: "bool",
731
+ name: "direct",
732
+ type: "bool",
733
+ },
734
+ {
735
+ internalType: "bool",
736
+ name: "renounce",
737
+ type: "bool",
738
+ },
739
+ ],
740
+ name: "transferOwnership",
741
+ outputs: [],
742
+ stateMutability: "nonpayable",
743
+ type: "function",
744
+ },
745
+ {
746
+ inputs: [
747
+ {
748
+ internalType: "address",
749
+ name: "token",
750
+ type: "address",
751
+ },
752
+ {
753
+ internalType: "uint256",
754
+ name: "amount",
755
+ type: "uint256",
756
+ },
757
+ ],
758
+ name: "withdrawFunds",
759
+ outputs: [],
760
+ stateMutability: "nonpayable",
761
+ type: "function",
762
+ },
763
+ {
764
+ stateMutability: "payable",
765
+ type: "receive",
766
+ },
767
+ ];
768
+
769
+ export class ShortYieldActionHelper__factory {
770
+ static readonly abi = _abi;
771
+ static createInterface(): ShortYieldActionHelperInterface {
772
+ return new utils.Interface(_abi) as ShortYieldActionHelperInterface;
773
+ }
774
+ static connect(
775
+ address: string,
776
+ signerOrProvider: Signer | Provider
777
+ ): ShortYieldActionHelper {
778
+ return new Contract(
779
+ address,
780
+ _abi,
781
+ signerOrProvider
782
+ ) as ShortYieldActionHelper;
783
+ }
784
+ }