FacetRegistryStorage

Git Source

State Variables

FACET_REGISTRY_STORAGE_POSITION

bytes32 public constant FACET_REGISTRY_STORAGE_POSITION = keccak256("facet.registry.storage");

Functions

layout

function layout() internal pure returns (Layout storage l);

Structs

Layout

struct Layout {
    EnumerableSet.AddressSet facets;
    mapping(address facet => EnumerableSet.Bytes32Set selectors) facetSelectors;
}

Last updated

Was this helpful?