struct.MultiOwnableStorage

Git Source

Storage layout used by this contract.

Note: storage-location: erc7201:capsign.storage.MultiOwnable // Renamed slot

struct MultiOwnableStorage {
    uint256 nextOwnerIndex;
    uint256 removedOwnersCount;
    mapping(uint256 index => bytes owner) ownerAtIndex;
    mapping(bytes bytes_ => bool isOwner_) isOwner;
    mapping(address smartContractOwner => bool isGovernanceDelegate) governanceDelegates;
}

Last updated

Was this helpful?