@notice Set which protocl a wrapped token belongs to
@param _wrapped Address of the wrapped token
@param _protocol Bytes32 key of the protocol
function setWrappedToProtocol(address _wrapped, bytes32 _protocol) external;
@notice Set what is the underlying for a wrapped token
@param _wrapped Address of the wrapped token
@param _underlying Address of the underlying token
function setWrappedToUnderlying(address _wrapped, address _underlying) external;
@notice Set the logic contract for the protocol
@param _protocol Bytes32 key of the procol
@param _logic Address of the lending logic contract for that protocol
function setProtocolToLogic(bytes32 _protocol, address _logic) external;
@notice Set the wrapped token for the underlying deposited in this protocol
@param _underlying Address of the unerlying token
@param _protocol Bytes32 key of the protocol
@param _wrapped Address of the wrapped token
function setUnderlyingToProtocolWrapped(address _underlying, bytes32 _protocol, address _wrapped) external;