web3-wizzard-lib 1.6.15__py3-none-any.whl → 1.7.1__py3-none-any.whl

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