-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage.txt
More file actions
1370 lines (1321 loc) · 61.3 KB
/
coverage.txt
File metadata and controls
1370 lines (1321 loc) · 61.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Compiling 38 files with Solc 0.8.30
Solc 0.8.30 finished in 2.11s
Compiler run successful!
Analysing contracts...
Running tests...
Ran 21 tests for test/unit/DSCEngineTest.t.sol:DSCEngineTest
[PASS] testBurnDSC_PartialBurnReducesDebt() (gas: 252478)
[PASS] testBurnDSC_RevertsIfZero() (gas: 8976)
[PASS] testBurnDSC_RevertsIfZero_AlsoCoversModifier() (gas: 9043)
[PASS] testCanDepositCollateralAndGetAccountInfo() (gas: 127240)
[PASS] testDepositCollateralAndMintDSC() (gas: 213092)
[PASS] testDepositCollateralEmitsEventAndUpdatesMapping() (gas: 87438)
[PASS] testDepositCollateralRevertsIfTokenNotAllowed() (gas: 45273)
[PASS] testDepositCollateralRevertsIfZeroAmount() (gas: 43341)
[PASS] testDepositCollateralWithNonZeroAmount() (gas: 106312)
[PASS] testGetHealthFactor_DefaultZero() (gas: 5795)
[PASS] testGetTokenAmountFromUsd() (gas: 25313)
[PASS] testGetUsdValue() (gas: 25313)
[PASS] testLiquidate_RevertsIfHealthFactorOk() (gas: 367042)
[PASS] testLiquidate_SucceedsAndGivesBonus() (gas: 494656)
[PASS] testMintDSC_RevertsIfBreaksHealthFactor() (gas: 153033)
[PASS] testMintDSC_RevertsIfZero() (gas: 8977)
[PASS] testMintDSC_SucceedsAndUpdatesState() (gas: 218504)
[PASS] testRedeemCollateralForDSC() (gas: 278573)
[PASS] testRedeemCollateral_RevertsIfBreaksHealthFactor() (gas: 232068)
[PASS] testRedeemCollateral_SucceedsWhenHealthy() (gas: 230382)
[PASS] testRevertsIfTokenAndPriceFeedAddressesAreNotSameLength() (gas: 164640)
Suite result: ok. 21 passed; 0 failed; 0 skipped; finished in 5.43ms (21.26ms CPU time)
Ran 1 test suite in 7.04ms (5.43ms CPU time): 21 tests passed, 0 failed, 0 skipped (21 total tests)
Uncovered for script/DeployDSC.s.sol:
Uncovered for script/HelperConfig.s.sol:
- Branch (branch: 0, path: 0) (location: source ID 33, lines 27..30, bytes 932..1000, hits: 0)
- Line (location: source ID 33, lines 28..29, bytes 946..989, hits: 0)
- Statement (location: source ID 33, lines 28..29, bytes 946..989, hits: 0)
- Line (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- Function "getSepoliaEthConfig" (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- Line (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- Statement (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 33, lines 45..48, bytes 1678..1729, hits: 0)
- Line (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
- Statement (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
Uncovered for src/DSCEngine.sol:
- Branch (branch: 0, path: 0) (location: source ID 34, lines 92..95, bytes 3824..3886, hits: 0)
- Line (location: source ID 34, lines 93..94, bytes 3838..3875, hits: 0)
- Statement (location: source ID 34, lines 93..94, bytes 3838..3875, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 34, lines 155..158, bytes 6495..6554, hits: 0)
- Line (location: source ID 34, lines 156..157, bytes 6509..6543, hits: 0)
- Statement (location: source ID 34, lines 156..157, bytes 6509..6543, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 34, lines 192..195, bytes 8090..8145, hits: 0)
- Line (location: source ID 34, lines 193..194, bytes 8104..8134, hits: 0)
- Statement (location: source ID 34, lines 193..194, bytes 8104..8134, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 34, lines 238..241, bytes 10356..10415, hits: 0)
- Line (location: source ID 34, lines 239..240, bytes 10370..10404, hits: 0)
- Statement (location: source ID 34, lines 239..240, bytes 10370..10404, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 34, lines 249..252, bytes 10803..10862, hits: 0)
- Line (location: source ID 34, lines 250..251, bytes 10817..10851, hits: 0)
- Statement (location: source ID 34, lines 250..251, bytes 10817..10851, hits: 0)
- Line (location: source ID 34, lines 290..298, bytes 12483..12898, hits: 0)
- Function "getAccountCollateralValue" (location: source ID 34, lines 290..298, bytes 12483..12898, hits: 0)
- Line (location: source ID 34, lines 296..297, bytes 12859..12891, hits: 0)
- Statement (location: source ID 34, lines 296..297, bytes 12859..12891, hits: 0)
Uncovered for src/DecentralizedStableCoin.sol:
- Branch (branch: 0, path: 0) (location: source ID 35, lines 50..53, bytes 1451..1528, hits: 0)
- Line (location: source ID 35, lines 51..52, bytes 1465..1517, hits: 0)
- Statement (location: source ID 35, lines 51..52, bytes 1465..1517, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 35, lines 53..56, bytes 1560..1643, hits: 0)
- Line (location: source ID 35, lines 54..55, bytes 1574..1632, hits: 0)
- Statement (location: source ID 35, lines 54..55, bytes 1574..1632, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 35, lines 60..63, bytes 1795..1873, hits: 0)
- Line (location: source ID 35, lines 61..62, bytes 1809..1862, hits: 0)
- Statement (location: source ID 35, lines 61..62, bytes 1809..1862, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 35, lines 63..66, bytes 1900..1977, hits: 0)
- Line (location: source ID 35, lines 64..65, bytes 1914..1966, hits: 0)
- Statement (location: source ID 35, lines 64..65, bytes 1914..1966, hits: 0)
Uncovered for test/mocks/MockV3Aggregator.sol:
- Line (location: source ID 36, lines 38..46, bytes 1116..1468, hits: 0)
- Function "updateRoundData" (location: source ID 36, lines 38..46, bytes 1116..1468, hits: 0)
- Line (location: source ID 36, lines 39..40, bytes 1231..1253, hits: 0)
- Statement (location: source ID 36, lines 39..40, bytes 1231..1253, hits: 0)
- Line (location: source ID 36, lines 40..41, bytes 1263..1285, hits: 0)
- Statement (location: source ID 36, lines 40..41, bytes 1263..1285, hits: 0)
- Line (location: source ID 36, lines 41..42, bytes 1295..1323, hits: 0)
- Statement (location: source ID 36, lines 41..42, bytes 1295..1323, hits: 0)
- Line (location: source ID 36, lines 42..43, bytes 1333..1365, hits: 0)
- Statement (location: source ID 36, lines 42..43, bytes 1333..1365, hits: 0)
- Line (location: source ID 36, lines 43..44, bytes 1375..1413, hits: 0)
- Statement (location: source ID 36, lines 43..44, bytes 1375..1413, hits: 0)
- Line (location: source ID 36, lines 44..45, bytes 1423..1461, hits: 0)
- Statement (location: source ID 36, lines 44..45, bytes 1423..1461, hits: 0)
- Line (location: source ID 36, lines 47..54, bytes 1474..1770, hits: 0)
- Function "getRoundData" (location: source ID 36, lines 47..54, bytes 1474..1770, hits: 0)
- Line (location: source ID 36, lines 52..53, bytes 1667..1763, hits: 0)
- Statement (location: source ID 36, lines 52..53, bytes 1667..1763, hits: 0)
- Line (location: source ID 36, lines 69..72, bytes 2167..2285, hits: 0)
- Function "description" (location: source ID 36, lines 69..72, bytes 2167..2285, hits: 0)
- Line (location: source ID 36, lines 70..71, bytes 2238..2278, hits: 0)
- Statement (location: source ID 36, lines 70..71, bytes 2238..2278, hits: 0)
Anchors for Contract "DecentralizedStableCoin" (solc 0.8.30, source ID 35):
- IC 551 -> Item 274
- Creation code
- Refers to item: Line (location: source ID 35, lines 48..58, bytes 1317..1678, hits: 3)
- IC 551 -> Item 275
- Creation code
- Refers to item: Function "burn" (location: source ID 35, lines 48..58, bytes 1317..1678, hits: 3)
- IC 1388 -> Item 276
- Creation code
- Refers to item: Line (location: source ID 35, lines 49..50, bytes 1384..1423, hits: 3)
- IC 1388 -> Item 277
- Creation code
- Refers to item: Statement (location: source ID 35, lines 49..50, bytes 1384..1423, hits: 3)
- IC 1389 -> Item 278
- Creation code
- Refers to item: Statement (location: source ID 35, lines 49..50, bytes 1402..1423, hits: 3)
- IC 1400 -> Item 279
- Creation code
- Refers to item: Line (location: source ID 35, lines 50..51, bytes 1437..1449, hits: 3)
- IC 1400 -> Item 280
- Creation code
- Refers to item: Statement (location: source ID 35, lines 50..51, bytes 1437..1449, hits: 3)
- IC 1407 -> Item 281
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 35, lines 50..53, bytes 1451..1528, hits: 0)
- IC 1407 -> Item 282
- Creation code
- Refers to item: Line (location: source ID 35, lines 51..52, bytes 1465..1517, hits: 0)
- IC 1407 -> Item 283
- Creation code
- Refers to item: Statement (location: source ID 35, lines 51..52, bytes 1465..1517, hits: 0)
- IC 1457 -> Item 284
- Creation code
- Refers to item: Line (location: source ID 35, lines 53..54, bytes 1541..1558, hits: 3)
- IC 1457 -> Item 285
- Creation code
- Refers to item: Statement (location: source ID 35, lines 53..54, bytes 1541..1558, hits: 3)
- IC 1465 -> Item 286
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 35, lines 53..56, bytes 1560..1643, hits: 0)
- IC 1465 -> Item 287
- Creation code
- Refers to item: Line (location: source ID 35, lines 54..55, bytes 1574..1632, hits: 0)
- IC 1465 -> Item 288
- Creation code
- Refers to item: Statement (location: source ID 35, lines 54..55, bytes 1574..1632, hits: 0)
- IC 1515 -> Item 289
- Creation code
- Refers to item: Line (location: source ID 35, lines 56..57, bytes 1652..1671, hits: 3)
- IC 1515 -> Item 290
- Creation code
- Refers to item: Statement (location: source ID 35, lines 56..57, bytes 1652..1671, hits: 3)
- IC 503 -> Item 291
- Creation code
- Refers to item: Line (location: source ID 35, lines 59..69, bytes 1684..2033, hits: 10)
- IC 503 -> Item 292
- Creation code
- Refers to item: Function "mint" (location: source ID 35, lines 59..69, bytes 1684..2033, hits: 10)
- IC 1202 -> Item 293
- Creation code
- Refers to item: Line (location: source ID 35, lines 60..61, bytes 1776..1793, hits: 10)
- IC 1202 -> Item 294
- Creation code
- Refers to item: Statement (location: source ID 35, lines 60..61, bytes 1776..1793, hits: 10)
- IC 1253 -> Item 295
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 35, lines 60..63, bytes 1795..1873, hits: 0)
- IC 1253 -> Item 296
- Creation code
- Refers to item: Line (location: source ID 35, lines 61..62, bytes 1809..1862, hits: 0)
- IC 1253 -> Item 297
- Creation code
- Refers to item: Statement (location: source ID 35, lines 61..62, bytes 1809..1862, hits: 0)
- IC 1303 -> Item 298
- Creation code
- Refers to item: Line (location: source ID 35, lines 63..64, bytes 1886..1898, hits: 10)
- IC 1303 -> Item 299
- Creation code
- Refers to item: Statement (location: source ID 35, lines 63..64, bytes 1886..1898, hits: 10)
- IC 1310 -> Item 300
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 35, lines 63..66, bytes 1900..1977, hits: 0)
- IC 1310 -> Item 301
- Creation code
- Refers to item: Line (location: source ID 35, lines 64..65, bytes 1914..1966, hits: 0)
- IC 1310 -> Item 302
- Creation code
- Refers to item: Statement (location: source ID 35, lines 64..65, bytes 1914..1966, hits: 0)
- IC 1360 -> Item 303
- Creation code
- Refers to item: Line (location: source ID 35, lines 66..67, bytes 1986..2005, hits: 10)
- IC 1360 -> Item 304
- Creation code
- Refers to item: Statement (location: source ID 35, lines 66..67, bytes 1986..2005, hits: 10)
- IC 1370 -> Item 305
- Creation code
- Refers to item: Line (location: source ID 35, lines 67..68, bytes 2015..2026, hits: 10)
- IC 1370 -> Item 306
- Creation code
- Refers to item: Statement (location: source ID 35, lines 67..68, bytes 2015..2026, hits: 10)
Anchors for Contract "DSCEngine" (solc 0.8.30, source ID 34):
- IC 5 -> Item 80
- Runtime code
- Refers to item: Line (location: source ID 34, lines 108..118, bytes 4260..4783, hits: 22)
- IC 5 -> Item 81
- Runtime code
- Refers to item: Function "constructor" (location: source ID 34, lines 108..118, bytes 4260..4783, hits: 22)
- IC 57 -> Item 82
- Runtime code
- Refers to item: Line (location: source ID 34, lines 109..110, bytes 4376..4426, hits: 22)
- IC 57 -> Item 83
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 109..110, bytes 4376..4426, hits: 22)
- IC 66 -> Item 84
- Runtime code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 34, lines 109..112, bytes 4428..4527, hits: 1)
- IC 66 -> Item 85
- Runtime code
- Refers to item: Line (location: source ID 34, lines 110..111, bytes 4442..4516, hits: 1)
- IC 66 -> Item 86
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 110..111, bytes 4442..4516, hits: 1)
- IC 116 -> Item 87
- Runtime code
- Refers to item: Line (location: source ID 34, lines 112..113, bytes 4541..4554, hits: 21)
- IC 116 -> Item 88
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 112..113, bytes 4541..4554, hits: 21)
- IC 121 -> Item 89
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 112..113, bytes 4556..4581, hits: 63)
- IC 427 -> Item 90
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 112..113, bytes 4583..4586, hits: 42)
- IC 130 -> Item 91
- Runtime code
- Refers to item: Line (location: source ID 34, lines 113..114, bytes 4602..4657, hits: 42)
- IC 130 -> Item 92
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 113..114, bytes 4602..4657, hits: 42)
- IC 305 -> Item 93
- Runtime code
- Refers to item: Line (location: source ID 34, lines 114..115, bytes 4671..4713, hits: 42)
- IC 305 -> Item 94
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 114..115, bytes 4671..4713, hits: 42)
- IC 441 -> Item 95
- Runtime code
- Refers to item: Line (location: source ID 34, lines 116..117, bytes 4733..4776, hits: 21)
- IC 441 -> Item 96
- Runtime code
- Refers to item: Statement (location: source ID 34, lines 116..117, bytes 4733..4776, hits: 21)
- IC 726 -> Item 66
- Creation code
- Refers to item: Line (location: source ID 34, lines 91..97, bytes 3759..3903, hits: 2)
- IC 726 -> Item 67
- Creation code
- Refers to item: Function "moreThanZero" (location: source ID 34, lines 91..97, bytes 3759..3903, hits: 2)
- IC 726 -> Item 68
- Creation code
- Refers to item: Line (location: source ID 34, lines 92..93, bytes 3811..3822, hits: 2)
- IC 726 -> Item 69
- Creation code
- Refers to item: Statement (location: source ID 34, lines 92..93, bytes 3811..3822, hits: 2)
- IC 733 -> Item 70
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 34, lines 92..95, bytes 3824..3886, hits: 0)
- IC 733 -> Item 71
- Creation code
- Refers to item: Line (location: source ID 34, lines 93..94, bytes 3838..3875, hits: 0)
- IC 733 -> Item 72
- Creation code
- Refers to item: Statement (location: source ID 34, lines 93..94, bytes 3838..3875, hits: 0)
- IC 1657 -> Item 73
- Creation code
- Refers to item: Line (location: source ID 34, lines 98..104, bytes 3909..4074, hits: 15)
- IC 1657 -> Item 74
- Creation code
- Refers to item: Function "isAllowedToken" (location: source ID 34, lines 98..104, bytes 3909..4074, hits: 15)
- IC 1657 -> Item 75
- Creation code
- Refers to item: Line (location: source ID 34, lines 99..100, bytes 3962..3995, hits: 15)
- IC 1657 -> Item 76
- Creation code
- Refers to item: Statement (location: source ID 34, lines 99..100, bytes 3962..3995, hits: 15)
- IC 1800 -> Item 77
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 34, lines 99..102, bytes 3997..4057, hits: 1)
- IC 1800 -> Item 78
- Creation code
- Refers to item: Line (location: source ID 34, lines 100..101, bytes 4011..4046, hits: 1)
- IC 1800 -> Item 79
- Creation code
- Refers to item: Statement (location: source ID 34, lines 100..101, bytes 4011..4046, hits: 1)
- IC 237 -> Item 97
- Creation code
- Refers to item: Line (location: source ID 34, lines 131..139, bytes 5370..5639, hits: 1)
- IC 237 -> Item 98
- Creation code
- Refers to item: Function "depositCollateralAndMintDSC" (location: source ID 34, lines 131..139, bytes 5370..5639, hits: 1)
- IC 701 -> Item 99
- Creation code
- Refers to item: Line (location: source ID 34, lines 136..137, bytes 5539..5598, hits: 1)
- IC 701 -> Item 100
- Creation code
- Refers to item: Statement (location: source ID 34, lines 136..137, bytes 5539..5598, hits: 1)
- IC 711 -> Item 101
- Creation code
- Refers to item: Line (location: source ID 34, lines 137..138, bytes 5608..5632, hits: 1)
- IC 711 -> Item 102
- Creation code
- Refers to item: Statement (location: source ID 34, lines 137..138, bytes 5608..5632, hits: 1)
- IC 494 -> Item 103
- Creation code
- Refers to item: Line (location: source ID 34, lines 146..159, bytes 5972..6560, hits: 15)
- IC 494 -> Item 104
- Creation code
- Refers to item: Function "depositCollateral" (location: source ID 34, lines 146..159, bytes 5972..6560, hits: 15)
- IC 1858 -> Item 105
- Creation code
- Refers to item: Line (location: source ID 34, lines 152..153, bytes 6193..6270, hits: 14)
- IC 1858 -> Item 106
- Creation code
- Refers to item: Statement (location: source ID 34, lines 152..153, bytes 6193..6270, hits: 14)
- IC 2000 -> Item 107
- Creation code
- Refers to item: Line (location: source ID 34, lines 153..154, bytes 6280..6358, hits: 14)
- IC 2000 -> Item 108
- Creation code
- Refers to item: Statement (location: source ID 34, lines 153..154, bytes 6280..6358, hits: 14)
- IC 2101 -> Item 109
- Creation code
- Refers to item: Line (location: source ID 34, lines 154..155, bytes 6368..6471, hits: 14)
- IC 2101 -> Item 110
- Creation code
- Refers to item: Statement (location: source ID 34, lines 154..155, bytes 6368..6471, hits: 14)
- IC 2102 -> Item 111
- Creation code
- Refers to item: Statement (location: source ID 34, lines 154..155, bytes 6383..6471, hits: 14)
- IC 2229 -> Item 112
- Creation code
- Refers to item: Line (location: source ID 34, lines 155..156, bytes 6485..6493, hits: 14)
- IC 2229 -> Item 113
- Creation code
- Refers to item: Statement (location: source ID 34, lines 155..156, bytes 6485..6493, hits: 14)
- IC 2234 -> Item 114
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 34, lines 155..158, bytes 6495..6554, hits: 0)
- IC 2234 -> Item 115
- Creation code
- Refers to item: Line (location: source ID 34, lines 156..157, bytes 6509..6543, hits: 0)
- IC 2234 -> Item 116
- Creation code
- Refers to item: Statement (location: source ID 34, lines 156..157, bytes 6509..6543, hits: 0)
- IC 209 -> Item 117
- Creation code
- Refers to item: Line (location: source ID 34, lines 166..172, bytes 6928..7173, hits: 1)
- IC 209 -> Item 118
- Creation code
- Refers to item: Function "redeemCollateralForDSC" (location: source ID 34, lines 166..172, bytes 6928..7173, hits: 1)
- IC 677 -> Item 119
- Creation code
- Refers to item: Line (location: source ID 34, lines 169..170, bytes 7074..7098, hits: 1)
- IC 677 -> Item 120
- Creation code
- Refers to item: Statement (location: source ID 34, lines 169..170, bytes 7074..7098, hits: 1)
- IC 686 -> Item 121
- Creation code
- Refers to item: Line (location: source ID 34, lines 170..171, bytes 7108..7166, hits: 1)
- IC 686 -> Item 122
- Creation code
- Refers to item: Statement (location: source ID 34, lines 170..171, bytes 7108..7166, hits: 1)
- IC 466 -> Item 123
- Creation code
- Refers to item: Line (location: source ID 34, lines 173..181, bytes 7179..7493, hits: 2)
- IC 466 -> Item 124
- Creation code
- Refers to item: Function "redeemCollateral" (location: source ID 34, lines 173..181, bytes 7179..7493, hits: 2)
- IC 1564 -> Item 125
- Creation code
- Refers to item: Line (location: source ID 34, lines 178..179, bytes 7352..7435, hits: 3)
- IC 1564 -> Item 126
- Creation code
- Refers to item: Statement (location: source ID 34, lines 178..179, bytes 7352..7435, hits: 3)
- IC 1576 -> Item 127
- Creation code
- Refers to item: Line (location: source ID 34, lines 179..180, bytes 7445..7486, hits: 3)
- IC 1576 -> Item 128
- Creation code
- Refers to item: Statement (location: source ID 34, lines 179..180, bytes 7445..7486, hits: 3)
- IC 648 -> Item 129
- Creation code
- Refers to item: Line (location: source ID 34, lines 188..196, bytes 7809..8151, hits: 11)
- IC 648 -> Item 130
- Creation code
- Refers to item: Function "mintDSC" (location: source ID 34, lines 188..196, bytes 7809..8151, hits: 11)
- IC 2909 -> Item 131
- Creation code
- Refers to item: Line (location: source ID 34, lines 189..190, bytes 7911..7953, hits: 11)
- IC 2909 -> Item 132
- Creation code
- Refers to item: Statement (location: source ID 34, lines 189..190, bytes 7911..7953, hits: 11)
- IC 2992 -> Item 133
- Creation code
- Refers to item: Line (location: source ID 34, lines 190..191, bytes 7963..8004, hits: 11)
- IC 2992 -> Item 134
- Creation code
- Refers to item: Statement (location: source ID 34, lines 190..191, bytes 7963..8004, hits: 11)
- IC 3001 -> Item 135
- Creation code
- Refers to item: Line (location: source ID 34, lines 191..192, bytes 8014..8067, hits: 10)
- IC 3001 -> Item 136
- Creation code
- Refers to item: Statement (location: source ID 34, lines 191..192, bytes 8014..8067, hits: 10)
- IC 3002 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 34, lines 191..192, bytes 8028..8067, hits: 10)
- IC 3159 -> Item 138
- Creation code
- Refers to item: Line (location: source ID 34, lines 192..193, bytes 8081..8088, hits: 10)
- IC 3159 -> Item 139
- Creation code
- Refers to item: Statement (location: source ID 34, lines 192..193, bytes 8081..8088, hits: 10)
- IC 3164 -> Item 140
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 34, lines 192..195, bytes 8090..8145, hits: 0)
- IC 3164 -> Item 141
- Creation code
- Refers to item: Line (location: source ID 34, lines 193..194, bytes 8104..8134, hits: 0)
- IC 3164 -> Item 142
- Creation code
- Refers to item: Statement (location: source ID 34, lines 193..194, bytes 8104..8134, hits: 0)
- IC 341 -> Item 143
- Creation code
- Refers to item: Line (location: source ID 34, lines 197..201, bytes 8157..8326, hits: 3)
- IC 341 -> Item 144
- Creation code
- Refers to item: Function "burnDSC" (location: source ID 34, lines 197..201, bytes 8157..8326, hits: 3)
- IC 1200 -> Item 145
- Creation code
- Refers to item: Line (location: source ID 34, lines 198..199, bytes 8228..8268, hits: 2)
- IC 1200 -> Item 146
- Creation code
- Refers to item: Statement (location: source ID 34, lines 198..199, bytes 8228..8268, hits: 2)
- IC 1211 -> Item 147
- Creation code
- Refers to item: Line (location: source ID 34, lines 199..200, bytes 8278..8319, hits: 2)
- IC 1211 -> Item 148
- Creation code
- Refers to item: Statement (location: source ID 34, lines 199..200, bytes 8278..8319, hits: 2)
- IC 265 -> Item 149
- Creation code
- Refers to item: Line (location: source ID 34, lines 210..226, bytes 8864..9687, hits: 2)
- IC 265 -> Item 150
- Creation code
- Refers to item: Function "liquidate" (location: source ID 34, lines 210..226, bytes 8864..9687, hits: 2)
- IC 791 -> Item 151
- Creation code
- Refers to item: Line (location: source ID 34, lines 215..216, bytes 9024..9078, hits: 2)
- IC 791 -> Item 152
- Creation code
- Refers to item: Statement (location: source ID 34, lines 215..216, bytes 9024..9078, hits: 2)
- IC 792 -> Item 153
- Creation code
- Refers to item: Statement (location: source ID 34, lines 215..216, bytes 9059..9078, hits: 2)
- IC 812 -> Item 154
- Creation code
- Refers to item: Line (location: source ID 34, lines 216..217, bytes 9092..9137, hits: 2)
- IC 812 -> Item 155
- Creation code
- Refers to item: Statement (location: source ID 34, lines 216..217, bytes 9092..9137, hits: 2)
- IC 818 -> Item 156
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 34, lines 216..219, bytes 9139..9200, hits: 1)
- IC 818 -> Item 157
- Creation code
- Refers to item: Line (location: source ID 34, lines 217..218, bytes 9153..9189, hits: 1)
- IC 818 -> Item 158
- Creation code
- Refers to item: Statement (location: source ID 34, lines 217..218, bytes 9153..9189, hits: 1)
- IC 868 -> Item 159
- Creation code
- Refers to item: Line (location: source ID 34, lines 219..220, bytes 9209..9303, hits: 1)
- IC 868 -> Item 160
- Creation code
- Refers to item: Statement (location: source ID 34, lines 219..220, bytes 9209..9303, hits: 1)
- IC 869 -> Item 161
- Creation code
- Refers to item: Statement (location: source ID 34, lines 219..220, bytes 9246..9303, hits: 1)
- IC 869 -> Item 162
- Creation code
- Refers to item: Statement (location: source ID 34, lines 219..220, bytes 9274..9303, hits: 1)
- IC 919 -> Item 163
- Creation code
- Refers to item: Line (location: source ID 34, lines 220..221, bytes 9313..9410, hits: 1)
- IC 919 -> Item 164
- Creation code
- Refers to item: Statement (location: source ID 34, lines 220..221, bytes 9313..9410, hits: 1)
- IC 924 -> Item 165
- Creation code
- Refers to item: Statement (location: source ID 34, lines 220..221, bytes 9339..9410, hits: 1)
- IC 947 -> Item 166
- Creation code
- Refers to item: Line (location: source ID 34, lines 221..222, bytes 9420..9498, hits: 1)
- IC 947 -> Item 167
- Creation code
- Refers to item: Statement (location: source ID 34, lines 221..222, bytes 9420..9498, hits: 1)
- IC 948 -> Item 168
- Creation code
- Refers to item: Statement (location: source ID 34, lines 221..222, bytes 9454..9498, hits: 1)
- IC 962 -> Item 169
- Creation code
- Refers to item: Line (location: source ID 34, lines 222..223, bytes 9508..9580, hits: 1)
- IC 962 -> Item 170
- Creation code
- Refers to item: Statement (location: source ID 34, lines 222..223, bytes 9508..9580, hits: 1)
- IC 974 -> Item 171
- Creation code
- Refers to item: Line (location: source ID 34, lines 223..224, bytes 9590..9629, hits: 1)
- IC 974 -> Item 172
- Creation code
- Refers to item: Statement (location: source ID 34, lines 223..224, bytes 9590..9629, hits: 1)
- IC 985 -> Item 173
- Creation code
- Refers to item: Line (location: source ID 34, lines 224..225, bytes 9639..9680, hits: 1)
- IC 985 -> Item 174
- Creation code
- Refers to item: Statement (location: source ID 34, lines 224..225, bytes 9639..9680, hits: 1)
- IC 522 -> Item 175
- Creation code
- Refers to item: Line (location: source ID 34, lines 227..228, bytes 9693..9754, hits: 1)
- IC 522 -> Item 176
- Creation code
- Refers to item: Function "getHealthFactor" (location: source ID 34, lines 227..228, bytes 9693..9754, hits: 1)
- IC 3388 -> Item 177
- Creation code
- Refers to item: Line (location: source ID 34, lines 232..242, bytes 9949..10421, hits: 4)
- IC 3388 -> Item 178
- Creation code
- Refers to item: Function "_redeemCollateral" (location: source ID 34, lines 232..242, bytes 9949..10421, hits: 4)
- IC 3389 -> Item 179
- Creation code
- Refers to item: Line (location: source ID 34, lines 235..236, bytes 10090..10161, hits: 4)
- IC 3389 -> Item 180
- Creation code
- Refers to item: Statement (location: source ID 34, lines 235..236, bytes 10090..10161, hits: 4)
- IC 3531 -> Item 181
- Creation code
- Refers to item: Line (location: source ID 34, lines 236..237, bytes 10171..10246, hits: 4)
- IC 3531 -> Item 182
- Creation code
- Refers to item: Statement (location: source ID 34, lines 236..237, bytes 10171..10246, hits: 4)
- IC 3655 -> Item 183
- Creation code
- Refers to item: Line (location: source ID 34, lines 237..238, bytes 10256..10332, hits: 4)
- IC 3655 -> Item 184
- Creation code
- Refers to item: Statement (location: source ID 34, lines 237..238, bytes 10256..10332, hits: 4)
- IC 3656 -> Item 185
- Creation code
- Refers to item: Statement (location: source ID 34, lines 237..238, bytes 10271..10332, hits: 4)
- IC 3781 -> Item 186
- Creation code
- Refers to item: Line (location: source ID 34, lines 238..239, bytes 10346..10354, hits: 4)
- IC 3781 -> Item 187
- Creation code
- Refers to item: Statement (location: source ID 34, lines 238..239, bytes 10346..10354, hits: 4)
- IC 3786 -> Item 188
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 34, lines 238..241, bytes 10356..10415, hits: 0)
- IC 3786 -> Item 189
- Creation code
- Refers to item: Line (location: source ID 34, lines 239..240, bytes 10370..10404, hits: 0)
- IC 3786 -> Item 190
- Creation code
- Refers to item: Statement (location: source ID 34, lines 239..240, bytes 10370..10404, hits: 0)
- IC 3842 -> Item 191
- Creation code
- Refers to item: Line (location: source ID 34, lines 246..254, bytes 10555..10905, hits: 3)
- IC 3842 -> Item 192
- Creation code
- Refers to item: Function "_burnDsc" (location: source ID 34, lines 246..254, bytes 10555..10905, hits: 3)
- IC 3843 -> Item 193
- Creation code
- Refers to item: Line (location: source ID 34, lines 247..248, bytes 10653..10695, hits: 3)
- IC 3843 -> Item 194
- Creation code
- Refers to item: Statement (location: source ID 34, lines 247..248, bytes 10653..10695, hits: 3)
- IC 3926 -> Item 195
- Creation code
- Refers to item: Line (location: source ID 34, lines 248..249, bytes 10705..10779, hits: 3)
- IC 3926 -> Item 196
- Creation code
- Refers to item: Statement (location: source ID 34, lines 248..249, bytes 10705..10779, hits: 3)
- IC 3927 -> Item 197
- Creation code
- Refers to item: Statement (location: source ID 34, lines 248..249, bytes 10720..10779, hits: 3)
- IC 4086 -> Item 198
- Creation code
- Refers to item: Line (location: source ID 34, lines 249..250, bytes 10793..10801, hits: 3)
- IC 4086 -> Item 199
- Creation code
- Refers to item: Statement (location: source ID 34, lines 249..250, bytes 10793..10801, hits: 3)
- IC 4091 -> Item 200
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 34, lines 249..252, bytes 10803..10862, hits: 0)
- IC 4091 -> Item 201
- Creation code
- Refers to item: Line (location: source ID 34, lines 250..251, bytes 10817..10851, hits: 0)
- IC 4091 -> Item 202
- Creation code
- Refers to item: Statement (location: source ID 34, lines 250..251, bytes 10817..10851, hits: 0)
- IC 4141 -> Item 203
- Creation code
- Refers to item: Line (location: source ID 34, lines 252..253, bytes 10871..10898, hits: 3)
- IC 4141 -> Item 204
- Creation code
- Refers to item: Statement (location: source ID 34, lines 252..253, bytes 10871..10898, hits: 3)
- IC 4382 -> Item 205
- Creation code
- Refers to item: Line (location: source ID 34, lines 255..263, bytes 10911..11176, hits: 24)
- IC 4382 -> Item 206
- Creation code
- Refers to item: Function "_getAccountInformation" (location: source ID 34, lines 255..263, bytes 10911..11176, hits: 24)
- IC 4385 -> Item 207
- Creation code
- Refers to item: Line (location: source ID 34, lines 260..261, bytes 11071..11105, hits: 24)
- IC 4385 -> Item 208
- Creation code
- Refers to item: Statement (location: source ID 34, lines 260..261, bytes 11071..11105, hits: 24)
- IC 4449 -> Item 209
- Creation code
- Refers to item: Line (location: source ID 34, lines 261..262, bytes 11115..11169, hits: 24)
- IC 4449 -> Item 210
- Creation code
- Refers to item: Statement (location: source ID 34, lines 261..262, bytes 11115..11169, hits: 24)
- IC 3303 -> Item 211
- Creation code
- Refers to item: Line (location: source ID 34, lines 268..273, bytes 11301..11670, hits: 19)
- IC 3303 -> Item 212
- Creation code
- Refers to item: Function "_healthFactor" (location: source ID 34, lines 268..273, bytes 11301..11670, hits: 19)
- IC 3305 -> Item 213
- Creation code
- Refers to item: Line (location: source ID 34, lines 269..270, bytes 11379..11464, hits: 19)
- IC 3305 -> Item 214
- Creation code
- Refers to item: Statement (location: source ID 34, lines 269..270, bytes 11379..11464, hits: 19)
- IC 3307 -> Item 215
- Creation code
- Refers to item: Statement (location: source ID 34, lines 269..270, bytes 11436..11464, hits: 19)
- IC 3320 -> Item 216
- Creation code
- Refers to item: Line (location: source ID 34, lines 270..271, bytes 11474..11585, hits: 19)
- IC 3320 -> Item 217
- Creation code
- Refers to item: Statement (location: source ID 34, lines 270..271, bytes 11474..11585, hits: 19)
- IC 3325 -> Item 218
- Creation code
- Refers to item: Statement (location: source ID 34, lines 270..271, bytes 11515..11585, hits: 19)
- IC 3348 -> Item 219
- Creation code
- Refers to item: Line (location: source ID 34, lines 271..272, bytes 11595..11663, hits: 19)
- IC 3348 -> Item 220
- Creation code
- Refers to item: Statement (location: source ID 34, lines 271..272, bytes 11595..11663, hits: 19)
- IC 3348 -> Item 221
- Creation code
- Refers to item: Statement (location: source ID 34, lines 271..272, bytes 11602..11663, hits: 19)
- IC 4280 -> Item 222
- Creation code
- Refers to item: Line (location: source ID 34, lines 274..280, bytes 11676..11936, hits: 17)
- IC 4280 -> Item 223
- Creation code
- Refers to item: Function "_revertIfHealthFactorIsBroken" (location: source ID 34, lines 274..280, bytes 11676..11936, hits: 17)
- IC 4281 -> Item 224
- Creation code
- Refers to item: Line (location: source ID 34, lines 275..276, bytes 11753..11799, hits: 17)
- IC 4281 -> Item 225
- Creation code
- Refers to item: Statement (location: source ID 34, lines 275..276, bytes 11753..11799, hits: 17)
- IC 4282 -> Item 226
- Creation code
- Refers to item: Statement (location: source ID 34, lines 275..276, bytes 11780..11799, hits: 17)
- IC 4302 -> Item 227
- Creation code
- Refers to item: Line (location: source ID 34, lines 276..277, bytes 11813..11849, hits: 17)
- IC 4302 -> Item 228
- Creation code
- Refers to item: Statement (location: source ID 34, lines 276..277, bytes 11813..11849, hits: 17)
- IC 4309 -> Item 229
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 34, lines 276..279, bytes 11851..11930, hits: 2)
- IC 4309 -> Item 230
- Creation code
- Refers to item: Line (location: source ID 34, lines 277..278, bytes 11865..11919, hits: 2)
- IC 4309 -> Item 231
- Creation code
- Refers to item: Statement (location: source ID 34, lines 277..278, bytes 11865..11919, hits: 2)
- IC 552 -> Item 232
- Creation code
- Refers to item: Line (location: source ID 34, lines 284..289, bytes 12133..12477, hits: 1)
- IC 552 -> Item 233
- Creation code
- Refers to item: Function "getTokenAmountFromUsd" (location: source ID 34, lines 284..289, bytes 12133..12477, hits: 1)
- IC 2304 -> Item 234
- Creation code
- Refers to item: Line (location: source ID 34, lines 285..286, bytes 12243..12319, hits: 1)
- IC 2304 -> Item 235
- Creation code
- Refers to item: Statement (location: source ID 34, lines 285..286, bytes 12243..12319, hits: 1)
- IC 2400 -> Item 236
- Creation code
- Refers to item: Line (location: source ID 34, lines 286..287, bytes 12329..12378, hits: 1)
- IC 2400 -> Item 237
- Creation code
- Refers to item: Statement (location: source ID 34, lines 286..287, bytes 12329..12378, hits: 1)
- IC 2401 -> Item 238
- Creation code
- Refers to item: Statement (location: source ID 34, lines 286..287, bytes 12351..12378, hits: 1)
- IC 2522 -> Item 239
- Creation code
- Refers to item: Line (location: source ID 34, lines 287..288, bytes 12388..12470, hits: 1)
- IC 2522 -> Item 240
- Creation code
- Refers to item: Statement (location: source ID 34, lines 287..288, bytes 12388..12470, hits: 1)
- IC 2522 -> Item 241
- Creation code
- Refers to item: Statement (location: source ID 34, lines 287..288, bytes 12395..12470, hits: 1)
- IC 418 -> Item 242
- Creation code
- Refers to item: Line (location: source ID 34, lines 290..298, bytes 12483..12898, hits: 0)
- IC 418 -> Item 243
- Creation code
- Refers to item: Function "getAccountCollateralValue" (location: source ID 34, lines 290..298, bytes 12483..12898, hits: 0)
- IC 1249 -> Item 244
- Creation code
- Refers to item: Line (location: source ID 34, lines 291..292, bytes 12603..12616, hits: 24)
- IC 1249 -> Item 245
- Creation code
- Refers to item: Statement (location: source ID 34, lines 291..292, bytes 12603..12616, hits: 24)
- IC 1254 -> Item 246
- Creation code
- Refers to item: Statement (location: source ID 34, lines 291..292, bytes 12618..12647, hits: 72)
- IC 1479 -> Item 247
- Creation code
- Refers to item: Statement (location: source ID 34, lines 291..292, bytes 12649..12652, hits: 48)
- IC 1267 -> Item 248
- Creation code
- Refers to item: Line (location: source ID 34, lines 292..293, bytes 12668..12705, hits: 48)
- IC 1267 -> Item 249
- Creation code
- Refers to item: Statement (location: source ID 34, lines 292..293, bytes 12668..12705, hits: 48)
- IC 1330 -> Item 250
- Creation code
- Refers to item: Line (location: source ID 34, lines 293..294, bytes 12719..12770, hits: 48)
- IC 1330 -> Item 251
- Creation code
- Refers to item: Statement (location: source ID 34, lines 293..294, bytes 12719..12770, hits: 48)
- IC 1454 -> Item 252
- Creation code
- Refers to item: Line (location: source ID 34, lines 294..295, bytes 12784..12839, hits: 48)
- IC 1454 -> Item 253
- Creation code
- Refers to item: Statement (location: source ID 34, lines 294..295, bytes 12784..12839, hits: 48)
- IC 600 -> Item 256
- Creation code
- Refers to item: Line (location: source ID 34, lines 299..304, bytes 12904..13220, hits: 1)
- IC 600 -> Item 257
- Creation code
- Refers to item: Function "getUsdValue" (location: source ID 34, lines 299..304, bytes 12904..13220, hits: 1)
- IC 2574 -> Item 258
- Creation code
- Refers to item: Line (location: source ID 34, lines 300..301, bytes 12996..13072, hits: 50)
- IC 2574 -> Item 259
- Creation code
- Refers to item: Statement (location: source ID 34, lines 300..301, bytes 12996..13072, hits: 50)
- IC 2670 -> Item 260
- Creation code
- Refers to item: Line (location: source ID 34, lines 301..302, bytes 13082..13131, hits: 50)
- IC 2670 -> Item 261
- Creation code
- Refers to item: Statement (location: source ID 34, lines 301..302, bytes 13082..13131, hits: 50)
- IC 2671 -> Item 262
- Creation code
- Refers to item: Statement (location: source ID 34, lines 301..302, bytes 13104..13131, hits: 50)
- IC 2795 -> Item 263
- Creation code
- Refers to item: Line (location: source ID 34, lines 302..303, bytes 13141..13213, hits: 50)
- IC 2795 -> Item 264
- Creation code
- Refers to item: Statement (location: source ID 34, lines 302..303, bytes 13141..13213, hits: 50)
- IC 2795 -> Item 265
- Creation code
- Refers to item: Statement (location: source ID 34, lines 302..303, bytes 13148..13213, hits: 50)
- IC 293 -> Item 266
- Creation code
- Refers to item: Line (location: source ID 34, lines 305..308, bytes 13226..13381, hits: 6)
- IC 293 -> Item 267
- Creation code
- Refers to item: Function "getCollateralBalanceOfUser" (location: source ID 34, lines 305..308, bytes 13226..13381, hits: 6)
- IC 1013 -> Item 268
- Creation code
- Refers to item: Line (location: source ID 34, lines 306..307, bytes 13333..13374, hits: 6)
- IC 1013 -> Item 269
- Creation code
- Refers to item: Statement (location: source ID 34, lines 306..307, bytes 13333..13374, hits: 6)
- IC 369 -> Item 270
- Creation code
- Refers to item: Line (location: source ID 34, lines 309..316, bytes 13387..13623, hits: 5)
- IC 369 -> Item 271
- Creation code
- Refers to item: Function "getAccountInformation" (location: source ID 34, lines 309..316, bytes 13387..13623, hits: 5)
- IC 1226 -> Item 272
- Creation code
- Refers to item: Line (location: source ID 34, lines 314..315, bytes 13547..13616, hits: 5)
- IC 1226 -> Item 273
- Creation code
- Refers to item: Statement (location: source ID 34, lines 314..315, bytes 13547..13616, hits: 5)
Anchors for Contract "VmSafe" (solc 0.8.30, source ID 19):
Anchors for Contract "TestBase" (solc 0.8.30, source ID 4):
Anchors for Contract "stdStorageSafe" (solc 0.8.30, source ID 14):
Anchors for Contract "StdInvariant" (solc 0.8.30, source ID 11):
Anchors for Contract "HelperConfig" (solc 0.8.30, source ID 33):
- IC 94 -> Item 27
- Runtime code
- Refers to item: Line (location: source ID 33, lines 26..33, bytes 877..1086, hits: 21)
- IC 94 -> Item 28
- Runtime code
- Refers to item: Function "constructor" (location: source ID 33, lines 26..33, bytes 877..1086, hits: 21)
- IC 106 -> Item 29
- Runtime code
- Refers to item: Line (location: source ID 33, lines 27..28, bytes 905..930, hits: 21)
- IC 106 -> Item 30
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 27..28, bytes 905..930, hits: 21)
- IC 116 -> Item 31
- Runtime code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 33, lines 27..30, bytes 932..1000, hits: 0)
- IC 427 -> Item 32
- Runtime code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 33, lines 27..31, bytes 901..1049, hits: 21)
- IC 116 -> Item 33
- Runtime code
- Refers to item: Line (location: source ID 33, lines 28..29, bytes 946..989, hits: 0)
- IC 116 -> Item 34
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 28..29, bytes 946..989, hits: 0)
- IC 428 -> Item 35
- Runtime code
- Refers to item: Line (location: source ID 33, lines 30..31, bytes 1020..1069, hits: 21)
- IC 428 -> Item 36
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 30..31, bytes 1020..1069, hits: 21)
- IC 740 -> Item 37
- Runtime code
- Refers to item: Line (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- IC 740 -> Item 38
- Runtime code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- IC 749 -> Item 39
- Runtime code
- Refers to item: Line (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- IC 749 -> Item 40
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- IC 962 -> Item 41
- Runtime code
- Refers to item: Line (location: source ID 33, lines 44..64, bytes 1537..2473, hits: 21)
- IC 962 -> Item 42
- Runtime code
- Refers to item: Function "getOrCreateAnvilEthConfig" (location: source ID 33, lines 44..64, bytes 1537..2473, hits: 21)
- IC 971 -> Item 43
- Runtime code
- Refers to item: Line (location: source ID 33, lines 45..46, bytes 1626..1676, hits: 21)
- IC 971 -> Item 44
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 45..46, bytes 1626..1676, hits: 21)
- IC 1057 -> Item 45
- Runtime code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 33, lines 45..48, bytes 1678..1729, hits: 0)
- IC 1057 -> Item 46
- Runtime code
- Refers to item: Line (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
- IC 1057 -> Item 47
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
- IC 1447 -> Item 48
- Runtime code
- Refers to item: Line (location: source ID 33, lines 49..50, bytes 1739..1758, hits: 21)
- IC 1447 -> Item 49
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 49..50, bytes 1739..1758, hits: 21)
- IC 1537 -> Item 50
- Runtime code
- Refers to item: Line (location: source ID 33, lines 50..51, bytes 1768..1849, hits: 21)
- IC 1537 -> Item 51
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 50..51, bytes 1768..1849, hits: 21)
- IC 1546 -> Item 52
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 50..51, bytes 1804..1849, hits: 21)
- IC 1597 -> Item 53
- Runtime code
- Refers to item: Line (location: source ID 33, lines 51..52, bytes 1859..1938, hits: 21)
- IC 1597 -> Item 54
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 51..52, bytes 1859..1938, hits: 21)
- IC 1598 -> Item 55
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 51..52, bytes 1880..1938, hits: 21)
- IC 1660 -> Item 56
- Runtime code
- Refers to item: Line (location: source ID 33, lines 53..54, bytes 1949..2018, hits: 21)
- IC 1660 -> Item 57
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 53..54, bytes 1949..2018, hits: 21)
- IC 1661 -> Item 58
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 53..54, bytes 1985..2018, hits: 21)
- IC 1721 -> Item 59
- Runtime code
- Refers to item: Line (location: source ID 33, lines 54..55, bytes 2028..2108, hits: 21)
- IC 1721 -> Item 60
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 54..55, bytes 2028..2108, hits: 21)
- IC 1722 -> Item 61
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 54..55, bytes 2049..2108, hits: 21)
- IC 1801 -> Item 62
- Runtime code
- Refers to item: Line (location: source ID 33, lines 55..56, bytes 2118..2136, hits: 21)
- IC 1801 -> Item 63
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 55..56, bytes 2118..2136, hits: 21)
- IC 1891 -> Item 64
- Runtime code
- Refers to item: Line (location: source ID 33, lines 56..63, bytes 2146..2466, hits: 21)
- IC 1891 -> Item 65
- Runtime code
- Refers to item: Statement (location: source ID 33, lines 56..63, bytes 2146..2466, hits: 21)
- IC 322 -> Item 37
- Creation code
- Refers to item: Line (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- IC 322 -> Item 38
- Creation code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 33, lines 34..43, bytes 1092..1531, hits: 0)
- IC 1646 -> Item 39
- Creation code
- Refers to item: Line (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- IC 1646 -> Item 40
- Creation code
- Refers to item: Statement (location: source ID 33, lines 35..42, bytes 1176..1524, hits: 0)
- IC 138 -> Item 41
- Creation code
- Refers to item: Line (location: source ID 33, lines 44..64, bytes 1537..2473, hits: 21)
- IC 138 -> Item 42
- Creation code
- Refers to item: Function "getOrCreateAnvilEthConfig" (location: source ID 33, lines 44..64, bytes 1537..2473, hits: 21)
- IC 391 -> Item 43
- Creation code
- Refers to item: Line (location: source ID 33, lines 45..46, bytes 1626..1676, hits: 21)
- IC 391 -> Item 44
- Creation code
- Refers to item: Statement (location: source ID 33, lines 45..46, bytes 1626..1676, hits: 21)
- IC 477 -> Item 45
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 33, lines 45..48, bytes 1678..1729, hits: 0)
- IC 477 -> Item 46
- Creation code
- Refers to item: Line (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
- IC 477 -> Item 47
- Creation code
- Refers to item: Statement (location: source ID 33, lines 46..47, bytes 1692..1718, hits: 0)
- IC 867 -> Item 48
- Creation code
- Refers to item: Line (location: source ID 33, lines 49..50, bytes 1739..1758, hits: 21)
- IC 867 -> Item 49
- Creation code
- Refers to item: Statement (location: source ID 33, lines 49..50, bytes 1739..1758, hits: 21)
- IC 957 -> Item 50
- Creation code
- Refers to item: Line (location: source ID 33, lines 50..51, bytes 1768..1849, hits: 21)
- IC 957 -> Item 51
- Creation code
- Refers to item: Statement (location: source ID 33, lines 50..51, bytes 1768..1849, hits: 21)
- IC 966 -> Item 52
- Creation code
- Refers to item: Statement (location: source ID 33, lines 50..51, bytes 1804..1849, hits: 21)
- IC 1017 -> Item 53