Skip to content

Variables ​

Git Source

Inherits:Constants, Initializable, OwnableUpgradeable

State Variables ​

isAuth ​

Maps address to there status as an Auth

solidity
mapping(address => bool) public isAuth;

isRebalancer ​

Maps address to there status as a Rebalancer

solidity
mapping(address => bool) public isRebalancer;

_protocolTokens ​

Mapping of protocol addresses to the tokens that are allowed to be used by that protocol

solidity
mapping(address => EnumerableSet.AddressSet) internal _protocolTokens;

Functions ​

constructor ​

solidity
constructor(IFluidLiquidity liquidity_) Constants(liquidity_);