-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoverage-report.txt
2165 lines (2007 loc) · 96.2 KB
/
coverage-report.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 130 files with Solc 0.8.24
Solc 0.8.24 finished in 7.04s
Compiler run successful!
Analysing contracts...
Running tests...
Ran 21 tests for test/unit/VotingPowerExchange.t.sol:VotingPowerExchangeUnitTest
[PASS] testCalculateBurningAmountFromVotingPower() (gas: 612604)
[PASS] testCalculateIncrementedBurningAmount() (gas: 104115)
[PASS] testCalculateIncrementedBurningAmountForJs_0_99e17() (gas: 14842)
[PASS] testCalculateIncrementedBurningAmountForJs_101e17_3022e16() (gas: 14848)
[PASS] testCalculateIncrementedBurningAmountForJs_151e17_2522e16() (gas: 14871)
[PASS] testCalculateIncrementedBurningAmountForJs_15_5() (gas: 14828)
[PASS] testCalculateIncrementedBurningAmountForJs_49_1() (gas: 14827)
[PASS] testCalculateIncrementedVotingPower() (gas: 130541)
[PASS] testCalculateIncrementedVotingPowerForJs_0_3340() (gas: 17584)
[PASS] testCalculateIncrementedVotingPowerForJs_1000_15000() (gas: 17731)
[PASS] testCalculateIncrementedVotingPowerForJs_30_3340() (gas: 17634)
[PASS] testCalculateIncrementedVotingPowerForJs_370_765() (gas: 17619)
[PASS] testCalculateIncrementedVotingPowerForJs_4000_9260() (gas: 17720)
[PASS] testCalculateIncrementedVotingPowerForJs_50_19600() (gas: 17741)
[PASS] testCalculateVotingPowerFromBurnedAmount() (gas: 797586)
[PASS] testCalculateVotingPowerFromBurnedAmountRareCases() (gas: 51034)
[PASS] testCalculationOfVotingPowerMintingWhenMintedSeparately() (gas: 26358)
[PASS] testCalculationOfVotingPowerMintingWhenMintedSeparately2() (gas: 26333)
[PASS] testConstructorValidation() (gas: 119804)
[PASS] testSomeMoreSpecialCasesForCalculateVotingPowerFromBurnedAmount() (gas: 22504)
[PASS] testSpecialCasesForCalculateVotingPowerFromBurnedAmount() (gas: 22093)
Suite result: ok. 21 passed; 0 failed; 0 skipped; finished in 331.52ms (214.23ms CPU time)
Ran 15 tests for test/unit/ERC20UpgradeableTokenV1.t.sol:ERC20UpgradeableTokenV1Test
[PASS] testApprovingAllAndTransferFromAll() (gas: 67881)
[PASS] testApprovingAllAndTransferFromHalf() (gas: 90094)
[PASS] testApprovingAndTransferFrom() (gas: 70217)
[PASS] testApprovingSpending() (gas: 47204)
[PASS] testDefaultAdminCannotBeZero() (gas: 3404094)
[PASS] testFailingToBurnTokens() (gas: 35201)
[PASS] testGrantRoles() (gas: 63145)
[PASS] testGrantingAndRevokingRoles() (gas: 49891)
[PASS] testPausingAndUnpausingSuccessfully() (gas: 36164)
[PASS] testRolesAreSetCorrectly() (gas: 45900)
[PASS] testSendingTokens() (gas: 89772)
[PASS] testShowingBasicTokenInfo() (gas: 31607)
[PASS] testSucceedingToBurnTokens() (gas: 39063)
[PASS] testUpgradeabilityOfToken() (gas: 3680933)
[PASS] testWhenPausedNoMintingOrTransferringIsAllowed() (gas: 61788)
Suite result: ok. 15 passed; 0 failed; 0 skipped; finished in 692.24ms (44.50ms CPU time)
Ran 17 tests for test/unit/AmbassadorNft.t.sol:AmbassadorTest
[PASS] testBalanceOfBatchWorks() (gas: 26010)
[PASS] testBalanceOfWorks() (gas: 31180)
[PASS] testBurnBatchCanBeCalledByBurner() (gas: 75954)
[PASS] testBurnBatchWillFailByNonBurner() (gas: 85060)
[PASS] testBurningTokenSuccessfully() (gas: 115515)
[PASS] testBurningTokenWillFailByNonBurner() (gas: 127990)
[PASS] testBurningTokenWillSucceedByNewBurner() (gas: 140025)
[PASS] testConstructorWillRevertIfAdminIsZero() (gas: 49376)
[PASS] testMintBatchWillWork() (gas: 81972)
[PASS] testMintingTokenWillFailByNonMinter() (gas: 29783)
[PASS] testMintingTokenWillSucceedByNewMinter() (gas: 165748)
[PASS] testMintingTokensSuccessfully() (gas: 123301)
[PASS] testSetURI() (gas: 51205)
[PASS] testSetURIByNonUriSetter() (gas: 12128)
[PASS] testSupportsInterface() (gas: 16538)
[PASS] testTokenRoles() (gas: 39075)
[PASS] testTransferWillWork() (gas: 61413)
Suite result: ok. 17 passed; 0 failed; 0 skipped; finished in 949.54ms (38.49ms CPU time)
Ran 4 tests for test/integration/DAOGovernorTest.t.sol:DAOGovernorTest
[PASS] testBasicInfo() (gas: 43865)
[PASS] testCannotMintTokenWithoutDaoGovernance() (gas: 15097)
[PASS] testGovernorCanGetProposedAndGetCancelled() (gas: 307832)
[PASS] testGovernorCanGetProposedAndMintUtilityToken() (gas: 599801)
Suite result: ok. 4 passed; 0 failed; 0 skipped; finished in 1.27s (12.63ms CPU time)
Ran 34 tests for test/integration/VotingPowerExchange.t.sol:VotingPowerExchangeTest
[PASS] testBasicVotingPowerExchangeInfo() (gas: 14590)
[PASS] testCalculateIncrementedBurningAmountWhenCurrentIsNotZero() (gas: 48619)
[PASS] testCalculateIncrementedBurningAmountWhenCurrentIsZero() (gas: 41986)
[PASS] testCalculationOfIncreasedVotingPowerWhenCurrentIsNotZero() (gas: 70426)
[PASS] testCalculationOfIncreasedVotingPowerWhenCurrentIsZero() (gas: 50901)
[PASS] testConstantValues() (gas: 11697)
[PASS] testConstructorOfVotingPowerExchange() (gas: 2236713)
[PASS] testExchangeFailCaseWhenAmountIsTooSmall() (gas: 41000)
[PASS] testExchangeFailCaseWhenNonceIsUsed() (gas: 202404)
[PASS] testExchangeFailCaseWhenSenderIsNotSigner() (gas: 67326)
[PASS] testExchangeFailCaseWhenSignatureExpired() (gas: 44077)
[PASS] testExchangeFailCaseWhenSignatureIsInvalid() (gas: 67028)
[PASS] testExchangeFailCaseWhenUserGotMoreThanVotingPowerCap() (gas: 133226)
[PASS] testExchangeFailsWhenSenderIsZeroAddress() (gas: 38819)
[PASS] testExchangeLargeAmountSuccessCase() (gas: 210220)
[PASS] testExchangeMediumAmountSuccessCase() (gas: 215121)
[PASS] testExchangeSmallAmountSuccessCase() (gas: 210482)
[PASS] testExchangeTwiceToCrossVotingPowerCapFailureCase() (gas: 249753)
[PASS] testExchangeTwiceToGetToVotingPowerCapSuccessCase() (gas: 304940)
[PASS] testExchangeVotingPowerCapSuccessCase() (gas: 221257)
[PASS] testGovTokenBasicInfo() (gas: 25278)
[PASS] testGovTokenNotBeingTransferrable() (gas: 68747)
[PASS] testReturnedSetupValues() (gas: 63204)
[PASS] testSettingVotingPowerCap() (gas: 25153)
[PASS] testSettingVotingPowerCapFails() (gas: 14249)
[PASS] testSettingVotingPowerCapFailsCase2() (gas: 23198)
[PASS] testTokensAccessRoles() (gas: 70485)
[PASS] testTokensBalanceOf() (gas: 27834)
[PASS] testTokensBurning() (gas: 86324)
[PASS] testUtilityTokenBasicInfo() (gas: 31675)
[PASS] testUtilityTokenCanBeTransferred() (gas: 88383)
[PASS] testUtilityTokensPausability() (gas: 76194)
[PASS] testVotingPowerCap() (gas: 11060)
[PASS] testVotingPowerExchangesRoles() (gas: 57604)
Suite result: ok. 34 passed; 0 failed; 0 skipped; finished in 1.37s (202.65ms CPU time)
Ran 21 tests for test/unit/GovToken.t.sol:GovTokenTest
[PASS] testBurningCanBeDoneByBurner() (gas: 71425)
[PASS] testBurningCanBeDoneByNewBurner() (gas: 104676)
[PASS] testBurningCannotBeDoneByNonBurner() (gas: 31512)
[PASS] testClock() (gas: 14358)
[PASS] testClockMode() (gas: 11350)
[PASS] testDelegateBySig() (gas: 90761)
[PASS] testDelegates() (gas: 29514)
[PASS] testGovTokenDefaultAdminCannotBeZero() (gas: 98903)
[PASS] testInitialVotes() (gas: 28882)
[PASS] testMintingCanBeDoneByMinter() (gas: 95606)
[PASS] testMintingCanBeDoneByNewMinter() (gas: 126921)
[PASS] testMintingCannotBeDoneByNonMinter() (gas: 41757)
[PASS] testNonRoleCannotCallSetBurnedAmountOfUtilToken() (gas: 31075)
[PASS] testNonces() (gas: 67641)
[PASS] testSetBurnedAmountOfUtilTokenEvent() (gas: 77722)
[PASS] testTheRolesOfTheGovToken() (gas: 31013)
[PASS] testTheTokenInfos() (gas: 21406)
[PASS] testTokensAreNotTransferrable() (gas: 49053)
[PASS] testVotesAfterDelegateToOther() (gas: 141319)
[PASS] testVotesAfterSelfDelegate() (gas: 100610)
[PASS] testVotingPowerExchangeCanCallSetBurnedAmountOfUtilToken() (gas: 73352)
Suite result: ok. 21 passed; 0 failed; 0 skipped; finished in 23.78s (110.63ms CPU time)
Ran 59 tests for test/fuzz/FuzzVotingPowerExchange.t.sol:VotingPwoerExchangeTest
[PASS] testCalculateIncrementedVotingPower(uint256) (runs: 3073, μ: 20729, ~: 20079)
[PASS] testCalculateIncrementedVotingPower_0_to_10(uint256) (runs: 3073, μ: 20706, ~: 20033)
[PASS] testCalculateIncrementedVotingPower_100_to_110(uint256) (runs: 3073, μ: 20650, ~: 19997)
[PASS] testCalculateIncrementedVotingPower_10_to_110(uint256) (runs: 3073, μ: 21432, ~: 21491)
[PASS] testCalculateIncrementedVotingPower_10_to_20(uint256) (runs: 3073, μ: 20721, ~: 20060)
[PASS] testCalculateIncrementedVotingPower_20_to_30(uint256) (runs: 3073, μ: 20741, ~: 20082)
[PASS] testCalculateIncrementedVotingPower_30_to_40(uint256) (runs: 3073, μ: 20836, ~: 20178)
[PASS] testCalculateIncrementedVotingPower_40_to_50(uint256) (runs: 3073, μ: 20775, ~: 20122)
[PASS] testCalculateIncrementedVotingPower_50_to_60(uint256) (runs: 3073, μ: 20896, ~: 20238)
[PASS] testCalculateIncrementedVotingPower_60_to_70(uint256) (runs: 3073, μ: 20860, ~: 20215)
[PASS] testCalculateIncrementedVotingPower_70_to_80(uint256) (runs: 3073, μ: 20720, ~: 20065)
[PASS] testCalculateIncrementedVotingPower_80_to_90(uint256) (runs: 3073, μ: 20670, ~: 20021)
[PASS] testCalculateIncrementedVotingPower_90_to_100(uint256) (runs: 3073, μ: 20672, ~: 20024)
[PASS] testExchangeWithAnyAmountLessThan1e18WillRevert(uint256) (runs: 3073, μ: 41670, ~: 41670)
[PASS] testExchangeWithAnyAmountWhichIsInRangeWillSucceed(uint256) (runs: 3073, μ: 218331, ~: 218444)
[PASS] testExchangeWithAnyAmountWithinNewCapWillSucceed(uint256) (runs: 3073, μ: 229214, ~: 229355)
[PASS] testExchangeWithAnyExpirationWhichIsExpiredWillRevert(uint256) (runs: 3073, μ: 46539, ~: 47228)
[PASS] testExchangeWithAnyExpirationWhichIsNotExpiredWillSucceed(uint256) (runs: 3073, μ: 228114, ~: 228114)
[PASS] testExchangeWithAnyNonceWhichIsUsedWillRevert(bytes32) (runs: 3073, μ: 202833, ~: 202833)
[PASS] testExchangeWithAnyRoleWhoIsNotExchangerWillRevert(address) (runs: 3073, μ: 44184, ~: 44184)
[PASS] testExchangeWithAnySenderWhoIsNotTheSignerWillRevert(address) (runs: 3073, μ: 70212, ~: 70211)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_0_10(uint256) (runs: 3073, μ: 17872, ~: 17187)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_0_110(uint256) (runs: 3073, μ: 17860, ~: 17186)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_100_110(uint256) (runs: 3073, μ: 18596, ~: 18639)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_10_20(uint256) (runs: 3073, μ: 18570, ~: 18615)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_20_30(uint256) (runs: 3073, μ: 18549, ~: 18593)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_30_40(uint256) (runs: 3073, μ: 18619, ~: 18663)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_40_50(uint256) (runs: 3073, μ: 18639, ~: 18683)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_50_60(uint256) (runs: 3073, μ: 18640, ~: 18684)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_60_70(uint256) (runs: 3073, μ: 18617, ~: 18662)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_70_80(uint256) (runs: 3073, μ: 18575, ~: 18618)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_80_90(uint256) (runs: 3073, μ: 18618, ~: 18662)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_90_100(uint256) (runs: 3073, μ: 18620, ~: 18663)
[PASS] testFuzzCalculateIncrementedBurningAmount_0_to_110(uint256) (runs: 3073, μ: 17932, ~: 17258)
[PASS] testFuzzCalculateIncrementedBurningAmount_100_to_110(uint256) (runs: 3073, μ: 17973, ~: 17288)
[PASS] testFuzzCalculateIncrementedBurningAmount_10_to_110(uint256) (runs: 3073, μ: 18003, ~: 17329)
[PASS] testFuzzCalculateIncrementedBurningAmount_20_to_110(uint256) (runs: 3073, μ: 17962, ~: 17288)
[PASS] testFuzzCalculateIncrementedBurningAmount_30_to_110(uint256) (runs: 3073, μ: 17941, ~: 17266)
[PASS] testFuzzCalculateIncrementedBurningAmount_40_to_110(uint256) (runs: 3073, μ: 18007, ~: 17332)
[PASS] testFuzzCalculateIncrementedBurningAmount_50_to_110(uint256) (runs: 3073, μ: 17942, ~: 17265)
[PASS] testFuzzCalculateIncrementedBurningAmount_60_to_110(uint256) (runs: 3073, μ: 17986, ~: 17308)
[PASS] testFuzzCalculateIncrementedBurningAmount_70_to_110(uint256) (runs: 3073, μ: 17965, ~: 17287)
[PASS] testFuzzCalculateIncrementedBurningAmount_80_to_110(uint256) (runs: 3073, μ: 17923, ~: 17244)
[PASS] testFuzzCalculateIncrementedBurningAmount_90_to_110(uint256) (runs: 3073, μ: 17991, ~: 17310)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount(uint256) (runs: 3073, μ: 20413, ~: 19752)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_0_925(uint256) (runs: 3073, μ: 20411, ~: 19731)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_12700_19625(uint256) (runs: 3073, μ: 21360, ~: 21399)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_19625_28050(uint256) (runs: 3073, μ: 21352, ~: 21402)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_28050_37975(uint256) (runs: 3073, μ: 21353, ~: 21401)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_3350_7275(uint256) (runs: 3073, μ: 21238, ~: 21270)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_37975_49400(uint256) (runs: 3073, μ: 21219, ~: 21251)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_49400_62325(uint256) (runs: 3073, μ: 21223, ~: 21271)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_62325_76750(uint256) (runs: 3073, μ: 21213, ~: 21252)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_7275_12700(uint256) (runs: 3073, μ: 21271, ~: 21330)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_76750_92675(uint256) (runs: 3073, μ: 21247, ~: 21275)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_925_3350(uint256) (runs: 3073, μ: 21299, ~: 21361)
[PASS] testSetVotingPowerCap(uint256) (runs: 3072, μ: 25451, ~: 25451)
[PASS] testSetVotingPowerCap_revertWhenLowerThanExisting(uint256) (runs: 3073, μ: 18046, ~: 18046)
[PASS] testSetVotingPowerCap_revertWhenNonManagerCalled(address) (runs: 3073, μ: 17759, ~: 17759)
Suite result: ok. 59 passed; 0 failed; 0 skipped; finished in 23.78s (166.71s CPU time)
Ran 7 test suites in 23.79s (52.17s CPU time): 171 tests passed, 0 failed, 0 skipped (171 total tests)
Uncovered for script/DeployContracts.s.sol:
- Branch (branch: 0, path: 1) (location: source ID 111, line 52, chars 1680-2606, hits: 0)
- Line (location: source ID 111, line 55, chars 1848-1870, hits: 0)
- Statement (location: source ID 111, line 55, chars 1848-1870, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 111, line 55, chars 1872-2001, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 111, line 55, chars 1844-2606, hits: 0)
- Line (location: source ID 111, line 56, chars 1886-1940, hits: 0)
- Statement (location: source ID 111, line 56, chars 1886-1940, hits: 0)
- Line (location: source ID 111, line 58, chars 1955-1990, hits: 0)
- Statement (location: source ID 111, line 58, chars 1955-1990, hits: 0)
- Line (location: source ID 111, line 59, chars 2011-2032, hits: 0)
- Statement (location: source ID 111, line 59, chars 2011-2032, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 111, line 59, chars 2034-2634, hits: 0)
- Line (location: source ID 111, line 60, chars 2048-2102, hits: 0)
- Statement (location: source ID 111, line 60, chars 2048-2102, hits: 0)
- Line (location: source ID 111, line 62, chars 2117-2623, hits: 0)
- Statement (location: source ID 111, line 62, chars 2117-2623, hits: 0)
- Function "deploymentsOnLocalNetwork" (location: source ID 111, line 81, chars 2731-5226, hits: 0)
- Function "deploymentsOnBaseSepolia" (location: source ID 111, line 141, chars 5300-7967, hits: 0)
- Line (location: source ID 111, line 142, chars 5387-5449, hits: 0)
- Statement (location: source ID 111, line 142, chars 5387-5449, hits: 0)
- Statement (location: source ID 111, line 142, chars 5406-5449, hits: 0)
- Line (location: source ID 111, line 143, chars 5459-5514, hits: 0)
- Statement (location: source ID 111, line 143, chars 5459-5514, hits: 0)
- Statement (location: source ID 111, line 143, chars 5480-5514, hits: 0)
- Line (location: source ID 111, line 145, chars 5579-5595, hits: 0)
- Statement (location: source ID 111, line 145, chars 5579-5595, hits: 0)
- Line (location: source ID 111, line 146, chars 5605-5622, hits: 0)
- Statement (location: source ID 111, line 146, chars 5605-5622, hits: 0)
- Line (location: source ID 111, line 147, chars 5632-5649, hits: 0)
- Statement (location: source ID 111, line 147, chars 5632-5649, hits: 0)
- Line (location: source ID 111, line 148, chars 5659-5676, hits: 0)
- Statement (location: source ID 111, line 148, chars 5659-5676, hits: 0)
- Line (location: source ID 111, line 149, chars 5686-5704, hits: 0)
- Statement (location: source ID 111, line 149, chars 5686-5704, hits: 0)
- Line (location: source ID 111, line 150, chars 5714-5734, hits: 0)
- Statement (location: source ID 111, line 150, chars 5714-5734, hits: 0)
- Line (location: source ID 111, line 151, chars 5744-5763, hits: 0)
- Statement (location: source ID 111, line 151, chars 5744-5763, hits: 0)
- Line (location: source ID 111, line 152, chars 5773-5827, hits: 0)
- Statement (location: source ID 111, line 152, chars 5773-5827, hits: 0)
- Line (location: source ID 111, line 154, chars 5838-5867, hits: 0)
- Statement (location: source ID 111, line 154, chars 5838-5867, hits: 0)
- Line (location: source ID 111, line 156, chars 5953-6202, hits: 0)
- Statement (location: source ID 111, line 156, chars 5953-6202, hits: 0)
- Statement (location: source ID 111, line 156, chars 5969-6202, hits: 0)
- Line (location: source ID 111, line 163, chars 6213-6258, hits: 0)
- Statement (location: source ID 111, line 163, chars 6213-6258, hits: 0)
- Line (location: source ID 111, line 166, chars 6301-6385, hits: 0)
- Statement (location: source ID 111, line 166, chars 6301-6385, hits: 0)
- Line (location: source ID 111, line 169, chars 6440-6566, hits: 0)
- Statement (location: source ID 111, line 169, chars 6440-6566, hits: 0)
- Line (location: source ID 111, line 173, chars 6630-6702, hits: 0)
- Statement (location: source ID 111, line 173, chars 6630-6702, hits: 0)
- Line (location: source ID 111, line 175, chars 6769-6849, hits: 0)
- Statement (location: source ID 111, line 175, chars 6769-6849, hits: 0)
- Line (location: source ID 111, line 177, chars 6927-7014, hits: 0)
- Statement (location: source ID 111, line 177, chars 6927-7014, hits: 0)
- Line (location: source ID 111, line 180, chars 7078-7150, hits: 0)
- Statement (location: source ID 111, line 180, chars 7078-7150, hits: 0)
- Line (location: source ID 111, line 182, chars 7217-7297, hits: 0)
- Statement (location: source ID 111, line 182, chars 7217-7297, hits: 0)
- Line (location: source ID 111, line 184, chars 7351-7428, hits: 0)
- Statement (location: source ID 111, line 184, chars 7351-7428, hits: 0)
- Line (location: source ID 111, line 185, chars 7438-7456, hits: 0)
- Statement (location: source ID 111, line 185, chars 7438-7456, hits: 0)
- Line (location: source ID 111, line 187, chars 7467-7960, hits: 0)
- Statement (location: source ID 111, line 187, chars 7467-7960, hits: 0)
Uncovered for script/DeployNft.s.sol:
- Function "setUp" (location: source ID 112, line 10, chars 220-280, hits: 0)
- Line (location: source ID 112, line 11, chars 254-273, hits: 0)
- Statement (location: source ID 112, line 11, chars 254-273, hits: 0)
Uncovered for src/AmbassadorNft.sol:
Uncovered for src/DaoGovernor.sol:
Uncovered for src/ERC20UpgradeableTokenV1.sol:
Uncovered for src/GovToken.sol:
Uncovered for src/Timelock.sol:
Uncovered for src/VotingPowerExchange.sol:
Uncovered for test/integration/utils/VotingPowerExchangeTestHelper.t.sol:
Uncovered for test/mocks/ERC20UpgradeableTokenV2.sol:
- Function "setTreasury" (location: source ID 124, line 27, chars 900-1013, hits: 0)
- Line (location: source ID 124, line 28, chars 983-1006, hits: 0)
- Statement (location: source ID 124, line 28, chars 983-1006, hits: 0)
Anchors for Contract "stdStorage" (solc 0.8.24, source ID 9):
Anchors for Contract "VotingPowerExchange" (solc 0.8.24, source ID 119):
- IC 6 -> Item 30
- Runtime code
- Refers to item: Function "" (location: source ID 119, line 65, chars 3139-3836, hits: 123)
- IC 341 -> Item 31
- Runtime code
- Refers to item: Line (location: source ID 119, line 68, chars 3312-3338, hits: 123)
- IC 341 -> Item 32
- Runtime code
- Refers to item: Statement (location: source ID 119, line 68, chars 3312-3338, hits: 123)
- IC 394 -> Item 33
- Runtime code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 119, line 68, chars 3340-3394, hits: 2)
- IC 394 -> Item 34
- Runtime code
- Refers to item: Statement (location: source ID 119, line 68, chars 3340-3394, hits: 2)
- IC 444 -> Item 35
- Runtime code
- Refers to item: Line (location: source ID 119, line 69, chars 3408-3462, hits: 121)
- IC 444 -> Item 36
- Runtime code
- Refers to item: Statement (location: source ID 119, line 69, chars 3408-3462, hits: 121)
- IC 444 -> Item 37
- Runtime code
- Refers to item: Statement (location: source ID 119, line 69, chars 3408-3431, hits: 121)
- IC 499 -> Item 38
- Runtime code
- Refers to item: Statement (location: source ID 119, line 69, chars 3435-3462, hits: 120)
- IC 554 -> Item 39
- Runtime code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 119, line 69, chars 3464-3541, hits: 2)
- IC 554 -> Item 40
- Runtime code
- Refers to item: Line (location: source ID 119, line 70, chars 3478-3530, hits: 2)
- IC 554 -> Item 41
- Runtime code
- Refers to item: Statement (location: source ID 119, line 70, chars 3478-3530, hits: 2)
- IC 604 -> Item 42
- Runtime code
- Refers to item: Line (location: source ID 119, line 73, chars 3551-3582, hits: 119)
- IC 604 -> Item 43
- Runtime code
- Refers to item: Statement (location: source ID 119, line 73, chars 3551-3582, hits: 119)
- IC 657 -> Item 44
- Runtime code
- Refers to item: Line (location: source ID 119, line 74, chars 3592-3646, hits: 119)
- IC 657 -> Item 45
- Runtime code
- Refers to item: Statement (location: source ID 119, line 74, chars 3592-3646, hits: 119)
- IC 710 -> Item 46
- Runtime code
- Refers to item: Line (location: source ID 119, line 75, chars 3656-3700, hits: 119)
- IC 710 -> Item 47
- Runtime code
- Refers to item: Statement (location: source ID 119, line 75, chars 3656-3700, hits: 119)
- IC 732 -> Item 48
- Runtime code
- Refers to item: Line (location: source ID 119, line 76, chars 3710-3743, hits: 119)
- IC 732 -> Item 49
- Runtime code
- Refers to item: Statement (location: source ID 119, line 76, chars 3710-3743, hits: 119)
- IC 783 -> Item 50
- Runtime code
- Refers to item: Line (location: source ID 119, line 77, chars 3753-3790, hits: 119)
- IC 783 -> Item 51
- Runtime code
- Refers to item: Statement (location: source ID 119, line 77, chars 3753-3790, hits: 119)
- IC 834 -> Item 52
- Runtime code
- Refers to item: Line (location: source ID 119, line 78, chars 3800-3829, hits: 119)
- IC 834 -> Item 53
- Runtime code
- Refers to item: Statement (location: source ID 119, line 78, chars 3800-3829, hits: 119)
- IC 1310 -> Item 123
- Runtime code
- Refers to item: Function "_setVotingPowerCap" (location: source ID 119, line 171, chars 8968-9128, hits: 6379)
- IC 1311 -> Item 124
- Runtime code
- Refers to item: Line (location: source ID 119, line 172, chars 9040-9072, hits: 6379)
- IC 1311 -> Item 125
- Runtime code
- Refers to item: Statement (location: source ID 119, line 172, chars 9040-9072, hits: 6379)
- IC 1318 -> Item 126
- Runtime code
- Refers to item: Line (location: source ID 119, line 173, chars 9082-9121, hits: 6379)
- IC 1318 -> Item 127
- Runtime code
- Refers to item: Statement (location: source ID 119, line 173, chars 9082-9121, hits: 6379)
- IC 613 -> Item 54
- Creation code
- Refers to item: Function "exchange" (location: source ID 119, line 97, chars 5072-7859, hits: 27673)
- IC 1595 -> Item 55
- Creation code
- Refers to item: Line (location: source ID 119, line 101, chars 5251-5271, hits: 24600)
- IC 1595 -> Item 56
- Creation code
- Refers to item: Statement (location: source ID 119, line 101, chars 5251-5271, hits: 24600)
- IC 1647 -> Item 57
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 119, line 101, chars 5273-5316, hits: 1)
- IC 1647 -> Item 58
- Creation code
- Refers to item: Statement (location: source ID 119, line 101, chars 5273-5316, hits: 1)
- IC 1697 -> Item 59
- Creation code
- Refers to item: Line (location: source ID 119, line 102, chars 5330-5343, hits: 24599)
- IC 1697 -> Item 60
- Creation code
- Refers to item: Statement (location: source ID 119, line 102, chars 5330-5343, hits: 24599)
- IC 1713 -> Item 61
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 119, line 102, chars 5345-5391, hits: 3074)
- IC 1713 -> Item 62
- Creation code
- Refers to item: Statement (location: source ID 119, line 102, chars 5345-5391, hits: 3074)
- IC 1763 -> Item 63
- Creation code
- Refers to item: Line (location: source ID 119, line 103, chars 5456-5489, hits: 21525)
- IC 1763 -> Item 64
- Creation code
- Refers to item: Statement (location: source ID 119, line 103, chars 5456-5489, hits: 21525)
- IC 1778 -> Item 65
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 119, line 103, chars 5491-5533, hits: 3074)
- IC 1778 -> Item 66
- Creation code
- Refers to item: Statement (location: source ID 119, line 103, chars 5491-5533, hits: 3074)
- IC 1828 -> Item 67
- Creation code
- Refers to item: Line (location: source ID 119, line 104, chars 5547-5575, hits: 18451)
- IC 1828 -> Item 68
- Creation code
- Refers to item: Statement (location: source ID 119, line 104, chars 5547-5575, hits: 18451)
- IC 1836 -> Item 69
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 119, line 104, chars 5577-5623, hits: 3074)
- IC 1836 -> Item 70
- Creation code
- Refers to item: Statement (location: source ID 119, line 104, chars 5577-5623, hits: 3074)
- IC 1886 -> Item 71
- Creation code
- Refers to item: Line (location: source ID 119, line 106, chars 5695-5750, hits: 15377)
- IC 1886 -> Item 72
- Creation code
- Refers to item: Statement (location: source ID 119, line 106, chars 5695-5750, hits: 15377)
- IC 1888 -> Item 73
- Creation code
- Refers to item: Statement (location: source ID 119, line 106, chars 5724-5750, hits: 15377)
- IC 2044 -> Item 74
- Creation code
- Refers to item: Line (location: source ID 119, line 107, chars 5764-5800, hits: 15377)
- IC 2044 -> Item 75
- Creation code
- Refers to item: Statement (location: source ID 119, line 107, chars 5764-5800, hits: 15377)
- IC 2053 -> Item 76
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 119, line 107, chars 5802-5901, hits: 2)
- IC 2053 -> Item 77
- Creation code
- Refers to item: Line (location: source ID 119, line 108, chars 5816-5890, hits: 2)
- IC 2053 -> Item 78
- Creation code
- Refers to item: Statement (location: source ID 119, line 108, chars 5816-5890, hits: 2)
- IC 2114 -> Item 79
- Creation code
- Refers to item: Line (location: source ID 119, line 112, chars 5995-6106, hits: 15375)
- IC 2114 -> Item 80
- Creation code
- Refers to item: Statement (location: source ID 119, line 112, chars 5995-6106, hits: 15375)
- IC 2116 -> Item 81
- Creation code
- Refers to item: Statement (location: source ID 119, line 112, chars 6012-6106, hits: 15375)
- IC 2205 -> Item 82
- Creation code
- Refers to item: Line (location: source ID 119, line 113, chars 6120-6166, hits: 15375)
- IC 2205 -> Item 83
- Creation code
- Refers to item: Statement (location: source ID 119, line 113, chars 6120-6166, hits: 15375)
- IC 2320 -> Item 84
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 119, line 113, chars 6168-6256, hits: 3075)
- IC 2320 -> Item 85
- Creation code
- Refers to item: Line (location: source ID 119, line 114, chars 6182-6245, hits: 3075)
- IC 2320 -> Item 86
- Creation code
- Refers to item: Statement (location: source ID 119, line 114, chars 6182-6245, hits: 3075)
- IC 2385 -> Item 87
- Creation code
- Refers to item: Line (location: source ID 119, line 118, chars 6330-6372, hits: 12300)
- IC 2385 -> Item 88
- Creation code
- Refers to item: Statement (location: source ID 119, line 118, chars 6330-6372, hits: 12300)
- IC 2490 -> Item 89
- Creation code
- Refers to item: Line (location: source ID 119, line 120, chars 6440-6510, hits: 12300)
- IC 2490 -> Item 90
- Creation code
- Refers to item: Statement (location: source ID 119, line 120, chars 6440-6510, hits: 12300)
- IC 2492 -> Item 91
- Creation code
- Refers to item: Statement (location: source ID 119, line 120, chars 6470-6510, hits: 12300)
- IC 2648 -> Item 92
- Creation code
- Refers to item: Line (location: source ID 119, line 124, chars 6681-6774, hits: 12300)
- IC 2648 -> Item 93
- Creation code
- Refers to item: Statement (location: source ID 119, line 124, chars 6681-6774, hits: 12300)
- IC 2650 -> Item 94
- Creation code
- Refers to item: Statement (location: source ID 119, line 124, chars 6714-6774, hits: 12300)
- IC 2662 -> Item 95
- Creation code
- Refers to item: Line (location: source ID 119, line 126, chars 6785-6820, hits: 12300)
- IC 2662 -> Item 96
- Creation code
- Refers to item: Statement (location: source ID 119, line 126, chars 6785-6820, hits: 12300)
- IC 2667 -> Item 97
- Creation code
- Refers to item: Line (location: source ID 119, line 128, chars 6926-6986, hits: 12300)
- IC 2667 -> Item 98
- Creation code
- Refers to item: Statement (location: source ID 119, line 128, chars 6926-6986, hits: 12300)
- IC 2670 -> Item 99
- Creation code
- Refers to item: Statement (location: source ID 119, line 128, chars 6926-6969, hits: 12300)
- IC 2688 -> Item 100
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 119, line 128, chars 6988-7400, hits: 1)
- IC 2688 -> Item 101
- Creation code
- Refers to item: Line (location: source ID 119, line 130, chars 7129-7189, hits: 1)
- IC 2688 -> Item 102
- Creation code
- Refers to item: Statement (location: source ID 119, line 130, chars 7129-7189, hits: 1)
- IC 2704 -> Item 103
- Creation code
- Refers to item: Line (location: source ID 119, line 132, chars 7291-7389, hits: 1)
- IC 2704 -> Item 104
- Creation code
- Refers to item: Statement (location: source ID 119, line 132, chars 7291-7389, hits: 1)
- IC 2717 -> Item 105
- Creation code
- Refers to item: Line (location: source ID 119, line 136, chars 7457-7510, hits: 12300)
- IC 2717 -> Item 106
- Creation code
- Refers to item: Statement (location: source ID 119, line 136, chars 7457-7510, hits: 12300)
- IC 2858 -> Item 107
- Creation code
- Refers to item: Line (location: source ID 119, line 139, chars 7573-7658, hits: 12300)
- IC 2858 -> Item 108
- Creation code
- Refers to item: Statement (location: source ID 119, line 139, chars 7573-7658, hits: 12300)
- IC 3010 -> Item 109
- Creation code
- Refers to item: Line (location: source ID 119, line 142, chars 7721-7766, hits: 12300)
- IC 3010 -> Item 110
- Creation code
- Refers to item: Statement (location: source ID 119, line 142, chars 7721-7766, hits: 12300)
- IC 3151 -> Item 111
- Creation code
- Refers to item: Line (location: source ID 119, line 143, chars 7776-7852, hits: 12300)
- IC 3151 -> Item 112
- Creation code
- Refers to item: Statement (location: source ID 119, line 143, chars 7776-7852, hits: 12300)
- IC 884 -> Item 113
- Creation code
- Refers to item: Function "setVotingPowerCap" (location: source ID 119, line 151, chars 8049-8288, hits: 12409)
- IC 3844 -> Item 114
- Creation code
- Refers to item: Line (location: source ID 119, line 152, chars 8147-8180, hits: 9335)
- IC 3844 -> Item 115
- Creation code
- Refers to item: Statement (location: source ID 119, line 152, chars 8147-8180, hits: 9335)
- IC 3853 -> Item 116
- Creation code
- Refers to item: Branch (branch: 9, path: 0) (location: source ID 119, line 152, chars 8182-8236, hits: 3075)
- IC 3853 -> Item 117
- Creation code
- Refers to item: Statement (location: source ID 119, line 152, chars 8182-8236, hits: 3075)
- IC 3903 -> Item 118
- Creation code
- Refers to item: Line (location: source ID 119, line 153, chars 8246-8281, hits: 6260)
- IC 3903 -> Item 119
- Creation code
- Refers to item: Statement (location: source ID 119, line 153, chars 8246-8281, hits: 6260)
- IC 940 -> Item 120
- Creation code
- Refers to item: Function "authorizationState" (location: source ID 119, line 159, chars 8477-8630, hits: 8)
- IC 3952 -> Item 121
- Creation code
- Refers to item: Line (location: source ID 119, line 160, chars 8577-8623, hits: 21533)
- IC 3952 -> Item 122
- Creation code
- Refers to item: Statement (location: source ID 119, line 160, chars 8577-8623, hits: 21533)
- IC 5320 -> Item 123
- Creation code
- Refers to item: Function "_setVotingPowerCap" (location: source ID 119, line 171, chars 8968-9128, hits: 6379)
- IC 5321 -> Item 124
- Creation code
- Refers to item: Line (location: source ID 119, line 172, chars 9040-9072, hits: 6379)
- IC 5321 -> Item 125
- Creation code
- Refers to item: Statement (location: source ID 119, line 172, chars 9040-9072, hits: 6379)
- IC 5328 -> Item 126
- Creation code
- Refers to item: Line (location: source ID 119, line 173, chars 9082-9121, hits: 6379)
- IC 5328 -> Item 127
- Creation code
- Refers to item: Statement (location: source ID 119, line 173, chars 9082-9121, hits: 6379)
- IC 401 -> Item 128
- Creation code
- Refers to item: Function "calculateIncrementedVotingPower" (location: source ID 119, line 186, chars 9704-10032, hits: 49200)
- IC 1272 -> Item 129
- Creation code
- Refers to item: Line (location: source ID 119, line 191, chars 9869-10025, hits: 61500)
- IC 1272 -> Item 130
- Creation code
- Refers to item: Statement (location: source ID 119, line 191, chars 9869-10025, hits: 61500)
- IC 1272 -> Item 131
- Creation code
- Refers to item: Statement (location: source ID 119, line 191, chars 9876-10025, hits: 61500)
- IC 1281 -> Item 132
- Creation code
- Refers to item: Statement (location: source ID 119, line 191, chars 9876-9953, hits: 61500)
- IC 1272 -> Item 133
- Creation code
- Refers to item: Line (location: source ID 119, line 192, chars 9968-10025, hits: 61500)
- IC 1272 -> Item 134
- Creation code
- Refers to item: Statement (location: source ID 119, line 192, chars 9968-10025, hits: 61500)
- IC 641 -> Item 135
- Creation code
- Refers to item: Function "calculateVotingPowerFromBurnedAmount" (location: source ID 119, line 203, chars 10573-11033, hits: 36993)
- IC 3247 -> Item 136
- Creation code
- Refers to item: Line (location: source ID 119, line 205, chars 10710-10759, hits: 159993)
- IC 3247 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 119, line 205, chars 10710-10759, hits: 159993)
- IC 3283 -> Item 138
- Creation code
- Refers to item: Line (location: source ID 119, line 207, chars 10812-10872, hits: 159993)
- IC 3283 -> Item 139
- Creation code
- Refers to item: Statement (location: source ID 119, line 207, chars 10812-10872, hits: 159993)
- IC 3290 -> Item 140
- Creation code
- Refers to item: Statement (location: source ID 119, line 207, chars 10831-10872, hits: 159993)
- IC 3290 -> Item 141
- Creation code
- Refers to item: Statement (location: source ID 119, line 207, chars 10831-10856, hits: 159993)
- IC 3290 -> Item 142
- Creation code
- Refers to item: Statement (location: source ID 119, line 207, chars 10835-10856, hits: 159993)
- IC 3323 -> Item 143
- Creation code
- Refers to item: Line (location: source ID 119, line 209, chars 10934-11003, hits: 159993)
- IC 3323 -> Item 144
- Creation code
- Refers to item: Statement (location: source ID 119, line 209, chars 10934-11003, hits: 159993)
- IC 3334 -> Item 145
- Creation code
- Refers to item: Statement (location: source ID 119, line 209, chars 10951-11003, hits: 159993)
- IC 3334 -> Item 146
- Creation code
- Refers to item: Statement (location: source ID 119, line 209, chars 10951-10991, hits: 159993)
- IC 3390 -> Item 147
- Creation code
- Refers to item: Line (location: source ID 119, line 210, chars 11013-11026, hits: 159993)
- IC 3390 -> Item 148
- Creation code
- Refers to item: Statement (location: source ID 119, line 210, chars 11013-11026, hits: 159993)
- IC 836 -> Item 149
- Creation code
- Refers to item: Function "calculateIncrementedBurningAmount" (location: source ID 119, line 220, chars 11450-11789, hits: 33834)
- IC 3755 -> Item 150
- Creation code
- Refers to item: Line (location: source ID 119, line 225, chars 11621-11782, hits: 33835)
- IC 3755 -> Item 151
- Creation code
- Refers to item: Statement (location: source ID 119, line 225, chars 11621-11782, hits: 33835)
- IC 3755 -> Item 152
- Creation code
- Refers to item: Statement (location: source ID 119, line 225, chars 11628-11782, hits: 33835)
- IC 3764 -> Item 153
- Creation code
- Refers to item: Statement (location: source ID 119, line 225, chars 11628-11710, hits: 33835)
- IC 3755 -> Item 154
- Creation code
- Refers to item: Line (location: source ID 119, line 226, chars 11725-11782, hits: 33835)
- IC 3755 -> Item 155
- Creation code
- Refers to item: Statement (location: source ID 119, line 226, chars 11725-11782, hits: 33835)
- IC 353 -> Item 156
- Creation code
- Refers to item: Function "calculateBurningAmountFromVotingPower" (location: source ID 119, line 235, chars 12070-12392, hits: 36976)
- IC 1174 -> Item 157
- Creation code
- Refers to item: Line (location: source ID 119, line 237, chars 12231-12327, hits: 104646)
- IC 1174 -> Item 158
- Creation code
- Refers to item: Statement (location: source ID 119, line 237, chars 12231-12327, hits: 104646)
- IC 1175 -> Item 159
- Creation code
- Refers to item: Statement (location: source ID 119, line 237, chars 12246-12327, hits: 104646)
- IC 1197 -> Item 160
- Creation code
- Refers to item: Statement (location: source ID 119, line 237, chars 12246-12302, hits: 104646)
- IC 1197 -> Item 161
- Creation code
- Refers to item: Statement (location: source ID 119, line 237, chars 12246-12290, hits: 104646)
- IC 1175 -> Item 162
- Creation code
- Refers to item: Statement (location: source ID 119, line 237, chars 12305-12327, hits: 104646)
- IC 1243 -> Item 163
- Creation code
- Refers to item: Line (location: source ID 119, line 238, chars 12337-12362, hits: 104646)
- IC 1243 -> Item 164
- Creation code
- Refers to item: Statement (location: source ID 119, line 238, chars 12337-12362, hits: 104646)
- IC 1245 -> Item 165
- Creation code
- Refers to item: Statement (location: source ID 119, line 238, chars 12354-12362, hits: 104646)
- IC 1260 -> Item 166
- Creation code
- Refers to item: Line (location: source ID 119, line 239, chars 12372-12385, hits: 104646)
- IC 1260 -> Item 167
- Creation code
- Refers to item: Statement (location: source ID 119, line 239, chars 12372-12385, hits: 104646)
- IC 449 -> Item 168
- Creation code
- Refers to item: Function "getVotingPowerCap" (location: source ID 119, line 246, chars 12549-12648, hits: 9221)
- IC 1321 -> Item 169
- Creation code
- Refers to item: Line (location: source ID 119, line 247, chars 12620-12641, hits: 9221)
- IC 1321 -> Item 170
- Creation code
- Refers to item: Statement (location: source ID 119, line 247, chars 12620-12641, hits: 9221)
- IC 773 -> Item 171
- Creation code
- Refers to item: Function "getConstants" (location: source ID 119, line 254, chars 12824-13174, hits: 1)
- IC 3716 -> Item 172
- Creation code
- Refers to item: Line (location: source ID 119, line 259, chars 13009-13049, hits: 1)
- IC 3716 -> Item 173
- Creation code
- Refers to item: Statement (location: source ID 119, line 259, chars 13009-13049, hits: 1)
- IC 3723 -> Item 174
- Creation code
- Refers to item: Line (location: source ID 119, line 260, chars 13059-13089, hits: 1)
- IC 3723 -> Item 175
- Creation code
- Refers to item: Statement (location: source ID 119, line 260, chars 13059-13089, hits: 1)
- IC 3727 -> Item 176
- Creation code
- Refers to item: Line (location: source ID 119, line 261, chars 13099-13135, hits: 1)
- IC 3727 -> Item 177
- Creation code
- Refers to item: Statement (location: source ID 119, line 261, chars 13099-13135, hits: 1)
- IC 3738 -> Item 178
- Creation code
- Refers to item: Line (location: source ID 119, line 262, chars 13145-13167, hits: 1)
- IC 3738 -> Item 179
- Creation code
- Refers to item: Statement (location: source ID 119, line 262, chars 13145-13167, hits: 1)
- IC 1018 -> Item 180
- Creation code
- Refers to item: Function "getTokenAddresses" (location: source ID 119, line 269, chars 13348-13535, hits: 1)
- IC 4093 -> Item 181
- Creation code
- Refers to item: Line (location: source ID 119, line 270, chars 13452-13489, hits: 1)
- IC 4093 -> Item 182
- Creation code
- Refers to item: Statement (location: source ID 119, line 270, chars 13452-13489, hits: 1)
- IC 4128 -> Item 183
- Creation code
- Refers to item: Line (location: source ID 119, line 271, chars 13499-13528, hits: 1)
- IC 4128 -> Item 184
- Creation code
- Refers to item: Statement (location: source ID 119, line 271, chars 13499-13528, hits: 1)
Anchors for Contract "IERC1155Receiver" (solc 0.8.24, source ID 68):
Anchors for Contract "TimelockController" (solc 0.8.24, source ID 42):
Anchors for Contract "Test" (solc 0.8.24, source ID 13):
Anchors for Contract "IERC1271" (solc 0.8.24, source ID 50):
Anchors for Contract "AccessControl" (solc 0.8.24, source ID 37):
Anchors for Contract "Checkpoints" (solc 0.8.24, source ID 97):
Anchors for Contract "VotingPowerExchangeTest" (solc 0.8.24, source ID 122):
Anchors for Contract "Arrays" (solc 0.8.24, source ID 82):
Anchors for Contract "GovernorCountingSimple" (solc 0.8.24, source ID 43):
Anchors for Contract "Timelock" (solc 0.8.24, source ID 118):
- IC 5 -> Item 345
- Runtime code
- Refers to item: Function "" (location: source ID 118, line 17, chars 727-900, hits: 4)
Anchors for Contract "Strings" (solc 0.8.24, source ID 87):
Anchors for Contract "Versions" (solc 0.8.24, source ID 107):
Anchors for Contract "IProxyAdmin" (solc 0.8.24, source ID 108):
Anchors for Contract "TestBaseSepolia" (solc 0.8.24, source ID 125):
Anchors for Contract "Address" (solc 0.8.24, source ID 81):
Anchors for Contract "ITransparentUpgradeableProxy" (solc 0.8.24, source ID 65):
Anchors for Contract "Defender" (solc 0.8.24, source ID 101):
Anchors for Contract "StorageSlot" (solc 0.8.24, source ID 86):
Anchors for Contract "ERC20Votes" (solc 0.8.24, source ID 76):
Anchors for Contract "IERC165" (solc 0.8.24, source ID 93):
Anchors for Contract "IERC721Metadata" (solc 0.8.24, source ID 19):
Anchors for Contract "IERC6372" (solc 0.8.24, source ID 55):
Anchors for Contract "IERC5267" (solc 0.8.24, source ID 53):
Anchors for Contract "IUpgradeableProxy" (solc 0.8.24, source ID 110):
Anchors for Contract "BeaconProxy" (solc 0.8.24, source ID 61):
Anchors for Contract "ERC20UpgradeableTokenV1" (solc 0.8.24, source ID 115):
- IC 56 -> Item 185
- Runtime code
- Refers to item: Function "" (location: source ID 115, line 34, chars 1557-1610, hits: 114)
- IC 70 -> Item 186
- Runtime code
- Refers to item: Line (location: source ID 115, line 35, chars 1581-1603, hits: 114)
- IC 70 -> Item 187
- Runtime code
- Refers to item: Statement (location: source ID 115, line 35, chars 1581-1603, hits: 114)
- IC 1808 -> Item 188
- Creation code
- Refers to item: Function "initialize" (location: source ID 115, line 38, chars 1616-2352, hits: 113)
- IC 4215 -> Item 189
- Creation code
- Refers to item: Line (location: source ID 115, line 47, chars 1861-1887, hits: 113)
- IC 4215 -> Item 190
- Creation code
- Refers to item: Statement (location: source ID 115, line 47, chars 1861-1887, hits: 113)
- IC 4267 -> Item 191
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 115, line 47, chars 1889-1922, hits: 1)
- IC 4267 -> Item 192
- Creation code
- Refers to item: Statement (location: source ID 115, line 47, chars 1889-1922, hits: 1)
- IC 4317 -> Item 193
- Creation code
- Refers to item: Line (location: source ID 115, line 48, chars 1932-1958, hits: 112)
- IC 4317 -> Item 194
- Creation code
- Refers to item: Statement (location: source ID 115, line 48, chars 1932-1958, hits: 112)
- IC 4327 -> Item 195
- Creation code
- Refers to item: Line (location: source ID 115, line 49, chars 1968-1990, hits: 112)
- IC 4327 -> Item 196
- Creation code
- Refers to item: Statement (location: source ID 115, line 49, chars 1968-1990, hits: 112)
- IC 4335 -> Item 197
- Creation code
- Refers to item: Line (location: source ID 115, line 50, chars 2000-2022, hits: 112)
- IC 4335 -> Item 198
- Creation code
- Refers to item: Statement (location: source ID 115, line 50, chars 2000-2022, hits: 112)
- IC 4343 -> Item 199
- Creation code
- Refers to item: Line (location: source ID 115, line 51, chars 2032-2054, hits: 112)
- IC 4343 -> Item 200
- Creation code
- Refers to item: Statement (location: source ID 115, line 51, chars 2032-2054, hits: 112)
- IC 4351 -> Item 201
- Creation code
- Refers to item: Line (location: source ID 115, line 52, chars 2064-2088, hits: 112)
- IC 4351 -> Item 202
- Creation code
- Refers to item: Statement (location: source ID 115, line 52, chars 2064-2088, hits: 112)
- IC 4360 -> Item 203
- Creation code
- Refers to item: Line (location: source ID 115, line 53, chars 2098-2122, hits: 112)
- IC 4360 -> Item 204
- Creation code
- Refers to item: Statement (location: source ID 115, line 53, chars 2098-2122, hits: 112)
- IC 4368 -> Item 205
- Creation code
- Refers to item: Line (location: source ID 115, line 55, chars 2133-2177, hits: 112)
- IC 4368 -> Item 206
- Creation code
- Refers to item: Statement (location: source ID 115, line 55, chars 2133-2177, hits: 112)
- IC 4382 -> Item 207
- Creation code
- Refers to item: Line (location: source ID 115, line 56, chars 2187-2218, hits: 112)
- IC 4382 -> Item 208
- Creation code
- Refers to item: Statement (location: source ID 115, line 56, chars 2187-2218, hits: 112)
- IC 4425 -> Item 209
- Creation code
- Refers to item: Line (location: source ID 115, line 57, chars 2228-2259, hits: 112)
- IC 4425 -> Item 210
- Creation code
- Refers to item: Statement (location: source ID 115, line 57, chars 2228-2259, hits: 112)
- IC 4468 -> Item 211
- Creation code
- Refers to item: Line (location: source ID 115, line 58, chars 2269-2300, hits: 112)
- IC 4468 -> Item 212
- Creation code
- Refers to item: Statement (location: source ID 115, line 58, chars 2269-2300, hits: 112)
- IC 4511 -> Item 213
- Creation code
- Refers to item: Line (location: source ID 115, line 59, chars 2310-2345, hits: 112)
- IC 4511 -> Item 214
- Creation code
- Refers to item: Statement (location: source ID 115, line 59, chars 2310-2345, hits: 112)
- IC 1485 -> Item 215
- Creation code
- Refers to item: Function "pause" (location: source ID 115, line 62, chars 2358-2429, hits: 3)
- IC 3259 -> Item 216
- Creation code
- Refers to item: Line (location: source ID 115, line 63, chars 2414-2422, hits: 3)
- IC 3259 -> Item 217
- Creation code
- Refers to item: Statement (location: source ID 115, line 63, chars 2414-2422, hits: 3)
- IC 1103 -> Item 218
- Creation code
- Refers to item: Function "unpause" (location: source ID 115, line 66, chars 2435-2510, hits: 2)
- IC 2873 -> Item 219
- Creation code
- Refers to item: Line (location: source ID 115, line 67, chars 2493-2503, hits: 2)
- IC 2873 -> Item 220
- Creation code
- Refers to item: Statement (location: source ID 115, line 67, chars 2493-2503, hits: 2)
- IC 1126 -> Item 221
- Creation code
- Refers to item: Function "mint" (location: source ID 115, line 70, chars 2516-2621, hits: 6451)
- IC 2926 -> Item 222
- Creation code
- Refers to item: Line (location: source ID 115, line 71, chars 2597-2614, hits: 6451)
- IC 2926 -> Item 223
- Creation code
- Refers to item: Statement (location: source ID 115, line 71, chars 2597-2614, hits: 6451)
- IC 935 -> Item 224
- Creation code
- Refers to item: Function "burnByBurner" (location: source ID 115, line 79, chars 2854-2977, hits: 12305)
- IC 2669 -> Item 225
- Creation code
- Refers to item: Line (location: source ID 115, line 80, chars 2948-2970, hits: 12303)
- IC 2669 -> Item 226
- Creation code
- Refers to item: Statement (location: source ID 115, line 80, chars 2948-2970, hits: 12303)
- IC 7036 -> Item 227
- Creation code
- Refers to item: Function "_authorizeUpgrade" (location: source ID 115, line 83, chars 2983-3081, hits: 1)
- IC 8952 -> Item 228
- Creation code
- Refers to item: Function "_update" (location: source ID 115, line 86, chars 3154-3341, hits: 18762)
- IC 8953 -> Item 229
- Creation code
- Refers to item: Line (location: source ID 115, line 90, chars 3304-3334, hits: 18762)
- IC 8953 -> Item 230
- Creation code
- Refers to item: Statement (location: source ID 115, line 90, chars 3304-3334, hits: 18762)
Anchors for Contract "VotingPowerExchangeTestHelper" (solc 0.8.24, source ID 123):
- IC 448 -> Item 0
- Creation code
- Refers to item: Function "generateSignatureFromPrivateKey" (location: source ID 123, line 15, chars 564-1559, hits: 27672)
- IC 2271 -> Item 1
- Creation code
- Refers to item: Line (location: source ID 123, line 22, chars 798-834, hits: 27672)
- IC 2271 -> Item 2
- Creation code
- Refers to item: Statement (location: source ID 123, line 22, chars 798-834, hits: 27672)
- IC 2308 -> Item 3
- Creation code
- Refers to item: Statement (location: source ID 123, line 22, chars 815-834, hits: 27672)
- IC 2431 -> Item 4
- Creation code
- Refers to item: Line (location: source ID 123, line 23, chars 844-873, hits: 27672)
- IC 2431 -> Item 5
- Creation code
- Refers to item: Statement (location: source ID 123, line 23, chars 844-873, hits: 27672)
- IC 2494 -> Item 6
- Creation code
- Refers to item: Line (location: source ID 123, line 24, chars 883-980, hits: 27672)
- IC 2494 -> Item 7
- Creation code
- Refers to item: Statement (location: source ID 123, line 24, chars 883-980, hits: 27672)
- IC 2529 -> Item 8
- Creation code
- Refers to item: Statement (location: source ID 123, line 24, chars 904-980, hits: 27672)
- IC 2577 -> Item 9
- Creation code
- Refers to item: Line (location: source ID 123, line 26, chars 991-1344, hits: 27672)