@layerzerolabs/utils-upgradeable-evm-contracts 0.2.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/.turbo/turbo-lint.log +491 -0
  2. package/.turbo/turbo-test.log +1356 -0
  3. package/LICENSE +23 -0
  4. package/contracts/access/AccessControl2StepUpgradeable.sol +144 -0
  5. package/contracts/allowlist/AllowlistBaseUpgradeable.sol +184 -0
  6. package/contracts/allowlist/AllowlistRBACUpgradeable.sol +55 -0
  7. package/contracts/fee-accounting/FeeHandlerBaseUpgradeable.sol +69 -0
  8. package/contracts/fee-accounting/FeeHandlerRBACUpgradeable.sol +34 -0
  9. package/contracts/fee-config/FeeConfigBaseUpgradeable.sol +128 -0
  10. package/contracts/fee-config/FeeConfigRBACUpgradeable.sol +44 -0
  11. package/contracts/libs/EnumerableSetPagination.sol +77 -0
  12. package/contracts/pause/PauseBaseUpgradeable.sol +107 -0
  13. package/contracts/pause/PauseRBACUpgradeable.sol +47 -0
  14. package/contracts/pause-by-id/PauseByIDBaseUpgradeable.sol +127 -0
  15. package/contracts/pause-by-id/PauseByIDRBACUpgradeable.sol +74 -0
  16. package/contracts/rate-limiter/RateLimiterBaseUpgradeable.sol +636 -0
  17. package/contracts/rate-limiter/RateLimiterRBACUpgradeable.sol +89 -0
  18. package/contracts/rate-limiter/libs/RateLimiterUtils.sol +82 -0
  19. package/foundry.toml +27 -0
  20. package/package.json +34 -0
  21. package/solhint.config.js +3 -0
  22. package/test/AccessControl2StepUpgradeable.t.sol +374 -0
  23. package/test/AllowlistBaseUpgradeable.t.sol +380 -0
  24. package/test/AllowlistRBACUpgradeable.t.sol +84 -0
  25. package/test/EnumerableSetPagination.t.sol +445 -0
  26. package/test/FeeConfigBaseUpgradeable.t.sol +232 -0
  27. package/test/FeeConfigRBACUpgradeable.t.sol +59 -0
  28. package/test/FeeHandlerBaseUpgradeable.t.sol +78 -0
  29. package/test/FeeHandlerRBACUpgradeable.t.sol +45 -0
  30. package/test/PauseBaseUpgradeable.t.sol +244 -0
  31. package/test/PauseByIDBaseUpgradeable.t.sol +337 -0
  32. package/test/PauseByIDRBACUpgradeable.t.sol +414 -0
  33. package/test/PauseRBACUpgradeable.t.sol +258 -0
  34. package/test/RateLimiterBaseUpgradeable.t.sol +826 -0
  35. package/test/RateLimiterRBACUpgradeable.t.sol +128 -0
  36. package/test/RateLimiterRBACUpgradeableInvariant.t.sol +444 -0
  37. package/test/RateLimiterUtils.t.sol +137 -0
@@ -0,0 +1,491 @@
1
+
2
+ > @layerzerolabs/utils-upgradeable-evm-contracts@0.0.0 lint /home/runner/work/monorepo-internal/monorepo-internal/contracts/common/utils/evm/upgradeable
3
+ > solhint --config solhint.config.js 'contracts/**/*.sol' 'test/**/*.sol' --fix --noPrompt
4
+
5
+ A new version of Solhint is available: 6.2.1
6
+ Please consider updating your Solhint package.
7
+
8
+ contracts/access/AccessControl2StepUpgradeable.sol
9
+ 36:5 warning Mismatch in @return names for function '_getAccessControl2StepStorage'. Expected: [$], Found: [] use-natspec
10
+ 116:5 warning Missing @notice tag in function '_grantRole' use-natspec
11
+ 116:5 warning Missing @param tag in function '_grantRole' use-natspec
12
+ 116:5 warning Mismatch in @param names for function '_grantRole'. Expected: [role, account], Found: [] use-natspec
13
+ 116:5 warning Missing @return tag in function '_grantRole' use-natspec
14
+ 116:5 warning Mismatch in @return count for function '_grantRole'. Expected: 1, Found: 0 use-natspec
15
+ 127:5 warning Missing @notice tag in function '_revokeRole' use-natspec
16
+ 127:5 warning Missing @param tag in function '_revokeRole' use-natspec
17
+ 127:5 warning Mismatch in @param names for function '_revokeRole'. Expected: [role, account], Found: [] use-natspec
18
+ 127:5 warning Missing @return tag in function '_revokeRole' use-natspec
19
+ 127:5 warning Mismatch in @return count for function '_revokeRole'. Expected: 1, Found: 0 use-natspec
20
+ 138:5 warning Missing @notice tag in function '_setRoleAdmin' use-natspec
21
+ 138:5 warning Missing @param tag in function '_setRoleAdmin' use-natspec
22
+ 138:5 warning Mismatch in @param names for function '_setRoleAdmin'. Expected: [role, adminRole], Found: [] use-natspec
23
+
24
+ contracts/allowlist/AllowlistBaseUpgradeable.sol
25
+ 37:5 warning Mismatch in @return names for function '_getAllowlistStorage'. Expected: [$], Found: [] use-natspec
26
+ 152:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
27
+ 172:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
28
+
29
+ contracts/allowlist/AllowlistRBACUpgradeable.sol
30
+ 27:63 warning Code contains empty blocks no-empty-blocks
31
+ 33:73 warning Code contains empty blocks no-empty-blocks
32
+
33
+ contracts/fee-accounting/FeeHandlerBaseUpgradeable.sol
34
+ 31:5 warning Mismatch in @return names for function '_getFeeHandlerStorage'. Expected: [$], Found: [] use-natspec
35
+
36
+ contracts/fee-accounting/FeeHandlerRBACUpgradeable.sol
37
+ 20:64 warning Code contains empty blocks no-empty-blocks
38
+ 26:74 warning Code contains empty blocks no-empty-blocks
39
+
40
+ contracts/fee-config/FeeConfigBaseUpgradeable.sol
41
+ 34:5 warning Mismatch in @return names for function '_getFeeConfigStorage'. Expected: [$], Found: [] use-natspec
42
+ 44:63 warning Code contains empty blocks no-empty-blocks
43
+ 50:73 warning Code contains empty blocks no-empty-blocks
44
+
45
+ contracts/fee-config/FeeConfigRBACUpgradeable.sol
46
+ 23:63 warning Code contains empty blocks no-empty-blocks
47
+ 29:73 warning Code contains empty blocks no-empty-blocks
48
+
49
+ contracts/libs/EnumerableSetPagination.sol
50
+ 30:13 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
51
+ 42:47 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
52
+ 61:13 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
53
+ 73:47 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
54
+
55
+ contracts/pause-by-id/PauseByIDBaseUpgradeable.sol
56
+ 30:5 warning Mismatch in @return names for function '_getPauseByIDStorage'. Expected: [$], Found: [] use-natspec
57
+ 40:63 warning Code contains empty blocks no-empty-blocks
58
+ 46:73 warning Code contains empty blocks no-empty-blocks
59
+ 121:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
60
+
61
+ contracts/pause-by-id/PauseByIDRBACUpgradeable.sol
62
+ 26:63 warning Code contains empty blocks no-empty-blocks
63
+ 32:73 warning Code contains empty blocks no-empty-blocks
64
+ 54:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
65
+
66
+ contracts/pause/PauseBaseUpgradeable.sol
67
+ 29:5 warning Mismatch in @return names for function '_getPauseStorage'. Expected: [$], Found: [] use-natspec
68
+ 39:59 warning Code contains empty blocks no-empty-blocks
69
+ 45:69 warning Code contains empty blocks no-empty-blocks
70
+
71
+ contracts/pause/PauseRBACUpgradeable.sol
72
+ 26:59 warning Code contains empty blocks no-empty-blocks
73
+ 32:69 warning Code contains empty blocks no-empty-blocks
74
+
75
+ contracts/rate-limiter/RateLimiterBaseUpgradeable.sol
76
+ 138:5 warning Mismatch in @return names for function '_getRateLimiterStorage'. Expected: [$], Found: [] use-natspec
77
+ 148:5 warning Missing @notice tag in function '<anonymous>' use-natspec
78
+ 289:5 warning Function body contains 66 lines but allowed no more than 50 lines function-max-lines
79
+ 521:46 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
80
+ 547:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
81
+ 576:49 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
82
+ 601:53 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
83
+
84
+ contracts/rate-limiter/RateLimiterRBACUpgradeable.sol
85
+ 33:5 warning Missing @notice tag in function '<anonymous>' use-natspec
86
+ 39:65 warning Code contains empty blocks no-empty-blocks
87
+ 45:75 warning Code contains empty blocks no-empty-blocks
88
+
89
+ test/AccessControl2StepUpgradeable.t.sol
90
+ 2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
91
+ 7:1 warning Import in test/AccessControl2StepUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
92
+ 13:1 warning Missing @title tag in contract 'AccessControl2StepUpgradeableMock' use-natspec
93
+ 13:1 warning Missing @author tag in contract 'AccessControl2StepUpgradeableMock' use-natspec
94
+ 13:1 warning Missing @notice tag in contract 'AccessControl2StepUpgradeableMock' use-natspec
95
+ 14:5 warning Missing @notice tag in variable 'TEST_ROLE' use-natspec
96
+ 15:5 warning Missing @notice tag in variable 'OTHER_ROLE' use-natspec
97
+ 17:5 warning Missing @notice tag in function '<anonymous>' use-natspec
98
+ 21:5 warning Missing @notice tag in function 'initialize' use-natspec
99
+ 21:5 warning Missing @param tag in function 'initialize' use-natspec
100
+ 21:5 warning Mismatch in @param names for function 'initialize'. Expected: [_initialAdmin], Found: [] use-natspec
101
+ 25:5 warning Missing @notice tag in function 'exposedSetRoleAdmin' use-natspec
102
+ 25:5 warning Missing @param tag in function 'exposedSetRoleAdmin' use-natspec
103
+ 25:5 warning Mismatch in @param names for function 'exposedSetRoleAdmin'. Expected: [role, adminRole], Found: [] use-natspec
104
+ 30:1 warning Missing @title tag in contract 'AccessControl2StepUpgradeableTest' use-natspec
105
+ 30:1 warning Missing @author tag in contract 'AccessControl2StepUpgradeableTest' use-natspec
106
+ 30:1 warning Missing @notice tag in contract 'AccessControl2StepUpgradeableTest' use-natspec
107
+ 31:5 warning Explicitly mark visibility of state state-visibility
108
+ 33:5 warning Explicitly mark visibility of state state-visibility
109
+ 34:5 warning Explicitly mark visibility of state state-visibility
110
+ 35:5 warning Explicitly mark visibility of state state-visibility
111
+ 36:5 warning Explicitly mark visibility of state state-visibility
112
+ 37:5 warning Explicitly mark visibility of state state-visibility
113
+ 39:5 warning Explicitly mark visibility of state state-visibility
114
+ 40:5 warning Explicitly mark visibility of state state-visibility
115
+ 42:5 warning Missing @notice tag in function 'setUp' use-natspec
116
+ 60:5 warning Missing @notice tag in function 'test_initialize_Success_AdminHasRole' use-natspec
117
+ 67:5 warning Missing @notice tag in function 'test_initialize_Revert_AlreadyInitialized' use-natspec
118
+ 72:5 warning Missing @notice tag in function 'test_initialize_Revert_InvalidDefaultAdmin' use-natspec
119
+ 84:5 warning Missing @notice tag in function 'test_defaultAdmin_ReturnsInitialAdmin' use-natspec
120
+ 90:5 warning Missing @notice tag in function 'test_pendingDefaultAdmin_InitiallyZero' use-natspec
121
+ 96:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success' use-natspec
122
+ 106:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success_OverwritesPending' use-natspec
123
+ 114:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success_CancelsBySettingZero' use-natspec
124
+ 125:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Revert_Unauthorized' use-natspec
125
+ 135:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Success' use-natspec
126
+ 149:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_NotPendingAdmin' use-natspec
127
+ 157:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_NoPendingTransfer' use-natspec
128
+ 165:5 warning Missing @notice tag in function 'test_grantRole_Revert_DefaultAdminRole' use-natspec
129
+ 170:5 warning Missing @notice tag in function 'test_grantRole_Success_NonAdminRole' use-natspec
130
+ 177:5 warning Missing @notice tag in function 'test_revokeRole_Revert_DefaultAdminRole_NonAdmin' use-natspec
131
+ 185:5 warning Missing @notice tag in function 'test_revokeRole_Revert_DefaultAdminRole_Admin' use-natspec
132
+ 190:5 warning Missing @notice tag in function 'test_revokeRole_Success_NonAdminRole_Admin' use-natspec
133
+ 198:5 warning Missing @notice tag in function 'test_revokeRole_Revert_NonAdminRole_NonAdmin' use-natspec
134
+ 211:5 warning Missing @notice tag in function 'test_renounceRole_Revert_DefaultAdminRole' use-natspec
135
+ 216:5 warning Missing @notice tag in function 'test_renounceRole_Revert_DefaultAdminRoleDuringPendingTransfer' use-natspec
136
+ 223:5 warning Missing @notice tag in function 'test_renounceRole_Success_NonAdminRole_NonAdmin' use-natspec
137
+ 233:5 warning Missing @notice tag in function 'test_renounceRole_Success_NonAdminRole_Admin' use-natspec
138
+ 242:5 warning Missing @notice tag in function 'test_setRoleAdmin_Success_NonAdminRole_Self' use-natspec
139
+ 247:5 warning Missing @notice tag in function 'test_setRoleAdmin_Success_NonAdminRole_Other' use-natspec
140
+ 253:5 warning Missing @notice tag in function 'test_setRoleAdmin_Revert_DefaultAdminRole' use-natspec
141
+ 260:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
142
+ 262:42 warning GC: String exceeds 32 bytes gas-small-strings
143
+ 270:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Fuzz' use-natspec
144
+ 270:5 warning Missing @param tag in function 'test_beginDefaultAdminTransfer_Fuzz' use-natspec
145
+ 270:5 warning Mismatch in @param names for function 'test_beginDefaultAdminTransfer_Fuzz'. Expected: [_newAdmin], Found: [] use-natspec
146
+ 276:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Fuzz' use-natspec
147
+ 276:5 warning Missing @param tag in function 'test_acceptDefaultAdminTransfer_Fuzz' use-natspec
148
+ 276:5 warning Mismatch in @param names for function 'test_acceptDefaultAdminTransfer_Fuzz'. Expected: [_newAdmin], Found: [] use-natspec
149
+ 295:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_StalePendingAfterOverwrite' use-natspec
150
+ 312:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_AfterCancel' use-natspec
151
+ 321:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Events' use-natspec
152
+ 335:5 warning Missing @notice tag in function 'test_integration_TransferAndTransferAgain' use-natspec
153
+ 360:5 warning Missing @notice tag in function 'test_integration_TransferCancelRetransfer' use-natspec
154
+
155
+ test/AllowlistBaseUpgradeable.t.sol
156
+ 2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
157
+ 6:1 warning Import in test/AllowlistBaseUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
158
+ 9:1 warning Missing @title tag in contract 'IAllowlistMock' use-natspec
159
+ 9:1 warning Missing @author tag in contract 'IAllowlistMock' use-natspec
160
+ 9:1 warning Missing @notice tag in contract 'IAllowlistMock' use-natspec
161
+ 10:5 warning Missing @notice tag in function 'setAllowlistMode' use-natspec
162
+ 10:5 warning Missing @param tag in function 'setAllowlistMode' use-natspec
163
+ 10:5 warning Mismatch in @param names for function 'setAllowlistMode'. Expected: [_mode], Found: [] use-natspec
164
+ 11:5 warning Missing @notice tag in function 'setWhitelisted' use-natspec
165
+ 11:5 warning Missing @param tag in function 'setWhitelisted' use-natspec
166
+ 11:5 warning Mismatch in @param names for function 'setWhitelisted'. Expected: [_params], Found: [] use-natspec
167
+ 12:5 warning Missing @notice tag in function 'setBlacklisted' use-natspec
168
+ 12:5 warning Missing @param tag in function 'setBlacklisted' use-natspec
169
+ 12:5 warning Mismatch in @param names for function 'setBlacklisted'. Expected: [_params], Found: [] use-natspec
170
+ 13:5 warning Missing @notice tag in function 'restrictedFunction' use-natspec
171
+ 13:5 warning Missing @return tag in function 'restrictedFunction' use-natspec
172
+ 13:5 warning Mismatch in @return count for function 'restrictedFunction'. Expected: 1, Found: 0 use-natspec
173
+ 16:1 warning Missing @title tag in contract 'AllowlistBaseUpgradeableMock' use-natspec
174
+ 16:1 warning Missing @author tag in contract 'AllowlistBaseUpgradeableMock' use-natspec
175
+ 16:1 warning Missing @notice tag in contract 'AllowlistBaseUpgradeableMock' use-natspec
176
+ 17:5 warning Missing @notice tag in function '<anonymous>' use-natspec
177
+ 21:5 warning Missing @notice tag in function 'initialize' use-natspec
178
+ 21:5 warning Missing @param tag in function 'initialize' use-natspec
179
+ 21:5 warning Mismatch in @param names for function 'initialize'. Expected: [_mode], Found: [] use-natspec
180
+ 25:5 warning Missing @notice tag in function 'setAllowlistMode' use-natspec
181
+ 25:5 warning Missing @param tag in function 'setAllowlistMode' use-natspec
182
+ 25:5 warning Mismatch in @param names for function 'setAllowlistMode'. Expected: [_mode], Found: [] use-natspec
183
+ 29:5 warning Missing @notice tag in function 'setWhitelisted' use-natspec
184
+ 29:5 warning Missing @param tag in function 'setWhitelisted' use-natspec
185
+ 29:5 warning Mismatch in @param names for function 'setWhitelisted'. Expected: [_params], Found: [] use-natspec
186
+ 33:5 warning Missing @notice tag in function 'setBlacklisted' use-natspec
187
+ 33:5 warning Missing @param tag in function 'setBlacklisted' use-natspec
188
+ 33:5 warning Mismatch in @param names for function 'setBlacklisted'. Expected: [_params], Found: [] use-natspec
189
+ 37:5 warning Missing @notice tag in function 'restrictedFunction' use-natspec
190
+ 37:5 warning Missing @return tag in function 'restrictedFunction' use-natspec
191
+ 37:5 warning Mismatch in @return count for function 'restrictedFunction'. Expected: 1, Found: 0 use-natspec
192
+ 42:1 warning Missing @title tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
193
+ 42:1 warning Missing @author tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
194
+ 42:1 warning Missing @notice tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
195
+ 43:5 warning Explicitly mark visibility of state state-visibility
196
+ 45:5 warning Explicitly mark visibility of state state-visibility
197
+ 46:5 warning Explicitly mark visibility of state state-visibility
198
+ 47:5 warning Explicitly mark visibility of state state-visibility
199
+ 49:5 warning Missing @notice tag in function '_createAllowlist' use-natspec
200
+ 49:5 warning Missing @param tag in function '_createAllowlist' use-natspec
201
+ 49:5 warning Mismatch in @param names for function '_createAllowlist'. Expected: [_mode], Found: [] use-natspec
202
+ 49:5 warning Missing @return tag in function '_createAllowlist' use-natspec
203
+ 49:5 warning Mismatch in @return count for function '_createAllowlist'. Expected: 1, Found: 0 use-natspec
204
+ 59:5 warning Missing @notice tag in function 'setUp' use-natspec
205
+ 65:5 warning Missing @notice tag in function 'test_constructor_InitialMode' use-natspec
206
+ 69:5 warning Missing @notice tag in function 'test_constructor_InitializeWhitelist' use-natspec
207
+ 76:5 warning Missing @notice tag in function 'test_isAllowlisted_Open_AllAllowed' use-natspec
208
+ 82:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Open_AllAllowed' use-natspec
209
+ 92:5 warning Missing @notice tag in function 'test_setMode_Blacklist' use-natspec
210
+ 100:5 warning Missing @notice tag in function 'test_isAllowlisted_Blacklist_NotBlacklisted' use-natspec
211
+ 105:5 warning Missing @notice tag in function 'test_isAllowlisted_Blacklist_Blacklisted' use-natspec
212
+ 120:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Blacklist_RevertIfBlacklisted' use-natspec
213
+ 138:5 warning Missing @notice tag in function 'test_setBlacklisted_RemoveFromBlacklist' use-natspec
214
+ 155:5 warning Missing @notice tag in function 'test_setBlacklisted_MultipleUsers' use-natspec
215
+ 171:5 warning Missing @notice tag in function 'test_setMode_Whitelist' use-natspec
216
+ 179:5 warning Missing @notice tag in function 'test_isAllowlisted_Whitelist_NotWhitelisted' use-natspec
217
+ 184:5 warning Missing @notice tag in function 'test_isAllowlisted_Whitelist_Whitelisted' use-natspec
218
+ 199:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Whitelist_RevertIfNotWhitelisted' use-natspec
219
+ 217:5 warning Missing @notice tag in function 'test_setWhitelisted_RemoveFromWhitelist' use-natspec
220
+ 234:5 warning Missing @notice tag in function 'test_setWhitelisted_MultipleUsers' use-natspec
221
+ 250:5 warning Missing @notice tag in function 'test_SwitchModes_PreservesState' use-natspec
222
+ 275:5 warning Missing @notice tag in function 'test_setWhitelisted_EmptyArray' use-natspec
223
+ 280:5 warning Missing @notice tag in function 'test_setBlacklisted_EmptyArray' use-natspec
224
+ 285:5 warning Missing @notice tag in function 'test_setMode_MultipleChanges' use-natspec
225
+ 301:5 warning Missing @notice tag in function 'test_setMode_RevertSameMode' use-natspec
226
+ 313:5 warning Missing @notice tag in function 'test_setWhitelisted_Revert_AlreadyWhitelisted' use-natspec
227
+ 328:5 warning Missing @notice tag in function 'test_setBlacklisted_Revert_AlreadyBlacklisted' use-natspec
228
+ 345:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Open' use-natspec
229
+ 345:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Open' use-natspec
230
+ 345:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Open'. Expected: [_user], Found: [] use-natspec
231
+ 349:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted' use-natspec
232
+ 349:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted' use-natspec
233
+ 349:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted'. Expected: [_user], Found: [] use-natspec
234
+ 354:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted' use-natspec
235
+ 354:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted' use-natspec
236
+ 354:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted'. Expected: [_user], Found: [] use-natspec
237
+ 362:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted' use-natspec
238
+ 362:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted' use-natspec
239
+ 362:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted'. Expected: [_user], Found: [] use-natspec
240
+ 367:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted' use-natspec
241
+ 367:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted' use-natspec
242
+ 367:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted'. Expected: [_user], Found: [] use-natspec
243
+ 375:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
244
+
245
+ test/AllowlistRBACUpgradeable.t.sol
246
+ 2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
247
+ 10:1 warning Missing @title tag in contract 'AllowlistRBACUpgradeableMock' use-natspec
248
+ 10:1 warning Missing @author tag in contract 'AllowlistRBACUpgradeableMock' use-natspec
249
+ 10:1 warning Missing @notice tag in contract 'AllowlistRBACUpgradeableMock' use-natspec
250
+ 11:5 warning Missing @notice tag in function '<anonymous>' use-natspec
251
+ 15:5 warning Missing @notice tag in function 'initialize' use-natspec
252
+ 15:5 warning Missing @param tag in function 'initialize' use-natspec
253
+ 15:5 warning Mismatch in @param names for function 'initialize'. Expected: [_mode, _initialAdmin], Found: [] use-natspec
254
+ 20:5 warning Missing @notice tag in function 'restrictedFunction' use-natspec
255
+ 20:5 warning Missing @return tag in function 'restrictedFunction' use-natspec
256
+ 20:5 warning Mismatch in @return count for function 'restrictedFunction'. Expected: 1, Found: 0 use-natspec
257
+ 25:1 warning Missing @title tag in contract 'AllowlistRBACUpgradeableTest' use-natspec
258
+ 25:1 warning Missing @author tag in contract 'AllowlistRBACUpgradeableTest' use-natspec
259
+ 25:1 warning Missing @notice tag in contract 'AllowlistRBACUpgradeableTest' use-natspec
260
+ 26:5 warning Explicitly mark visibility of state state-visibility
261
+ 28:5 warning Missing @notice tag in function '_createAllowlist' use-natspec
262
+ 28:5 warning Missing @param tag in function '_createAllowlist' use-natspec
263
+ 28:5 warning Mismatch in @param names for function '_createAllowlist'. Expected: [_mode], Found: [] use-natspec
264
+ 28:5 warning Missing @return tag in function '_createAllowlist' use-natspec
265
+ 28:5 warning Mismatch in @return count for function '_createAllowlist'. Expected: 1, Found: 0 use-natspec
266
+ 41:5 warning Missing @notice tag in function 'setUp' use-natspec
267
+ 45:5 warning Missing @notice tag in function 'test_setAllowlistMode_Revert_Unauthorized' use-natspec
268
+ 57:5 warning Missing @notice tag in function 'test_setWhitelisted_Revert_Unauthorized' use-natspec
269
+ 71:5 warning Missing @notice tag in function 'test_setBlacklisted_Revert_Unauthorized' use-natspec
270
+
271
+ test/EnumerableSetPagination.t.sol
272
+ 2:1 warning Found more than One contract per file. 3 contracts found! one-contract-per-file
273
+ 5:1 warning Import in test/EnumerableSetPagination.t.sol doesn't exist in: forge-std/Test.sol import-path-check
274
+ 8:1 warning Missing @title tag in contract 'AddressPaginationHarness' use-natspec
275
+ 8:1 warning Missing @author tag in contract 'AddressPaginationHarness' use-natspec
276
+ 8:1 warning Missing @notice tag in contract 'AddressPaginationHarness' use-natspec
277
+ 12:5 warning Explicitly mark visibility of state state-visibility
278
+ 14:5 warning Missing @notice tag in function 'add' use-natspec
279
+ 14:5 warning Missing @param tag in function 'add' use-natspec
280
+ 14:5 warning Mismatch in @param names for function 'add'. Expected: [_addr], Found: [] use-natspec
281
+ 17:5 warning Missing @notice tag in function 'remove' use-natspec
282
+ 17:5 warning Missing @param tag in function 'remove' use-natspec
283
+ 17:5 warning Mismatch in @param names for function 'remove'. Expected: [_addr], Found: [] use-natspec
284
+ 20:5 warning Missing @notice tag in function 'length' use-natspec
285
+ 20:5 warning Missing @return tag in function 'length' use-natspec
286
+ 20:5 warning Mismatch in @return count for function 'length'. Expected: 1, Found: 0 use-natspec
287
+ 23:5 warning Missing @notice tag in function 'paginate' use-natspec
288
+ 23:5 warning Missing @param tag in function 'paginate' use-natspec
289
+ 23:5 warning Mismatch in @param names for function 'paginate'. Expected: [_offset, _limit], Found: [] use-natspec
290
+ 23:5 warning Missing @return tag in function 'paginate' use-natspec
291
+ 23:5 warning Mismatch in @return count for function 'paginate'. Expected: 1, Found: 0 use-natspec
292
+ 28:1 warning Missing @title tag in contract 'UintPaginationHarness' use-natspec
293
+ 28:1 warning Missing @author tag in contract 'UintPaginationHarness' use-natspec
294
+ 28:1 warning Missing @notice tag in contract 'UintPaginationHarness' use-natspec
295
+ 32:5 warning Explicitly mark visibility of state state-visibility
296
+ 34:5 warning Missing @notice tag in function 'add' use-natspec
297
+ 34:5 warning Missing @param tag in function 'add' use-natspec
298
+ 34:5 warning Mismatch in @param names for function 'add'. Expected: [_val], Found: [] use-natspec
299
+ 37:5 warning Missing @notice tag in function 'remove' use-natspec
300
+ 37:5 warning Missing @param tag in function 'remove' use-natspec
301
+ 37:5 warning Mismatch in @param names for function 'remove'. Expected: [_val], Found: [] use-natspec
302
+ 40:5 warning Missing @notice tag in function 'length' use-natspec
303
+ 40:5 warning Missing @return tag in function 'length' use-natspec
304
+ 40:5 warning Mismatch in @return count for function 'length'. Expected: 1, Found: 0 use-natspec
305
+ 43:5 warning Missing @notice tag in function 'paginate' use-natspec
306
+ 43:5 warning Missing @param tag in function 'paginate' use-natspec
307
+ 43:5 warning Mismatch in @param names for function 'paginate'. Expected: [_offset, _limit], Found: [] use-natspec
308
+ 43:5 warning Missing @return tag in function 'paginate' use-natspec
309
+ 43:5 warning Mismatch in @return count for function 'paginate'. Expected: 1, Found: 0 use-natspec
310
+ 48:1 warning Missing @title tag in contract 'EnumerableSetPaginationTest' use-natspec
311
+ 48:1 warning Missing @author tag in contract 'EnumerableSetPaginationTest' use-natspec
312
+ 48:1 warning Missing @notice tag in contract 'EnumerableSetPaginationTest' use-natspec
313
+ 54:5 warning Explicitly mark visibility of state state-visibility
314
+ 55:5 warning Explicitly mark visibility of state state-visibility
315
+ 57:5 warning Explicitly mark visibility of state state-visibility
316
+ 58:5 warning Explicitly mark visibility of state state-visibility
317
+ 60:5 warning Explicitly mark visibility of state state-visibility
318
+ 62:5 warning Missing @notice tag in function 'setUp' use-natspec
319
+ 66:29 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
320
+ 66:44 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
321
+ 76:5 warning Missing @notice tag in function 'test_address_paginate_EmptySet' use-natspec
322
+ 81:5 warning Missing @notice tag in function 'test_address_paginate_SingleElement' use-natspec
323
+ 91:5 warning Missing @notice tag in function 'test_address_paginate_OffsetZero' use-natspec
324
+ 94:37 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
325
+ 99:5 warning Missing @notice tag in function 'test_address_paginate_MiddleOffset' use-natspec
326
+ 102:37 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
327
+ 107:5 warning Missing @notice tag in function 'test_address_paginate_OffsetAtEnd' use-natspec
328
+ 113:5 warning Missing @notice tag in function 'test_address_paginate_OffsetBeyondEnd' use-natspec
329
+ 120:5 warning Missing @notice tag in function 'test_address_paginate_LimitZero' use-natspec
330
+ 124:5 warning Missing @notice tag in function 'test_address_paginate_LimitOne' use-natspec
331
+ 130:5 warning Missing @notice tag in function 'test_address_paginate_LimitExceedsRemaining' use-natspec
332
+ 135:5 warning Missing @notice tag in function 'test_address_paginate_LimitExceedsTotal' use-natspec
333
+ 139:5 warning Missing @notice tag in function 'test_address_paginate_MaxUint256Limit' use-natspec
334
+ 145:5 warning Missing @notice tag in function 'test_address_paginate_SequentialPagesCompleteSet' use-natspec
335
+ 153:50 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
336
+ 163:5 warning Missing @notice tag in function 'test_address_paginate_AfterRemovingElements' use-natspec
337
+ 165:29 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
338
+ 165:38 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
339
+ 174:48 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
340
+ 183:5 warning Missing @notice tag in function 'test_address_paginate_Fuzz' use-natspec
341
+ 183:5 warning Missing @param tag in function 'test_address_paginate_Fuzz' use-natspec
342
+ 183:5 warning Mismatch in @param names for function 'test_address_paginate_Fuzz'. Expected: [_offset, _limit], Found: [] use-natspec
343
+ 189:13 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
344
+ 194:52 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
345
+ 200:5 warning Missing @notice tag in function 'test_address_paginate_VaryingSize_Fuzz' use-natspec
346
+ 200:5 warning Missing @param tag in function 'test_address_paginate_VaryingSize_Fuzz' use-natspec
347
+ 200:5 warning Mismatch in @param names for function 'test_address_paginate_VaryingSize_Fuzz'. Expected: [_size, _offset, _limit], Found: [] use-natspec
348
+ 208:39 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
349
+ 212:26 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
350
+ 222:5 warning Missing @notice tag in function 'test_address_property_ReturnedLengthNeverExceedsLimit' use-natspec
351
+ 223:33 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
352
+ 223:46 warning GC: For [ limit ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
353
+ 230:5 warning Missing @notice tag in function 'test_address_property_ConsecutivePagesNoOverlap' use-natspec
354
+ 243:5 warning Missing @notice tag in function 'test_uint_paginate_EmptySet' use-natspec
355
+ 248:5 warning Missing @notice tag in function 'test_uint_paginate_SingleElement' use-natspec
356
+ 258:5 warning Missing @notice tag in function 'test_uint_paginate_OffsetZero' use-natspec
357
+ 261:37 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
358
+ 266:5 warning Missing @notice tag in function 'test_uint_paginate_MiddleOffset' use-natspec
359
+ 269:37 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
360
+ 274:5 warning Missing @notice tag in function 'test_uint_paginate_OffsetAtEnd' use-natspec
361
+ 280:5 warning Missing @notice tag in function 'test_uint_paginate_OffsetBeyondEnd' use-natspec
362
+ 287:5 warning Missing @notice tag in function 'test_uint_paginate_LimitZero' use-natspec
363
+ 291:5 warning Missing @notice tag in function 'test_uint_paginate_LimitOne' use-natspec
364
+ 297:5 warning Missing @notice tag in function 'test_uint_paginate_LimitExceedsRemaining' use-natspec
365
+ 302:5 warning Missing @notice tag in function 'test_uint_paginate_LimitExceedsTotal' use-natspec
366
+ 306:5 warning Missing @notice tag in function 'test_uint_paginate_MaxUint256Limit' use-natspec
367
+ 312:5 warning Missing @notice tag in function 'test_uint_paginate_SequentialPagesCompleteSet' use-natspec
368
+ 320:50 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
369
+ 330:5 warning Missing @notice tag in function 'test_uint_paginate_AfterRemovingElements' use-natspec
370
+ 332:29 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
371
+ 332:38 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
372
+ 341:48 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
373
+ 350:5 warning Missing @notice tag in function 'test_uint_paginate_Fuzz' use-natspec
374
+ 350:5 warning Missing @param tag in function 'test_uint_paginate_Fuzz' use-natspec
375
+ 350:5 warning Mismatch in @param names for function 'test_uint_paginate_Fuzz'. Expected: [_offset, _limit], Found: [] use-natspec
376
+ 356:13 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
377
+ 361:52 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
378
+ 367:5 warning Missing @notice tag in function 'test_uint_paginate_VaryingSize_Fuzz' use-natspec
379
+ 367:5 warning Missing @param tag in function 'test_uint_paginate_VaryingSize_Fuzz' use-natspec
380
+ 367:5 warning Mismatch in @param names for function 'test_uint_paginate_VaryingSize_Fuzz'. Expected: [_size, _offset, _limit], Found: [] use-natspec
381
+ 375:39 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
382
+ 379:26 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
383
+ 389:5 warning Missing @notice tag in function 'test_uint_property_ReturnedLengthNeverExceedsLimit' use-natspec
384
+ 390:33 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
385
+ 390:46 warning GC: For [ limit ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
386
+ 397:5 warning Missing @notice tag in function 'test_uint_property_ConsecutivePagesNoOverlap' use-natspec
387
+ 410:5 warning Missing @notice tag in function 'test_address_paginate_LargeSet' use-natspec
388
+ 413:29 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
389
+ 413:40 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
390
+ 428:5 warning Missing @notice tag in function 'test_uint_paginate_LargeSet' use-natspec
391
+ 431:29 warning GC: Non strict inequality found. Try converting to a strict one gas-strict-inequalities
392
+ 431:40 warning GC: For [ i ] variable, increment/decrement by 1 using: [ ++variable ] to save gas gas-increment-by-one
393
+
394
+ test/FeeConfigBaseUpgradeable.t.sol
395
+ 2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
396
+ 6:1 warning Import in test/FeeConfigBaseUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
397
+ 9:1 warning Code contains empty blocks no-empty-blocks
398
+ 9:1 warning Missing @title tag in contract 'IFeeConfigTestHelper' use-natspec
399
+ 9:1 warning Missing @author tag in contract 'IFeeConfigTestHelper' use-natspec
400
+ 9:1 warning Missing @notice tag in contract 'IFeeConfigTestHelper' use-natspec
401
+ 11:1 warning Missing @title tag in contract 'FeeConfigBaseUpgradeableMock' use-natspec
402
+ 11:1 warning Missing @author tag in contract 'FeeConfigBaseUpgradeableMock' use-natspec
403
+ 11:1 warning Missing @notice tag in contract 'FeeConfigBaseUpgradeableMock' use-natspec
404
+ 12:5 warning Missing @notice tag in function '<anonymous>' use-natspec
405
+ 16:5 warning Missing @notice tag in function 'initialize' use-natspec
406
+ 16:46 warning Code contains empty blocks no-empty-blocks
407
+ 18:5 warning Missing @notice tag in function 'setDefaultFeeBps' use-natspec
408
+ 18:5 warning Missing @param tag in function 'setDefaultFeeBps' use-natspec
409
+ 18:5 warning Mismatch in @param names for function 'setDefaultFeeBps'. Expected: [_feeBps], Found: [] use-natspec
410
+ 22:5 warning Missing @notice tag in function 'setFeeBps' use-natspec
411
+ 22:5 warning Missing @param tag in function 'setFeeBps' use-natspec
412
+ 22:5 warning Mismatch in @param names for function 'setFeeBps'. Expected: [_id, _feeBps, _enabled], Found: [] use-natspec
413
+ 27:1 warning Missing @title tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
414
+ 27:1 warning Missing @author tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
415
+ 27:1 warning Missing @notice tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
416
+ 28:5 warning Missing @notice tag in variable 'feeConfigHelper' use-natspec
417
+ 30:5 warning Explicitly mark visibility of state state-visibility
418
+ 31:5 warning Explicitly mark visibility of state state-visibility
419
+ 32:5 warning Explicitly mark visibility of state state-visibility
420
+ 34:5 warning Missing @notice tag in function '_deployFeeConfigHelper' use-natspec
421
+ 34:5 warning Missing @return tag in function '_deployFeeConfigHelper' use-natspec
422
+ 34:5 warning Mismatch in @return count for function '_deployFeeConfigHelper'. Expected: 1, Found: 0 use-natspec
423
+ 45:5 warning Missing @notice tag in function 'setUp' use-natspec
424
+ 49:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_Fuzz' use-natspec
425
+ 49:5 warning Missing @param tag in function 'test_setDefaultFeeBps_Fuzz' use-natspec
426
+ 49:5 warning Mismatch in @param names for function 'test_setDefaultFeeBps_Fuzz'. Expected: [_feeBps], Found: [] use-natspec
427
+ 61:5 warning Missing @notice tag in function 'test_setDefaultFeeBps' use-natspec
428
+ 65:5 warning Missing @notice tag in function 'test_setFeeBps_Fuzz' use-natspec
429
+ 65:5 warning Missing @param tag in function 'test_setFeeBps_Fuzz' use-natspec
430
+ 65:5 warning Mismatch in @param names for function 'test_setFeeBps_Fuzz'. Expected: [_defaultFeeBps, _dstEid, _feeBps, _enabled], Found: [] use-natspec
431
+ 88:5 warning Missing @notice tag in function 'test_setFeeBps' use-natspec
432
+ 92:5 warning Missing @notice tag in function 'test_getFee_Fuzz' use-natspec
433
+ 92:5 warning Missing @param tag in function 'test_getFee_Fuzz' use-natspec
434
+ 92:5 warning Mismatch in @param names for function 'test_getFee_Fuzz'. Expected: [_defaultFeeBps, _dstEid, _amount], Found: [] use-natspec
435
+ 100:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_RevertInvalid' use-natspec
436
+ 105:5 warning Missing @notice tag in function 'test_setFeeBps_RevertInvalid' use-natspec
437
+ 110:5 warning Missing @notice tag in function 'test_getFee_Default' use-natspec
438
+ 117:5 warning Missing @notice tag in function 'test_getFee_Specific' use-natspec
439
+ 125:5 warning Missing @notice tag in function 'test_getFee_SpecificDisabled' use-natspec
440
+ 133:5 warning Missing @notice tag in function 'test_getFee_BoundaryConditions' use-natspec
441
+ 142:5 warning Missing @notice tag in function 'test_getFee_Rounding' use-natspec
442
+ 150:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_ZeroBps' use-natspec
443
+ 156:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_MaxBps' use-natspec
444
+ 163:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Default' use-natspec
445
+ 169:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Specific' use-natspec
446
+ 176:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_SpecificDisabled' use-natspec
447
+ 182:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_ZeroAmount' use-natspec
448
+ 187:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Rounding' use-natspec
449
+ 198:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_BoundaryConditions' use-natspec
450
+ 210:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Fuzz' use-natspec
451
+ 210:5 warning Missing @param tag in function 'test_getAmountBeforeFee_Fuzz' use-natspec
452
+ 210:5 warning Mismatch in @param names for function 'test_getAmountBeforeFee_Fuzz'. Expected: [_feeBps, _amountAfterFee], Found: [] use-natspec
453
+ 227:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
454
+
455
+ test/FeeConfigRBACUpgradeable.t.sol
456
+ 2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
457
+ 9:1 warning Missing @title tag in contract 'FeeConfigRBACUpgradeableMock' use-natspec
458
+ 9:1 warning Missing @author tag in contract 'FeeConfigRBACUpgradeableMock' use-natspec
459
+ 9:1 warning Missing @notice tag in contract 'FeeConfigRBACUpgradeableMock' use-natspec
460
+ 10:5 warning Missing @notice tag in function '<anonymous>' use-natspec
461
+ 14:5 warning Missing @notice tag in function 'initialize' use-natspec
462
+ 14:5 warning Missing @param tag in function 'initialize' use-natspec
463
+ 14:5 warning Mismatch in @param names for function 'initialize'. Expected: [_initialAdmin], Found: [] use-natspec
464
+ 20:1 warning Missing @title tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
465
+ 20:1 warning Missing @author tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
466
+ 20:1 warning Missing @notice tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
467
+ 21:5 warning Explicitly mark visibility of state state-visibility
468
+ 23:5 warning Missing @notice tag in function '_deployFeeConfigHelper' use-natspec
469
+ 23:5 warning Missing @return tag in function '_deployFeeConfigHelper' use-natspec
470
+ 23:5 warning Mismatch in @return count for function '_deployFeeConfigHelper'. Expected: 1, Found: 0 use-natspec
471
+ 34:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_Revert_Unauthorized' use-natspec
472
+ 47:5 warning Missing @notice tag in function 'test_setFeeBps_Revert_Unauthorized' use-natspec
473
+
474
+ test/FeeHandlerBaseUpgradeable.t.sol
475
+ 2:1 warning Found more than One contract per file. 3 contracts found! one-contract-per-file
476
+ 6:1 warning Import in test/FeeHandlerBaseUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
477
+ 9:1 warning Code contains empty blocks no-empty-blocks
478
+ 9:1 warning Missing @title tag in contract 'IFeeHandlerTestHelper' use-natspec
479
+ 9:1 warning Missing @author tag in contract 'IFeeHandlerTestHelper' use-natspec
480
+ 9:1 warning Missing @notice tag in contract 'IFeeHandlerTestHelper' use-natspec
481
+ 11:1 warning Missing @title tag in contract 'FeeHandlerBaseUpgradeableMock' use-natspec
482
+ 11:1 warning Missing @author tag in contract 'FeeHandlerBaseUpgradeableMock' use-natspec
483
+ 11:1 warning Missing @notice tag in contract 'FeeHandlerBaseUpgradeableMock' use-natspec
484
+ 12:5 warning Missing @notice tag in function '<anonymous>' use-natspec
485
+ 16:5 warning Missing @notice tag in function 'initialize' use-natspec
486
+ 16:5 warning Missing @param tag in function 'initialize' use-natspec
487
+ 16:5 warning Mismatch in @param names for function 'initialize'. Expected: [_feeDeposit], Found: [] use-natspec
488
+ 20:5 warning Missing @notice tag in function 'setFeeDeposit' use-natspec
489
+ 20:5 warning Missing @param tag in function 'setFeeDeposit' use-natspec
490
+ 20:5 warning Mismatch in @param names for function 'setFeeDeposit'. Expected: [_feeDeposit], Found: [] use-natspec
491
+ 25:1 warning Missing @title tag in contract 'Fee