@layerzerolabs/utils-upgradeable-evm-contracts 1.2.9 → 1.2.11
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.
- package/.turbo/turbo-lint.log +232 -228
- package/.turbo/turbo-test.log +765 -734
- package/package.json +4 -4
- package/test/AccessControl2StepUpgradeable.t.sol +115 -111
- package/test/AllowlistBaseUpgradeable.t.sol +10 -15
- package/test/AllowlistRBACUpgradeable.t.sol +20 -16
- package/test/FeeConfigBaseUpgradeable.t.sol +68 -70
- package/test/FeeConfigRBACUpgradeable.t.sol +13 -10
- package/test/FeeHandlerBaseUpgradeable.t.sol +22 -28
- package/test/FeeHandlerRBACUpgradeable.t.sol +12 -9
- package/test/PauseBaseUpgradeable.t.sol +72 -85
- package/test/PauseByIDBaseUpgradeable.t.sol +84 -94
- package/test/PauseByIDRBACUpgradeable.t.sol +101 -115
- package/test/PauseRBACUpgradeable.t.sol +74 -106
- package/test/RateLimiterBaseUpgradeable.t.sol +28 -24
- package/test/RateLimiterRBACUpgradeable.t.sol +22 -12
- package/test/RateLimiterRBACUpgradeableInvariant.t.sol +10 -10
package/.turbo/turbo-lint.log
CHANGED
|
@@ -89,9 +89,9 @@ contracts/rate-limiter/RateLimiterRBACUpgradeable.sol
|
|
|
89
89
|
test/AccessControl2StepUpgradeable.t.sol
|
|
90
90
|
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
91
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 '
|
|
93
|
-
13:1 warning Missing @author tag in contract '
|
|
94
|
-
13:1 warning Missing @notice tag in contract '
|
|
92
|
+
13:1 warning Missing @title tag in contract 'AccessControl2StepUpgradeableHarness' use-natspec
|
|
93
|
+
13:1 warning Missing @author tag in contract 'AccessControl2StepUpgradeableHarness' use-natspec
|
|
94
|
+
13:1 warning Missing @notice tag in contract 'AccessControl2StepUpgradeableHarness' use-natspec
|
|
95
95
|
14:5 warning Missing @notice tag in variable 'TEST_ROLE' use-natspec
|
|
96
96
|
15:5 warning Missing @notice tag in variable 'OTHER_ROLE' use-natspec
|
|
97
97
|
17:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
@@ -112,141 +112,129 @@ test/AccessControl2StepUpgradeable.t.sol
|
|
|
112
112
|
37:5 warning Explicitly mark visibility of state state-visibility
|
|
113
113
|
39:5 warning Explicitly mark visibility of state state-visibility
|
|
114
114
|
40:5 warning Explicitly mark visibility of state state-visibility
|
|
115
|
-
42:5 warning Missing @notice tag in function '
|
|
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
|
-
|
|
115
|
+
42:5 warning Missing @notice tag in function '_deployAccessControl' use-natspec
|
|
116
|
+
42:5 warning Missing @return tag in function '_deployAccessControl' use-natspec
|
|
117
|
+
42:5 warning Mismatch in @return count for function '_deployAccessControl'. Expected: 1, Found: 0 use-natspec
|
|
118
|
+
56:5 warning Missing @notice tag in function 'setUp' use-natspec
|
|
119
|
+
64:5 warning Missing @notice tag in function 'test_initialize_Success_AdminHasRole' use-natspec
|
|
120
|
+
71:5 warning Missing @notice tag in function 'test_initialize_Revert_AlreadyInitialized' use-natspec
|
|
121
|
+
76:5 warning Missing @notice tag in function 'test_initialize_Revert_InvalidDefaultAdmin' use-natspec
|
|
122
|
+
88:5 warning Missing @notice tag in function 'test_defaultAdmin_ReturnsInitialAdmin' use-natspec
|
|
123
|
+
94:5 warning Missing @notice tag in function 'test_pendingDefaultAdmin_InitiallyZero' use-natspec
|
|
124
|
+
100:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success' use-natspec
|
|
125
|
+
110:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success_OverwritesPending' use-natspec
|
|
126
|
+
118:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Success_CancelsBySettingZero' use-natspec
|
|
127
|
+
129:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Revert_Unauthorized' use-natspec
|
|
128
|
+
139:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Success' use-natspec
|
|
129
|
+
153:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_NotPendingAdmin' use-natspec
|
|
130
|
+
161:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_NoPendingTransfer' use-natspec
|
|
131
|
+
169:5 warning Missing @notice tag in function 'test_grantRole_Revert_DefaultAdminRole' use-natspec
|
|
132
|
+
174:5 warning Missing @notice tag in function 'test_grantRole_Success_NonAdminRole' use-natspec
|
|
133
|
+
181:5 warning Missing @notice tag in function 'test_revokeRole_Revert_DefaultAdminRole_NonAdmin' use-natspec
|
|
134
|
+
189:5 warning Missing @notice tag in function 'test_revokeRole_Revert_DefaultAdminRole_Admin' use-natspec
|
|
135
|
+
194:5 warning Missing @notice tag in function 'test_revokeRole_Success_NonAdminRole_Admin' use-natspec
|
|
136
|
+
202:5 warning Missing @notice tag in function 'test_revokeRole_Revert_NonAdminRole_NonAdmin' use-natspec
|
|
137
|
+
215:5 warning Missing @notice tag in function 'test_renounceRole_Revert_DefaultAdminRole' use-natspec
|
|
138
|
+
220:5 warning Missing @notice tag in function 'test_renounceRole_Revert_DefaultAdminRoleDuringPendingTransfer' use-natspec
|
|
139
|
+
227:5 warning Missing @notice tag in function 'test_renounceRole_Success_NonAdminRole_NonAdmin' use-natspec
|
|
140
|
+
237:5 warning Missing @notice tag in function 'test_renounceRole_Success_NonAdminRole_Admin' use-natspec
|
|
141
|
+
246:5 warning Missing @notice tag in function 'test_setRoleAdmin_Success_NonAdminRole_Self' use-natspec
|
|
142
|
+
251:5 warning Missing @notice tag in function 'test_setRoleAdmin_Success_NonAdminRole_Other' use-natspec
|
|
143
|
+
257:5 warning Missing @notice tag in function 'test_setRoleAdmin_Revert_DefaultAdminRole' use-natspec
|
|
144
|
+
264:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
|
|
145
|
+
266:42 warning GC: String exceeds 32 bytes gas-small-strings
|
|
146
|
+
274:5 warning Missing @notice tag in function 'test_beginDefaultAdminTransfer_Fuzz' use-natspec
|
|
147
|
+
274:5 warning Missing @param tag in function 'test_beginDefaultAdminTransfer_Fuzz' use-natspec
|
|
148
|
+
274:5 warning Mismatch in @param names for function 'test_beginDefaultAdminTransfer_Fuzz'. Expected: [_newAdmin], Found: [] use-natspec
|
|
149
|
+
280:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Fuzz' use-natspec
|
|
150
|
+
280:5 warning Missing @param tag in function 'test_acceptDefaultAdminTransfer_Fuzz' use-natspec
|
|
151
|
+
280:5 warning Mismatch in @param names for function 'test_acceptDefaultAdminTransfer_Fuzz'. Expected: [_newAdmin], Found: [] use-natspec
|
|
152
|
+
299:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_StalePendingAfterOverwrite' use-natspec
|
|
153
|
+
316:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Revert_AfterCancel' use-natspec
|
|
154
|
+
325:5 warning Missing @notice tag in function 'test_acceptDefaultAdminTransfer_Events' use-natspec
|
|
155
|
+
339:5 warning Missing @notice tag in function 'test_integration_TransferAndTransferAgain' use-natspec
|
|
156
|
+
364:5 warning Missing @notice tag in function 'test_integration_TransferCancelRetransfer' use-natspec
|
|
154
157
|
|
|
155
158
|
test/AllowlistBaseUpgradeable.t.sol
|
|
156
159
|
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
157
160
|
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 '
|
|
159
|
-
9:1 warning Missing @author tag in contract '
|
|
160
|
-
9:1 warning Missing @notice tag in contract '
|
|
161
|
-
10:5 warning Missing @notice tag in function '
|
|
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
|
-
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
|
|
161
|
+
9:1 warning Missing @title tag in contract 'AllowlistBaseUpgradeableHarness' use-natspec
|
|
162
|
+
9:1 warning Missing @author tag in contract 'AllowlistBaseUpgradeableHarness' use-natspec
|
|
163
|
+
9:1 warning Missing @notice tag in contract 'AllowlistBaseUpgradeableHarness' use-natspec
|
|
164
|
+
10:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
165
|
+
14:5 warning Missing @notice tag in function 'initialize' use-natspec
|
|
166
|
+
14:5 warning Missing @param tag in function 'initialize' use-natspec
|
|
167
|
+
14:5 warning Mismatch in @param names for function 'initialize'. Expected: [_mode], Found: [] use-natspec
|
|
168
|
+
18:5 warning Missing @notice tag in function 'setAllowlistMode' use-natspec
|
|
169
|
+
18:5 warning Missing @param tag in function 'setAllowlistMode' use-natspec
|
|
170
|
+
18:5 warning Mismatch in @param names for function 'setAllowlistMode'. Expected: [_mode], Found: [] use-natspec
|
|
171
|
+
22:5 warning Missing @notice tag in function 'setWhitelisted' use-natspec
|
|
172
|
+
22:5 warning Missing @param tag in function 'setWhitelisted' use-natspec
|
|
173
|
+
22:5 warning Mismatch in @param names for function 'setWhitelisted'. Expected: [_params], Found: [] use-natspec
|
|
174
|
+
26:5 warning Missing @notice tag in function 'setBlacklisted' use-natspec
|
|
175
|
+
26:5 warning Missing @param tag in function 'setBlacklisted' use-natspec
|
|
176
|
+
26:5 warning Mismatch in @param names for function 'setBlacklisted'. Expected: [_params], Found: [] use-natspec
|
|
177
|
+
30:5 warning Missing @notice tag in function 'restrictedFunction' use-natspec
|
|
178
|
+
30:5 warning Missing @return tag in function 'restrictedFunction' use-natspec
|
|
179
|
+
30:5 warning Mismatch in @return count for function 'restrictedFunction'. Expected: 1, Found: 0 use-natspec
|
|
180
|
+
35:1 warning Missing @title tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
|
|
181
|
+
35:1 warning Missing @author tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
|
|
182
|
+
35:1 warning Missing @notice tag in contract 'AllowlistBaseUpgradeableTest' use-natspec
|
|
183
|
+
36:5 warning Explicitly mark visibility of state state-visibility
|
|
184
|
+
38:5 warning Explicitly mark visibility of state state-visibility
|
|
185
|
+
39:5 warning Explicitly mark visibility of state state-visibility
|
|
186
|
+
40:5 warning Explicitly mark visibility of state state-visibility
|
|
187
|
+
42:5 warning Missing @notice tag in function '_deployAllowlist' use-natspec
|
|
188
|
+
42:5 warning Missing @param tag in function '_deployAllowlist' use-natspec
|
|
189
|
+
42:5 warning Mismatch in @param names for function '_deployAllowlist'. Expected: [_mode], Found: [] use-natspec
|
|
190
|
+
42:5 warning Missing @return tag in function '_deployAllowlist' use-natspec
|
|
191
|
+
42:5 warning Mismatch in @return count for function '_deployAllowlist'. Expected: 1, Found: 0 use-natspec
|
|
192
|
+
54:5 warning Missing @notice tag in function 'setUp' use-natspec
|
|
193
|
+
60:5 warning Missing @notice tag in function 'test_constructor_InitialMode' use-natspec
|
|
194
|
+
64:5 warning Missing @notice tag in function 'test_constructor_InitializeWhitelist' use-natspec
|
|
195
|
+
71:5 warning Missing @notice tag in function 'test_isAllowlisted_Open_AllAllowed' use-natspec
|
|
196
|
+
77:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Open_AllAllowed' use-natspec
|
|
197
|
+
87:5 warning Missing @notice tag in function 'test_setMode_Blacklist' use-natspec
|
|
198
|
+
95:5 warning Missing @notice tag in function 'test_isAllowlisted_Blacklist_NotBlacklisted' use-natspec
|
|
199
|
+
100:5 warning Missing @notice tag in function 'test_isAllowlisted_Blacklist_Blacklisted' use-natspec
|
|
200
|
+
115:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Blacklist_RevertIfBlacklisted' use-natspec
|
|
201
|
+
133:5 warning Missing @notice tag in function 'test_setBlacklisted_RemoveFromBlacklist' use-natspec
|
|
202
|
+
150:5 warning Missing @notice tag in function 'test_setBlacklisted_MultipleUsers' use-natspec
|
|
203
|
+
166:5 warning Missing @notice tag in function 'test_setMode_Whitelist' use-natspec
|
|
204
|
+
174:5 warning Missing @notice tag in function 'test_isAllowlisted_Whitelist_NotWhitelisted' use-natspec
|
|
205
|
+
179:5 warning Missing @notice tag in function 'test_isAllowlisted_Whitelist_Whitelisted' use-natspec
|
|
206
|
+
194:5 warning Missing @notice tag in function 'test_onlyAllowlisted_Whitelist_RevertIfNotWhitelisted' use-natspec
|
|
207
|
+
212:5 warning Missing @notice tag in function 'test_setWhitelisted_RemoveFromWhitelist' use-natspec
|
|
208
|
+
229:5 warning Missing @notice tag in function 'test_setWhitelisted_MultipleUsers' use-natspec
|
|
209
|
+
245:5 warning Missing @notice tag in function 'test_SwitchModes_PreservesState' use-natspec
|
|
210
|
+
270:5 warning Missing @notice tag in function 'test_setWhitelisted_EmptyArray' use-natspec
|
|
211
|
+
275:5 warning Missing @notice tag in function 'test_setBlacklisted_EmptyArray' use-natspec
|
|
212
|
+
280:5 warning Missing @notice tag in function 'test_setMode_MultipleChanges' use-natspec
|
|
213
|
+
296:5 warning Missing @notice tag in function 'test_setMode_RevertSameMode' use-natspec
|
|
214
|
+
308:5 warning Missing @notice tag in function 'test_setWhitelisted_Revert_AlreadyWhitelisted' use-natspec
|
|
215
|
+
323:5 warning Missing @notice tag in function 'test_setBlacklisted_Revert_AlreadyBlacklisted' use-natspec
|
|
216
|
+
340:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Open' use-natspec
|
|
217
|
+
340:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Open' use-natspec
|
|
218
|
+
340:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Open'. Expected: [_user], Found: [] use-natspec
|
|
219
|
+
344:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted' use-natspec
|
|
220
|
+
344:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted' use-natspec
|
|
221
|
+
344:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Blacklist_NotBlacklisted'. Expected: [_user], Found: [] use-natspec
|
|
222
|
+
349:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted' use-natspec
|
|
223
|
+
349:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted' use-natspec
|
|
224
|
+
349:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Blacklist_Blacklisted'. Expected: [_user], Found: [] use-natspec
|
|
225
|
+
357:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted' use-natspec
|
|
226
|
+
357:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted' use-natspec
|
|
227
|
+
357:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Whitelist_NotWhitelisted'. Expected: [_user], Found: [] use-natspec
|
|
228
|
+
362:5 warning Missing @notice tag in function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted' use-natspec
|
|
229
|
+
362:5 warning Missing @param tag in function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted' use-natspec
|
|
230
|
+
362:5 warning Mismatch in @param names for function 'test_isAllowlisted_Fuzz_Whitelist_Whitelisted'. Expected: [_user], Found: [] use-natspec
|
|
231
|
+
370:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
|
|
244
232
|
|
|
245
233
|
test/AllowlistRBACUpgradeable.t.sol
|
|
246
234
|
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 '
|
|
248
|
-
10:1 warning Missing @author tag in contract '
|
|
249
|
-
10:1 warning Missing @notice tag in contract '
|
|
235
|
+
10:1 warning Missing @title tag in contract 'AllowlistRBACUpgradeableHarness' use-natspec
|
|
236
|
+
10:1 warning Missing @author tag in contract 'AllowlistRBACUpgradeableHarness' use-natspec
|
|
237
|
+
10:1 warning Missing @notice tag in contract 'AllowlistRBACUpgradeableHarness' use-natspec
|
|
250
238
|
11:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
251
239
|
15:5 warning Missing @notice tag in function 'initialize' use-natspec
|
|
252
240
|
15:5 warning Missing @param tag in function 'initialize' use-natspec
|
|
@@ -258,15 +246,16 @@ test/AllowlistRBACUpgradeable.t.sol
|
|
|
258
246
|
25:1 warning Missing @author tag in contract 'AllowlistRBACUpgradeableTest' use-natspec
|
|
259
247
|
25:1 warning Missing @notice tag in contract 'AllowlistRBACUpgradeableTest' use-natspec
|
|
260
248
|
26:5 warning Explicitly mark visibility of state state-visibility
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
249
|
+
27:5 warning Explicitly mark visibility of state state-visibility
|
|
250
|
+
29:5 warning Missing @notice tag in function '_deployAllowlist' use-natspec
|
|
251
|
+
29:5 warning Missing @param tag in function '_deployAllowlist' use-natspec
|
|
252
|
+
29:5 warning Mismatch in @param names for function '_deployAllowlist'. Expected: [_mode], Found: [] use-natspec
|
|
253
|
+
29:5 warning Missing @return tag in function '_deployAllowlist' use-natspec
|
|
254
|
+
29:5 warning Mismatch in @return count for function '_deployAllowlist'. Expected: 1, Found: 0 use-natspec
|
|
255
|
+
44:5 warning Missing @notice tag in function 'setUp' use-natspec
|
|
256
|
+
49:5 warning Missing @notice tag in function 'test_setAllowlistMode_Revert_Unauthorized' use-natspec
|
|
257
|
+
61:5 warning Missing @notice tag in function 'test_setWhitelisted_Revert_Unauthorized' use-natspec
|
|
258
|
+
75:5 warning Missing @notice tag in function 'test_setBlacklisted_Revert_Unauthorized' use-natspec
|
|
270
259
|
|
|
271
260
|
test/EnumerableSetPagination.t.sol
|
|
272
261
|
2:1 warning Found more than One contract per file. 3 contracts found! one-contract-per-file
|
|
@@ -394,98 +383,113 @@ test/EnumerableSetPagination.t.sol
|
|
|
394
383
|
test/FeeConfigBaseUpgradeable.t.sol
|
|
395
384
|
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
396
385
|
6:1 warning Import in test/FeeConfigBaseUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
|
|
397
|
-
9:1 warning
|
|
398
|
-
9:1 warning Missing @
|
|
399
|
-
9:1 warning Missing @
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
16:5 warning
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
27:1 warning Missing @notice tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
|
|
416
|
-
28:5 warning Missing @notice tag in variable 'feeConfigHelper' use-natspec
|
|
386
|
+
9:1 warning Missing @title tag in contract 'FeeConfigBaseUpgradeableHarness' use-natspec
|
|
387
|
+
9:1 warning Missing @author tag in contract 'FeeConfigBaseUpgradeableHarness' use-natspec
|
|
388
|
+
9:1 warning Missing @notice tag in contract 'FeeConfigBaseUpgradeableHarness' use-natspec
|
|
389
|
+
10:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
390
|
+
14:5 warning Missing @notice tag in function 'initialize' use-natspec
|
|
391
|
+
14:46 warning Code contains empty blocks no-empty-blocks
|
|
392
|
+
16:5 warning Missing @notice tag in function 'setDefaultFeeBps' use-natspec
|
|
393
|
+
16:5 warning Missing @param tag in function 'setDefaultFeeBps' use-natspec
|
|
394
|
+
16:5 warning Mismatch in @param names for function 'setDefaultFeeBps'. Expected: [_feeBps], Found: [] use-natspec
|
|
395
|
+
20:5 warning Missing @notice tag in function 'setFeeBps' use-natspec
|
|
396
|
+
20:5 warning Missing @param tag in function 'setFeeBps' use-natspec
|
|
397
|
+
20:5 warning Mismatch in @param names for function 'setFeeBps'. Expected: [_id, _feeBps, _enabled], Found: [] use-natspec
|
|
398
|
+
25:1 warning Missing @title tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
|
|
399
|
+
25:1 warning Missing @author tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
|
|
400
|
+
25:1 warning Missing @notice tag in contract 'FeeConfigBaseUpgradeableTest' use-natspec
|
|
401
|
+
26:5 warning Missing @notice tag in variable 'feeConfig' use-natspec
|
|
402
|
+
28:5 warning Explicitly mark visibility of state state-visibility
|
|
403
|
+
29:5 warning Explicitly mark visibility of state state-visibility
|
|
417
404
|
30:5 warning Explicitly mark visibility of state state-visibility
|
|
418
|
-
|
|
419
|
-
32:5 warning
|
|
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
|
-
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
|
|
405
|
+
32:5 warning Missing @notice tag in function '_deployFeeConfig' use-natspec
|
|
406
|
+
32:5 warning Missing @return tag in function '_deployFeeConfig' use-natspec
|
|
407
|
+
32:5 warning Mismatch in @return count for function '_deployFeeConfig'. Expected: 1, Found: 0 use-natspec
|
|
408
|
+
43:5 warning Missing @notice tag in function 'setUp' use-natspec
|
|
409
|
+
47:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_Fuzz' use-natspec
|
|
410
|
+
47:5 warning Missing @param tag in function 'test_setDefaultFeeBps_Fuzz' use-natspec
|
|
411
|
+
47:5 warning Mismatch in @param names for function 'test_setDefaultFeeBps_Fuzz'. Expected: [_feeBps], Found: [] use-natspec
|
|
412
|
+
59:5 warning Missing @notice tag in function 'test_setDefaultFeeBps' use-natspec
|
|
413
|
+
63:5 warning Missing @notice tag in function 'test_setFeeBps_Fuzz' use-natspec
|
|
414
|
+
63:5 warning Missing @param tag in function 'test_setFeeBps_Fuzz' use-natspec
|
|
415
|
+
63:5 warning Mismatch in @param names for function 'test_setFeeBps_Fuzz'. Expected: [_defaultFeeBps, _dstEid, _feeBps, _enabled], Found: [] use-natspec
|
|
416
|
+
86:5 warning Missing @notice tag in function 'test_setFeeBps' use-natspec
|
|
417
|
+
90:5 warning Missing @notice tag in function 'test_getFee_Fuzz' use-natspec
|
|
418
|
+
90:5 warning Missing @param tag in function 'test_getFee_Fuzz' use-natspec
|
|
419
|
+
90:5 warning Mismatch in @param names for function 'test_getFee_Fuzz'. Expected: [_defaultFeeBps, _dstEid, _amount], Found: [] use-natspec
|
|
420
|
+
98:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_RevertInvalid' use-natspec
|
|
421
|
+
103:5 warning Missing @notice tag in function 'test_setFeeBps_RevertInvalid' use-natspec
|
|
422
|
+
108:5 warning Missing @notice tag in function 'test_getFee_Default' use-natspec
|
|
423
|
+
115:5 warning Missing @notice tag in function 'test_getFee_Specific' use-natspec
|
|
424
|
+
123:5 warning Missing @notice tag in function 'test_getFee_SpecificDisabled' use-natspec
|
|
425
|
+
131:5 warning Missing @notice tag in function 'test_getFee_BoundaryConditions' use-natspec
|
|
426
|
+
140:5 warning Missing @notice tag in function 'test_getFee_Rounding' use-natspec
|
|
427
|
+
148:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_ZeroBps' use-natspec
|
|
428
|
+
154:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_MaxBps' use-natspec
|
|
429
|
+
161:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Default' use-natspec
|
|
430
|
+
167:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Specific' use-natspec
|
|
431
|
+
174:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_SpecificDisabled' use-natspec
|
|
432
|
+
180:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_ZeroAmount' use-natspec
|
|
433
|
+
185:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Rounding' use-natspec
|
|
434
|
+
196:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_BoundaryConditions' use-natspec
|
|
435
|
+
208:5 warning Missing @notice tag in function 'test_getAmountBeforeFee_Fuzz' use-natspec
|
|
436
|
+
208:5 warning Missing @param tag in function 'test_getAmountBeforeFee_Fuzz' use-natspec
|
|
437
|
+
208:5 warning Mismatch in @param names for function 'test_getAmountBeforeFee_Fuzz'. Expected: [_feeBps, _amountAfterFee], Found: [] use-natspec
|
|
438
|
+
225:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
|
|
454
439
|
|
|
455
440
|
test/FeeConfigRBACUpgradeable.t.sol
|
|
456
441
|
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
23:5 warning
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
442
|
+
10:1 warning Missing @title tag in contract 'FeeConfigRBACUpgradeableHarness' use-natspec
|
|
443
|
+
10:1 warning Missing @author tag in contract 'FeeConfigRBACUpgradeableHarness' use-natspec
|
|
444
|
+
10:1 warning Missing @notice tag in contract 'FeeConfigRBACUpgradeableHarness' use-natspec
|
|
445
|
+
11:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
446
|
+
15:5 warning Missing @notice tag in function 'initialize' use-natspec
|
|
447
|
+
15:5 warning Missing @param tag in function 'initialize' use-natspec
|
|
448
|
+
15:5 warning Mismatch in @param names for function 'initialize'. Expected: [_initialAdmin], Found: [] use-natspec
|
|
449
|
+
21:1 warning Missing @title tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
|
|
450
|
+
21:1 warning Missing @author tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
|
|
451
|
+
21:1 warning Missing @notice tag in contract 'FeeConfigRBACUpgradeableTest' use-natspec
|
|
452
|
+
22:5 warning Explicitly mark visibility of state state-visibility
|
|
453
|
+
23:5 warning Explicitly mark visibility of state state-visibility
|
|
454
|
+
25:5 warning Missing @notice tag in function '_deployFeeConfig' use-natspec
|
|
455
|
+
25:5 warning Missing @return tag in function '_deployFeeConfig' use-natspec
|
|
456
|
+
25:5 warning Mismatch in @return count for function '_deployFeeConfig'. Expected: 1, Found: 0 use-natspec
|
|
457
|
+
37:5 warning Missing @notice tag in function 'test_setDefaultFeeBps_Revert_Unauthorized' use-natspec
|
|
458
|
+
50:5 warning Missing @notice tag in function 'test_setFeeBps_Revert_Unauthorized' use-natspec
|
|
473
459
|
|
|
474
460
|
test/FeeHandlerBaseUpgradeable.t.sol
|
|
475
|
-
2:1 warning Found more than One contract per file.
|
|
461
|
+
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
476
462
|
6:1 warning Import in test/FeeHandlerBaseUpgradeable.t.sol doesn't exist in: forge-std/Test.sol import-path-check
|
|
477
|
-
9:1 warning
|
|
478
|
-
9:1 warning Missing @
|
|
479
|
-
9:1 warning Missing @
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
463
|
+
9:1 warning Missing @title tag in contract 'FeeHandlerBaseUpgradeableHarness' use-natspec
|
|
464
|
+
9:1 warning Missing @author tag in contract 'FeeHandlerBaseUpgradeableHarness' use-natspec
|
|
465
|
+
9:1 warning Missing @notice tag in contract 'FeeHandlerBaseUpgradeableHarness' use-natspec
|
|
466
|
+
10:5 warning Missing @notice tag in function '<anonymous>' use-natspec
|
|
467
|
+
14:5 warning Missing @notice tag in function 'initialize' use-natspec
|
|
468
|
+
14:5 warning Missing @param tag in function 'initialize' use-natspec
|
|
469
|
+
14:5 warning Mismatch in @param names for function 'initialize'. Expected: [_feeDeposit], Found: [] use-natspec
|
|
470
|
+
18:5 warning Missing @notice tag in function 'setFeeDeposit' use-natspec
|
|
471
|
+
18:5 warning Missing @param tag in function 'setFeeDeposit' use-natspec
|
|
472
|
+
18:5 warning Mismatch in @param names for function 'setFeeDeposit'. Expected: [_feeDeposit], Found: [] use-natspec
|
|
473
|
+
23:1 warning Missing @title tag in contract 'FeeHandlerBaseUpgradeableTest' use-natspec
|
|
474
|
+
23:1 warning Missing @author tag in contract 'FeeHandlerBaseUpgradeableTest' use-natspec
|
|
475
|
+
23:1 warning Missing @notice tag in contract 'FeeHandlerBaseUpgradeableTest' use-natspec
|
|
476
|
+
24:5 warning Missing @notice tag in variable 'feeHandler' use-natspec
|
|
477
|
+
26:5 warning Explicitly mark visibility of state state-visibility
|
|
478
|
+
27:5 warning Explicitly mark visibility of state state-visibility
|
|
479
|
+
29:5 warning Missing @notice tag in function '_deployFeeHandler' use-natspec
|
|
480
|
+
29:5 warning Missing @return tag in function '_deployFeeHandler' use-natspec
|
|
481
|
+
29:5 warning Mismatch in @return count for function '_deployFeeHandler'. Expected: 1, Found: 0 use-natspec
|
|
482
|
+
40:5 warning Missing @notice tag in function 'setUp' use-natspec
|
|
483
|
+
44:5 warning Missing @notice tag in function 'test_feeDeposit' use-natspec
|
|
484
|
+
48:5 warning Missing @notice tag in function 'test_setFeeDeposit' use-natspec
|
|
485
|
+
56:5 warning Missing @notice tag in function 'test_setFeeDeposit_Revert_ZeroAddress' use-natspec
|
|
486
|
+
61:5 warning Missing @notice tag in function 'test_setFeeDeposit_Fuzz' use-natspec
|
|
487
|
+
61:5 warning Missing @param tag in function 'test_setFeeDeposit_Fuzz' use-natspec
|
|
488
|
+
61:5 warning Mismatch in @param names for function 'test_setFeeDeposit_Fuzz'. Expected: [_newDeposit], Found: [] use-natspec
|
|
489
|
+
67:5 warning Missing @notice tag in function 'test_storageHash' use-natspec
|
|
490
|
+
|
|
491
|
+
test/FeeHandlerRBACUpgradeable.t.sol
|
|
492
|
+
2:1 warning Found more than One contract per file. 2 contracts found! one-contract-per-file
|
|
493
|
+
10:1 warning Missing @title tag in contract 'FeeHandlerRBACUpgradeableHarness' use-natspec
|
|
494
|
+
10:1 warning Missing @author tag in contract 'FeeHandlerRBACUpgradeableHarness' use-natspec
|
|
495
|
+
10:1 warning Missing @notice tag in contract 'FeeHandlerRBACUpgradeableHarness'
|