@merkl/contracts 0.11.10 → 0.11.11

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 (37) hide show
  1. package/dist/src/BorrowerOperationGravita.d.ts +563 -0
  2. package/dist/src/BorrowerOperationGravita.js +2 -0
  3. package/dist/src/BorrowerOperationGravita.js.map +1 -0
  4. package/dist/src/BorrowerOperationsLiquity.d.ts +893 -0
  5. package/dist/src/BorrowerOperationsLiquity.js +2 -0
  6. package/dist/src/BorrowerOperationsLiquity.js.map +1 -0
  7. package/dist/src/GravitaStability.d.ts +801 -0
  8. package/dist/src/GravitaStability.js +2 -0
  9. package/dist/src/GravitaStability.js.map +1 -0
  10. package/dist/src/PancakeSwapv3Pool.d.ts +810 -0
  11. package/dist/src/PancakeSwapv3Pool.js +2 -0
  12. package/dist/src/PancakeSwapv3Pool.js.map +1 -0
  13. package/dist/src/VesselManager.d.ts +1227 -0
  14. package/dist/src/VesselManager.js +2 -0
  15. package/dist/src/VesselManager.js.map +1 -0
  16. package/dist/src/factories/BorrowerOperationGravita__factory.d.ts +600 -0
  17. package/dist/src/factories/BorrowerOperationGravita__factory.js +777 -0
  18. package/dist/src/factories/BorrowerOperationGravita__factory.js.map +1 -0
  19. package/dist/src/factories/BorrowerOperationsLiquity__factory.d.ts +1092 -0
  20. package/dist/src/factories/BorrowerOperationsLiquity__factory.js +1405 -0
  21. package/dist/src/factories/BorrowerOperationsLiquity__factory.js.map +1 -0
  22. package/dist/src/factories/GravitaStability__factory.d.ts +932 -0
  23. package/dist/src/factories/GravitaStability__factory.js +1214 -0
  24. package/dist/src/factories/GravitaStability__factory.js.map +1 -0
  25. package/dist/src/factories/PancakeSwapv3Pool__factory.d.ts +821 -0
  26. package/dist/src/factories/PancakeSwapv3Pool__factory.js +1053 -0
  27. package/dist/src/factories/PancakeSwapv3Pool__factory.js.map +1 -0
  28. package/dist/src/factories/VesselManager__factory.d.ts +1539 -0
  29. package/dist/src/factories/VesselManager__factory.js +2015 -0
  30. package/dist/src/factories/VesselManager__factory.js.map +1 -0
  31. package/dist/src/factories/index.d.ts +5 -0
  32. package/dist/src/factories/index.js +5 -0
  33. package/dist/src/factories/index.js.map +1 -1
  34. package/dist/src/index.d.ts +677 -667
  35. package/dist/src/index.js +677 -667
  36. package/dist/src/index.js.map +1 -1
  37. package/package.json +1 -1
@@ -0,0 +1,2015 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ inputs: [],
8
+ name: "VesselManager__FeeBiggerThanAssetDraw",
9
+ type: "error",
10
+ },
11
+ {
12
+ inputs: [],
13
+ name: "VesselManager__OnlyBorrowerOperations",
14
+ type: "error",
15
+ },
16
+ {
17
+ inputs: [],
18
+ name: "VesselManager__OnlyOneVessel",
19
+ type: "error",
20
+ },
21
+ {
22
+ inputs: [],
23
+ name: "VesselManager__OnlyVesselManagerOperations",
24
+ type: "error",
25
+ },
26
+ {
27
+ inputs: [],
28
+ name: "VesselManager__OnlyVesselManagerOperationsOrBorrowerOperations",
29
+ type: "error",
30
+ },
31
+ {
32
+ anonymous: false,
33
+ inputs: [
34
+ {
35
+ indexed: true,
36
+ internalType: "address",
37
+ name: "_asset",
38
+ type: "address",
39
+ },
40
+ {
41
+ indexed: false,
42
+ internalType: "uint256",
43
+ name: "_baseRate",
44
+ type: "uint256",
45
+ },
46
+ ],
47
+ name: "BaseRateUpdated",
48
+ type: "event",
49
+ },
50
+ {
51
+ anonymous: false,
52
+ inputs: [
53
+ {
54
+ indexed: false,
55
+ internalType: "uint8",
56
+ name: "version",
57
+ type: "uint8",
58
+ },
59
+ ],
60
+ name: "Initialized",
61
+ type: "event",
62
+ },
63
+ {
64
+ anonymous: false,
65
+ inputs: [
66
+ {
67
+ indexed: true,
68
+ internalType: "address",
69
+ name: "_asset",
70
+ type: "address",
71
+ },
72
+ {
73
+ indexed: false,
74
+ internalType: "uint256",
75
+ name: "_L_Coll",
76
+ type: "uint256",
77
+ },
78
+ {
79
+ indexed: false,
80
+ internalType: "uint256",
81
+ name: "_L_Debt",
82
+ type: "uint256",
83
+ },
84
+ ],
85
+ name: "LTermsUpdated",
86
+ type: "event",
87
+ },
88
+ {
89
+ anonymous: false,
90
+ inputs: [
91
+ {
92
+ indexed: true,
93
+ internalType: "address",
94
+ name: "_asset",
95
+ type: "address",
96
+ },
97
+ {
98
+ indexed: false,
99
+ internalType: "uint256",
100
+ name: "_lastFeeOpTime",
101
+ type: "uint256",
102
+ },
103
+ ],
104
+ name: "LastFeeOpTimeUpdated",
105
+ type: "event",
106
+ },
107
+ {
108
+ anonymous: false,
109
+ inputs: [
110
+ {
111
+ indexed: true,
112
+ internalType: "address",
113
+ name: "previousOwner",
114
+ type: "address",
115
+ },
116
+ {
117
+ indexed: true,
118
+ internalType: "address",
119
+ name: "newOwner",
120
+ type: "address",
121
+ },
122
+ ],
123
+ name: "OwnershipTransferred",
124
+ type: "event",
125
+ },
126
+ {
127
+ anonymous: false,
128
+ inputs: [
129
+ {
130
+ indexed: true,
131
+ internalType: "address",
132
+ name: "_asset",
133
+ type: "address",
134
+ },
135
+ {
136
+ indexed: false,
137
+ internalType: "uint256",
138
+ name: "_totalStakesSnapshot",
139
+ type: "uint256",
140
+ },
141
+ {
142
+ indexed: false,
143
+ internalType: "uint256",
144
+ name: "_totalCollateralSnapshot",
145
+ type: "uint256",
146
+ },
147
+ ],
148
+ name: "SystemSnapshotsUpdated",
149
+ type: "event",
150
+ },
151
+ {
152
+ anonymous: false,
153
+ inputs: [
154
+ {
155
+ indexed: true,
156
+ internalType: "address",
157
+ name: "_asset",
158
+ type: "address",
159
+ },
160
+ {
161
+ indexed: false,
162
+ internalType: "uint256",
163
+ name: "_newTotalStakes",
164
+ type: "uint256",
165
+ },
166
+ ],
167
+ name: "TotalStakesUpdated",
168
+ type: "event",
169
+ },
170
+ {
171
+ anonymous: false,
172
+ inputs: [
173
+ {
174
+ indexed: true,
175
+ internalType: "address",
176
+ name: "_asset",
177
+ type: "address",
178
+ },
179
+ {
180
+ indexed: false,
181
+ internalType: "address",
182
+ name: "_borrower",
183
+ type: "address",
184
+ },
185
+ {
186
+ indexed: false,
187
+ internalType: "uint256",
188
+ name: "_newIndex",
189
+ type: "uint256",
190
+ },
191
+ ],
192
+ name: "VesselIndexUpdated",
193
+ type: "event",
194
+ },
195
+ {
196
+ anonymous: false,
197
+ inputs: [
198
+ {
199
+ indexed: true,
200
+ internalType: "address",
201
+ name: "_asset",
202
+ type: "address",
203
+ },
204
+ {
205
+ indexed: false,
206
+ internalType: "uint256",
207
+ name: "_L_Coll",
208
+ type: "uint256",
209
+ },
210
+ {
211
+ indexed: false,
212
+ internalType: "uint256",
213
+ name: "_L_Debt",
214
+ type: "uint256",
215
+ },
216
+ ],
217
+ name: "VesselSnapshotsUpdated",
218
+ type: "event",
219
+ },
220
+ {
221
+ anonymous: false,
222
+ inputs: [
223
+ {
224
+ indexed: true,
225
+ internalType: "address",
226
+ name: "_asset",
227
+ type: "address",
228
+ },
229
+ {
230
+ indexed: true,
231
+ internalType: "address",
232
+ name: "_borrower",
233
+ type: "address",
234
+ },
235
+ {
236
+ indexed: false,
237
+ internalType: "uint256",
238
+ name: "_debt",
239
+ type: "uint256",
240
+ },
241
+ {
242
+ indexed: false,
243
+ internalType: "uint256",
244
+ name: "_coll",
245
+ type: "uint256",
246
+ },
247
+ {
248
+ indexed: false,
249
+ internalType: "uint256",
250
+ name: "_stake",
251
+ type: "uint256",
252
+ },
253
+ {
254
+ indexed: false,
255
+ internalType: "enum IVesselManager.VesselManagerOperation",
256
+ name: "_operation",
257
+ type: "uint8",
258
+ },
259
+ ],
260
+ name: "VesselUpdated",
261
+ type: "event",
262
+ },
263
+ {
264
+ inputs: [],
265
+ name: "BETA",
266
+ outputs: [
267
+ {
268
+ internalType: "uint256",
269
+ name: "",
270
+ type: "uint256",
271
+ },
272
+ ],
273
+ stateMutability: "view",
274
+ type: "function",
275
+ },
276
+ {
277
+ inputs: [],
278
+ name: "DECIMAL_PRECISION",
279
+ outputs: [
280
+ {
281
+ internalType: "uint256",
282
+ name: "",
283
+ type: "uint256",
284
+ },
285
+ ],
286
+ stateMutability: "view",
287
+ type: "function",
288
+ },
289
+ {
290
+ inputs: [
291
+ {
292
+ internalType: "address",
293
+ name: "",
294
+ type: "address",
295
+ },
296
+ ],
297
+ name: "L_Colls",
298
+ outputs: [
299
+ {
300
+ internalType: "uint256",
301
+ name: "",
302
+ type: "uint256",
303
+ },
304
+ ],
305
+ stateMutability: "view",
306
+ type: "function",
307
+ },
308
+ {
309
+ inputs: [
310
+ {
311
+ internalType: "address",
312
+ name: "",
313
+ type: "address",
314
+ },
315
+ ],
316
+ name: "L_Debts",
317
+ outputs: [
318
+ {
319
+ internalType: "uint256",
320
+ name: "",
321
+ type: "uint256",
322
+ },
323
+ ],
324
+ stateMutability: "view",
325
+ type: "function",
326
+ },
327
+ {
328
+ inputs: [],
329
+ name: "MINUTE_DECAY_FACTOR",
330
+ outputs: [
331
+ {
332
+ internalType: "uint256",
333
+ name: "",
334
+ type: "uint256",
335
+ },
336
+ ],
337
+ stateMutability: "view",
338
+ type: "function",
339
+ },
340
+ {
341
+ inputs: [],
342
+ name: "NAME",
343
+ outputs: [
344
+ {
345
+ internalType: "string",
346
+ name: "",
347
+ type: "string",
348
+ },
349
+ ],
350
+ stateMutability: "view",
351
+ type: "function",
352
+ },
353
+ {
354
+ inputs: [],
355
+ name: "SECONDS_IN_ONE_MINUTE",
356
+ outputs: [
357
+ {
358
+ internalType: "uint256",
359
+ name: "",
360
+ type: "uint256",
361
+ },
362
+ ],
363
+ stateMutability: "view",
364
+ type: "function",
365
+ },
366
+ {
367
+ inputs: [
368
+ {
369
+ internalType: "address",
370
+ name: "",
371
+ type: "address",
372
+ },
373
+ {
374
+ internalType: "uint256",
375
+ name: "",
376
+ type: "uint256",
377
+ },
378
+ ],
379
+ name: "VesselOwners",
380
+ outputs: [
381
+ {
382
+ internalType: "address",
383
+ name: "",
384
+ type: "address",
385
+ },
386
+ ],
387
+ stateMutability: "view",
388
+ type: "function",
389
+ },
390
+ {
391
+ inputs: [
392
+ {
393
+ internalType: "address",
394
+ name: "",
395
+ type: "address",
396
+ },
397
+ {
398
+ internalType: "address",
399
+ name: "",
400
+ type: "address",
401
+ },
402
+ ],
403
+ name: "Vessels",
404
+ outputs: [
405
+ {
406
+ internalType: "uint256",
407
+ name: "debt",
408
+ type: "uint256",
409
+ },
410
+ {
411
+ internalType: "uint256",
412
+ name: "coll",
413
+ type: "uint256",
414
+ },
415
+ {
416
+ internalType: "uint256",
417
+ name: "stake",
418
+ type: "uint256",
419
+ },
420
+ {
421
+ internalType: "enum IVesselManager.Status",
422
+ name: "status",
423
+ type: "uint8",
424
+ },
425
+ {
426
+ internalType: "uint128",
427
+ name: "arrayIndex",
428
+ type: "uint128",
429
+ },
430
+ ],
431
+ stateMutability: "view",
432
+ type: "function",
433
+ },
434
+ {
435
+ inputs: [],
436
+ name: "activePool",
437
+ outputs: [
438
+ {
439
+ internalType: "address",
440
+ name: "",
441
+ type: "address",
442
+ },
443
+ ],
444
+ stateMutability: "view",
445
+ type: "function",
446
+ },
447
+ {
448
+ inputs: [
449
+ {
450
+ internalType: "address",
451
+ name: "_asset",
452
+ type: "address",
453
+ },
454
+ {
455
+ internalType: "address",
456
+ name: "_borrower",
457
+ type: "address",
458
+ },
459
+ ],
460
+ name: "addVesselOwnerToArray",
461
+ outputs: [
462
+ {
463
+ internalType: "uint256",
464
+ name: "index",
465
+ type: "uint256",
466
+ },
467
+ ],
468
+ stateMutability: "nonpayable",
469
+ type: "function",
470
+ },
471
+ {
472
+ inputs: [],
473
+ name: "adminContract",
474
+ outputs: [
475
+ {
476
+ internalType: "address",
477
+ name: "",
478
+ type: "address",
479
+ },
480
+ ],
481
+ stateMutability: "view",
482
+ type: "function",
483
+ },
484
+ {
485
+ inputs: [
486
+ {
487
+ internalType: "address",
488
+ name: "_asset",
489
+ type: "address",
490
+ },
491
+ {
492
+ internalType: "address",
493
+ name: "_borrower",
494
+ type: "address",
495
+ },
496
+ ],
497
+ name: "applyPendingRewards",
498
+ outputs: [],
499
+ stateMutability: "nonpayable",
500
+ type: "function",
501
+ },
502
+ {
503
+ inputs: [
504
+ {
505
+ internalType: "address",
506
+ name: "",
507
+ type: "address",
508
+ },
509
+ ],
510
+ name: "baseRate",
511
+ outputs: [
512
+ {
513
+ internalType: "uint256",
514
+ name: "",
515
+ type: "uint256",
516
+ },
517
+ ],
518
+ stateMutability: "view",
519
+ type: "function",
520
+ },
521
+ {
522
+ inputs: [],
523
+ name: "borrowerOperations",
524
+ outputs: [
525
+ {
526
+ internalType: "address",
527
+ name: "",
528
+ type: "address",
529
+ },
530
+ ],
531
+ stateMutability: "view",
532
+ type: "function",
533
+ },
534
+ {
535
+ inputs: [
536
+ {
537
+ internalType: "address",
538
+ name: "_asset",
539
+ type: "address",
540
+ },
541
+ {
542
+ internalType: "uint256",
543
+ name: "_price",
544
+ type: "uint256",
545
+ },
546
+ ],
547
+ name: "checkRecoveryMode",
548
+ outputs: [
549
+ {
550
+ internalType: "bool",
551
+ name: "",
552
+ type: "bool",
553
+ },
554
+ ],
555
+ stateMutability: "view",
556
+ type: "function",
557
+ },
558
+ {
559
+ inputs: [
560
+ {
561
+ internalType: "address",
562
+ name: "_asset",
563
+ type: "address",
564
+ },
565
+ {
566
+ internalType: "address",
567
+ name: "_borrower",
568
+ type: "address",
569
+ },
570
+ ],
571
+ name: "closeVessel",
572
+ outputs: [],
573
+ stateMutability: "nonpayable",
574
+ type: "function",
575
+ },
576
+ {
577
+ inputs: [
578
+ {
579
+ internalType: "address",
580
+ name: "_asset",
581
+ type: "address",
582
+ },
583
+ {
584
+ internalType: "address",
585
+ name: "_borrower",
586
+ type: "address",
587
+ },
588
+ ],
589
+ name: "closeVesselLiquidation",
590
+ outputs: [],
591
+ stateMutability: "nonpayable",
592
+ type: "function",
593
+ },
594
+ {
595
+ inputs: [],
596
+ name: "collSurplusPool",
597
+ outputs: [
598
+ {
599
+ internalType: "address",
600
+ name: "",
601
+ type: "address",
602
+ },
603
+ ],
604
+ stateMutability: "view",
605
+ type: "function",
606
+ },
607
+ {
608
+ inputs: [],
609
+ name: "communityIssuance",
610
+ outputs: [
611
+ {
612
+ internalType: "address",
613
+ name: "",
614
+ type: "address",
615
+ },
616
+ ],
617
+ stateMutability: "view",
618
+ type: "function",
619
+ },
620
+ {
621
+ inputs: [],
622
+ name: "debtToken",
623
+ outputs: [
624
+ {
625
+ internalType: "address",
626
+ name: "",
627
+ type: "address",
628
+ },
629
+ ],
630
+ stateMutability: "view",
631
+ type: "function",
632
+ },
633
+ {
634
+ inputs: [
635
+ {
636
+ internalType: "address",
637
+ name: "_asset",
638
+ type: "address",
639
+ },
640
+ {
641
+ internalType: "address",
642
+ name: "_borrower",
643
+ type: "address",
644
+ },
645
+ {
646
+ internalType: "uint256",
647
+ name: "_collDecrease",
648
+ type: "uint256",
649
+ },
650
+ ],
651
+ name: "decreaseVesselColl",
652
+ outputs: [
653
+ {
654
+ internalType: "uint256",
655
+ name: "newColl",
656
+ type: "uint256",
657
+ },
658
+ ],
659
+ stateMutability: "nonpayable",
660
+ type: "function",
661
+ },
662
+ {
663
+ inputs: [
664
+ {
665
+ internalType: "address",
666
+ name: "_asset",
667
+ type: "address",
668
+ },
669
+ {
670
+ internalType: "address",
671
+ name: "_borrower",
672
+ type: "address",
673
+ },
674
+ {
675
+ internalType: "uint256",
676
+ name: "_debtDecrease",
677
+ type: "uint256",
678
+ },
679
+ ],
680
+ name: "decreaseVesselDebt",
681
+ outputs: [
682
+ {
683
+ internalType: "uint256",
684
+ name: "",
685
+ type: "uint256",
686
+ },
687
+ ],
688
+ stateMutability: "nonpayable",
689
+ type: "function",
690
+ },
691
+ {
692
+ inputs: [],
693
+ name: "defaultPool",
694
+ outputs: [
695
+ {
696
+ internalType: "address",
697
+ name: "",
698
+ type: "address",
699
+ },
700
+ ],
701
+ stateMutability: "view",
702
+ type: "function",
703
+ },
704
+ {
705
+ inputs: [
706
+ {
707
+ internalType: "address",
708
+ name: "_asset",
709
+ type: "address",
710
+ },
711
+ {
712
+ internalType: "address",
713
+ name: "_borrower",
714
+ type: "address",
715
+ },
716
+ {
717
+ internalType: "uint256",
718
+ name: "_newColl",
719
+ type: "uint256",
720
+ },
721
+ ],
722
+ name: "executeFullRedemption",
723
+ outputs: [],
724
+ stateMutability: "nonpayable",
725
+ type: "function",
726
+ },
727
+ {
728
+ inputs: [
729
+ {
730
+ internalType: "address",
731
+ name: "_asset",
732
+ type: "address",
733
+ },
734
+ {
735
+ internalType: "address",
736
+ name: "_borrower",
737
+ type: "address",
738
+ },
739
+ {
740
+ internalType: "uint256",
741
+ name: "_newDebt",
742
+ type: "uint256",
743
+ },
744
+ {
745
+ internalType: "uint256",
746
+ name: "_newColl",
747
+ type: "uint256",
748
+ },
749
+ {
750
+ internalType: "uint256",
751
+ name: "_newNICR",
752
+ type: "uint256",
753
+ },
754
+ {
755
+ internalType: "address",
756
+ name: "_upperPartialRedemptionHint",
757
+ type: "address",
758
+ },
759
+ {
760
+ internalType: "address",
761
+ name: "_lowerPartialRedemptionHint",
762
+ type: "address",
763
+ },
764
+ ],
765
+ name: "executePartialRedemption",
766
+ outputs: [],
767
+ stateMutability: "nonpayable",
768
+ type: "function",
769
+ },
770
+ {
771
+ inputs: [],
772
+ name: "feeCollector",
773
+ outputs: [
774
+ {
775
+ internalType: "address",
776
+ name: "",
777
+ type: "address",
778
+ },
779
+ ],
780
+ stateMutability: "view",
781
+ type: "function",
782
+ },
783
+ {
784
+ inputs: [
785
+ {
786
+ internalType: "address",
787
+ name: "_asset",
788
+ type: "address",
789
+ },
790
+ {
791
+ internalType: "address",
792
+ name: "_receiver",
793
+ type: "address",
794
+ },
795
+ {
796
+ internalType: "uint256",
797
+ name: "_debtToRedeem",
798
+ type: "uint256",
799
+ },
800
+ {
801
+ internalType: "uint256",
802
+ name: "_assetFeeAmount",
803
+ type: "uint256",
804
+ },
805
+ {
806
+ internalType: "uint256",
807
+ name: "_assetRedeemedAmount",
808
+ type: "uint256",
809
+ },
810
+ ],
811
+ name: "finalizeRedemption",
812
+ outputs: [],
813
+ stateMutability: "nonpayable",
814
+ type: "function",
815
+ },
816
+ {
817
+ inputs: [],
818
+ name: "gasPoolAddress",
819
+ outputs: [
820
+ {
821
+ internalType: "address",
822
+ name: "",
823
+ type: "address",
824
+ },
825
+ ],
826
+ stateMutability: "view",
827
+ type: "function",
828
+ },
829
+ {
830
+ inputs: [
831
+ {
832
+ internalType: "address",
833
+ name: "_asset",
834
+ type: "address",
835
+ },
836
+ {
837
+ internalType: "uint256",
838
+ name: "_debt",
839
+ type: "uint256",
840
+ },
841
+ ],
842
+ name: "getBorrowingFee",
843
+ outputs: [
844
+ {
845
+ internalType: "uint256",
846
+ name: "",
847
+ type: "uint256",
848
+ },
849
+ ],
850
+ stateMutability: "view",
851
+ type: "function",
852
+ },
853
+ {
854
+ inputs: [
855
+ {
856
+ internalType: "address",
857
+ name: "_asset",
858
+ type: "address",
859
+ },
860
+ ],
861
+ name: "getBorrowingRate",
862
+ outputs: [
863
+ {
864
+ internalType: "uint256",
865
+ name: "",
866
+ type: "uint256",
867
+ },
868
+ ],
869
+ stateMutability: "view",
870
+ type: "function",
871
+ },
872
+ {
873
+ inputs: [
874
+ {
875
+ internalType: "address",
876
+ name: "_asset",
877
+ type: "address",
878
+ },
879
+ {
880
+ internalType: "address",
881
+ name: "_borrower",
882
+ type: "address",
883
+ },
884
+ {
885
+ internalType: "uint256",
886
+ name: "_price",
887
+ type: "uint256",
888
+ },
889
+ ],
890
+ name: "getCurrentICR",
891
+ outputs: [
892
+ {
893
+ internalType: "uint256",
894
+ name: "",
895
+ type: "uint256",
896
+ },
897
+ ],
898
+ stateMutability: "view",
899
+ type: "function",
900
+ },
901
+ {
902
+ inputs: [
903
+ {
904
+ internalType: "address",
905
+ name: "_asset",
906
+ type: "address",
907
+ },
908
+ {
909
+ internalType: "address",
910
+ name: "_borrower",
911
+ type: "address",
912
+ },
913
+ ],
914
+ name: "getEntireDebtAndColl",
915
+ outputs: [
916
+ {
917
+ internalType: "uint256",
918
+ name: "debt",
919
+ type: "uint256",
920
+ },
921
+ {
922
+ internalType: "uint256",
923
+ name: "coll",
924
+ type: "uint256",
925
+ },
926
+ {
927
+ internalType: "uint256",
928
+ name: "pendingDebtReward",
929
+ type: "uint256",
930
+ },
931
+ {
932
+ internalType: "uint256",
933
+ name: "pendingCollReward",
934
+ type: "uint256",
935
+ },
936
+ ],
937
+ stateMutability: "view",
938
+ type: "function",
939
+ },
940
+ {
941
+ inputs: [
942
+ {
943
+ internalType: "address",
944
+ name: "_asset",
945
+ type: "address",
946
+ },
947
+ ],
948
+ name: "getEntireSystemColl",
949
+ outputs: [
950
+ {
951
+ internalType: "uint256",
952
+ name: "entireSystemColl",
953
+ type: "uint256",
954
+ },
955
+ ],
956
+ stateMutability: "view",
957
+ type: "function",
958
+ },
959
+ {
960
+ inputs: [
961
+ {
962
+ internalType: "address",
963
+ name: "_asset",
964
+ type: "address",
965
+ },
966
+ ],
967
+ name: "getEntireSystemDebt",
968
+ outputs: [
969
+ {
970
+ internalType: "uint256",
971
+ name: "entireSystemDebt",
972
+ type: "uint256",
973
+ },
974
+ ],
975
+ stateMutability: "view",
976
+ type: "function",
977
+ },
978
+ {
979
+ inputs: [
980
+ {
981
+ internalType: "address",
982
+ name: "_asset",
983
+ type: "address",
984
+ },
985
+ {
986
+ internalType: "address",
987
+ name: "_borrower",
988
+ type: "address",
989
+ },
990
+ ],
991
+ name: "getNominalICR",
992
+ outputs: [
993
+ {
994
+ internalType: "uint256",
995
+ name: "",
996
+ type: "uint256",
997
+ },
998
+ ],
999
+ stateMutability: "view",
1000
+ type: "function",
1001
+ },
1002
+ {
1003
+ inputs: [
1004
+ {
1005
+ internalType: "address",
1006
+ name: "_asset",
1007
+ type: "address",
1008
+ },
1009
+ {
1010
+ internalType: "address",
1011
+ name: "_borrower",
1012
+ type: "address",
1013
+ },
1014
+ ],
1015
+ name: "getPendingAssetReward",
1016
+ outputs: [
1017
+ {
1018
+ internalType: "uint256",
1019
+ name: "",
1020
+ type: "uint256",
1021
+ },
1022
+ ],
1023
+ stateMutability: "view",
1024
+ type: "function",
1025
+ },
1026
+ {
1027
+ inputs: [
1028
+ {
1029
+ internalType: "address",
1030
+ name: "_asset",
1031
+ type: "address",
1032
+ },
1033
+ {
1034
+ internalType: "address",
1035
+ name: "_borrower",
1036
+ type: "address",
1037
+ },
1038
+ ],
1039
+ name: "getPendingDebtTokenReward",
1040
+ outputs: [
1041
+ {
1042
+ internalType: "uint256",
1043
+ name: "",
1044
+ type: "uint256",
1045
+ },
1046
+ ],
1047
+ stateMutability: "view",
1048
+ type: "function",
1049
+ },
1050
+ {
1051
+ inputs: [
1052
+ {
1053
+ internalType: "address",
1054
+ name: "_asset",
1055
+ type: "address",
1056
+ },
1057
+ {
1058
+ internalType: "uint256",
1059
+ name: "_assetDraw",
1060
+ type: "uint256",
1061
+ },
1062
+ ],
1063
+ name: "getRedemptionFee",
1064
+ outputs: [
1065
+ {
1066
+ internalType: "uint256",
1067
+ name: "",
1068
+ type: "uint256",
1069
+ },
1070
+ ],
1071
+ stateMutability: "view",
1072
+ type: "function",
1073
+ },
1074
+ {
1075
+ inputs: [
1076
+ {
1077
+ internalType: "address",
1078
+ name: "_asset",
1079
+ type: "address",
1080
+ },
1081
+ {
1082
+ internalType: "uint256",
1083
+ name: "_assetDraw",
1084
+ type: "uint256",
1085
+ },
1086
+ ],
1087
+ name: "getRedemptionFeeWithDecay",
1088
+ outputs: [
1089
+ {
1090
+ internalType: "uint256",
1091
+ name: "",
1092
+ type: "uint256",
1093
+ },
1094
+ ],
1095
+ stateMutability: "view",
1096
+ type: "function",
1097
+ },
1098
+ {
1099
+ inputs: [
1100
+ {
1101
+ internalType: "address",
1102
+ name: "_asset",
1103
+ type: "address",
1104
+ },
1105
+ ],
1106
+ name: "getRedemptionRate",
1107
+ outputs: [
1108
+ {
1109
+ internalType: "uint256",
1110
+ name: "",
1111
+ type: "uint256",
1112
+ },
1113
+ ],
1114
+ stateMutability: "view",
1115
+ type: "function",
1116
+ },
1117
+ {
1118
+ inputs: [
1119
+ {
1120
+ internalType: "address",
1121
+ name: "_asset",
1122
+ type: "address",
1123
+ },
1124
+ ],
1125
+ name: "getRedemptionRateWithDecay",
1126
+ outputs: [
1127
+ {
1128
+ internalType: "uint256",
1129
+ name: "",
1130
+ type: "uint256",
1131
+ },
1132
+ ],
1133
+ stateMutability: "view",
1134
+ type: "function",
1135
+ },
1136
+ {
1137
+ inputs: [
1138
+ {
1139
+ internalType: "address",
1140
+ name: "_asset",
1141
+ type: "address",
1142
+ },
1143
+ {
1144
+ internalType: "uint256",
1145
+ name: "_price",
1146
+ type: "uint256",
1147
+ },
1148
+ ],
1149
+ name: "getTCR",
1150
+ outputs: [
1151
+ {
1152
+ internalType: "uint256",
1153
+ name: "",
1154
+ type: "uint256",
1155
+ },
1156
+ ],
1157
+ stateMutability: "view",
1158
+ type: "function",
1159
+ },
1160
+ {
1161
+ inputs: [
1162
+ {
1163
+ internalType: "address",
1164
+ name: "_asset",
1165
+ type: "address",
1166
+ },
1167
+ {
1168
+ internalType: "address",
1169
+ name: "_borrower",
1170
+ type: "address",
1171
+ },
1172
+ ],
1173
+ name: "getVesselColl",
1174
+ outputs: [
1175
+ {
1176
+ internalType: "uint256",
1177
+ name: "",
1178
+ type: "uint256",
1179
+ },
1180
+ ],
1181
+ stateMutability: "view",
1182
+ type: "function",
1183
+ },
1184
+ {
1185
+ inputs: [
1186
+ {
1187
+ internalType: "address",
1188
+ name: "_asset",
1189
+ type: "address",
1190
+ },
1191
+ {
1192
+ internalType: "address",
1193
+ name: "_borrower",
1194
+ type: "address",
1195
+ },
1196
+ ],
1197
+ name: "getVesselDebt",
1198
+ outputs: [
1199
+ {
1200
+ internalType: "uint256",
1201
+ name: "",
1202
+ type: "uint256",
1203
+ },
1204
+ ],
1205
+ stateMutability: "view",
1206
+ type: "function",
1207
+ },
1208
+ {
1209
+ inputs: [
1210
+ {
1211
+ internalType: "address",
1212
+ name: "_asset",
1213
+ type: "address",
1214
+ },
1215
+ {
1216
+ internalType: "uint256",
1217
+ name: "_index",
1218
+ type: "uint256",
1219
+ },
1220
+ ],
1221
+ name: "getVesselFromVesselOwnersArray",
1222
+ outputs: [
1223
+ {
1224
+ internalType: "address",
1225
+ name: "",
1226
+ type: "address",
1227
+ },
1228
+ ],
1229
+ stateMutability: "view",
1230
+ type: "function",
1231
+ },
1232
+ {
1233
+ inputs: [
1234
+ {
1235
+ internalType: "address",
1236
+ name: "_asset",
1237
+ type: "address",
1238
+ },
1239
+ ],
1240
+ name: "getVesselOwnersCount",
1241
+ outputs: [
1242
+ {
1243
+ internalType: "uint256",
1244
+ name: "",
1245
+ type: "uint256",
1246
+ },
1247
+ ],
1248
+ stateMutability: "view",
1249
+ type: "function",
1250
+ },
1251
+ {
1252
+ inputs: [
1253
+ {
1254
+ internalType: "address",
1255
+ name: "_asset",
1256
+ type: "address",
1257
+ },
1258
+ {
1259
+ internalType: "address",
1260
+ name: "_borrower",
1261
+ type: "address",
1262
+ },
1263
+ ],
1264
+ name: "getVesselStake",
1265
+ outputs: [
1266
+ {
1267
+ internalType: "uint256",
1268
+ name: "",
1269
+ type: "uint256",
1270
+ },
1271
+ ],
1272
+ stateMutability: "view",
1273
+ type: "function",
1274
+ },
1275
+ {
1276
+ inputs: [
1277
+ {
1278
+ internalType: "address",
1279
+ name: "_asset",
1280
+ type: "address",
1281
+ },
1282
+ {
1283
+ internalType: "address",
1284
+ name: "_borrower",
1285
+ type: "address",
1286
+ },
1287
+ ],
1288
+ name: "getVesselStatus",
1289
+ outputs: [
1290
+ {
1291
+ internalType: "uint256",
1292
+ name: "",
1293
+ type: "uint256",
1294
+ },
1295
+ ],
1296
+ stateMutability: "view",
1297
+ type: "function",
1298
+ },
1299
+ {
1300
+ inputs: [
1301
+ {
1302
+ internalType: "address",
1303
+ name: "_asset",
1304
+ type: "address",
1305
+ },
1306
+ {
1307
+ internalType: "address",
1308
+ name: "_borrower",
1309
+ type: "address",
1310
+ },
1311
+ ],
1312
+ name: "hasPendingRewards",
1313
+ outputs: [
1314
+ {
1315
+ internalType: "bool",
1316
+ name: "",
1317
+ type: "bool",
1318
+ },
1319
+ ],
1320
+ stateMutability: "view",
1321
+ type: "function",
1322
+ },
1323
+ {
1324
+ inputs: [
1325
+ {
1326
+ internalType: "address",
1327
+ name: "_asset",
1328
+ type: "address",
1329
+ },
1330
+ {
1331
+ internalType: "address",
1332
+ name: "_borrower",
1333
+ type: "address",
1334
+ },
1335
+ {
1336
+ internalType: "uint256",
1337
+ name: "_collIncrease",
1338
+ type: "uint256",
1339
+ },
1340
+ ],
1341
+ name: "increaseVesselColl",
1342
+ outputs: [
1343
+ {
1344
+ internalType: "uint256",
1345
+ name: "newColl",
1346
+ type: "uint256",
1347
+ },
1348
+ ],
1349
+ stateMutability: "nonpayable",
1350
+ type: "function",
1351
+ },
1352
+ {
1353
+ inputs: [
1354
+ {
1355
+ internalType: "address",
1356
+ name: "_asset",
1357
+ type: "address",
1358
+ },
1359
+ {
1360
+ internalType: "address",
1361
+ name: "_borrower",
1362
+ type: "address",
1363
+ },
1364
+ {
1365
+ internalType: "uint256",
1366
+ name: "_debtIncrease",
1367
+ type: "uint256",
1368
+ },
1369
+ ],
1370
+ name: "increaseVesselDebt",
1371
+ outputs: [
1372
+ {
1373
+ internalType: "uint256",
1374
+ name: "newDebt",
1375
+ type: "uint256",
1376
+ },
1377
+ ],
1378
+ stateMutability: "nonpayable",
1379
+ type: "function",
1380
+ },
1381
+ {
1382
+ inputs: [],
1383
+ name: "initialize",
1384
+ outputs: [],
1385
+ stateMutability: "nonpayable",
1386
+ type: "function",
1387
+ },
1388
+ {
1389
+ inputs: [],
1390
+ name: "isAddressSetupInitialized",
1391
+ outputs: [
1392
+ {
1393
+ internalType: "bool",
1394
+ name: "",
1395
+ type: "bool",
1396
+ },
1397
+ ],
1398
+ stateMutability: "view",
1399
+ type: "function",
1400
+ },
1401
+ {
1402
+ inputs: [],
1403
+ name: "isSetupInitialized",
1404
+ outputs: [
1405
+ {
1406
+ internalType: "bool",
1407
+ name: "",
1408
+ type: "bool",
1409
+ },
1410
+ ],
1411
+ stateMutability: "view",
1412
+ type: "function",
1413
+ },
1414
+ {
1415
+ inputs: [
1416
+ {
1417
+ internalType: "address",
1418
+ name: "_asset",
1419
+ type: "address",
1420
+ },
1421
+ {
1422
+ internalType: "address",
1423
+ name: "_firstRedemptionHint",
1424
+ type: "address",
1425
+ },
1426
+ {
1427
+ internalType: "uint256",
1428
+ name: "_price",
1429
+ type: "uint256",
1430
+ },
1431
+ ],
1432
+ name: "isValidFirstRedemptionHint",
1433
+ outputs: [
1434
+ {
1435
+ internalType: "bool",
1436
+ name: "",
1437
+ type: "bool",
1438
+ },
1439
+ ],
1440
+ stateMutability: "view",
1441
+ type: "function",
1442
+ },
1443
+ {
1444
+ inputs: [
1445
+ {
1446
+ internalType: "address",
1447
+ name: "_asset",
1448
+ type: "address",
1449
+ },
1450
+ {
1451
+ internalType: "address",
1452
+ name: "_borrower",
1453
+ type: "address",
1454
+ },
1455
+ ],
1456
+ name: "isVesselActive",
1457
+ outputs: [
1458
+ {
1459
+ internalType: "bool",
1460
+ name: "",
1461
+ type: "bool",
1462
+ },
1463
+ ],
1464
+ stateMutability: "view",
1465
+ type: "function",
1466
+ },
1467
+ {
1468
+ inputs: [
1469
+ {
1470
+ internalType: "address",
1471
+ name: "",
1472
+ type: "address",
1473
+ },
1474
+ ],
1475
+ name: "lastCollError_Redistribution",
1476
+ outputs: [
1477
+ {
1478
+ internalType: "uint256",
1479
+ name: "",
1480
+ type: "uint256",
1481
+ },
1482
+ ],
1483
+ stateMutability: "view",
1484
+ type: "function",
1485
+ },
1486
+ {
1487
+ inputs: [
1488
+ {
1489
+ internalType: "address",
1490
+ name: "",
1491
+ type: "address",
1492
+ },
1493
+ ],
1494
+ name: "lastDebtError_Redistribution",
1495
+ outputs: [
1496
+ {
1497
+ internalType: "uint256",
1498
+ name: "",
1499
+ type: "uint256",
1500
+ },
1501
+ ],
1502
+ stateMutability: "view",
1503
+ type: "function",
1504
+ },
1505
+ {
1506
+ inputs: [
1507
+ {
1508
+ internalType: "address",
1509
+ name: "",
1510
+ type: "address",
1511
+ },
1512
+ ],
1513
+ name: "lastFeeOperationTime",
1514
+ outputs: [
1515
+ {
1516
+ internalType: "uint256",
1517
+ name: "",
1518
+ type: "uint256",
1519
+ },
1520
+ ],
1521
+ stateMutability: "view",
1522
+ type: "function",
1523
+ },
1524
+ {
1525
+ inputs: [
1526
+ {
1527
+ internalType: "address",
1528
+ name: "_asset",
1529
+ type: "address",
1530
+ },
1531
+ {
1532
+ internalType: "uint256",
1533
+ name: "_debt",
1534
+ type: "uint256",
1535
+ },
1536
+ {
1537
+ internalType: "uint256",
1538
+ name: "_assetAmount",
1539
+ type: "uint256",
1540
+ },
1541
+ ],
1542
+ name: "movePendingVesselRewardsToActivePool",
1543
+ outputs: [],
1544
+ stateMutability: "nonpayable",
1545
+ type: "function",
1546
+ },
1547
+ {
1548
+ inputs: [],
1549
+ name: "owner",
1550
+ outputs: [
1551
+ {
1552
+ internalType: "address",
1553
+ name: "",
1554
+ type: "address",
1555
+ },
1556
+ ],
1557
+ stateMutability: "view",
1558
+ type: "function",
1559
+ },
1560
+ {
1561
+ inputs: [],
1562
+ name: "priceFeed",
1563
+ outputs: [
1564
+ {
1565
+ internalType: "address",
1566
+ name: "",
1567
+ type: "address",
1568
+ },
1569
+ ],
1570
+ stateMutability: "view",
1571
+ type: "function",
1572
+ },
1573
+ {
1574
+ inputs: [
1575
+ {
1576
+ internalType: "address",
1577
+ name: "_asset",
1578
+ type: "address",
1579
+ },
1580
+ {
1581
+ internalType: "uint256",
1582
+ name: "_debt",
1583
+ type: "uint256",
1584
+ },
1585
+ {
1586
+ internalType: "uint256",
1587
+ name: "_coll",
1588
+ type: "uint256",
1589
+ },
1590
+ {
1591
+ internalType: "uint256",
1592
+ name: "_debtToOffset",
1593
+ type: "uint256",
1594
+ },
1595
+ {
1596
+ internalType: "uint256",
1597
+ name: "_collToSendToStabilityPool",
1598
+ type: "uint256",
1599
+ },
1600
+ ],
1601
+ name: "redistributeDebtAndColl",
1602
+ outputs: [],
1603
+ stateMutability: "nonpayable",
1604
+ type: "function",
1605
+ },
1606
+ {
1607
+ inputs: [
1608
+ {
1609
+ internalType: "address",
1610
+ name: "_asset",
1611
+ type: "address",
1612
+ },
1613
+ {
1614
+ internalType: "address",
1615
+ name: "_borrower",
1616
+ type: "address",
1617
+ },
1618
+ ],
1619
+ name: "removeStake",
1620
+ outputs: [],
1621
+ stateMutability: "nonpayable",
1622
+ type: "function",
1623
+ },
1624
+ {
1625
+ inputs: [],
1626
+ name: "renounceOwnership",
1627
+ outputs: [],
1628
+ stateMutability: "nonpayable",
1629
+ type: "function",
1630
+ },
1631
+ {
1632
+ inputs: [
1633
+ {
1634
+ internalType: "address",
1635
+ name: "",
1636
+ type: "address",
1637
+ },
1638
+ {
1639
+ internalType: "address",
1640
+ name: "",
1641
+ type: "address",
1642
+ },
1643
+ ],
1644
+ name: "rewardSnapshots",
1645
+ outputs: [
1646
+ {
1647
+ internalType: "uint256",
1648
+ name: "asset",
1649
+ type: "uint256",
1650
+ },
1651
+ {
1652
+ internalType: "uint256",
1653
+ name: "debt",
1654
+ type: "uint256",
1655
+ },
1656
+ ],
1657
+ stateMutability: "view",
1658
+ type: "function",
1659
+ },
1660
+ {
1661
+ inputs: [
1662
+ {
1663
+ internalType: "address",
1664
+ name: "_asset",
1665
+ type: "address",
1666
+ },
1667
+ {
1668
+ internalType: "address",
1669
+ name: "_liquidator",
1670
+ type: "address",
1671
+ },
1672
+ {
1673
+ internalType: "uint256",
1674
+ name: "_debtTokenAmount",
1675
+ type: "uint256",
1676
+ },
1677
+ {
1678
+ internalType: "uint256",
1679
+ name: "_assetAmount",
1680
+ type: "uint256",
1681
+ },
1682
+ ],
1683
+ name: "sendGasCompensation",
1684
+ outputs: [],
1685
+ stateMutability: "nonpayable",
1686
+ type: "function",
1687
+ },
1688
+ {
1689
+ inputs: [
1690
+ {
1691
+ internalType: "address[]",
1692
+ name: "_addresses",
1693
+ type: "address[]",
1694
+ },
1695
+ ],
1696
+ name: "setAddresses",
1697
+ outputs: [],
1698
+ stateMutability: "nonpayable",
1699
+ type: "function",
1700
+ },
1701
+ {
1702
+ inputs: [
1703
+ {
1704
+ internalType: "address",
1705
+ name: "_communityIssuance",
1706
+ type: "address",
1707
+ },
1708
+ ],
1709
+ name: "setCommunityIssuance",
1710
+ outputs: [],
1711
+ stateMutability: "nonpayable",
1712
+ type: "function",
1713
+ },
1714
+ {
1715
+ inputs: [
1716
+ {
1717
+ internalType: "address",
1718
+ name: "_vedgeStaking",
1719
+ type: "address",
1720
+ },
1721
+ ],
1722
+ name: "setVEDGEStaking",
1723
+ outputs: [],
1724
+ stateMutability: "nonpayable",
1725
+ type: "function",
1726
+ },
1727
+ {
1728
+ inputs: [
1729
+ {
1730
+ internalType: "address",
1731
+ name: "_asset",
1732
+ type: "address",
1733
+ },
1734
+ {
1735
+ internalType: "address",
1736
+ name: "_borrower",
1737
+ type: "address",
1738
+ },
1739
+ {
1740
+ internalType: "uint256",
1741
+ name: "_num",
1742
+ type: "uint256",
1743
+ },
1744
+ ],
1745
+ name: "setVesselStatus",
1746
+ outputs: [],
1747
+ stateMutability: "nonpayable",
1748
+ type: "function",
1749
+ },
1750
+ {
1751
+ inputs: [],
1752
+ name: "sortedVessels",
1753
+ outputs: [
1754
+ {
1755
+ internalType: "address",
1756
+ name: "",
1757
+ type: "address",
1758
+ },
1759
+ ],
1760
+ stateMutability: "view",
1761
+ type: "function",
1762
+ },
1763
+ {
1764
+ inputs: [],
1765
+ name: "stabilityPool",
1766
+ outputs: [
1767
+ {
1768
+ internalType: "address",
1769
+ name: "",
1770
+ type: "address",
1771
+ },
1772
+ ],
1773
+ stateMutability: "view",
1774
+ type: "function",
1775
+ },
1776
+ {
1777
+ inputs: [],
1778
+ name: "timelockAddress",
1779
+ outputs: [
1780
+ {
1781
+ internalType: "address",
1782
+ name: "",
1783
+ type: "address",
1784
+ },
1785
+ ],
1786
+ stateMutability: "view",
1787
+ type: "function",
1788
+ },
1789
+ {
1790
+ inputs: [
1791
+ {
1792
+ internalType: "address",
1793
+ name: "",
1794
+ type: "address",
1795
+ },
1796
+ ],
1797
+ name: "totalCollateralSnapshot",
1798
+ outputs: [
1799
+ {
1800
+ internalType: "uint256",
1801
+ name: "",
1802
+ type: "uint256",
1803
+ },
1804
+ ],
1805
+ stateMutability: "view",
1806
+ type: "function",
1807
+ },
1808
+ {
1809
+ inputs: [
1810
+ {
1811
+ internalType: "address",
1812
+ name: "",
1813
+ type: "address",
1814
+ },
1815
+ ],
1816
+ name: "totalStakes",
1817
+ outputs: [
1818
+ {
1819
+ internalType: "uint256",
1820
+ name: "",
1821
+ type: "uint256",
1822
+ },
1823
+ ],
1824
+ stateMutability: "view",
1825
+ type: "function",
1826
+ },
1827
+ {
1828
+ inputs: [
1829
+ {
1830
+ internalType: "address",
1831
+ name: "",
1832
+ type: "address",
1833
+ },
1834
+ ],
1835
+ name: "totalStakesSnapshot",
1836
+ outputs: [
1837
+ {
1838
+ internalType: "uint256",
1839
+ name: "",
1840
+ type: "uint256",
1841
+ },
1842
+ ],
1843
+ stateMutability: "view",
1844
+ type: "function",
1845
+ },
1846
+ {
1847
+ inputs: [
1848
+ {
1849
+ internalType: "address",
1850
+ name: "newOwner",
1851
+ type: "address",
1852
+ },
1853
+ ],
1854
+ name: "transferOwnership",
1855
+ outputs: [],
1856
+ stateMutability: "nonpayable",
1857
+ type: "function",
1858
+ },
1859
+ {
1860
+ inputs: [],
1861
+ name: "treasuryAddress",
1862
+ outputs: [
1863
+ {
1864
+ internalType: "address",
1865
+ name: "",
1866
+ type: "address",
1867
+ },
1868
+ ],
1869
+ stateMutability: "view",
1870
+ type: "function",
1871
+ },
1872
+ {
1873
+ inputs: [
1874
+ {
1875
+ internalType: "address",
1876
+ name: "_asset",
1877
+ type: "address",
1878
+ },
1879
+ {
1880
+ internalType: "uint256",
1881
+ name: "_assetDrawn",
1882
+ type: "uint256",
1883
+ },
1884
+ {
1885
+ internalType: "uint256",
1886
+ name: "_price",
1887
+ type: "uint256",
1888
+ },
1889
+ {
1890
+ internalType: "uint256",
1891
+ name: "_totalDebtTokenSupply",
1892
+ type: "uint256",
1893
+ },
1894
+ ],
1895
+ name: "updateBaseRateFromRedemption",
1896
+ outputs: [
1897
+ {
1898
+ internalType: "uint256",
1899
+ name: "",
1900
+ type: "uint256",
1901
+ },
1902
+ ],
1903
+ stateMutability: "nonpayable",
1904
+ type: "function",
1905
+ },
1906
+ {
1907
+ inputs: [
1908
+ {
1909
+ internalType: "address",
1910
+ name: "_asset",
1911
+ type: "address",
1912
+ },
1913
+ {
1914
+ internalType: "address",
1915
+ name: "_borrower",
1916
+ type: "address",
1917
+ },
1918
+ ],
1919
+ name: "updateStakeAndTotalStakes",
1920
+ outputs: [
1921
+ {
1922
+ internalType: "uint256",
1923
+ name: "",
1924
+ type: "uint256",
1925
+ },
1926
+ ],
1927
+ stateMutability: "nonpayable",
1928
+ type: "function",
1929
+ },
1930
+ {
1931
+ inputs: [
1932
+ {
1933
+ internalType: "address",
1934
+ name: "_asset",
1935
+ type: "address",
1936
+ },
1937
+ {
1938
+ internalType: "uint256",
1939
+ name: "_collRemainder",
1940
+ type: "uint256",
1941
+ },
1942
+ ],
1943
+ name: "updateSystemSnapshots_excludeCollRemainder",
1944
+ outputs: [],
1945
+ stateMutability: "nonpayable",
1946
+ type: "function",
1947
+ },
1948
+ {
1949
+ inputs: [
1950
+ {
1951
+ internalType: "address",
1952
+ name: "_asset",
1953
+ type: "address",
1954
+ },
1955
+ {
1956
+ internalType: "address",
1957
+ name: "_borrower",
1958
+ type: "address",
1959
+ },
1960
+ ],
1961
+ name: "updateVesselRewardSnapshots",
1962
+ outputs: [],
1963
+ stateMutability: "nonpayable",
1964
+ type: "function",
1965
+ },
1966
+ {
1967
+ inputs: [],
1968
+ name: "vedgeStaking",
1969
+ outputs: [
1970
+ {
1971
+ internalType: "address",
1972
+ name: "",
1973
+ type: "address",
1974
+ },
1975
+ ],
1976
+ stateMutability: "view",
1977
+ type: "function",
1978
+ },
1979
+ {
1980
+ inputs: [],
1981
+ name: "vesselManager",
1982
+ outputs: [
1983
+ {
1984
+ internalType: "address",
1985
+ name: "",
1986
+ type: "address",
1987
+ },
1988
+ ],
1989
+ stateMutability: "view",
1990
+ type: "function",
1991
+ },
1992
+ {
1993
+ inputs: [],
1994
+ name: "vesselManagerOperations",
1995
+ outputs: [
1996
+ {
1997
+ internalType: "address",
1998
+ name: "",
1999
+ type: "address",
2000
+ },
2001
+ ],
2002
+ stateMutability: "view",
2003
+ type: "function",
2004
+ },
2005
+ ];
2006
+ export class VesselManager__factory {
2007
+ static abi = _abi;
2008
+ static createInterface() {
2009
+ return new utils.Interface(_abi);
2010
+ }
2011
+ static connect(address, signerOrProvider) {
2012
+ return new Contract(address, _abi, signerOrProvider);
2013
+ }
2014
+ }
2015
+ //# sourceMappingURL=VesselManager__factory.js.map