Diamond Loupe Facet

The Diamond Loupe Facet allows anyone to see the available functions within Beanstalk.

Call Functions

None.

View Functions

function facets() external view override returns (Facet[] memory facets_);

Returns facet info for all facets of Beanstalk

Return ValueTypeDescription

facets_

Facet[]

Array of facet info.

function facetFunctionSelectors(address _facet)
    external
    view
    override
    returns (bytes4[] memory facetFunctionSelectors_);

Returns all the function selectors provided by a facet.

ParameterTypeDescription

_facet

address

Facet to get selectors for.

Return ValueTypeDescription

facetFunctionSelectors_

bytes4[]

Selectors on _facet.

function facetAddresses() 
    external 
    view 
    override 
    returns (address[] memory facetAddresses_);

Get all the facet addresses used by the Beanstalk Diamond.

Return ValueTypeDescription

facetAddresses_

address[]

All facet addresses used by Beanstalk.

function facetAddress(bytes4 _functionSelector)
    external
    view
    override
    returns (address facetAddress_);

Gets the facet that supports the given selector.

ParameterTypeDescription

_functionSelector

bytes4

Selector to get the corresponding facet for.

Return ValueTypeDescription

facetAddress_

address

Facet that has _functionSelector.

function supportsInterface(bytes4 _interfaceId) 
    external 
    view 
    override 
    returns (bool);

Returns if a contract implements an interface. Implements ERC-165.

ParameterTypeDescription

_interfaceId

bytes4

The interface ID, as specified in ERC-165.

Return TypeDescription

bool

True if the contract implements _interfaceId, false otherwise.

Events

None.

Last updated