We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9f291 commit 9a348fcCopy full SHA for 9a348fc
contracts/libraries/SSVStorage.sol
@@ -33,6 +33,10 @@ struct StorageData {
33
IERC20 token;
34
/// @notice Counter keeping track of the last Operator ID issued
35
Counters.Counter lastOperatorId;
36
+ /// @notice Operators' whitelist: Maps each whitelisted address to a list of operators
37
+ /// @notice that are whitelisted for that address using bitmaps
38
+ /// @dev The nested mapping's key represents a uint256 slot to handle more than 256 operators per address
39
+ mapping(address => mapping(uint256 => uint256)) addressWhitelistedForOperators;
40
}
41
42
library SSVStorage {
0 commit comments