-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoverage.txt
1189 lines (1124 loc) · 51.7 KB
/
coverage.txt
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 47 files with Solc 0.8.19
Solc 0.8.19 finished in 8.12s
Compiler run successful!
Analysing contracts...
Running tests...
Ran 7 tests for test/unit/RaffleTest.t.sol:RaffleTest
[PASS] testCheckUpkeepReturnsFalseIfItHasNoBalance() (gas: 21066)
[PASS] testCheckUpkeepReturnsFalseIfRaffleIsNotOpen() (gas: 225669)
[PASS] testDontAllowPlayersToEnterWhileRaffleIsCalculating() (gas: 230553)
[PASS] testEnteringRaffleEmitsEvent() (gas: 69691)
[PASS] testRaffleInitializesInOpenSztate() (gas: 8133)
[PASS] testRaffleRecordsPlayersWhenTheyEnter() (gas: 69477)
[PASS] testRaffleRevertsWhenYouDontPayEnough() (gas: 11186)
Suite result: ok. 7 passed; 0 failed; 0 skipped; finished in 1.14s (11.92ms CPU time)
Ran 1 test suite in 1.14s (1.14s CPU time): 7 tests passed, 0 failed, 0 skipped (7 total tests)
Uncovered for script/DeployRaffle.s.sol:
- Function "run" (location: source ID 41, line 11, chars 330-385, hits: 0)
- Line (location: source ID 41, line 12, chars 362-378, hits: 0)
- Statement (location: source ID 41, line 12, chars 362-378, hits: 0)
Uncovered for script/HelperConfig.s.sol:
- Function "getConfigByChainId" (location: source ID 42, line 42, chars 1182-1556, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 42, line 43, chars 1332-1387, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 42, line 43, chars 1275-1493, hits: 0)
- Line (location: source ID 42, line 44, chars 1346-1376, hits: 0)
- Statement (location: source ID 42, line 44, chars 1346-1376, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 42, line 45, chars 1393-1520, hits: 0)
- Line (location: source ID 42, line 48, chars 1502-1539, hits: 0)
- Statement (location: source ID 42, line 48, chars 1502-1539, hits: 0)
- Function "getOrCreateAnvilEthConfig" (location: source ID 42, line 69, chars 2283-3248, hits: 0)
Uncovered for script/Interactions.s.sol:
- Function "createSubscriptionUsingConfig" (location: source ID 43, line 12, chars 449-764, hits: 0)
- Line (location: source ID 43, line 13, chars 534-580, hits: 0)
- Statement (location: source ID 43, line 13, chars 534-580, hits: 0)
- Statement (location: source ID 43, line 13, chars 562-580, hits: 0)
- Line (location: source ID 43, line 14, chars 590-654, hits: 0)
- Statement (location: source ID 43, line 14, chars 590-654, hits: 0)
- Line (location: source ID 43, line 15, chars 664-717, hits: 0)
- Statement (location: source ID 43, line 15, chars 664-717, hits: 0)
- Statement (location: source ID 43, line 15, chars 683-717, hits: 0)
- Line (location: source ID 43, line 16, chars 727-757, hits: 0)
- Statement (location: source ID 43, line 16, chars 727-757, hits: 0)
- Function "run" (location: source ID 43, line 30, chars 1315-1385, hits: 0)
- Line (location: source ID 43, line 31, chars 1347-1378, hits: 0)
- Statement (location: source ID 43, line 31, chars 1347-1378, hits: 0)
- Function "fundSubscriptionUsingConfig" (location: source ID 43, line 38, chars 1512-1898, hits: 0)
- Line (location: source ID 43, line 39, chars 1569-1615, hits: 0)
- Statement (location: source ID 43, line 39, chars 1569-1615, hits: 0)
- Statement (location: source ID 43, line 39, chars 1597-1615, hits: 0)
- Line (location: source ID 43, line 40, chars 1625-1689, hits: 0)
- Statement (location: source ID 43, line 40, chars 1625-1689, hits: 0)
- Line (location: source ID 43, line 41, chars 1699-1763, hits: 0)
- Statement (location: source ID 43, line 41, chars 1699-1763, hits: 0)
- Line (location: source ID 43, line 42, chars 1773-1822, hits: 0)
- Statement (location: source ID 43, line 42, chars 1773-1822, hits: 0)
- Line (location: source ID 43, line 43, chars 1832-1891, hits: 0)
- Statement (location: source ID 43, line 43, chars 1832-1891, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 43, line 51, chars 2186-2558, hits: 0)
- Line (location: source ID 43, line 57, chars 2425-2444, hits: 0)
- Statement (location: source ID 43, line 57, chars 2425-2444, hits: 0)
- Line (location: source ID 43, line 58, chars 2458-2551, hits: 0)
- Statement (location: source ID 43, line 58, chars 2458-2551, hits: 0)
- Line (location: source ID 43, line 59, chars 2565-2583, hits: 0)
- Statement (location: source ID 43, line 59, chars 2565-2583, hits: 0)
- Function "run" (location: source ID 43, line 63, chars 2606-2674, hits: 0)
- Line (location: source ID 43, line 64, chars 2638-2667, hits: 0)
- Statement (location: source ID 43, line 64, chars 2638-2667, hits: 0)
- Function "addConsumerUsingConfig" (location: source ID 43, line 69, chars 2715-3053, hits: 0)
- Line (location: source ID 43, line 70, chars 2794-2840, hits: 0)
- Statement (location: source ID 43, line 70, chars 2794-2840, hits: 0)
- Statement (location: source ID 43, line 70, chars 2822-2840, hits: 0)
- Line (location: source ID 43, line 71, chars 2850-2905, hits: 0)
- Statement (location: source ID 43, line 71, chars 2850-2905, hits: 0)
- Line (location: source ID 43, line 72, chars 2915-2979, hits: 0)
- Statement (location: source ID 43, line 72, chars 2915-2979, hits: 0)
- Line (location: source ID 43, line 73, chars 2989-3045, hits: 0)
- Statement (location: source ID 43, line 73, chars 2989-3045, hits: 0)
- Function "run" (location: source ID 43, line 88, chars 3495-3683, hits: 0)
- Line (location: source ID 43, line 89, chars 3528-3622, hits: 0)
- Statement (location: source ID 43, line 89, chars 3528-3622, hits: 0)
- Statement (location: source ID 43, line 89, chars 3559-3622, hits: 0)
- Line (location: source ID 43, line 90, chars 3631-3675, hits: 0)
- Statement (location: source ID 43, line 90, chars 3631-3675, hits: 0)
Uncovered for src/Raffle.sol:
- Branch (branch: 2, path: 0) (location: source ID 44, line 139, chars 4448-4566, hits: 0)
- Line (location: source ID 44, line 140, chars 4459-4555, hits: 0)
- Statement (location: source ID 44, line 140, chars 4459-4555, hits: 0)
- Function "fulfillRandomWords" (location: source ID 44, line 161, chars 5293-6080, hits: 0)
- Line (location: source ID 44, line 170, chars 5553-5610, hits: 0)
- Statement (location: source ID 44, line 170, chars 5553-5610, hits: 0)
- Statement (location: source ID 44, line 170, chars 5577-5610, hits: 0)
- Line (location: source ID 44, line 171, chars 5617-5672, hits: 0)
- Statement (location: source ID 44, line 171, chars 5617-5672, hits: 0)
- Line (location: source ID 44, line 172, chars 5679-5708, hits: 0)
- Statement (location: source ID 44, line 172, chars 5679-5708, hits: 0)
- Line (location: source ID 44, line 174, chars 5716-5748, hits: 0)
- Statement (location: source ID 44, line 174, chars 5716-5748, hits: 0)
- Line (location: source ID 44, line 175, chars 5755-5791, hits: 0)
- Statement (location: source ID 44, line 175, chars 5755-5791, hits: 0)
- Line (location: source ID 44, line 176, chars 5798-5831, hits: 0)
- Statement (location: source ID 44, line 176, chars 5798-5831, hits: 0)
- Line (location: source ID 44, line 177, chars 5838-5871, hits: 0)
- Statement (location: source ID 44, line 177, chars 5838-5871, hits: 0)
- Line (location: source ID 44, line 180, chars 5935-6004, hits: 0)
- Statement (location: source ID 44, line 180, chars 5935-6004, hits: 0)
- Statement (location: source ID 44, line 180, chars 5953-6004, hits: 0)
- Line (location: source ID 44, line 181, chars 6014-6022, hits: 0)
- Statement (location: source ID 44, line 181, chars 6014-6022, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 44, line 181, chars 6024-6074, hits: 0)
- Line (location: source ID 44, line 182, chars 6035-6066, hits: 0)
- Statement (location: source ID 44, line 182, chars 6035-6066, hits: 0)
- Function "getEntranceFee" (location: source ID 44, line 188, chars 6125-6220, hits: 0)
- Line (location: source ID 44, line 189, chars 6193-6213, hits: 0)
- Statement (location: source ID 44, line 189, chars 6193-6213, hits: 0)
Uncovered for test/mocks/LinkToken.sol:
- Function "mint" (location: source ID 45, line 19, chars 529-610, hits: 0)
- Line (location: source ID 45, line 20, chars 587-603, hits: 0)
- Statement (location: source ID 45, line 20, chars 587-603, hits: 0)
- Function "transferAndCall" (location: source ID 45, line 31, chars 995-1376, hits: 0)
- Line (location: source ID 45, line 32, chars 1117-1144, hits: 0)
- Statement (location: source ID 45, line 32, chars 1117-1144, hits: 0)
- Line (location: source ID 45, line 34, chars 1212-1257, hits: 0)
- Statement (location: source ID 45, line 34, chars 1212-1257, hits: 0)
- Line (location: source ID 45, line 35, chars 1271-1286, hits: 0)
- Statement (location: source ID 45, line 35, chars 1271-1286, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 45, line 35, chars 1288-1349, hits: 0)
- Line (location: source ID 45, line 36, chars 1302-1338, hits: 0)
- Statement (location: source ID 45, line 36, chars 1302-1338, hits: 0)
- Line (location: source ID 45, line 38, chars 1358-1369, hits: 0)
- Statement (location: source ID 45, line 38, chars 1358-1369, hits: 0)
- Function "contractFallback" (location: source ID 45, line 43, chars 1398-1604, hits: 0)
- Line (location: source ID 45, line 44, chars 1491-1536, hits: 0)
- Statement (location: source ID 45, line 44, chars 1491-1536, hits: 0)
- Line (location: source ID 45, line 45, chars 1546-1597, hits: 0)
- Statement (location: source ID 45, line 45, chars 1546-1597, hits: 0)
- Function "isContract" (location: source ID 45, line 48, chars 1610-1809, hits: 0)
- Line (location: source ID 45, line 49, chars 1691-1705, hits: 0)
- Statement (location: source ID 45, line 49, chars 1691-1705, hits: 0)
- Line (location: source ID 45, line 51, chars 1738-1766, hits: 0)
- Statement (location: source ID 45, line 51, chars 1738-1766, hits: 0)
- Line (location: source ID 45, line 53, chars 1785-1802, hits: 0)
- Statement (location: source ID 45, line 53, chars 1785-1802, hits: 0)
- Statement (location: source ID 45, line 53, chars 1792-1802, hits: 0)
Anchors for Contract "Test" (solc 0.8.19, source ID 27):
Anchors for Contract "stdStorage" (solc 0.8.19, source ID 23):
Anchors for Contract "console" (solc 0.8.19, source ID 29):
Anchors for Contract "EnumerableSet" (solc 0.8.19, source ID 6):
Anchors for Contract "StdChains" (solc 0.8.19, source ID 17):
Anchors for Contract "ConfirmedOwner" (solc 0.8.19, source ID 0):
Anchors for Contract "stdMath" (solc 0.8.19, source ID 22):
Anchors for Contract "stdError" (solc 0.8.19, source ID 19):
Anchors for Contract "AddConsumer" (solc 0.8.19, source ID 43):
- IC 119 -> Item 99
- Creation code
- Refers to item: Function "addConsumerUsingConfig" (location: source ID 43, line 69, chars 2715-3053, hits: 0)
- IC 777 -> Item 100
- Creation code
- Refers to item: Line (location: source ID 43, line 70, chars 2794-2840, hits: 0)
- IC 777 -> Item 101
- Creation code
- Refers to item: Statement (location: source ID 43, line 70, chars 2794-2840, hits: 0)
- IC 779 -> Item 102
- Creation code
- Refers to item: Statement (location: source ID 43, line 70, chars 2822-2840, hits: 0)
- IC 825 -> Item 103
- Creation code
- Refers to item: Line (location: source ID 43, line 71, chars 2850-2905, hits: 0)
- IC 825 -> Item 104
- Creation code
- Refers to item: Statement (location: source ID 43, line 71, chars 2850-2905, hits: 0)
- IC 949 -> Item 105
- Creation code
- Refers to item: Line (location: source ID 43, line 72, chars 2915-2979, hits: 0)
- IC 949 -> Item 106
- Creation code
- Refers to item: Statement (location: source ID 43, line 72, chars 2915-2979, hits: 0)
- IC 1073 -> Item 107
- Creation code
- Refers to item: Line (location: source ID 43, line 73, chars 2989-3045, hits: 0)
- IC 1073 -> Item 108
- Creation code
- Refers to item: Statement (location: source ID 43, line 73, chars 2989-3045, hits: 0)
- IC 87 -> Item 109
- Creation code
- Refers to item: Function "addConsumer" (location: source ID 43, line 76, chars 3059-3488, hits: 7)
- IC 198 -> Item 110
- Creation code
- Refers to item: Line (location: source ID 43, line 77, chars 3164-3224, hits: 7)
- IC 198 -> Item 111
- Creation code
- Refers to item: Statement (location: source ID 43, line 77, chars 3164-3224, hits: 7)
- IC 263 -> Item 112
- Creation code
- Refers to item: Line (location: source ID 43, line 78, chars 3234-3282, hits: 7)
- IC 263 -> Item 113
- Creation code
- Refers to item: Statement (location: source ID 43, line 78, chars 3234-3282, hits: 7)
- IC 328 -> Item 114
- Creation code
- Refers to item: Line (location: source ID 43, line 79, chars 3292-3332, hits: 7)
- IC 328 -> Item 115
- Creation code
- Refers to item: Statement (location: source ID 43, line 79, chars 3292-3332, hits: 7)
- IC 429 -> Item 116
- Creation code
- Refers to item: Line (location: source ID 43, line 80, chars 3342-3361, hits: 7)
- IC 429 -> Item 117
- Creation code
- Refers to item: Statement (location: source ID 43, line 80, chars 3342-3361, hits: 7)
- IC 526 -> Item 118
- Creation code
- Refers to item: Line (location: source ID 43, line 81, chars 3371-3448, hits: 7)
- IC 526 -> Item 119
- Creation code
- Refers to item: Statement (location: source ID 43, line 81, chars 3371-3448, hits: 7)
- IC 675 -> Item 120
- Creation code
- Refers to item: Line (location: source ID 43, line 82, chars 3458-3476, hits: 7)
- IC 675 -> Item 121
- Creation code
- Refers to item: Statement (location: source ID 43, line 82, chars 3458-3476, hits: 7)
- IC 151 -> Item 122
- Creation code
- Refers to item: Function "run" (location: source ID 43, line 88, chars 3495-3683, hits: 0)
- IC 1092 -> Item 123
- Creation code
- Refers to item: Line (location: source ID 43, line 89, chars 3528-3622, hits: 0)
- IC 1092 -> Item 124
- Creation code
- Refers to item: Statement (location: source ID 43, line 89, chars 3528-3622, hits: 0)
- IC 1094 -> Item 125
- Creation code
- Refers to item: Statement (location: source ID 43, line 89, chars 3559-3622, hits: 0)
- IC 1161 -> Item 126
- Creation code
- Refers to item: Line (location: source ID 43, line 90, chars 3631-3675, hits: 0)
- IC 1161 -> Item 127
- Creation code
- Refers to item: Statement (location: source ID 43, line 90, chars 3631-3675, hits: 0)
Anchors for Contract "IOwnable" (solc 0.8.19, source ID 4):
Anchors for Contract "VRFV2PlusClient" (solc 0.8.19, source ID 12):
Anchors for Contract "HelperConfig" (solc 0.8.19, source ID 42):
- IC 59 -> Item 165
- Runtime code
- Refers to item: Function "" (location: source ID 42, line 37, chars 1076-1176, hits: 7)
- IC 72 -> Item 166
- Runtime code
- Refers to item: Line (location: source ID 42, line 38, chars 1100-1160, hits: 7)
- IC 72 -> Item 167
- Runtime code
- Refers to item: Statement (location: source ID 42, line 38, chars 1100-1160, hits: 7)
- IC 336 -> Item 188
- Runtime code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 42, line 56, chars 1684-2277, hits: 7)
- IC 345 -> Item 189
- Runtime code
- Refers to item: Line (location: source ID 42, line 57, chars 1767-2269, hits: 7)
- IC 345 -> Item 190
- Runtime code
- Refers to item: Statement (location: source ID 42, line 57, chars 1767-2269, hits: 7)
- IC 235 -> Item 168
- Creation code
- Refers to item: Function "getConfigByChainId" (location: source ID 42, line 42, chars 1182-1556, hits: 0)
- IC 2087 -> Item 169
- Creation code
- Refers to item: Line (location: source ID 42, line 43, chars 1278-1330, hits: 14)
- IC 2087 -> Item 170
- Creation code
- Refers to item: Statement (location: source ID 42, line 43, chars 1278-1330, hits: 14)
- IC 2194 -> Item 171
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 42, line 43, chars 1332-1387, hits: 0)
- IC 2509 -> Item 172
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 42, line 43, chars 1275-1493, hits: 0)
- IC 2194 -> Item 173
- Creation code
- Refers to item: Line (location: source ID 42, line 44, chars 1346-1376, hits: 0)
- IC 2194 -> Item 174
- Creation code
- Refers to item: Statement (location: source ID 42, line 44, chars 1346-1376, hits: 0)
- IC 2485 -> Item 175
- Creation code
- Refers to item: Line (location: source ID 42, line 45, chars 1396-1421, hits: 14)
- IC 2485 -> Item 176
- Creation code
- Refers to item: Statement (location: source ID 42, line 45, chars 1396-1421, hits: 14)
- IC 2492 -> Item 177
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 42, line 45, chars 1423-1482, hits: 14)
- IC 2509 -> Item 178
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 42, line 45, chars 1393-1520, hits: 0)
- IC 2492 -> Item 179
- Creation code
- Refers to item: Line (location: source ID 42, line 46, chars 1434-1468, hits: 14)
- IC 2492 -> Item 180
- Creation code
- Refers to item: Statement (location: source ID 42, line 46, chars 1434-1468, hits: 14)
- IC 2492 -> Item 181
- Creation code
- Refers to item: Statement (location: source ID 42, line 46, chars 1441-1468, hits: 14)
- IC 2510 -> Item 182
- Creation code
- Refers to item: Line (location: source ID 42, line 48, chars 1502-1539, hits: 0)
- IC 2510 -> Item 183
- Creation code
- Refers to item: Statement (location: source ID 42, line 48, chars 1502-1539, hits: 0)
- IC 525 -> Item 184
- Creation code
- Refers to item: Function "getConfig" (location: source ID 42, line 52, chars 1562-1678, hits: 14)
- IC 2881 -> Item 185
- Creation code
- Refers to item: Line (location: source ID 42, line 53, chars 1631-1671, hits: 14)
- IC 2881 -> Item 186
- Creation code
- Refers to item: Statement (location: source ID 42, line 53, chars 1631-1671, hits: 14)
- IC 2881 -> Item 187
- Creation code
- Refers to item: Statement (location: source ID 42, line 53, chars 1638-1671, hits: 14)
- IC 593 -> Item 188
- Creation code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 42, line 56, chars 1684-2277, hits: 7)
- IC 2919 -> Item 189
- Creation code
- Refers to item: Line (location: source ID 42, line 57, chars 1767-2269, hits: 7)
- IC 2919 -> Item 190
- Creation code
- Refers to item: Statement (location: source ID 42, line 57, chars 1767-2269, hits: 7)
- IC 201 -> Item 191
- Creation code
- Refers to item: Function "getOrCreateAnvilEthConfig" (location: source ID 42, line 69, chars 2283-3248, hits: 0)
- IC 672 -> Item 192
- Creation code
- Refers to item: Line (location: source ID 42, line 71, chars 2428-2475, hits: 14)
- IC 672 -> Item 193
- Creation code
- Refers to item: Statement (location: source ID 42, line 71, chars 2428-2475, hits: 14)
- IC 762 -> Item 194
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 42, line 71, chars 2477-2527, hits: 7)
- IC 762 -> Item 195
- Creation code
- Refers to item: Line (location: source ID 42, line 72, chars 2491-2516, hits: 7)
- IC 762 -> Item 196
- Creation code
- Refers to item: Statement (location: source ID 42, line 72, chars 2491-2516, hits: 7)
- IC 1069 -> Item 197
- Creation code
- Refers to item: Line (location: source ID 42, line 76, chars 2570-2589, hits: 7)
- IC 1069 -> Item 198
- Creation code
- Refers to item: Statement (location: source ID 42, line 76, chars 2570-2589, hits: 7)
- IC 1166 -> Item 199
- Creation code
- Refers to item: Line (location: source ID 42, line 77, chars 2600-2730, hits: 7)
- IC 1166 -> Item 200
- Creation code
- Refers to item: Statement (location: source ID 42, line 77, chars 2600-2730, hits: 7)
- IC 1190 -> Item 201
- Creation code
- Refers to item: Statement (location: source ID 42, line 77, chars 2644-2730, hits: 7)
- IC 1250 -> Item 202
- Creation code
- Refers to item: Line (location: source ID 42, line 78, chars 2741-2778, hits: 7)
- IC 1250 -> Item 203
- Creation code
- Refers to item: Statement (location: source ID 42, line 78, chars 2741-2778, hits: 7)
- IC 1252 -> Item 204
- Creation code
- Refers to item: Statement (location: source ID 42, line 78, chars 2763-2778, hits: 7)
- IC 1334 -> Item 205
- Creation code
- Refers to item: Line (location: source ID 42, line 79, chars 2789-2807, hits: 7)
- IC 1334 -> Item 206
- Creation code
- Refers to item: Statement (location: source ID 42, line 79, chars 2789-2807, hits: 7)
- IC 1431 -> Item 207
- Creation code
- Refers to item: Line (location: source ID 42, line 81, chars 2819-3202, hits: 7)
- IC 1431 -> Item 208
- Creation code
- Refers to item: Statement (location: source ID 42, line 81, chars 2819-3202, hits: 7)
- IC 1806 -> Item 209
- Creation code
- Refers to item: Line (location: source ID 42, line 91, chars 3216-3241, hits: 7)
- IC 1806 -> Item 210
- Creation code
- Refers to item: Statement (location: source ID 42, line 91, chars 3216-3241, hits: 7)
Anchors for Contract "ConfirmedOwnerWithProposal" (solc 0.8.19, source ID 1):
Anchors for Contract "CreateSubscription" (solc 0.8.19, source ID 43):
- IC 99 -> Item 31
- Creation code
- Refers to item: Function "createSubscriptionUsingConfig" (location: source ID 43, line 12, chars 449-764, hits: 0)
- IC 241 -> Item 32
- Creation code
- Refers to item: Line (location: source ID 43, line 13, chars 534-580, hits: 0)
- IC 241 -> Item 33
- Creation code
- Refers to item: Statement (location: source ID 43, line 13, chars 534-580, hits: 0)
- IC 243 -> Item 34
- Creation code
- Refers to item: Statement (location: source ID 43, line 13, chars 562-580, hits: 0)
- IC 289 -> Item 35
- Creation code
- Refers to item: Line (location: source ID 43, line 14, chars 590-654, hits: 0)
- IC 289 -> Item 36
- Creation code
- Refers to item: Statement (location: source ID 43, line 14, chars 590-654, hits: 0)
- IC 413 -> Item 37
- Creation code
- Refers to item: Line (location: source ID 43, line 15, chars 664-717, hits: 0)
- IC 413 -> Item 38
- Creation code
- Refers to item: Statement (location: source ID 43, line 15, chars 664-717, hits: 0)
- IC 415 -> Item 39
- Creation code
- Refers to item: Statement (location: source ID 43, line 15, chars 683-717, hits: 0)
- IC 429 -> Item 40
- Creation code
- Refers to item: Line (location: source ID 43, line 16, chars 727-757, hits: 0)
- IC 429 -> Item 41
- Creation code
- Refers to item: Statement (location: source ID 43, line 16, chars 727-757, hits: 0)
- IC 134 -> Item 42
- Creation code
- Refers to item: Function "createSubscription" (location: source ID 43, line 19, chars 794-1309, hits: 7)
- IC 445 -> Item 43
- Creation code
- Refers to item: Line (location: source ID 43, line 20, chars 889-951, hits: 7)
- IC 445 -> Item 44
- Creation code
- Refers to item: Statement (location: source ID 43, line 20, chars 889-951, hits: 7)
- IC 518 -> Item 45
- Creation code
- Refers to item: Line (location: source ID 43, line 21, chars 961-980, hits: 7)
- IC 518 -> Item 46
- Creation code
- Refers to item: Statement (location: source ID 43, line 21, chars 961-980, hits: 7)
- IC 615 -> Item 47
- Creation code
- Refers to item: Line (location: source ID 43, line 22, chars 990-1074, hits: 7)
- IC 615 -> Item 48
- Creation code
- Refers to item: Statement (location: source ID 43, line 22, chars 990-1074, hits: 7)
- IC 617 -> Item 49
- Creation code
- Refers to item: Statement (location: source ID 43, line 22, chars 1015-1074, hits: 7)
- IC 771 -> Item 50
- Creation code
- Refers to item: Line (location: source ID 43, line 23, chars 1084-1102, hits: 7)
- IC 771 -> Item 51
- Creation code
- Refers to item: Statement (location: source ID 43, line 23, chars 1084-1102, hits: 7)
- IC 868 -> Item 52
- Creation code
- Refers to item: Line (location: source ID 43, line 25, chars 1113-1168, hits: 7)
- IC 868 -> Item 53
- Creation code
- Refers to item: Statement (location: source ID 43, line 25, chars 1113-1168, hits: 7)
- IC 933 -> Item 54
- Creation code
- Refers to item: Line (location: source ID 43, line 26, chars 1178-1253, hits: 7)
- IC 933 -> Item 55
- Creation code
- Refers to item: Statement (location: source ID 43, line 26, chars 1178-1253, hits: 7)
- IC 969 -> Item 56
- Creation code
- Refers to item: Line (location: source ID 43, line 27, chars 1263-1302, hits: 7)
- IC 969 -> Item 57
- Creation code
- Refers to item: Statement (location: source ID 43, line 27, chars 1263-1302, hits: 7)
- IC 87 -> Item 58
- Creation code
- Refers to item: Function "run" (location: source ID 43, line 30, chars 1315-1385, hits: 0)
- IC 224 -> Item 59
- Creation code
- Refers to item: Line (location: source ID 43, line 31, chars 1347-1378, hits: 0)
- IC 224 -> Item 60
- Creation code
- Refers to item: Statement (location: source ID 43, line 31, chars 1347-1378, hits: 0)
Anchors for Contract "StdCheats" (solc 0.8.19, source ID 18):
Anchors for Contract "Script" (solc 0.8.19, source ID 15):
Anchors for Contract "RaffleTest" (solc 0.8.19, source ID 46):
Anchors for Contract "StdAssertions" (solc 0.8.19, source ID 16):
Anchors for Contract "ERC677Receiver" (solc 0.8.19, source ID 45):
Anchors for Contract "IERC721Enumerable" (solc 0.8.19, source ID 33):
Anchors for Contract "IVRFCoordinatorV2Plus" (solc 0.8.19, source ID 9):
Anchors for Contract "ScriptBase" (solc 0.8.19, source ID 14):
Anchors for Contract "StdUtils" (solc 0.8.19, source ID 26):
Anchors for Contract "StringUtils" (solc 0.8.19, source ID 39):
Anchors for Contract "IERC20" (solc 0.8.19, source ID 32):
Anchors for Contract "ERC20" (solc 0.8.19, source ID 40):
Anchors for Contract "VmSafe" (solc 0.8.19, source ID 28):
Anchors for Contract "DevOpsTools" (solc 0.8.19, source ID 38):
Anchors for Contract "IERC721" (solc 0.8.19, source ID 33):
Anchors for Contract "CommonBase" (solc 0.8.19, source ID 14):
Anchors for Contract "FundSubscription" (solc 0.8.19, source ID 43):
- IC 243 -> Item 61
- Creation code
- Refers to item: Function "fundSubscriptionUsingConfig" (location: source ID 43, line 38, chars 1512-1898, hits: 0)
- IC 1529 -> Item 62
- Creation code
- Refers to item: Line (location: source ID 43, line 39, chars 1569-1615, hits: 0)
- IC 1529 -> Item 63
- Creation code
- Refers to item: Statement (location: source ID 43, line 39, chars 1569-1615, hits: 0)
- IC 1531 -> Item 64
- Creation code
- Refers to item: Statement (location: source ID 43, line 39, chars 1597-1615, hits: 0)
- IC 1577 -> Item 65
- Creation code
- Refers to item: Line (location: source ID 43, line 40, chars 1625-1689, hits: 0)
- IC 1577 -> Item 66
- Creation code
- Refers to item: Statement (location: source ID 43, line 40, chars 1625-1689, hits: 0)
- IC 1701 -> Item 67
- Creation code
- Refers to item: Line (location: source ID 43, line 41, chars 1699-1763, hits: 0)
- IC 1701 -> Item 68
- Creation code
- Refers to item: Statement (location: source ID 43, line 41, chars 1699-1763, hits: 0)
- IC 1825 -> Item 69
- Creation code
- Refers to item: Line (location: source ID 43, line 42, chars 1773-1822, hits: 0)
- IC 1825 -> Item 70
- Creation code
- Refers to item: Statement (location: source ID 43, line 42, chars 1773-1822, hits: 0)
- IC 1949 -> Item 71
- Creation code
- Refers to item: Line (location: source ID 43, line 43, chars 1832-1891, hits: 0)
- IC 1949 -> Item 72
- Creation code
- Refers to item: Statement (location: source ID 43, line 43, chars 1832-1891, hits: 0)
- IC 211 -> Item 73
- Creation code
- Refers to item: Function "fundSubscription" (location: source ID 43, line 46, chars 1904-2600, hits: 7)
- IC 484 -> Item 74
- Creation code
- Refers to item: Line (location: source ID 43, line 47, chars 2014-2064, hits: 7)
- IC 484 -> Item 75
- Creation code
- Refers to item: Statement (location: source ID 43, line 47, chars 2014-2064, hits: 7)
- IC 549 -> Item 76
- Creation code
- Refers to item: Line (location: source ID 43, line 48, chars 2074-2125, hits: 7)
- IC 549 -> Item 77
- Creation code
- Refers to item: Statement (location: source ID 43, line 48, chars 2074-2125, hits: 7)
- IC 614 -> Item 78
- Creation code
- Refers to item: Line (location: source ID 43, line 49, chars 2135-2175, hits: 7)
- IC 614 -> Item 79
- Creation code
- Refers to item: Statement (location: source ID 43, line 49, chars 2135-2175, hits: 7)
- IC 682 -> Item 80
- Creation code
- Refers to item: Line (location: source ID 43, line 51, chars 2189-2220, hits: 7)
- IC 682 -> Item 81
- Creation code
- Refers to item: Statement (location: source ID 43, line 51, chars 2189-2220, hits: 7)
- IC 725 -> Item 82
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 43, line 51, chars 2222-2397, hits: 7)
- IC 1350 -> Item 83
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 43, line 51, chars 2186-2558, hits: 0)
- IC 725 -> Item 84
- Creation code
- Refers to item: Line (location: source ID 43, line 52, chars 2236-2255, hits: 7)
- IC 725 -> Item 85
- Creation code
- Refers to item: Statement (location: source ID 43, line 52, chars 2236-2255, hits: 7)
- IC 822 -> Item 86
- Creation code
- Refers to item: Line (location: source ID 43, line 53, chars 2269-2353, hits: 7)
- IC 822 -> Item 87
- Creation code
- Refers to item: Statement (location: source ID 43, line 53, chars 2269-2353, hits: 7)
- IC 979 -> Item 88
- Creation code
- Refers to item: Line (location: source ID 43, line 54, chars 2367-2385, hits: 7)
- IC 979 -> Item 89
- Creation code
- Refers to item: Statement (location: source ID 43, line 54, chars 2367-2385, hits: 7)
- IC 1118 -> Item 90
- Creation code
- Refers to item: Line (location: source ID 43, line 57, chars 2425-2444, hits: 0)
- IC 1118 -> Item 91
- Creation code
- Refers to item: Statement (location: source ID 43, line 57, chars 2425-2444, hits: 0)
- IC 1215 -> Item 92
- Creation code
- Refers to item: Line (location: source ID 43, line 58, chars 2458-2551, hits: 0)
- IC 1215 -> Item 93
- Creation code
- Refers to item: Statement (location: source ID 43, line 58, chars 2458-2551, hits: 0)
- IC 1426 -> Item 94
- Creation code
- Refers to item: Line (location: source ID 43, line 59, chars 2565-2583, hits: 0)
- IC 1426 -> Item 95
- Creation code
- Refers to item: Statement (location: source ID 43, line 59, chars 2565-2583, hits: 0)
- IC 391 -> Item 96
- Creation code
- Refers to item: Function "run" (location: source ID 43, line 63, chars 2606-2674, hits: 0)
- IC 2000 -> Item 97
- Creation code
- Refers to item: Line (location: source ID 43, line 64, chars 2638-2667, hits: 0)
- IC 2000 -> Item 98
- Creation code
- Refers to item: Statement (location: source ID 43, line 64, chars 2638-2667, hits: 0)
Anchors for Contract "stdStorageSafe" (solc 0.8.19, source ID 23):
Anchors for Contract "LinkTokenInterface" (solc 0.8.19, source ID 5):
Anchors for Contract "MockERC721" (solc 0.8.19, source ID 36):
Anchors for Contract "IMulticall3" (solc 0.8.19, source ID 34):
Anchors for Contract "LinkToken" (solc 0.8.19, source ID 45):
- IC 5 -> Item 0
- Runtime code
- Refers to item: Function "" (location: source ID 45, line 15, chars 422-523, hits: 7)
- IC 213 -> Item 1
- Runtime code
- Refers to item: Line (location: source ID 45, line 16, chars 483-516, hits: 7)
- IC 213 -> Item 2
- Runtime code
- Refers to item: Statement (location: source ID 45, line 16, chars 483-516, hits: 7)
- IC 544 -> Item 3
- Creation code
- Refers to item: Function "mint" (location: source ID 45, line 19, chars 529-610, hits: 0)
- IC 2117 -> Item 4
- Creation code
- Refers to item: Line (location: source ID 45, line 20, chars 587-603, hits: 0)
- IC 2117 -> Item 5
- Creation code
- Refers to item: Statement (location: source ID 45, line 20, chars 587-603, hits: 0)
- IC 496 -> Item 6
- Creation code
- Refers to item: Function "transferAndCall" (location: source ID 45, line 31, chars 995-1376, hits: 0)
- IC 1966 -> Item 7
- Creation code
- Refers to item: Line (location: source ID 45, line 32, chars 1117-1144, hits: 0)
- IC 1966 -> Item 8
- Creation code
- Refers to item: Statement (location: source ID 45, line 32, chars 1117-1144, hits: 0)
- IC 1977 -> Item 9
- Creation code
- Refers to item: Line (location: source ID 45, line 34, chars 1212-1257, hits: 0)
- IC 1977 -> Item 10
- Creation code
- Refers to item: Statement (location: source ID 45, line 34, chars 1212-1257, hits: 0)
- IC 2080 -> Item 11
- Creation code
- Refers to item: Line (location: source ID 45, line 35, chars 1271-1286, hits: 0)
- IC 2080 -> Item 12
- Creation code
- Refers to item: Statement (location: source ID 45, line 35, chars 1271-1286, hits: 0)
- IC 2094 -> Item 13
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 45, line 35, chars 1288-1349, hits: 0)
- IC 2094 -> Item 14
- Creation code
- Refers to item: Line (location: source ID 45, line 36, chars 1302-1338, hits: 0)
- IC 2094 -> Item 15
- Creation code
- Refers to item: Statement (location: source ID 45, line 36, chars 1302-1338, hits: 0)
- IC 2106 -> Item 16
- Creation code
- Refers to item: Line (location: source ID 45, line 38, chars 1358-1369, hits: 0)
- IC 2106 -> Item 17
- Creation code
- Refers to item: Statement (location: source ID 45, line 38, chars 1358-1369, hits: 0)
- IC 3559 -> Item 18
- Creation code
- Refers to item: Function "contractFallback" (location: source ID 45, line 43, chars 1398-1604, hits: 0)
- IC 3560 -> Item 19
- Creation code
- Refers to item: Line (location: source ID 45, line 44, chars 1491-1536, hits: 0)
- IC 3560 -> Item 20
- Creation code
- Refers to item: Statement (location: source ID 45, line 44, chars 1491-1536, hits: 0)
- IC 3565 -> Item 21
- Creation code
- Refers to item: Line (location: source ID 45, line 45, chars 1546-1597, hits: 0)
- IC 3565 -> Item 22
- Creation code
- Refers to item: Statement (location: source ID 45, line 45, chars 1546-1597, hits: 0)
- IC 3540 -> Item 23
- Creation code
- Refers to item: Function "isContract" (location: source ID 45, line 48, chars 1610-1809, hits: 0)
- IC 3543 -> Item 24
- Creation code
- Refers to item: Line (location: source ID 45, line 49, chars 1691-1705, hits: 0)
- IC 3543 -> Item 25
- Creation code
- Refers to item: Statement (location: source ID 45, line 49, chars 1691-1705, hits: 0)
- IC 3544 -> Item 26
- Creation code
- Refers to item: Line (location: source ID 45, line 51, chars 1738-1766, hits: 0)
- IC 3544 -> Item 27
- Creation code
- Refers to item: Statement (location: source ID 45, line 51, chars 1738-1766, hits: 0)
- IC 3548 -> Item 28
- Creation code
- Refers to item: Line (location: source ID 45, line 53, chars 1785-1802, hits: 0)
- IC 3548 -> Item 29
- Creation code
- Refers to item: Statement (location: source ID 45, line 53, chars 1785-1802, hits: 0)
- IC 3548 -> Item 30
- Creation code
- Refers to item: Statement (location: source ID 45, line 53, chars 1792-1802, hits: 0)
Anchors for Contract "StdStyle" (solc 0.8.19, source ID 24):
Anchors for Contract "StdCheatsSafe" (solc 0.8.19, source ID 18):
Anchors for Contract "DeployRaffle" (solc 0.8.19, source ID 41):
- IC 110 -> Item 128
- Creation code
- Refers to item: Function "run" (location: source ID 41, line 11, chars 330-385, hits: 0)
- IC 1307 -> Item 129
- Creation code
- Refers to item: Line (location: source ID 41, line 12, chars 362-378, hits: 0)
- IC 1307 -> Item 130
- Creation code
- Refers to item: Statement (location: source ID 41, line 12, chars 362-378, hits: 0)
- IC 75 -> Item 131
- Creation code
- Refers to item: Function "deployContract" (location: source ID 41, line 15, chars 391-1677, hits: 7)
- IC 160 -> Item 132
- Creation code
- Refers to item: Line (location: source ID 41, line 16, chars 463-509, hits: 7)
- IC 160 -> Item 133
- Creation code
- Refers to item: Statement (location: source ID 41, line 16, chars 463-509, hits: 7)
- IC 162 -> Item 134
- Creation code
- Refers to item: Statement (location: source ID 41, line 16, chars 491-509, hits: 7)
- IC 208 -> Item 135
- Creation code
- Refers to item: Line (location: source ID 41, line 17, chars 519-586, hits: 7)
- IC 208 -> Item 136
- Creation code
- Refers to item: Statement (location: source ID 41, line 17, chars 519-586, hits: 7)
- IC 210 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 41, line 17, chars 562-586, hits: 7)
- IC 328 -> Item 138
- Creation code
- Refers to item: Line (location: source ID 41, line 19, chars 601-627, hits: 7)
- IC 328 -> Item 139
- Creation code
- Refers to item: Statement (location: source ID 41, line 19, chars 601-627, hits: 7)
- IC 341 -> Item 140
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 41, line 19, chars 629-1104, hits: 7)
- IC 341 -> Item 141
- Creation code
- Refers to item: Line (location: source ID 41, line 21, chars 677-741, hits: 7)
- IC 341 -> Item 142
- Creation code
- Refers to item: Statement (location: source ID 41, line 21, chars 677-741, hits: 7)
- IC 343 -> Item 143
- Creation code
- Refers to item: Statement (location: source ID 41, line 21, chars 717-741, hits: 7)
- IC 389 -> Item 144
- Creation code
- Refers to item: Line (location: source ID 41, line 22, chars 755-864, hits: 7)
- IC 389 -> Item 145
- Creation code
- Refers to item: Statement (location: source ID 41, line 22, chars 755-864, hits: 7)
- IC 583 -> Item 146
- Creation code
- Refers to item: Line (location: source ID 41, line 25, chars 926-984, hits: 7)
- IC 583 -> Item 147
- Creation code
- Refers to item: Statement (location: source ID 41, line 25, chars 926-984, hits: 7)
- IC 585 -> Item 148
- Creation code
- Refers to item: Statement (location: source ID 41, line 25, chars 962-984, hits: 7)
- IC 631 -> Item 149
- Creation code
- Refers to item: Line (location: source ID 41, line 26, chars 998-1090, hits: 7)
- IC 631 -> Item 150
- Creation code
- Refers to item: Statement (location: source ID 41, line 26, chars 998-1090, hits: 7)
- IC 797 -> Item 151
- Creation code
- Refers to item: Line (location: source ID 41, line 29, chars 1114-1133, hits: 7)
- IC 797 -> Item 152
- Creation code
- Refers to item: Statement (location: source ID 41, line 29, chars 1114-1133, hits: 7)
- IC 894 -> Item 153
- Creation code
- Refers to item: Line (location: source ID 41, line 30, chars 1144-1383, hits: 7)
- IC 894 -> Item 154
- Creation code
- Refers to item: Statement (location: source ID 41, line 30, chars 1144-1383, hits: 7)
- IC 896 -> Item 155
- Creation code
- Refers to item: Statement (location: source ID 41, line 30, chars 1160-1383, hits: 7)
- IC 1025 -> Item 156
- Creation code
- Refers to item: Line (location: source ID 41, line 38, chars 1393-1411, hits: 7)
- IC 1025 -> Item 157
- Creation code
- Refers to item: Statement (location: source ID 41, line 38, chars 1393-1411, hits: 7)
- IC 1122 -> Item 158
- Creation code
- Refers to item: Line (location: source ID 41, line 40, chars 1422-1465, hits: 7)
- IC 1122 -> Item 159
- Creation code
- Refers to item: Statement (location: source ID 41, line 40, chars 1422-1465, hits: 7)
- IC 1124 -> Item 160
- Creation code
- Refers to item: Statement (location: source ID 41, line 40, chars 1448-1465, hits: 7)
- IC 1170 -> Item 161
- Creation code
- Refers to item: Line (location: source ID 41, line 41, chars 1475-1561, hits: 7)
- IC 1170 -> Item 162
- Creation code
- Refers to item: Statement (location: source ID 41, line 41, chars 1475-1561, hits: 7)
- IC 1293 -> Item 163
- Creation code
- Refers to item: Line (location: source ID 41, line 43, chars 1642-1670, hits: 7)
- IC 1293 -> Item 164
- Creation code
- Refers to item: Statement (location: source ID 41, line 43, chars 1642-1670, hits: 7)
Anchors for Contract "IVRFSubscriptionV2Plus" (solc 0.8.19, source ID 11):
Anchors for Contract "VRFConsumerBaseV2Plus" (solc 0.8.19, source ID 8):
Anchors for Contract "IVRFMigratableConsumerV2Plus" (solc 0.8.19, source ID 10):
Anchors for Contract "safeconsole" (solc 0.8.19, source ID 37):
Anchors for Contract "VRFCoordinatorV2_5Mock" (solc 0.8.19, source ID 13):
Anchors for Contract "IERC165" (solc 0.8.19, source ID 31):
Anchors for Contract "stdJson" (solc 0.8.19, source ID 21):
Anchors for Contract "AggregatorV3Interface" (solc 0.8.19, source ID 2):
Anchors for Contract "CodeConstants" (solc 0.8.19, source ID 42):
Anchors for Contract "TestBase" (solc 0.8.19, source ID 14):
Anchors for Contract "IERC677Receiver" (solc 0.8.19, source ID 3):
Anchors for Contract "SubscriptionAPI" (solc 0.8.19, source ID 7):
Anchors for Contract "stdToml" (solc 0.8.19, source ID 25):
Anchors for Contract "IERC721TokenReceiver" (solc 0.8.19, source ID 33):
Anchors for Contract "IERC721Metadata" (solc 0.8.19, source ID 33):
Anchors for Contract "StdInvariant" (solc 0.8.19, source ID 20):
Anchors for Contract "MockERC20" (solc 0.8.19, source ID 35):
Anchors for Contract "Raffle" (solc 0.8.19, source ID 44):
- IC 6 -> Item 211
- Runtime code
- Refers to item: Function "" (location: source ID 44, line 81, chars 2213-2726, hits: 7)
- IC 482 -> Item 212
- Runtime code
- Refers to item: Line (location: source ID 44, line 89, chars 2456-2483, hits: 7)
- IC 482 -> Item 213
- Runtime code
- Refers to item: Statement (location: source ID 44, line 89, chars 2456-2483, hits: 7)
- IC 490 -> Item 214
- Runtime code
- Refers to item: Line (location: source ID 44, line 90, chars 2493-2514, hits: 7)
- IC 490 -> Item 215
- Runtime code
- Refers to item: Statement (location: source ID 44, line 90, chars 2493-2514, hits: 7)
- IC 498 -> Item 216
- Runtime code
- Refers to item: Line (location: source ID 44, line 91, chars 2524-2543, hits: 7)
- IC 498 -> Item 217
- Runtime code
- Refers to item: Statement (location: source ID 44, line 91, chars 2524-2543, hits: 7)
- IC 506 -> Item 218
- Runtime code
- Refers to item: Line (location: source ID 44, line 92, chars 2553-2586, hits: 7)
- IC 506 -> Item 219
- Runtime code
- Refers to item: Statement (location: source ID 44, line 92, chars 2553-2586, hits: 7)
- IC 514 -> Item 220
- Runtime code
- Refers to item: Line (location: source ID 44, line 93, chars 2596-2633, hits: 7)
- IC 514 -> Item 221
- Runtime code
- Refers to item: Statement (location: source ID 44, line 93, chars 2596-2633, hits: 7)
- IC 535 -> Item 222
- Runtime code
- Refers to item: Line (location: source ID 44, line 95, chars 2644-2677, hits: 7)
- IC 535 -> Item 223
- Runtime code
- Refers to item: Statement (location: source ID 44, line 95, chars 2644-2677, hits: 7)
- IC 542 -> Item 224
- Runtime code
- Refers to item: Line (location: source ID 44, line 96, chars 2687-2719, hits: 7)
- IC 542 -> Item 225
- Runtime code
- Refers to item: Statement (location: source ID 44, line 96, chars 2687-2719, hits: 7)
- IC 299 -> Item 226
- Creation code
- Refers to item: Function "enterRaffle" (location: source ID 44, line 99, chars 2732-3215, hits: 6)
- IC 926 -> Item 227
- Creation code
- Refers to item: Line (location: source ID 44, line 102, chars 2931-2956, hits: 6)
- IC 926 -> Item 228
- Creation code
- Refers to item: Statement (location: source ID 44, line 102, chars 2931-2956, hits: 6)
- IC 966 -> Item 229
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 44, line 102, chars 2958-3021, hits: 1)
- IC 966 -> Item 230
- Creation code
- Refers to item: Line (location: source ID 44, line 103, chars 2972-3010, hits: 1)
- IC 966 -> Item 231
- Creation code
- Refers to item: Statement (location: source ID 44, line 103, chars 2972-3010, hits: 1)
- IC 1016 -> Item 232
- Creation code
- Refers to item: Line (location: source ID 44, line 106, chars 3034-3067, hits: 5)
- IC 1016 -> Item 233
- Creation code
- Refers to item: Statement (location: source ID 44, line 106, chars 3034-3067, hits: 5)
- IC 1075 -> Item 234
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 44, line 106, chars 3069-3124, hits: 1)
- IC 1075 -> Item 235
- Creation code
- Refers to item: Line (location: source ID 44, line 107, chars 3083-3113, hits: 1)
- IC 1075 -> Item 236
- Creation code
- Refers to item: Statement (location: source ID 44, line 107, chars 3083-3113, hits: 1)
- IC 1125 -> Item 237
- Creation code
- Refers to item: Line (location: source ID 44, line 109, chars 3133-3168, hits: 4)
- IC 1125 -> Item 238
- Creation code
- Refers to item: Statement (location: source ID 44, line 109, chars 3133-3168, hits: 4)
- IC 1224 -> Item 239
- Creation code
- Refers to item: Line (location: source ID 44, line 110, chars 3178-3208, hits: 4)
- IC 1224 -> Item 240
- Creation code
- Refers to item: Statement (location: source ID 44, line 110, chars 3178-3208, hits: 4)
- IC 350 -> Item 241
- Creation code
- Refers to item: Function "checkUpkeep" (location: source ID 44, line 126, chars 3755-4260, hits: 2)
- IC 1829 -> Item 242
- Creation code
- Refers to item: Line (location: source ID 44, line 128, chars 3896-3966, hits: 4)